diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/_arf_generate.py b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..46cc6d6ace0a5e9f980a1707f16352fa089ed8a8 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/_arf_generate.py @@ -0,0 +1,23 @@ +import pickle +import pandas as pd + +n_target = int(95512) +with open("/work/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=n_target) +syn = syn.reset_index(drop=True) +if len(syn) > n_target: + syn = syn.iloc[:n_target] +elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = model.forge(n=max(need, 1)).reset_index(drop=True) + if len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] +syn.to_csv("/work/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/arf-m12-95512-20260422_084037.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/arf-m12-95512-20260422_084037.csv") diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/_arf_train.py b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..00049e96ca31a6b27c9b6df1641aecd560dd3ff7 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/arf_model.pkl") diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/arf-m12-95512-20260422_084037.csv b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/arf-m12-95512-20260422_084037.csv new file mode 100644 index 0000000000000000000000000000000000000000..13121ee795727aade2aca8f0c77b3457b0f1d67d --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/arf-m12-95512-20260422_084037.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee010aea59c87ea325c6eb0247c7912ac6d8d559a2720e8816d9fecf5039368 +size 29705829 diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/arf_model.pkl b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e8af503e16e37042583bd63340f387c5f1365876 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c4324079b9e8fb2fa9e4a617c11040e4304d4c9fa84e80fe77798e0d726e03 +size 1102812550 diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/gen_20260422_084037.log b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/gen_20260422_084037.log new file mode 100644 index 0000000000000000000000000000000000000000..29eec91b04a92fc33191831b08df4197c4d45e54 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/gen_20260422_084037.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44060c1484159698e4363ec7762499c8717d9e2a8b223842ac4711fcf9eeae3b +size 3937 diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/input_snapshot.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..07fb8ddd79a6dadddef05169159c3e23dc27744d --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m12", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "exists": true, + "size": 13165359, + "sha256": "38507849456d473e77f70bde2e03dd69c9694d3640debeb0e1dd3a99b251862e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "exists": true, + "size": 1646795, + "sha256": "7efe1eb3cfa68fbb779e8cb8490109c774b8241e5896a77d083544f04ccf6c66" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv", + "exists": true, + "size": 1646190, + "sha256": "77c539bda6d6db356a6f1eb5d8344449f25d36b5309fa660bec41d855e49cefc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_profile.json", + "exists": true, + "size": 12659, + "sha256": "d8c17ef1f421dc55e8669ecc08ba8b3d6cbb007f953b59ef6014af322c187cc3" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_contract_v1.json", + "exists": true, + "size": 15493, + "sha256": "439a5ec1e598498ffc934040b6975f626db2990104def7a6095d2100f5a974ff" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..13970fcc2a09d39cc1add97c9eb4654cee58f612 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,670 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "columns": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/public_gate_report.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3bf58f493bcfc411bffebeec97fba57674499b --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m12", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "customer_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/staged_input_manifest.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..281a4c85302286ab15458d540172c0dba36d2f7f --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/public_gate/staged_input_manifest.json @@ -0,0 +1,675 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/runtime_result.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9859eb100776d166814e5e89ef1d9b562cb35470 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m12", + "model": "arf", + "run_id": "arf-m12-20260422_055912", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/arf-m12-95512-20260422_084037.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/arf_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/adapter_report.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..657ba091ca9c1fff465946bb4cf2441fa1044000 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/adapter_transforms_applied.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/model_input_manifest.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a21f565420777a98be8de7ca54df3cee0bff1de7 --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/arf/model_input_manifest.json @@ -0,0 +1,677 @@ +{ + "dataset_id": "m12", + "model": "arf", + "target_column": "customer_type", + "task_type": "classification", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/arf/arf-m12-20260422_055912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/staged_features.json b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a6df78b1e7df37d82c9f69413e26d4ae848a3c --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/staged_features.json @@ -0,0 +1,162 @@ +[ + { + "feature_name": "hotel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "lead_time", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_year", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "arrival_date_week_number", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_day_of_month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_weekend_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_week_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "adults", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "babies", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "meal", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "market_segment", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "distribution_channel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_repeated_guest", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_cancellations", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_bookings_not_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "reserved_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "assigned_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "booking_changes", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "deposit_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "agent", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "company", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "days_in_waiting_list", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "customer_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "adr", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "required_car_parking_spaces", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "total_of_special_requests", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "reservation_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "reservation_status_date", + "data_type": "timestamp", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/test.csv b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..30c1b4b016bf3e7de99246eb0c12090a548eb9ff --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f493029a41815df91c3b28f521a2264951567318150110e5c27fa757ebc734 +size 1694120 diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/train.csv b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb7c1b15cfae80b8f1256e5ab12043201bba9e7c --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2f868c246063628371ded60d767d155528ace18d424271c7271617a8ef4643 +size 13548268 diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/val.csv b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..72af4a34a232e0bcfaf78244335bd139c3d0aa2a --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce173da72624b2b531e2d913ada1d29b77c0926be15b8d83a75911a1f5e36679 +size 1694777 diff --git a/syntheticSuccess/m12/arf/arf-m12-20260422_055912/train_20260422_055918.log b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/train_20260422_055918.log new file mode 100644 index 0000000000000000000000000000000000000000..4c6391252375304252e6705a5d9593e9b8706f8f --- /dev/null +++ b/syntheticSuccess/m12/arf/arf-m12-20260422_055912/train_20260422_055918.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c51e2ba0fce94300ef16ab0e0506900d7c354ba30438ad4e43902c291a321c9 +size 411 diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/_bayesnet_generate.py b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..afaba4f6753523dd17ffa108342b15e5f05600bc --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/_bayesnet_generate.py @@ -0,0 +1,75 @@ + +import pickle +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +with open("/work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=95512, show_progress=False) + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +final.to_csv("/work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet-m12-95512-20260420_052116.csv", index=False) +print(f"[BayesNet] Generated 95512 rows -> /work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet-m12-95512-20260420_052116.csv") diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/_bayesnet_train.py b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ca1566f6c57b5686b865c723edfdc3ad1dfae765 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/_bayesnet_train.py @@ -0,0 +1,93 @@ + +import json +import pickle +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +with open("/work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +max_bins = 10 + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + uniques = sorted(s.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +dag = TreeSearch(enc).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +network.fit(enc) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl") diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet-m12-95512-20260420_052116.csv b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet-m12-95512-20260420_052116.csv new file mode 100644 index 0000000000000000000000000000000000000000..3497a282a3bb01f132f70febeed171b2976a533a --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet-m12-95512-20260420_052116.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8327bd9a68f225365c89d5c865250ab6d4c8ead2e6d181dc1b9c9c6ad60ac417 +size 34560100 diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_coltypes.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..c80d8903743c12b46cf44111dd13eb5a41cb11b9 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_coltypes.json @@ -0,0 +1,133 @@ +{ + "columns": [ + { + "name": "hotel", + "type": "categorical" + }, + { + "name": "is_canceled", + "type": "categorical" + }, + { + "name": "lead_time", + "type": "continuous" + }, + { + "name": "arrival_date_year", + "type": "continuous" + }, + { + "name": "arrival_date_month", + "type": "categorical" + }, + { + "name": "arrival_date_week_number", + "type": "continuous" + }, + { + "name": "arrival_date_day_of_month", + "type": "continuous" + }, + { + "name": "stays_in_weekend_nights", + "type": "continuous" + }, + { + "name": "stays_in_week_nights", + "type": "continuous" + }, + { + "name": "adults", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "babies", + "type": "categorical" + }, + { + "name": "meal", + "type": "categorical" + }, + { + "name": "country", + "type": "categorical" + }, + { + "name": "market_segment", + "type": "categorical" + }, + { + "name": "distribution_channel", + "type": "categorical" + }, + { + "name": "is_repeated_guest", + "type": "categorical" + }, + { + "name": "previous_cancellations", + "type": "categorical" + }, + { + "name": "previous_bookings_not_canceled", + "type": "categorical" + }, + { + "name": "reserved_room_type", + "type": "categorical" + }, + { + "name": "assigned_room_type", + "type": "categorical" + }, + { + "name": "booking_changes", + "type": "continuous" + }, + { + "name": "deposit_type", + "type": "categorical" + }, + { + "name": "agent", + "type": "continuous" + }, + { + "name": "company", + "type": "continuous" + }, + { + "name": "days_in_waiting_list", + "type": "continuous" + }, + { + "name": "customer_type", + "type": "categorical" + }, + { + "name": "adr", + "type": "continuous" + }, + { + "name": "required_car_parking_spaces", + "type": "categorical" + }, + { + "name": "total_of_special_requests", + "type": "continuous" + }, + { + "name": "reservation_status", + "type": "categorical" + }, + { + "name": "reservation_status_date", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..0f236ef2e7f16ba227d6bf7fcd03d3753855a1fe --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6717e48daba002ddb4160bf9051b2289e2527298f340e6300f38d99ef72f3677 +size 2824629 diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/const_cols.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/gen_20260420_052116.log b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/gen_20260420_052116.log new file mode 100644 index 0000000000000000000000000000000000000000..16525f2dd198e98132cb2de99873339e93ce2cc5 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/gen_20260420_052116.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546bfd735e68093333c34c82a582531a12d8b876f6191508f43e93ea6ba9e9f1 +size 1139 diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/input_snapshot.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..130a99bc22955bba1001f4ff1e971c7205f12546 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m12", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "exists": true, + "size": 13165359, + "sha256": "38507849456d473e77f70bde2e03dd69c9694d3640debeb0e1dd3a99b251862e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "exists": true, + "size": 1646795, + "sha256": "7efe1eb3cfa68fbb779e8cb8490109c774b8241e5896a77d083544f04ccf6c66" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv", + "exists": true, + "size": 1646190, + "sha256": "77c539bda6d6db356a6f1eb5d8344449f25d36b5309fa660bec41d855e49cefc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_profile.json", + "exists": true, + "size": 12659, + "sha256": "d8c17ef1f421dc55e8669ecc08ba8b3d6cbb007f953b59ef6014af322c187cc3" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_contract_v1.json", + "exists": true, + "size": 15493, + "sha256": "439a5ec1e598498ffc934040b6975f626db2990104def7a6095d2100f5a974ff" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..13970fcc2a09d39cc1add97c9eb4654cee58f612 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,670 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "columns": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/public_gate_report.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3bf58f493bcfc411bffebeec97fba57674499b --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m12", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "customer_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/staged_input_manifest.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..153fd0408c57f1ddbf777400eb868951e9a80454 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/staged_input_manifest.json @@ -0,0 +1,675 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/runtime_result.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7b0a111e39d7b258d0e0475dd9a29f274484cb35 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m12", + "model": "bayesnet", + "run_id": "bayesnet-m12-20260420_035322", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet-m12-95512-20260420_052116.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/adapter_report.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a6925b3e9bed4850e5177b686de1c43b553888de --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/adapter_transforms_applied.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/model_input_manifest.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b19792a72cc46a5cf823c6411e4bb07bb6051e90 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,677 @@ +{ + "dataset_id": "m12", + "model": "bayesnet", + "target_column": "customer_type", + "task_type": "classification", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/bayesnet/bayesnet-m12-20260420_035322/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/staged_features.json b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a6df78b1e7df37d82c9f69413e26d4ae848a3c --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/staged_features.json @@ -0,0 +1,162 @@ +[ + { + "feature_name": "hotel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "lead_time", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_year", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "arrival_date_week_number", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_day_of_month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_weekend_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_week_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "adults", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "babies", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "meal", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "market_segment", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "distribution_channel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_repeated_guest", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_cancellations", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_bookings_not_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "reserved_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "assigned_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "booking_changes", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "deposit_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "agent", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "company", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "days_in_waiting_list", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "customer_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "adr", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "required_car_parking_spaces", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "total_of_special_requests", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "reservation_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "reservation_status_date", + "data_type": "timestamp", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/test.csv b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..30c1b4b016bf3e7de99246eb0c12090a548eb9ff --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f493029a41815df91c3b28f521a2264951567318150110e5c27fa757ebc734 +size 1694120 diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/train.csv b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb7c1b15cfae80b8f1256e5ab12043201bba9e7c --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2f868c246063628371ded60d767d155528ace18d424271c7271617a8ef4643 +size 13548268 diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/val.csv b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..72af4a34a232e0bcfaf78244335bd139c3d0aa2a --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce173da72624b2b531e2d913ada1d29b77c0926be15b8d83a75911a1f5e36679 +size 1694777 diff --git a/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/train_20260420_051859.log b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/train_20260420_051859.log new file mode 100644 index 0000000000000000000000000000000000000000..2e925a9412a361c3a6f8a4d11ed9b15bc6870976 --- /dev/null +++ b/syntheticSuccess/m12/bayesnet/bayesnet-m12-20260420_035322/train_20260420_051859.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa11b18dea436b5f10c982ff02c9729fd0254aa7bf4cb3483aab51f00b3cc9b7 +size 1271 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/_ctgan_generate.py b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..182abd863db74781eaeaa143ba8c148dbba9f643 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/_ctgan_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN +model = CTGAN.load("/work/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/ctgan_300epochs.pt") +total = 95512 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +sampled = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +sampled.to_csv("/work/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/ctgan-m12-95512-20260422_063641.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/ctgan-m12-95512-20260422_063641.csv") \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan-m12-95512-20260422_063641.csv b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan-m12-95512-20260422_063641.csv new file mode 100644 index 0000000000000000000000000000000000000000..906a2c29ab3934c43be0c3580dd06460c3cc90f1 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan-m12-95512-20260422_063641.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629ffbcf3135f06b0c08662302cb37026a19293bd624e10ea5ae4cf2f6c9ce0e +size 19339101 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan_metadata.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..15abefec626fa7cf1da9be5c202fb549aeb78a4f --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan_metadata.json @@ -0,0 +1,132 @@ +{ + "columns": [ + { + "name": "hotel", + "type": "categorical" + }, + { + "name": "is_canceled", + "type": "categorical" + }, + { + "name": "lead_time", + "type": "continuous" + }, + { + "name": "arrival_date_year", + "type": "continuous" + }, + { + "name": "arrival_date_month", + "type": "categorical" + }, + { + "name": "arrival_date_week_number", + "type": "continuous" + }, + { + "name": "arrival_date_day_of_month", + "type": "continuous" + }, + { + "name": "stays_in_weekend_nights", + "type": "continuous" + }, + { + "name": "stays_in_week_nights", + "type": "continuous" + }, + { + "name": "adults", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "babies", + "type": "categorical" + }, + { + "name": "meal", + "type": "categorical" + }, + { + "name": "country", + "type": "categorical" + }, + { + "name": "market_segment", + "type": "categorical" + }, + { + "name": "distribution_channel", + "type": "categorical" + }, + { + "name": "is_repeated_guest", + "type": "categorical" + }, + { + "name": "previous_cancellations", + "type": "categorical" + }, + { + "name": "previous_bookings_not_canceled", + "type": "categorical" + }, + { + "name": "reserved_room_type", + "type": "categorical" + }, + { + "name": "assigned_room_type", + "type": "categorical" + }, + { + "name": "booking_changes", + "type": "continuous" + }, + { + "name": "deposit_type", + "type": "categorical" + }, + { + "name": "agent", + "type": "continuous" + }, + { + "name": "company", + "type": "continuous" + }, + { + "name": "days_in_waiting_list", + "type": "continuous" + }, + { + "name": "customer_type", + "type": "categorical" + }, + { + "name": "adr", + "type": "continuous" + }, + { + "name": "required_car_parking_spaces", + "type": "categorical" + }, + { + "name": "total_of_special_requests", + "type": "continuous" + }, + { + "name": "reservation_status", + "type": "categorical" + }, + { + "name": "reservation_status_date", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan_train_continuous_imputed.csv b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan_train_continuous_imputed.csv new file mode 100644 index 0000000000000000000000000000000000000000..4a6bcb2c49355ace5a58acbde759aa826723446b --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/ctgan_train_continuous_imputed.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b43b13837fa9a5fb3cf7a1df4e80c2325e80660d808c62b41f1ecfc1d282e2 +size 14051058 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/gen_20260422_063641.log b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/gen_20260422_063641.log new file mode 100644 index 0000000000000000000000000000000000000000..1b832c79dff609eaaa512ee8511f67fcd5a76f38 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/gen_20260422_063641.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecbcfd51c8dd7bfdd16616d38c0f2431d0c7532d827e3223adcd4a9530828928 +size 297 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/input_snapshot.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9a8f318756ad3b758d55527a5f9a1fb0415b04a3 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m12", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "exists": true, + "size": 13165359, + "sha256": "38507849456d473e77f70bde2e03dd69c9694d3640debeb0e1dd3a99b251862e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "exists": true, + "size": 1646795, + "sha256": "7efe1eb3cfa68fbb779e8cb8490109c774b8241e5896a77d083544f04ccf6c66" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv", + "exists": true, + "size": 1646190, + "sha256": "77c539bda6d6db356a6f1eb5d8344449f25d36b5309fa660bec41d855e49cefc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_profile.json", + "exists": true, + "size": 12659, + "sha256": "d8c17ef1f421dc55e8669ecc08ba8b3d6cbb007f953b59ef6014af322c187cc3" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_contract_v1.json", + "exists": true, + "size": 15493, + "sha256": "439a5ec1e598498ffc934040b6975f626db2990104def7a6095d2100f5a974ff" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/ctgan_300epochs.pt b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..b394a82fb2a36b67e8d3cfa34189856a3849289a --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a1f4b91c94c401c16dfc60766bb97cd0f5f0c9e41b71dab02e2c85fdaa3aeb +size 29824995 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/train_20260422_031308.log b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/train_20260422_031308.log new file mode 100644 index 0000000000000000000000000000000000000000..8ca65fe011b6534a96e298b0eaacb07ff4f4ac03 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/train_20260422_031308.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15171f90e2dba20e6207a147fd80544143c8c9e85ad3d7fdb24ffc3a1104192 +size 5322 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..13970fcc2a09d39cc1add97c9eb4654cee58f612 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,670 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "columns": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/public_gate_report.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3bf58f493bcfc411bffebeec97fba57674499b --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m12", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "customer_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/staged_input_manifest.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..00eaae280cc2e124cef6018d1e84ab60d6a7a797 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/public_gate/staged_input_manifest.json @@ -0,0 +1,675 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/runtime_result.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c60d79e483a8f209038048702422061503c49b6a --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m12", + "model": "ctgan", + "run_id": "ctgan-m12-20260422_031259", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/ctgan-m12-95512-20260422_063641.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/adapter_report.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5f132f7130165df2eca9a1e138d346ea11997ee8 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/adapter_transforms_applied.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/model_input_manifest.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3f4d9ea8855f3c1169d57e0f10bda498666b2ac9 --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/ctgan/model_input_manifest.json @@ -0,0 +1,677 @@ +{ + "dataset_id": "m12", + "model": "ctgan", + "target_column": "customer_type", + "task_type": "classification", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/ctgan/ctgan-m12-20260422_031259/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/staged_features.json b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a6df78b1e7df37d82c9f69413e26d4ae848a3c --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/staged_features.json @@ -0,0 +1,162 @@ +[ + { + "feature_name": "hotel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "lead_time", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_year", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "arrival_date_week_number", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_day_of_month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_weekend_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_week_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "adults", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "babies", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "meal", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "market_segment", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "distribution_channel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_repeated_guest", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_cancellations", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_bookings_not_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "reserved_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "assigned_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "booking_changes", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "deposit_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "agent", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "company", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "days_in_waiting_list", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "customer_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "adr", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "required_car_parking_spaces", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "total_of_special_requests", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "reservation_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "reservation_status_date", + "data_type": "timestamp", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/test.csv b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..30c1b4b016bf3e7de99246eb0c12090a548eb9ff --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f493029a41815df91c3b28f521a2264951567318150110e5c27fa757ebc734 +size 1694120 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/train.csv b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb7c1b15cfae80b8f1256e5ab12043201bba9e7c --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2f868c246063628371ded60d767d155528ace18d424271c7271617a8ef4643 +size 13548268 diff --git a/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/val.csv b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..72af4a34a232e0bcfaf78244335bd139c3d0aa2a --- /dev/null +++ b/syntheticSuccess/m12/ctgan/ctgan-m12-20260422_031259/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce173da72624b2b531e2d913ada1d29b77c0926be15b8d83a75911a1f5e36679 +size 1694777 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/gen_20260331_054253.log b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/gen_20260331_054253.log new file mode 100644 index 0000000000000000000000000000000000000000..b86962798dd871ee654631c6e87907b8ceedc70a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/gen_20260331_054253.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f62271130b7f3c09bdf14b94deccfa281dd993974a5e373318fbf42152de96 +size 796 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/gen_20260418_132327.log b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/gen_20260418_132327.log new file mode 100644 index 0000000000000000000000000000000000000000..ea6378f24f0c201b0f3836e32af1098a7f2ccd40 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/gen_20260418_132327.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703c37ce76c1a84bd1a7d7051bf0dfef20f5cd412f6ec3c731e94fc025e8209e +size 50298 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/input_snapshot.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..18f43a5d06cf282eeb2d24b183bbacd6fb229b84 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m12", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "exists": true, + "size": 13165359, + "sha256": "38507849456d473e77f70bde2e03dd69c9694d3640debeb0e1dd3a99b251862e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "exists": true, + "size": 1646795, + "sha256": "7efe1eb3cfa68fbb779e8cb8490109c774b8241e5896a77d083544f04ccf6c66" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv", + "exists": true, + "size": 1646190, + "sha256": "77c539bda6d6db356a6f1eb5d8344449f25d36b5309fa660bec41d855e49cefc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_profile.json", + "exists": true, + "size": 12659, + "sha256": "d8c17ef1f421dc55e8669ecc08ba8b3d6cbb007f953b59ef6014af322c187cc3" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_contract_v1.json", + "exists": true, + "size": 15493, + "sha256": "439a5ec1e598498ffc934040b6975f626db2990104def7a6095d2100f5a974ff" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/models_100epochs/id000017749069688557215744/rtf_config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/models_100epochs/id000017749069688557215744/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..feb2bc8b1eb0524af04d730a983c03d60cd4b6b9 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/models_100epochs/id000017749069688557215744/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"add_cross_attention": false, "tie_word_embeddings": true, "vocab_size": 1534, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_first_dropout": 0.1, "summary_proj_to_labels": true, "scale_attn_weights": true, "use_cache": false, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "return_dict": true, "output_hidden_states": false, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "architectures": ["GPT2LMHeadModel"], "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "_name_or_path": "", "transformers_version": "5.0.0", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["hotel", "is_canceled", "lead_time", "arrival_date_year", "arrival_date_month", "arrival_date_week_number", "arrival_date_day_of_month", "stays_in_weekend_nights", "stays_in_week_nights", "adults", "children", "babies", "meal", "country", "market_segment", "distribution_channel", "is_repeated_guest", "previous_cancellations", "previous_bookings_not_canceled", "reserved_room_type", "assigned_room_type", "booking_changes", "deposit_type", "agent", "company", "days_in_waiting_list", "customer_type", "adr", "required_car_parking_spaces", "total_of_special_requests", "reservation_status", "reservation_status_date"], "column_dtypes": {"hotel": "object", "is_canceled": "object", "lead_time": "int64", "arrival_date_year": "int64", "arrival_date_month": "object", "arrival_date_week_number": "int64", "arrival_date_day_of_month": "int64", "stays_in_weekend_nights": "int64", "stays_in_week_nights": "int64", "adults": "int64", "children": "float64", "babies": "object", "meal": "object", "country": "object", "market_segment": "object", "distribution_channel": "object", "is_repeated_guest": "object", "previous_cancellations": "object", "previous_bookings_not_canceled": "object", "reserved_room_type": "object", "assigned_room_type": "object", "booking_changes": "int64", "deposit_type": "object", "agent": "float64", "company": "float64", "days_in_waiting_list": "int64", "customer_type": "object", "adr": "float64", "required_car_parking_spaces": "object", "total_of_special_requests": "int64", "reservation_status": "object", "reservation_status_date": "object"}, "column_has_missing": {"hotel": false, "is_canceled": false, "lead_time": false, "arrival_date_year": false, "arrival_date_month": false, "arrival_date_week_number": false, "arrival_date_day_of_month": false, "stays_in_weekend_nights": false, "stays_in_week_nights": false, "adults": false, "children": true, "babies": false, "meal": false, "country": true, "market_segment": false, "distribution_channel": false, "is_repeated_guest": false, "previous_cancellations": false, "previous_bookings_not_canceled": false, "reserved_room_type": false, "assigned_room_type": false, "booking_changes": false, "deposit_type": false, "agent": true, "company": true, "days_in_waiting_list": false, "customer_type": false, "adr": false, "required_car_parking_spaces": false, "total_of_special_requests": false, "reservation_status": false, "reservation_status_date": false}, "drop_na_cols": ["hotel", "is_canceled", "lead_time", "arrival_date_year", "arrival_date_month", "arrival_date_week_number", "arrival_date_day_of_month", "stays_in_weekend_nights", "stays_in_week_nights", "adults", "babies", "meal", "market_segment", "distribution_channel", "is_repeated_guest", "previous_cancellations", "previous_bookings_not_canceled", "reserved_room_type", "assigned_room_type", "booking_changes", "deposit_type", "days_in_waiting_list", "customer_type", "adr", "required_car_parking_spaces", "total_of_special_requests", "reservation_status", "reservation_status_date"], "processed_columns": ["00___CATEGORICAL___hotel", "01___CATEGORICAL___is_canceled", "02___NUMERIC___lead_time_00", "02___NUMERIC___lead_time_01", "02___NUMERIC___lead_time_02", "03___NUMERIC___arrival_date_year_00", "03___NUMERIC___arrival_date_year_01", "03___NUMERIC___arrival_date_year_02", "03___NUMERIC___arrival_date_year_03", "04___CATEGORICAL___arrival_date_month", "05___NUMERIC___arrival_date_week_number_00", "05___NUMERIC___arrival_date_week_number_01", "06___NUMERIC___arrival_date_day_of_month_00", "06___NUMERIC___arrival_date_day_of_month_01", "07___NUMERIC___stays_in_weekend_nights_00", "07___NUMERIC___stays_in_weekend_nights_01", "08___NUMERIC___stays_in_week_nights_00", "08___NUMERIC___stays_in_week_nights_01", "09___NUMERIC___adults_00", "09___NUMERIC___adults_01", "10___NUMERIC___children_00", "10___NUMERIC___children_01", "10___NUMERIC___children_02", "10___NUMERIC___children_03", "11___CATEGORICAL___babies", "12___CATEGORICAL___meal", "13___CATEGORICAL___country", "14___CATEGORICAL___market_segment", "15___CATEGORICAL___distribution_channel", "16___CATEGORICAL___is_repeated_guest", "17___CATEGORICAL___previous_cancellations", "18___CATEGORICAL___previous_bookings_not_canceled", "19___CATEGORICAL___reserved_room_type", "20___CATEGORICAL___assigned_room_type", "21___NUMERIC___booking_changes_00", "21___NUMERIC___booking_changes_01", "22___CATEGORICAL___deposit_type", "23___NUMERIC___agent_00", "23___NUMERIC___agent_01", "23___NUMERIC___agent_02", "23___NUMERIC___agent_03", "24___NUMERIC___company_00", "24___NUMERIC___company_01", "24___NUMERIC___company_02", "24___NUMERIC___company_03", "25___NUMERIC___days_in_waiting_list_00", "25___NUMERIC___days_in_waiting_list_01", "25___NUMERIC___days_in_waiting_list_02", "26___CATEGORICAL___customer_type", "27___NUMERIC___adr_00", "27___NUMERIC___adr_01", "27___NUMERIC___adr_02", "27___NUMERIC___adr_03", "27___NUMERIC___adr_04", "27___NUMERIC___adr_05", "27___NUMERIC___adr_06", "28___CATEGORICAL___required_car_parking_spaces", "29___NUMERIC___total_of_special_requests_00", "30___CATEGORICAL___reservation_status", "31___CATEGORICAL___reservation_status_date"], "numeric_columns": ["lead_time", "arrival_date_year", "arrival_date_week_number", "arrival_date_day_of_month", "stays_in_weekend_nights", "stays_in_week_nights", "adults", "children", "booking_changes", "agent", "company", "days_in_waiting_list", "adr", "total_of_special_requests"], "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___CATEGORICAL___hotel___City Hotel", "12": "00___CATEGORICAL___hotel___Resort Hotel", "13": "01___CATEGORICAL___is_canceled___0", "14": "01___CATEGORICAL___is_canceled___1", "15": "02___NUMERIC___lead_time_00___0", "16": "02___NUMERIC___lead_time_00___1", "17": "02___NUMERIC___lead_time_00___2", "18": "02___NUMERIC___lead_time_00___3", "19": "02___NUMERIC___lead_time_00___4", "20": "02___NUMERIC___lead_time_00___5", "21": "02___NUMERIC___lead_time_00___6", "22": "02___NUMERIC___lead_time_00___7", "23": "02___NUMERIC___lead_time_01___0", "24": "02___NUMERIC___lead_time_01___1", "25": "02___NUMERIC___lead_time_01___2", "26": "02___NUMERIC___lead_time_01___3", "27": "02___NUMERIC___lead_time_01___4", "28": "02___NUMERIC___lead_time_01___5", "29": "02___NUMERIC___lead_time_01___6", "30": "02___NUMERIC___lead_time_01___7", "31": "02___NUMERIC___lead_time_01___8", "32": "02___NUMERIC___lead_time_01___9", "33": "02___NUMERIC___lead_time_02___0", "34": "02___NUMERIC___lead_time_02___1", "35": "02___NUMERIC___lead_time_02___2", "36": "02___NUMERIC___lead_time_02___3", "37": "02___NUMERIC___lead_time_02___4", "38": "02___NUMERIC___lead_time_02___5", "39": "02___NUMERIC___lead_time_02___6", "40": "02___NUMERIC___lead_time_02___7", "41": "02___NUMERIC___lead_time_02___8", "42": "02___NUMERIC___lead_time_02___9", "43": "03___NUMERIC___arrival_date_year_00___2", "44": "03___NUMERIC___arrival_date_year_01___0", "45": "03___NUMERIC___arrival_date_year_02___1", "46": "03___NUMERIC___arrival_date_year_03___5", "47": "03___NUMERIC___arrival_date_year_03___6", "48": "03___NUMERIC___arrival_date_year_03___7", "49": "04___CATEGORICAL___arrival_date_month___April", "50": "04___CATEGORICAL___arrival_date_month___August", "51": "04___CATEGORICAL___arrival_date_month___December", "52": "04___CATEGORICAL___arrival_date_month___February", "53": "04___CATEGORICAL___arrival_date_month___January", "54": "04___CATEGORICAL___arrival_date_month___July", "55": "04___CATEGORICAL___arrival_date_month___June", "56": "04___CATEGORICAL___arrival_date_month___March", "57": "04___CATEGORICAL___arrival_date_month___May", "58": "04___CATEGORICAL___arrival_date_month___November", "59": "04___CATEGORICAL___arrival_date_month___October", "60": "04___CATEGORICAL___arrival_date_month___September", "61": "05___NUMERIC___arrival_date_week_number_00___0", "62": "05___NUMERIC___arrival_date_week_number_00___1", "63": "05___NUMERIC___arrival_date_week_number_00___2", "64": "05___NUMERIC___arrival_date_week_number_00___3", "65": "05___NUMERIC___arrival_date_week_number_00___4", "66": "05___NUMERIC___arrival_date_week_number_00___5", "67": "05___NUMERIC___arrival_date_week_number_01___0", "68": "05___NUMERIC___arrival_date_week_number_01___1", "69": "05___NUMERIC___arrival_date_week_number_01___2", "70": "05___NUMERIC___arrival_date_week_number_01___3", "71": "05___NUMERIC___arrival_date_week_number_01___4", "72": "05___NUMERIC___arrival_date_week_number_01___5", "73": "05___NUMERIC___arrival_date_week_number_01___6", "74": "05___NUMERIC___arrival_date_week_number_01___7", "75": "05___NUMERIC___arrival_date_week_number_01___8", "76": "05___NUMERIC___arrival_date_week_number_01___9", "77": "06___NUMERIC___arrival_date_day_of_month_00___0", "78": "06___NUMERIC___arrival_date_day_of_month_00___1", "79": "06___NUMERIC___arrival_date_day_of_month_00___2", "80": "06___NUMERIC___arrival_date_day_of_month_00___3", "81": "06___NUMERIC___arrival_date_day_of_month_01___0", "82": "06___NUMERIC___arrival_date_day_of_month_01___1", "83": "06___NUMERIC___arrival_date_day_of_month_01___2", "84": "06___NUMERIC___arrival_date_day_of_month_01___3", "85": "06___NUMERIC___arrival_date_day_of_month_01___4", "86": "06___NUMERIC___arrival_date_day_of_month_01___5", "87": "06___NUMERIC___arrival_date_day_of_month_01___6", "88": "06___NUMERIC___arrival_date_day_of_month_01___7", "89": "06___NUMERIC___arrival_date_day_of_month_01___8", "90": "06___NUMERIC___arrival_date_day_of_month_01___9", "91": "07___NUMERIC___stays_in_weekend_nights_00___0", "92": "07___NUMERIC___stays_in_weekend_nights_00___1", "93": "07___NUMERIC___stays_in_weekend_nights_01___0", "94": "07___NUMERIC___stays_in_weekend_nights_01___1", "95": "07___NUMERIC___stays_in_weekend_nights_01___2", "96": "07___NUMERIC___stays_in_weekend_nights_01___3", "97": "07___NUMERIC___stays_in_weekend_nights_01___4", "98": "07___NUMERIC___stays_in_weekend_nights_01___5", "99": "07___NUMERIC___stays_in_weekend_nights_01___6", "100": "07___NUMERIC___stays_in_weekend_nights_01___7", "101": "07___NUMERIC___stays_in_weekend_nights_01___8", "102": "07___NUMERIC___stays_in_weekend_nights_01___9", "103": "08___NUMERIC___stays_in_week_nights_00___0", "104": "08___NUMERIC___stays_in_week_nights_00___1", "105": "08___NUMERIC___stays_in_week_nights_00___2", "106": "08___NUMERIC___stays_in_week_nights_00___3", "107": "08___NUMERIC___stays_in_week_nights_00___4", "108": "08___NUMERIC___stays_in_week_nights_00___5", "109": "08___NUMERIC___stays_in_week_nights_01___0", "110": "08___NUMERIC___stays_in_week_nights_01___1", "111": "08___NUMERIC___stays_in_week_nights_01___2", "112": "08___NUMERIC___stays_in_week_nights_01___3", "113": "08___NUMERIC___stays_in_week_nights_01___4", "114": "08___NUMERIC___stays_in_week_nights_01___5", "115": "08___NUMERIC___stays_in_week_nights_01___6", "116": "08___NUMERIC___stays_in_week_nights_01___7", "117": "08___NUMERIC___stays_in_week_nights_01___8", "118": "08___NUMERIC___stays_in_week_nights_01___9", "119": "09___NUMERIC___adults_00___0", "120": "09___NUMERIC___adults_00___1", "121": "09___NUMERIC___adults_00___2", "122": "09___NUMERIC___adults_00___4", "123": "09___NUMERIC___adults_00___5", "124": "09___NUMERIC___adults_01___0", "125": "09___NUMERIC___adults_01___1", "126": "09___NUMERIC___adults_01___2", "127": "09___NUMERIC___adults_01___3", "128": "09___NUMERIC___adults_01___4", "129": "09___NUMERIC___adults_01___5", "130": "09___NUMERIC___adults_01___6", "131": "09___NUMERIC___adults_01___7", "132": "10___NUMERIC___children_00___0", "133": "10___NUMERIC___children_00___@", "134": "10___NUMERIC___children_01___0", "135": "10___NUMERIC___children_01___@", "136": "10___NUMERIC___children_02___0", "137": "10___NUMERIC___children_02___1", "138": "10___NUMERIC___children_02___@", "139": "10___NUMERIC___children_03___0", "140": "10___NUMERIC___children_03___1", "141": "10___NUMERIC___children_03___2", "142": "10___NUMERIC___children_03___3", "143": "10___NUMERIC___children_03___@", "144": "11___CATEGORICAL___babies___0", "145": "11___CATEGORICAL___babies___1", "146": "11___CATEGORICAL___babies___10", "147": "11___CATEGORICAL___babies___2", "148": "12___CATEGORICAL___meal___BB", "149": "12___CATEGORICAL___meal___FB", "150": "12___CATEGORICAL___meal___HB", "151": "12___CATEGORICAL___meal___SC", "152": "12___CATEGORICAL___meal___Undefined", "153": "13___CATEGORICAL___country___", "154": "13___CATEGORICAL___country___ABW", "155": "13___CATEGORICAL___country___AGO", "156": "13___CATEGORICAL___country___AIA", "157": "13___CATEGORICAL___country___ALB", "158": "13___CATEGORICAL___country___AND", "159": "13___CATEGORICAL___country___ARE", "160": "13___CATEGORICAL___country___ARG", "161": "13___CATEGORICAL___country___ARM", "162": "13___CATEGORICAL___country___ASM", "163": "13___CATEGORICAL___country___ATA", "164": "13___CATEGORICAL___country___ATF", "165": "13___CATEGORICAL___country___AUS", "166": "13___CATEGORICAL___country___AUT", "167": "13___CATEGORICAL___country___AZE", "168": "13___CATEGORICAL___country___BDI", "169": "13___CATEGORICAL___country___BEL", "170": "13___CATEGORICAL___country___BEN", "171": "13___CATEGORICAL___country___BGD", "172": "13___CATEGORICAL___country___BGR", "173": "13___CATEGORICAL___country___BHR", "174": "13___CATEGORICAL___country___BHS", "175": "13___CATEGORICAL___country___BIH", "176": "13___CATEGORICAL___country___BLR", "177": "13___CATEGORICAL___country___BOL", "178": "13___CATEGORICAL___country___BRA", "179": "13___CATEGORICAL___country___BRB", "180": "13___CATEGORICAL___country___BWA", "181": "13___CATEGORICAL___country___CAF", "182": "13___CATEGORICAL___country___CHE", "183": "13___CATEGORICAL___country___CHL", "184": "13___CATEGORICAL___country___CHN", "185": "13___CATEGORICAL___country___CIV", "186": "13___CATEGORICAL___country___CMR", "187": "13___CATEGORICAL___country___CN", "188": "13___CATEGORICAL___country___COL", "189": "13___CATEGORICAL___country___COM", "190": "13___CATEGORICAL___country___CPV", "191": "13___CATEGORICAL___country___CRI", "192": "13___CATEGORICAL___country___CUB", "193": "13___CATEGORICAL___country___CYM", "194": "13___CATEGORICAL___country___CYP", "195": "13___CATEGORICAL___country___CZE", "196": "13___CATEGORICAL___country___DEU", "197": "13___CATEGORICAL___country___DJI", "198": "13___CATEGORICAL___country___DMA", "199": "13___CATEGORICAL___country___DNK", "200": "13___CATEGORICAL___country___DOM", "201": "13___CATEGORICAL___country___DZA", "202": "13___CATEGORICAL___country___ECU", "203": "13___CATEGORICAL___country___EGY", "204": "13___CATEGORICAL___country___ESP", "205": "13___CATEGORICAL___country___EST", "206": "13___CATEGORICAL___country___ETH", "207": "13___CATEGORICAL___country___FIN", "208": "13___CATEGORICAL___country___FJI", "209": "13___CATEGORICAL___country___FRA", "210": "13___CATEGORICAL___country___FRO", "211": "13___CATEGORICAL___country___GAB", "212": "13___CATEGORICAL___country___GBR", "213": "13___CATEGORICAL___country___GEO", "214": "13___CATEGORICAL___country___GGY", "215": "13___CATEGORICAL___country___GHA", "216": "13___CATEGORICAL___country___GIB", "217": "13___CATEGORICAL___country___GLP", "218": "13___CATEGORICAL___country___GNB", "219": "13___CATEGORICAL___country___GRC", "220": "13___CATEGORICAL___country___GTM", "221": "13___CATEGORICAL___country___GUY", "222": "13___CATEGORICAL___country___HKG", "223": "13___CATEGORICAL___country___HND", "224": "13___CATEGORICAL___country___HRV", "225": "13___CATEGORICAL___country___HUN", "226": "13___CATEGORICAL___country___IDN", "227": "13___CATEGORICAL___country___IMN", "228": "13___CATEGORICAL___country___IND", "229": "13___CATEGORICAL___country___IRL", "230": "13___CATEGORICAL___country___IRN", "231": "13___CATEGORICAL___country___IRQ", "232": "13___CATEGORICAL___country___ISL", "233": "13___CATEGORICAL___country___ISR", "234": "13___CATEGORICAL___country___ITA", "235": "13___CATEGORICAL___country___JAM", "236": "13___CATEGORICAL___country___JEY", "237": "13___CATEGORICAL___country___JOR", "238": "13___CATEGORICAL___country___JPN", "239": "13___CATEGORICAL___country___KAZ", "240": "13___CATEGORICAL___country___KEN", "241": "13___CATEGORICAL___country___KHM", "242": "13___CATEGORICAL___country___KIR", "243": "13___CATEGORICAL___country___KNA", "244": "13___CATEGORICAL___country___KOR", "245": "13___CATEGORICAL___country___KWT", "246": "13___CATEGORICAL___country___LAO", "247": "13___CATEGORICAL___country___LBN", "248": "13___CATEGORICAL___country___LBY", "249": "13___CATEGORICAL___country___LCA", "250": "13___CATEGORICAL___country___LIE", "251": "13___CATEGORICAL___country___LKA", "252": "13___CATEGORICAL___country___LTU", "253": "13___CATEGORICAL___country___LUX", "254": "13___CATEGORICAL___country___LVA", "255": "13___CATEGORICAL___country___MAC", "256": "13___CATEGORICAL___country___MAR", "257": "13___CATEGORICAL___country___MCO", "258": "13___CATEGORICAL___country___MDG", "259": "13___CATEGORICAL___country___MDV", "260": "13___CATEGORICAL___country___MEX", "261": "13___CATEGORICAL___country___MKD", "262": "13___CATEGORICAL___country___MLI", "263": "13___CATEGORICAL___country___MLT", "264": "13___CATEGORICAL___country___MMR", "265": "13___CATEGORICAL___country___MNE", "266": "13___CATEGORICAL___country___MOZ", "267": "13___CATEGORICAL___country___MRT", "268": "13___CATEGORICAL___country___MUS", "269": "13___CATEGORICAL___country___MWI", "270": "13___CATEGORICAL___country___MYS", "271": "13___CATEGORICAL___country___MYT", "272": "13___CATEGORICAL___country___NAM", "273": "13___CATEGORICAL___country___NCL", "274": "13___CATEGORICAL___country___NGA", "275": "13___CATEGORICAL___country___NIC", "276": "13___CATEGORICAL___country___NLD", "277": "13___CATEGORICAL___country___NOR", "278": "13___CATEGORICAL___country___NPL", "279": "13___CATEGORICAL___country___NZL", "280": "13___CATEGORICAL___country___OMN", "281": "13___CATEGORICAL___country___PAK", "282": "13___CATEGORICAL___country___PAN", "283": "13___CATEGORICAL___country___PER", "284": "13___CATEGORICAL___country___PHL", "285": "13___CATEGORICAL___country___POL", "286": "13___CATEGORICAL___country___PRI", "287": "13___CATEGORICAL___country___PRT", "288": "13___CATEGORICAL___country___PRY", "289": "13___CATEGORICAL___country___PYF", "290": "13___CATEGORICAL___country___QAT", "291": "13___CATEGORICAL___country___ROU", "292": "13___CATEGORICAL___country___RUS", "293": "13___CATEGORICAL___country___RWA", "294": "13___CATEGORICAL___country___SAU", "295": "13___CATEGORICAL___country___SDN", "296": "13___CATEGORICAL___country___SEN", "297": "13___CATEGORICAL___country___SGP", "298": "13___CATEGORICAL___country___SLE", "299": "13___CATEGORICAL___country___SLV", "300": "13___CATEGORICAL___country___SMR", "301": "13___CATEGORICAL___country___SRB", "302": "13___CATEGORICAL___country___STP", "303": "13___CATEGORICAL___country___SUR", "304": "13___CATEGORICAL___country___SVK", "305": "13___CATEGORICAL___country___SVN", "306": "13___CATEGORICAL___country___SWE", "307": "13___CATEGORICAL___country___SYC", "308": "13___CATEGORICAL___country___SYR", "309": "13___CATEGORICAL___country___TGO", "310": "13___CATEGORICAL___country___THA", "311": "13___CATEGORICAL___country___TJK", "312": "13___CATEGORICAL___country___TMP", "313": "13___CATEGORICAL___country___TUN", "314": "13___CATEGORICAL___country___TUR", "315": "13___CATEGORICAL___country___TWN", "316": "13___CATEGORICAL___country___TZA", "317": "13___CATEGORICAL___country___UGA", "318": "13___CATEGORICAL___country___UKR", "319": "13___CATEGORICAL___country___UMI", "320": "13___CATEGORICAL___country___URY", "321": "13___CATEGORICAL___country___USA", "322": "13___CATEGORICAL___country___UZB", "323": "13___CATEGORICAL___country___VEN", "324": "13___CATEGORICAL___country___VGB", "325": "13___CATEGORICAL___country___VNM", "326": "13___CATEGORICAL___country___ZAF", "327": "13___CATEGORICAL___country___ZMB", "328": "13___CATEGORICAL___country___ZWE", "329": "14___CATEGORICAL___market_segment___Aviation", "330": "14___CATEGORICAL___market_segment___Complementary", "331": "14___CATEGORICAL___market_segment___Corporate", "332": "14___CATEGORICAL___market_segment___Direct", "333": "14___CATEGORICAL___market_segment___Groups", "334": "14___CATEGORICAL___market_segment___Offline TA/TO", "335": "14___CATEGORICAL___market_segment___Online TA", "336": "15___CATEGORICAL___distribution_channel___Corporate", "337": "15___CATEGORICAL___distribution_channel___Direct", "338": "15___CATEGORICAL___distribution_channel___GDS", "339": "15___CATEGORICAL___distribution_channel___TA/TO", "340": "15___CATEGORICAL___distribution_channel___Undefined", "341": "16___CATEGORICAL___is_repeated_guest___0", "342": "16___CATEGORICAL___is_repeated_guest___1", "343": "17___CATEGORICAL___previous_cancellations___0", "344": "17___CATEGORICAL___previous_cancellations___1", "345": "17___CATEGORICAL___previous_cancellations___11", "346": "17___CATEGORICAL___previous_cancellations___13", "347": "17___CATEGORICAL___previous_cancellations___14", "348": "17___CATEGORICAL___previous_cancellations___19", "349": "17___CATEGORICAL___previous_cancellations___2", "350": "17___CATEGORICAL___previous_cancellations___21", "351": "17___CATEGORICAL___previous_cancellations___24", "352": "17___CATEGORICAL___previous_cancellations___25", "353": "17___CATEGORICAL___previous_cancellations___26", "354": "17___CATEGORICAL___previous_cancellations___3", "355": "17___CATEGORICAL___previous_cancellations___4", "356": "17___CATEGORICAL___previous_cancellations___5", "357": "17___CATEGORICAL___previous_cancellations___6", "358": "18___CATEGORICAL___previous_bookings_not_canceled___0", "359": "18___CATEGORICAL___previous_bookings_not_canceled___1", "360": "18___CATEGORICAL___previous_bookings_not_canceled___10", "361": "18___CATEGORICAL___previous_bookings_not_canceled___11", "362": "18___CATEGORICAL___previous_bookings_not_canceled___12", "363": "18___CATEGORICAL___previous_bookings_not_canceled___13", "364": "18___CATEGORICAL___previous_bookings_not_canceled___14", "365": "18___CATEGORICAL___previous_bookings_not_canceled___15", "366": "18___CATEGORICAL___previous_bookings_not_canceled___16", "367": "18___CATEGORICAL___previous_bookings_not_canceled___17", "368": "18___CATEGORICAL___previous_bookings_not_canceled___18", "369": "18___CATEGORICAL___previous_bookings_not_canceled___19", "370": "18___CATEGORICAL___previous_bookings_not_canceled___2", "371": "18___CATEGORICAL___previous_bookings_not_canceled___20", "372": "18___CATEGORICAL___previous_bookings_not_canceled___21", "373": "18___CATEGORICAL___previous_bookings_not_canceled___22", "374": "18___CATEGORICAL___previous_bookings_not_canceled___23", "375": "18___CATEGORICAL___previous_bookings_not_canceled___24", "376": "18___CATEGORICAL___previous_bookings_not_canceled___25", "377": "18___CATEGORICAL___previous_bookings_not_canceled___26", "378": "18___CATEGORICAL___previous_bookings_not_canceled___27", "379": "18___CATEGORICAL___previous_bookings_not_canceled___28", "380": "18___CATEGORICAL___previous_bookings_not_canceled___29", "381": "18___CATEGORICAL___previous_bookings_not_canceled___3", "382": "18___CATEGORICAL___previous_bookings_not_canceled___30", "383": "18___CATEGORICAL___previous_bookings_not_canceled___31", "384": "18___CATEGORICAL___previous_bookings_not_canceled___32", "385": "18___CATEGORICAL___previous_bookings_not_canceled___34", "386": "18___CATEGORICAL___previous_bookings_not_canceled___35", "387": "18___CATEGORICAL___previous_bookings_not_canceled___37", "388": "18___CATEGORICAL___previous_bookings_not_canceled___38", "389": "18___CATEGORICAL___previous_bookings_not_canceled___39", "390": "18___CATEGORICAL___previous_bookings_not_canceled___4", "391": "18___CATEGORICAL___previous_bookings_not_canceled___40", "392": "18___CATEGORICAL___previous_bookings_not_canceled___42", "393": "18___CATEGORICAL___previous_bookings_not_canceled___43", "394": "18___CATEGORICAL___previous_bookings_not_canceled___44", "395": "18___CATEGORICAL___previous_bookings_not_canceled___45", "396": "18___CATEGORICAL___previous_bookings_not_canceled___46", "397": "18___CATEGORICAL___previous_bookings_not_canceled___48", "398": "18___CATEGORICAL___previous_bookings_not_canceled___49", "399": "18___CATEGORICAL___previous_bookings_not_canceled___5", "400": "18___CATEGORICAL___previous_bookings_not_canceled___50", "401": "18___CATEGORICAL___previous_bookings_not_canceled___51", "402": "18___CATEGORICAL___previous_bookings_not_canceled___52", "403": "18___CATEGORICAL___previous_bookings_not_canceled___53", "404": "18___CATEGORICAL___previous_bookings_not_canceled___54", "405": "18___CATEGORICAL___previous_bookings_not_canceled___55", "406": "18___CATEGORICAL___previous_bookings_not_canceled___56", "407": "18___CATEGORICAL___previous_bookings_not_canceled___57", "408": "18___CATEGORICAL___previous_bookings_not_canceled___58", "409": "18___CATEGORICAL___previous_bookings_not_canceled___59", "410": "18___CATEGORICAL___previous_bookings_not_canceled___6", "411": "18___CATEGORICAL___previous_bookings_not_canceled___60", "412": "18___CATEGORICAL___previous_bookings_not_canceled___62", "413": "18___CATEGORICAL___previous_bookings_not_canceled___63", "414": "18___CATEGORICAL___previous_bookings_not_canceled___64", "415": "18___CATEGORICAL___previous_bookings_not_canceled___67", "416": "18___CATEGORICAL___previous_bookings_not_canceled___68", "417": "18___CATEGORICAL___previous_bookings_not_canceled___69", "418": "18___CATEGORICAL___previous_bookings_not_canceled___7", "419": "18___CATEGORICAL___previous_bookings_not_canceled___70", "420": "18___CATEGORICAL___previous_bookings_not_canceled___71", "421": "18___CATEGORICAL___previous_bookings_not_canceled___72", "422": "18___CATEGORICAL___previous_bookings_not_canceled___8", "423": "18___CATEGORICAL___previous_bookings_not_canceled___9", "424": "19___CATEGORICAL___reserved_room_type___A", "425": "19___CATEGORICAL___reserved_room_type___B", "426": "19___CATEGORICAL___reserved_room_type___C", "427": "19___CATEGORICAL___reserved_room_type___D", "428": "19___CATEGORICAL___reserved_room_type___E", "429": "19___CATEGORICAL___reserved_room_type___F", "430": "19___CATEGORICAL___reserved_room_type___G", "431": "19___CATEGORICAL___reserved_room_type___H", "432": "19___CATEGORICAL___reserved_room_type___L", "433": "19___CATEGORICAL___reserved_room_type___P", "434": "20___CATEGORICAL___assigned_room_type___A", "435": "20___CATEGORICAL___assigned_room_type___B", "436": "20___CATEGORICAL___assigned_room_type___C", "437": "20___CATEGORICAL___assigned_room_type___D", "438": "20___CATEGORICAL___assigned_room_type___E", "439": "20___CATEGORICAL___assigned_room_type___F", "440": "20___CATEGORICAL___assigned_room_type___G", "441": "20___CATEGORICAL___assigned_room_type___H", "442": "20___CATEGORICAL___assigned_room_type___I", "443": "20___CATEGORICAL___assigned_room_type___K", "444": "20___CATEGORICAL___assigned_room_type___L", "445": "20___CATEGORICAL___assigned_room_type___P", "446": "21___NUMERIC___booking_changes_00___0", "447": "21___NUMERIC___booking_changes_00___1", "448": "21___NUMERIC___booking_changes_00___2", "449": "21___NUMERIC___booking_changes_01___0", "450": "21___NUMERIC___booking_changes_01___1", "451": "21___NUMERIC___booking_changes_01___2", "452": "21___NUMERIC___booking_changes_01___3", "453": "21___NUMERIC___booking_changes_01___4", "454": "21___NUMERIC___booking_changes_01___5", "455": "21___NUMERIC___booking_changes_01___6", "456": "21___NUMERIC___booking_changes_01___7", "457": "21___NUMERIC___booking_changes_01___8", "458": "21___NUMERIC___booking_changes_01___9", "459": "22___CATEGORICAL___deposit_type___No Deposit", "460": "22___CATEGORICAL___deposit_type___Non Refund", "461": "22___CATEGORICAL___deposit_type___Refundable", "462": "23___NUMERIC___agent_00___0", "463": "23___NUMERIC___agent_00___@", "464": "23___NUMERIC___agent_01___0", "465": "23___NUMERIC___agent_01___1", "466": "23___NUMERIC___agent_01___2", "467": "23___NUMERIC___agent_01___3", "468": "23___NUMERIC___agent_01___4", "469": "23___NUMERIC___agent_01___5", "470": "23___NUMERIC___agent_01___@", "471": "23___NUMERIC___agent_02___0", "472": "23___NUMERIC___agent_02___1", "473": "23___NUMERIC___agent_02___2", "474": "23___NUMERIC___agent_02___3", "475": "23___NUMERIC___agent_02___4", "476": "23___NUMERIC___agent_02___5", "477": "23___NUMERIC___agent_02___6", "478": "23___NUMERIC___agent_02___7", "479": "23___NUMERIC___agent_02___8", "480": "23___NUMERIC___agent_02___9", "481": "23___NUMERIC___agent_02___@", "482": "23___NUMERIC___agent_03___0", "483": "23___NUMERIC___agent_03___1", "484": "23___NUMERIC___agent_03___2", "485": "23___NUMERIC___agent_03___3", "486": "23___NUMERIC___agent_03___4", "487": "23___NUMERIC___agent_03___5", "488": "23___NUMERIC___agent_03___6", "489": "23___NUMERIC___agent_03___7", "490": "23___NUMERIC___agent_03___8", "491": "23___NUMERIC___agent_03___9", "492": "23___NUMERIC___agent_03___@", "493": "24___NUMERIC___company_00___0", "494": "24___NUMERIC___company_00___@", "495": "24___NUMERIC___company_01___0", "496": "24___NUMERIC___company_01___1", "497": "24___NUMERIC___company_01___2", "498": "24___NUMERIC___company_01___3", "499": "24___NUMERIC___company_01___4", "500": "24___NUMERIC___company_01___5", "501": "24___NUMERIC___company_01___@", "502": "24___NUMERIC___company_02___0", "503": "24___NUMERIC___company_02___1", "504": "24___NUMERIC___company_02___2", "505": "24___NUMERIC___company_02___3", "506": "24___NUMERIC___company_02___4", "507": "24___NUMERIC___company_02___5", "508": "24___NUMERIC___company_02___6", "509": "24___NUMERIC___company_02___7", "510": "24___NUMERIC___company_02___8", "511": "24___NUMERIC___company_02___9", "512": "24___NUMERIC___company_02___@", "513": "24___NUMERIC___company_03___0", "514": "24___NUMERIC___company_03___1", "515": "24___NUMERIC___company_03___2", "516": "24___NUMERIC___company_03___3", "517": "24___NUMERIC___company_03___4", "518": "24___NUMERIC___company_03___5", "519": "24___NUMERIC___company_03___6", "520": "24___NUMERIC___company_03___7", "521": "24___NUMERIC___company_03___8", "522": "24___NUMERIC___company_03___9", "523": "24___NUMERIC___company_03___@", "524": "25___NUMERIC___days_in_waiting_list_00___0", "525": "25___NUMERIC___days_in_waiting_list_00___1", "526": "25___NUMERIC___days_in_waiting_list_00___2", "527": "25___NUMERIC___days_in_waiting_list_00___3", "528": "25___NUMERIC___days_in_waiting_list_01___0", "529": "25___NUMERIC___days_in_waiting_list_01___1", "530": "25___NUMERIC___days_in_waiting_list_01___2", "531": "25___NUMERIC___days_in_waiting_list_01___3", "532": "25___NUMERIC___days_in_waiting_list_01___4", "533": "25___NUMERIC___days_in_waiting_list_01___5", "534": "25___NUMERIC___days_in_waiting_list_01___6", "535": "25___NUMERIC___days_in_waiting_list_01___7", "536": "25___NUMERIC___days_in_waiting_list_01___8", "537": "25___NUMERIC___days_in_waiting_list_01___9", "538": "25___NUMERIC___days_in_waiting_list_02___0", "539": "25___NUMERIC___days_in_waiting_list_02___1", "540": "25___NUMERIC___days_in_waiting_list_02___2", "541": "25___NUMERIC___days_in_waiting_list_02___3", "542": "25___NUMERIC___days_in_waiting_list_02___4", "543": "25___NUMERIC___days_in_waiting_list_02___5", "544": "25___NUMERIC___days_in_waiting_list_02___6", "545": "25___NUMERIC___days_in_waiting_list_02___7", "546": "25___NUMERIC___days_in_waiting_list_02___8", "547": "25___NUMERIC___days_in_waiting_list_02___9", "548": "26___CATEGORICAL___customer_type___Contract", "549": "26___CATEGORICAL___customer_type___Group", "550": "26___CATEGORICAL___customer_type___Transient", "551": "26___CATEGORICAL___customer_type___Transient-Party", "552": "27___NUMERIC___adr_00___0", "553": "27___NUMERIC___adr_00___5", "554": "27___NUMERIC___adr_01___0", "555": "27___NUMERIC___adr_01___1", "556": "27___NUMERIC___adr_01___2", "557": "27___NUMERIC___adr_01___3", "558": "27___NUMERIC___adr_01___4", "559": "27___NUMERIC___adr_02___0", "560": "27___NUMERIC___adr_02___1", "561": "27___NUMERIC___adr_02___2", "562": "27___NUMERIC___adr_02___3", "563": "27___NUMERIC___adr_02___4", "564": "27___NUMERIC___adr_02___5", "565": "27___NUMERIC___adr_02___6", "566": "27___NUMERIC___adr_02___7", "567": "27___NUMERIC___adr_02___8", "568": "27___NUMERIC___adr_02___9", "569": "27___NUMERIC___adr_03___0", "570": "27___NUMERIC___adr_03___1", "571": "27___NUMERIC___adr_03___2", "572": "27___NUMERIC___adr_03___3", "573": "27___NUMERIC___adr_03___4", "574": "27___NUMERIC___adr_03___5", "575": "27___NUMERIC___adr_03___6", "576": "27___NUMERIC___adr_03___7", "577": "27___NUMERIC___adr_03___8", "578": "27___NUMERIC___adr_03___9", "579": "27___NUMERIC___adr_04___.", "580": "27___NUMERIC___adr_05___0", "581": "27___NUMERIC___adr_05___1", "582": "27___NUMERIC___adr_05___2", "583": "27___NUMERIC___adr_05___3", "584": "27___NUMERIC___adr_05___4", "585": "27___NUMERIC___adr_05___5", "586": "27___NUMERIC___adr_05___6", "587": "27___NUMERIC___adr_05___7", "588": "27___NUMERIC___adr_05___8", "589": "27___NUMERIC___adr_05___9", "590": "27___NUMERIC___adr_06___0", "591": "27___NUMERIC___adr_06___1", "592": "27___NUMERIC___adr_06___2", "593": "27___NUMERIC___adr_06___3", "594": "27___NUMERIC___adr_06___4", "595": "27___NUMERIC___adr_06___5", "596": "27___NUMERIC___adr_06___6", "597": "27___NUMERIC___adr_06___7", "598": "27___NUMERIC___adr_06___8", "599": "27___NUMERIC___adr_06___9", "600": "28___CATEGORICAL___required_car_parking_spaces___0", "601": "28___CATEGORICAL___required_car_parking_spaces___1", "602": "28___CATEGORICAL___required_car_parking_spaces___2", "603": "28___CATEGORICAL___required_car_parking_spaces___3", "604": "28___CATEGORICAL___required_car_parking_spaces___8", "605": "29___NUMERIC___total_of_special_requests_00___0", "606": "29___NUMERIC___total_of_special_requests_00___1", "607": "29___NUMERIC___total_of_special_requests_00___2", "608": "29___NUMERIC___total_of_special_requests_00___3", "609": "29___NUMERIC___total_of_special_requests_00___4", "610": "29___NUMERIC___total_of_special_requests_00___5", "611": "30___CATEGORICAL___reservation_status___Canceled", "612": "30___CATEGORICAL___reservation_status___Check-Out", "613": "30___CATEGORICAL___reservation_status___No-Show", "614": "31___CATEGORICAL___reservation_status_date___2014-10-17", "615": "31___CATEGORICAL___reservation_status_date___2015-01-01", "616": "31___CATEGORICAL___reservation_status_date___2015-01-02", "617": "31___CATEGORICAL___reservation_status_date___2015-01-18", "618": "31___CATEGORICAL___reservation_status_date___2015-01-20", "619": "31___CATEGORICAL___reservation_status_date___2015-01-21", "620": "31___CATEGORICAL___reservation_status_date___2015-01-22", "621": "31___CATEGORICAL___reservation_status_date___2015-01-28", "622": "31___CATEGORICAL___reservation_status_date___2015-01-30", "623": "31___CATEGORICAL___reservation_status_date___2015-02-02", "624": "31___CATEGORICAL___reservation_status_date___2015-02-05", "625": "31___CATEGORICAL___reservation_status_date___2015-02-06", "626": "31___CATEGORICAL___reservation_status_date___2015-02-09", "627": "31___CATEGORICAL___reservation_status_date___2015-02-10", "628": "31___CATEGORICAL___reservation_status_date___2015-02-11", "629": "31___CATEGORICAL___reservation_status_date___2015-02-12", "630": "31___CATEGORICAL___reservation_status_date___2015-02-17", "631": "31___CATEGORICAL___reservation_status_date___2015-02-19", "632": "31___CATEGORICAL___reservation_status_date___2015-02-20", "633": "31___CATEGORICAL___reservation_status_date___2015-02-23", "634": "31___CATEGORICAL___reservation_status_date___2015-02-24", "635": "31___CATEGORICAL___reservation_status_date___2015-02-25", "636": "31___CATEGORICAL___reservation_status_date___2015-02-26", "637": "31___CATEGORICAL___reservation_status_date___2015-02-27", "638": "31___CATEGORICAL___reservation_status_date___2015-03-03", "639": "31___CATEGORICAL___reservation_status_date___2015-03-04", "640": "31___CATEGORICAL___reservation_status_date___2015-03-05", "641": "31___CATEGORICAL___reservation_status_date___2015-03-06", "642": "31___CATEGORICAL___reservation_status_date___2015-03-09", "643": "31___CATEGORICAL___reservation_status_date___2015-03-10", "644": "31___CATEGORICAL___reservation_status_date___2015-03-12", "645": "31___CATEGORICAL___reservation_status_date___2015-03-13", "646": "31___CATEGORICAL___reservation_status_date___2015-03-17", "647": "31___CATEGORICAL___reservation_status_date___2015-03-18", "648": "31___CATEGORICAL___reservation_status_date___2015-03-23", "649": "31___CATEGORICAL___reservation_status_date___2015-03-24", "650": "31___CATEGORICAL___reservation_status_date___2015-03-25", "651": "31___CATEGORICAL___reservation_status_date___2015-03-28", "652": "31___CATEGORICAL___reservation_status_date___2015-03-29", "653": "31___CATEGORICAL___reservation_status_date___2015-03-30", "654": "31___CATEGORICAL___reservation_status_date___2015-03-31", "655": "31___CATEGORICAL___reservation_status_date___2015-04-02", "656": "31___CATEGORICAL___reservation_status_date___2015-04-03", "657": "31___CATEGORICAL___reservation_status_date___2015-04-04", "658": "31___CATEGORICAL___reservation_status_date___2015-04-05", "659": "31___CATEGORICAL___reservation_status_date___2015-04-06", "660": "31___CATEGORICAL___reservation_status_date___2015-04-07", "661": "31___CATEGORICAL___reservation_status_date___2015-04-08", "662": "31___CATEGORICAL___reservation_status_date___2015-04-10", "663": "31___CATEGORICAL___reservation_status_date___2015-04-11", "664": "31___CATEGORICAL___reservation_status_date___2015-04-14", "665": "31___CATEGORICAL___reservation_status_date___2015-04-15", "666": "31___CATEGORICAL___reservation_status_date___2015-04-16", "667": "31___CATEGORICAL___reservation_status_date___2015-04-17", "668": "31___CATEGORICAL___reservation_status_date___2015-04-18", "669": "31___CATEGORICAL___reservation_status_date___2015-04-20", "670": "31___CATEGORICAL___reservation_status_date___2015-04-22", "671": "31___CATEGORICAL___reservation_status_date___2015-04-23", "672": "31___CATEGORICAL___reservation_status_date___2015-04-24", "673": "31___CATEGORICAL___reservation_status_date___2015-04-27", "674": "31___CATEGORICAL___reservation_status_date___2015-04-28", "675": "31___CATEGORICAL___reservation_status_date___2015-04-29", "676": "31___CATEGORICAL___reservation_status_date___2015-04-30", "677": "31___CATEGORICAL___reservation_status_date___2015-05-01", "678": "31___CATEGORICAL___reservation_status_date___2015-05-04", "679": "31___CATEGORICAL___reservation_status_date___2015-05-05", "680": "31___CATEGORICAL___reservation_status_date___2015-05-06", "681": "31___CATEGORICAL___reservation_status_date___2015-05-07", "682": "31___CATEGORICAL___reservation_status_date___2015-05-08", "683": "31___CATEGORICAL___reservation_status_date___2015-05-09", "684": "31___CATEGORICAL___reservation_status_date___2015-05-11", "685": "31___CATEGORICAL___reservation_status_date___2015-05-12", "686": "31___CATEGORICAL___reservation_status_date___2015-05-13", "687": "31___CATEGORICAL___reservation_status_date___2015-05-14", "688": "31___CATEGORICAL___reservation_status_date___2015-05-15", "689": "31___CATEGORICAL___reservation_status_date___2015-05-16", "690": "31___CATEGORICAL___reservation_status_date___2015-05-18", "691": "31___CATEGORICAL___reservation_status_date___2015-05-19", "692": "31___CATEGORICAL___reservation_status_date___2015-05-20", "693": "31___CATEGORICAL___reservation_status_date___2015-05-21", "694": "31___CATEGORICAL___reservation_status_date___2015-05-22", "695": "31___CATEGORICAL___reservation_status_date___2015-05-23", "696": "31___CATEGORICAL___reservation_status_date___2015-05-25", "697": "31___CATEGORICAL___reservation_status_date___2015-05-26", "698": "31___CATEGORICAL___reservation_status_date___2015-05-27", "699": "31___CATEGORICAL___reservation_status_date___2015-05-28", "700": "31___CATEGORICAL___reservation_status_date___2015-05-29", "701": "31___CATEGORICAL___reservation_status_date___2015-05-30", "702": "31___CATEGORICAL___reservation_status_date___2015-06-01", "703": "31___CATEGORICAL___reservation_status_date___2015-06-02", "704": "31___CATEGORICAL___reservation_status_date___2015-06-03", "705": "31___CATEGORICAL___reservation_status_date___2015-06-04", "706": "31___CATEGORICAL___reservation_status_date___2015-06-05", "707": "31___CATEGORICAL___reservation_status_date___2015-06-06", "708": "31___CATEGORICAL___reservation_status_date___2015-06-08", "709": "31___CATEGORICAL___reservation_status_date___2015-06-09", "710": "31___CATEGORICAL___reservation_status_date___2015-06-10", "711": "31___CATEGORICAL___reservation_status_date___2015-06-11", "712": "31___CATEGORICAL___reservation_status_date___2015-06-12", "713": "31___CATEGORICAL___reservation_status_date___2015-06-13", "714": "31___CATEGORICAL___reservation_status_date___2015-06-14", "715": "31___CATEGORICAL___reservation_status_date___2015-06-15", "716": "31___CATEGORICAL___reservation_status_date___2015-06-16", "717": "31___CATEGORICAL___reservation_status_date___2015-06-17", "718": "31___CATEGORICAL___reservation_status_date___2015-06-18", "719": "31___CATEGORICAL___reservation_status_date___2015-06-19", "720": "31___CATEGORICAL___reservation_status_date___2015-06-20", "721": "31___CATEGORICAL___reservation_status_date___2015-06-22", "722": "31___CATEGORICAL___reservation_status_date___2015-06-23", "723": "31___CATEGORICAL___reservation_status_date___2015-06-24", "724": "31___CATEGORICAL___reservation_status_date___2015-06-25", "725": "31___CATEGORICAL___reservation_status_date___2015-06-26", "726": "31___CATEGORICAL___reservation_status_date___2015-06-27", "727": "31___CATEGORICAL___reservation_status_date___2015-06-29", "728": "31___CATEGORICAL___reservation_status_date___2015-06-30", "729": "31___CATEGORICAL___reservation_status_date___2015-07-01", "730": "31___CATEGORICAL___reservation_status_date___2015-07-02", "731": "31___CATEGORICAL___reservation_status_date___2015-07-03", "732": "31___CATEGORICAL___reservation_status_date___2015-07-04", "733": "31___CATEGORICAL___reservation_status_date___2015-07-05", "734": "31___CATEGORICAL___reservation_status_date___2015-07-06", "735": "31___CATEGORICAL___reservation_status_date___2015-07-07", "736": "31___CATEGORICAL___reservation_status_date___2015-07-08", "737": "31___CATEGORICAL___reservation_status_date___2015-07-09", "738": "31___CATEGORICAL___reservation_status_date___2015-07-10", "739": "31___CATEGORICAL___reservation_status_date___2015-07-11", "740": "31___CATEGORICAL___reservation_status_date___2015-07-12", "741": "31___CATEGORICAL___reservation_status_date___2015-07-13", "742": "31___CATEGORICAL___reservation_status_date___2015-07-14", "743": "31___CATEGORICAL___reservation_status_date___2015-07-15", "744": "31___CATEGORICAL___reservation_status_date___2015-07-16", "745": "31___CATEGORICAL___reservation_status_date___2015-07-17", "746": "31___CATEGORICAL___reservation_status_date___2015-07-18", "747": "31___CATEGORICAL___reservation_status_date___2015-07-19", "748": "31___CATEGORICAL___reservation_status_date___2015-07-20", "749": "31___CATEGORICAL___reservation_status_date___2015-07-21", "750": "31___CATEGORICAL___reservation_status_date___2015-07-22", "751": "31___CATEGORICAL___reservation_status_date___2015-07-23", "752": "31___CATEGORICAL___reservation_status_date___2015-07-24", "753": "31___CATEGORICAL___reservation_status_date___2015-07-25", "754": "31___CATEGORICAL___reservation_status_date___2015-07-26", "755": "31___CATEGORICAL___reservation_status_date___2015-07-27", "756": "31___CATEGORICAL___reservation_status_date___2015-07-28", "757": "31___CATEGORICAL___reservation_status_date___2015-07-29", "758": "31___CATEGORICAL___reservation_status_date___2015-07-30", "759": "31___CATEGORICAL___reservation_status_date___2015-07-31", "760": "31___CATEGORICAL___reservation_status_date___2015-08-01", "761": "31___CATEGORICAL___reservation_status_date___2015-08-02", "762": "31___CATEGORICAL___reservation_status_date___2015-08-03", "763": "31___CATEGORICAL___reservation_status_date___2015-08-04", "764": "31___CATEGORICAL___reservation_status_date___2015-08-05", "765": "31___CATEGORICAL___reservation_status_date___2015-08-06", "766": "31___CATEGORICAL___reservation_status_date___2015-08-07", "767": "31___CATEGORICAL___reservation_status_date___2015-08-08", "768": "31___CATEGORICAL___reservation_status_date___2015-08-09", "769": "31___CATEGORICAL___reservation_status_date___2015-08-10", "770": "31___CATEGORICAL___reservation_status_date___2015-08-11", "771": "31___CATEGORICAL___reservation_status_date___2015-08-12", "772": "31___CATEGORICAL___reservation_status_date___2015-08-13", "773": "31___CATEGORICAL___reservation_status_date___2015-08-14", "774": "31___CATEGORICAL___reservation_status_date___2015-08-15", "775": "31___CATEGORICAL___reservation_status_date___2015-08-16", "776": "31___CATEGORICAL___reservation_status_date___2015-08-17", "777": "31___CATEGORICAL___reservation_status_date___2015-08-18", "778": "31___CATEGORICAL___reservation_status_date___2015-08-19", "779": "31___CATEGORICAL___reservation_status_date___2015-08-20", "780": "31___CATEGORICAL___reservation_status_date___2015-08-21", "781": "31___CATEGORICAL___reservation_status_date___2015-08-22", "782": "31___CATEGORICAL___reservation_status_date___2015-08-23", "783": "31___CATEGORICAL___reservation_status_date___2015-08-24", "784": "31___CATEGORICAL___reservation_status_date___2015-08-25", "785": "31___CATEGORICAL___reservation_status_date___2015-08-26", "786": "31___CATEGORICAL___reservation_status_date___2015-08-27", "787": "31___CATEGORICAL___reservation_status_date___2015-08-28", "788": "31___CATEGORICAL___reservation_status_date___2015-08-29", "789": "31___CATEGORICAL___reservation_status_date___2015-08-30", "790": "31___CATEGORICAL___reservation_status_date___2015-08-31", "791": "31___CATEGORICAL___reservation_status_date___2015-09-01", "792": "31___CATEGORICAL___reservation_status_date___2015-09-02", "793": "31___CATEGORICAL___reservation_status_date___2015-09-03", "794": "31___CATEGORICAL___reservation_status_date___2015-09-04", "795": "31___CATEGORICAL___reservation_status_date___2015-09-05", "796": "31___CATEGORICAL___reservation_status_date___2015-09-06", "797": "31___CATEGORICAL___reservation_status_date___2015-09-07", "798": "31___CATEGORICAL___reservation_status_date___2015-09-08", "799": "31___CATEGORICAL___reservation_status_date___2015-09-09", "800": "31___CATEGORICAL___reservation_status_date___2015-09-10", "801": "31___CATEGORICAL___reservation_status_date___2015-09-11", "802": "31___CATEGORICAL___reservation_status_date___2015-09-12", "803": "31___CATEGORICAL___reservation_status_date___2015-09-13", "804": "31___CATEGORICAL___reservation_status_date___2015-09-14", "805": "31___CATEGORICAL___reservation_status_date___2015-09-15", "806": "31___CATEGORICAL___reservation_status_date___2015-09-16", "807": "31___CATEGORICAL___reservation_status_date___2015-09-17", "808": "31___CATEGORICAL___reservation_status_date___2015-09-18", "809": "31___CATEGORICAL___reservation_status_date___2015-09-19", "810": "31___CATEGORICAL___reservation_status_date___2015-09-20", "811": "31___CATEGORICAL___reservation_status_date___2015-09-21", "812": "31___CATEGORICAL___reservation_status_date___2015-09-22", "813": "31___CATEGORICAL___reservation_status_date___2015-09-23", "814": "31___CATEGORICAL___reservation_status_date___2015-09-24", "815": "31___CATEGORICAL___reservation_status_date___2015-09-25", "816": "31___CATEGORICAL___reservation_status_date___2015-09-26", "817": "31___CATEGORICAL___reservation_status_date___2015-09-27", "818": "31___CATEGORICAL___reservation_status_date___2015-09-28", "819": "31___CATEGORICAL___reservation_status_date___2015-09-29", "820": "31___CATEGORICAL___reservation_status_date___2015-09-30", "821": "31___CATEGORICAL___reservation_status_date___2015-10-01", "822": "31___CATEGORICAL___reservation_status_date___2015-10-02", "823": "31___CATEGORICAL___reservation_status_date___2015-10-03", "824": "31___CATEGORICAL___reservation_status_date___2015-10-04", "825": "31___CATEGORICAL___reservation_status_date___2015-10-05", "826": "31___CATEGORICAL___reservation_status_date___2015-10-06", "827": "31___CATEGORICAL___reservation_status_date___2015-10-07", "828": "31___CATEGORICAL___reservation_status_date___2015-10-08", "829": "31___CATEGORICAL___reservation_status_date___2015-10-09", "830": "31___CATEGORICAL___reservation_status_date___2015-10-10", "831": "31___CATEGORICAL___reservation_status_date___2015-10-11", "832": "31___CATEGORICAL___reservation_status_date___2015-10-12", "833": "31___CATEGORICAL___reservation_status_date___2015-10-13", "834": "31___CATEGORICAL___reservation_status_date___2015-10-14", "835": "31___CATEGORICAL___reservation_status_date___2015-10-15", "836": "31___CATEGORICAL___reservation_status_date___2015-10-16", "837": "31___CATEGORICAL___reservation_status_date___2015-10-17", "838": "31___CATEGORICAL___reservation_status_date___2015-10-18", "839": "31___CATEGORICAL___reservation_status_date___2015-10-19", "840": "31___CATEGORICAL___reservation_status_date___2015-10-20", "841": "31___CATEGORICAL___reservation_status_date___2015-10-21", "842": "31___CATEGORICAL___reservation_status_date___2015-10-22", "843": "31___CATEGORICAL___reservation_status_date___2015-10-23", "844": "31___CATEGORICAL___reservation_status_date___2015-10-24", "845": "31___CATEGORICAL___reservation_status_date___2015-10-25", "846": "31___CATEGORICAL___reservation_status_date___2015-10-26", "847": "31___CATEGORICAL___reservation_status_date___2015-10-27", "848": "31___CATEGORICAL___reservation_status_date___2015-10-28", "849": "31___CATEGORICAL___reservation_status_date___2015-10-29", "850": "31___CATEGORICAL___reservation_status_date___2015-10-30", "851": "31___CATEGORICAL___reservation_status_date___2015-10-31", "852": "31___CATEGORICAL___reservation_status_date___2015-11-01", "853": "31___CATEGORICAL___reservation_status_date___2015-11-02", "854": "31___CATEGORICAL___reservation_status_date___2015-11-03", "855": "31___CATEGORICAL___reservation_status_date___2015-11-04", "856": "31___CATEGORICAL___reservation_status_date___2015-11-05", "857": "31___CATEGORICAL___reservation_status_date___2015-11-06", "858": "31___CATEGORICAL___reservation_status_date___2015-11-07", "859": "31___CATEGORICAL___reservation_status_date___2015-11-08", "860": "31___CATEGORICAL___reservation_status_date___2015-11-09", "861": "31___CATEGORICAL___reservation_status_date___2015-11-10", "862": "31___CATEGORICAL___reservation_status_date___2015-11-11", "863": "31___CATEGORICAL___reservation_status_date___2015-11-12", "864": "31___CATEGORICAL___reservation_status_date___2015-11-13", "865": "31___CATEGORICAL___reservation_status_date___2015-11-14", "866": "31___CATEGORICAL___reservation_status_date___2015-11-15", "867": "31___CATEGORICAL___reservation_status_date___2015-11-16", "868": "31___CATEGORICAL___reservation_status_date___2015-11-17", "869": "31___CATEGORICAL___reservation_status_date___2015-11-18", "870": "31___CATEGORICAL___reservation_status_date___2015-11-19", "871": "31___CATEGORICAL___reservation_status_date___2015-11-20", "872": "31___CATEGORICAL___reservation_status_date___2015-11-21", "873": "31___CATEGORICAL___reservation_status_date___2015-11-22", "874": "31___CATEGORICAL___reservation_status_date___2015-11-23", "875": "31___CATEGORICAL___reservation_status_date___2015-11-24", "876": "31___CATEGORICAL___reservation_status_date___2015-11-25", "877": "31___CATEGORICAL___reservation_status_date___2015-11-26", "878": "31___CATEGORICAL___reservation_status_date___2015-11-27", "879": "31___CATEGORICAL___reservation_status_date___2015-11-28", "880": "31___CATEGORICAL___reservation_status_date___2015-11-29", "881": "31___CATEGORICAL___reservation_status_date___2015-11-30", "882": "31___CATEGORICAL___reservation_status_date___2015-12-01", "883": "31___CATEGORICAL___reservation_status_date___2015-12-02", "884": "31___CATEGORICAL___reservation_status_date___2015-12-03", "885": "31___CATEGORICAL___reservation_status_date___2015-12-04", "886": "31___CATEGORICAL___reservation_status_date___2015-12-05", "887": "31___CATEGORICAL___reservation_status_date___2015-12-06", "888": "31___CATEGORICAL___reservation_status_date___2015-12-07", "889": "31___CATEGORICAL___reservation_status_date___2015-12-08", "890": "31___CATEGORICAL___reservation_status_date___2015-12-09", "891": "31___CATEGORICAL___reservation_status_date___2015-12-10", "892": "31___CATEGORICAL___reservation_status_date___2015-12-11", "893": "31___CATEGORICAL___reservation_status_date___2015-12-12", "894": "31___CATEGORICAL___reservation_status_date___2015-12-13", "895": "31___CATEGORICAL___reservation_status_date___2015-12-14", "896": "31___CATEGORICAL___reservation_status_date___2015-12-15", "897": "31___CATEGORICAL___reservation_status_date___2015-12-16", "898": "31___CATEGORICAL___reservation_status_date___2015-12-17", "899": "31___CATEGORICAL___reservation_status_date___2015-12-18", "900": "31___CATEGORICAL___reservation_status_date___2015-12-19", "901": "31___CATEGORICAL___reservation_status_date___2015-12-20", "902": "31___CATEGORICAL___reservation_status_date___2015-12-21", "903": "31___CATEGORICAL___reservation_status_date___2015-12-22", "904": "31___CATEGORICAL___reservation_status_date___2015-12-23", "905": "31___CATEGORICAL___reservation_status_date___2015-12-24", "906": "31___CATEGORICAL___reservation_status_date___2015-12-25", "907": "31___CATEGORICAL___reservation_status_date___2015-12-26", "908": "31___CATEGORICAL___reservation_status_date___2015-12-27", "909": "31___CATEGORICAL___reservation_status_date___2015-12-28", "910": "31___CATEGORICAL___reservation_status_date___2015-12-29", "911": "31___CATEGORICAL___reservation_status_date___2015-12-30", "912": "31___CATEGORICAL___reservation_status_date___2015-12-31", "913": "31___CATEGORICAL___reservation_status_date___2016-01-01", "914": "31___CATEGORICAL___reservation_status_date___2016-01-02", "915": "31___CATEGORICAL___reservation_status_date___2016-01-03", "916": "31___CATEGORICAL___reservation_status_date___2016-01-04", "917": "31___CATEGORICAL___reservation_status_date___2016-01-05", "918": "31___CATEGORICAL___reservation_status_date___2016-01-06", "919": "31___CATEGORICAL___reservation_status_date___2016-01-07", "920": "31___CATEGORICAL___reservation_status_date___2016-01-08", "921": "31___CATEGORICAL___reservation_status_date___2016-01-09", "922": "31___CATEGORICAL___reservation_status_date___2016-01-10", "923": "31___CATEGORICAL___reservation_status_date___2016-01-11", "924": "31___CATEGORICAL___reservation_status_date___2016-01-12", "925": "31___CATEGORICAL___reservation_status_date___2016-01-13", "926": "31___CATEGORICAL___reservation_status_date___2016-01-14", "927": "31___CATEGORICAL___reservation_status_date___2016-01-15", "928": "31___CATEGORICAL___reservation_status_date___2016-01-16", "929": "31___CATEGORICAL___reservation_status_date___2016-01-17", "930": "31___CATEGORICAL___reservation_status_date___2016-01-18", "931": "31___CATEGORICAL___reservation_status_date___2016-01-19", "932": "31___CATEGORICAL___reservation_status_date___2016-01-20", "933": "31___CATEGORICAL___reservation_status_date___2016-01-21", "934": "31___CATEGORICAL___reservation_status_date___2016-01-22", "935": "31___CATEGORICAL___reservation_status_date___2016-01-23", "936": "31___CATEGORICAL___reservation_status_date___2016-01-24", "937": "31___CATEGORICAL___reservation_status_date___2016-01-25", "938": "31___CATEGORICAL___reservation_status_date___2016-01-26", "939": "31___CATEGORICAL___reservation_status_date___2016-01-27", "940": "31___CATEGORICAL___reservation_status_date___2016-01-28", "941": "31___CATEGORICAL___reservation_status_date___2016-01-29", "942": "31___CATEGORICAL___reservation_status_date___2016-01-30", "943": "31___CATEGORICAL___reservation_status_date___2016-01-31", "944": "31___CATEGORICAL___reservation_status_date___2016-02-01", "945": "31___CATEGORICAL___reservation_status_date___2016-02-02", "946": "31___CATEGORICAL___reservation_status_date___2016-02-03", "947": "31___CATEGORICAL___reservation_status_date___2016-02-04", "948": "31___CATEGORICAL___reservation_status_date___2016-02-05", "949": "31___CATEGORICAL___reservation_status_date___2016-02-06", "950": "31___CATEGORICAL___reservation_status_date___2016-02-07", "951": "31___CATEGORICAL___reservation_status_date___2016-02-08", "952": "31___CATEGORICAL___reservation_status_date___2016-02-09", "953": "31___CATEGORICAL___reservation_status_date___2016-02-10", "954": "31___CATEGORICAL___reservation_status_date___2016-02-11", "955": "31___CATEGORICAL___reservation_status_date___2016-02-12", "956": "31___CATEGORICAL___reservation_status_date___2016-02-13", "957": "31___CATEGORICAL___reservation_status_date___2016-02-14", "958": "31___CATEGORICAL___reservation_status_date___2016-02-15", "959": "31___CATEGORICAL___reservation_status_date___2016-02-16", "960": "31___CATEGORICAL___reservation_status_date___2016-02-17", "961": "31___CATEGORICAL___reservation_status_date___2016-02-18", "962": "31___CATEGORICAL___reservation_status_date___2016-02-19", "963": "31___CATEGORICAL___reservation_status_date___2016-02-20", "964": "31___CATEGORICAL___reservation_status_date___2016-02-21", "965": "31___CATEGORICAL___reservation_status_date___2016-02-22", "966": "31___CATEGORICAL___reservation_status_date___2016-02-23", "967": "31___CATEGORICAL___reservation_status_date___2016-02-24", "968": "31___CATEGORICAL___reservation_status_date___2016-02-25", "969": "31___CATEGORICAL___reservation_status_date___2016-02-26", "970": "31___CATEGORICAL___reservation_status_date___2016-02-27", "971": "31___CATEGORICAL___reservation_status_date___2016-02-28", "972": "31___CATEGORICAL___reservation_status_date___2016-02-29", "973": "31___CATEGORICAL___reservation_status_date___2016-03-01", "974": "31___CATEGORICAL___reservation_status_date___2016-03-02", "975": "31___CATEGORICAL___reservation_status_date___2016-03-03", "976": "31___CATEGORICAL___reservation_status_date___2016-03-04", "977": "31___CATEGORICAL___reservation_status_date___2016-03-05", "978": "31___CATEGORICAL___reservation_status_date___2016-03-06", "979": "31___CATEGORICAL___reservation_status_date___2016-03-07", "980": "31___CATEGORICAL___reservation_status_date___2016-03-08", "981": "31___CATEGORICAL___reservation_status_date___2016-03-09", "982": "31___CATEGORICAL___reservation_status_date___2016-03-10", "983": "31___CATEGORICAL___reservation_status_date___2016-03-11", "984": "31___CATEGORICAL___reservation_status_date___2016-03-12", "985": "31___CATEGORICAL___reservation_status_date___2016-03-13", "986": "31___CATEGORICAL___reservation_status_date___2016-03-14", "987": "31___CATEGORICAL___reservation_status_date___2016-03-15", "988": "31___CATEGORICAL___reservation_status_date___2016-03-16", "989": "31___CATEGORICAL___reservation_status_date___2016-03-17", "990": "31___CATEGORICAL___reservation_status_date___2016-03-18", "991": "31___CATEGORICAL___reservation_status_date___2016-03-19", "992": "31___CATEGORICAL___reservation_status_date___2016-03-20", "993": "31___CATEGORICAL___reservation_status_date___2016-03-21", "994": "31___CATEGORICAL___reservation_status_date___2016-03-22", "995": "31___CATEGORICAL___reservation_status_date___2016-03-23", "996": "31___CATEGORICAL___reservation_status_date___2016-03-24", "997": "31___CATEGORICAL___reservation_status_date___2016-03-25", "998": "31___CATEGORICAL___reservation_status_date___2016-03-26", "999": "31___CATEGORICAL___reservation_status_date___2016-03-27", "1000": "31___CATEGORICAL___reservation_status_date___2016-03-28", "1001": "31___CATEGORICAL___reservation_status_date___2016-03-29", "1002": "31___CATEGORICAL___reservation_status_date___2016-03-30", "1003": "31___CATEGORICAL___reservation_status_date___2016-03-31", "1004": "31___CATEGORICAL___reservation_status_date___2016-04-01", "1005": "31___CATEGORICAL___reservation_status_date___2016-04-02", "1006": "31___CATEGORICAL___reservation_status_date___2016-04-03", "1007": "31___CATEGORICAL___reservation_status_date___2016-04-04", "1008": "31___CATEGORICAL___reservation_status_date___2016-04-05", "1009": "31___CATEGORICAL___reservation_status_date___2016-04-06", "1010": "31___CATEGORICAL___reservation_status_date___2016-04-07", "1011": "31___CATEGORICAL___reservation_status_date___2016-04-08", "1012": "31___CATEGORICAL___reservation_status_date___2016-04-09", "1013": "31___CATEGORICAL___reservation_status_date___2016-04-10", "1014": "31___CATEGORICAL___reservation_status_date___2016-04-11", "1015": "31___CATEGORICAL___reservation_status_date___2016-04-12", "1016": "31___CATEGORICAL___reservation_status_date___2016-04-13", "1017": "31___CATEGORICAL___reservation_status_date___2016-04-14", "1018": "31___CATEGORICAL___reservation_status_date___2016-04-15", "1019": "31___CATEGORICAL___reservation_status_date___2016-04-16", "1020": "31___CATEGORICAL___reservation_status_date___2016-04-17", "1021": "31___CATEGORICAL___reservation_status_date___2016-04-18", "1022": "31___CATEGORICAL___reservation_status_date___2016-04-19", "1023": "31___CATEGORICAL___reservation_status_date___2016-04-20", "1024": "31___CATEGORICAL___reservation_status_date___2016-04-21", "1025": "31___CATEGORICAL___reservation_status_date___2016-04-22", "1026": "31___CATEGORICAL___reservation_status_date___2016-04-23", "1027": "31___CATEGORICAL___reservation_status_date___2016-04-24", "1028": "31___CATEGORICAL___reservation_status_date___2016-04-25", "1029": "31___CATEGORICAL___reservation_status_date___2016-04-26", "1030": "31___CATEGORICAL___reservation_status_date___2016-04-27", "1031": "31___CATEGORICAL___reservation_status_date___2016-04-28", "1032": "31___CATEGORICAL___reservation_status_date___2016-04-29", "1033": "31___CATEGORICAL___reservation_status_date___2016-04-30", "1034": "31___CATEGORICAL___reservation_status_date___2016-05-01", "1035": "31___CATEGORICAL___reservation_status_date___2016-05-02", "1036": "31___CATEGORICAL___reservation_status_date___2016-05-03", "1037": "31___CATEGORICAL___reservation_status_date___2016-05-04", "1038": "31___CATEGORICAL___reservation_status_date___2016-05-05", "1039": "31___CATEGORICAL___reservation_status_date___2016-05-06", "1040": "31___CATEGORICAL___reservation_status_date___2016-05-07", "1041": "31___CATEGORICAL___reservation_status_date___2016-05-08", "1042": "31___CATEGORICAL___reservation_status_date___2016-05-09", "1043": "31___CATEGORICAL___reservation_status_date___2016-05-10", "1044": "31___CATEGORICAL___reservation_status_date___2016-05-11", "1045": "31___CATEGORICAL___reservation_status_date___2016-05-12", "1046": "31___CATEGORICAL___reservation_status_date___2016-05-13", "1047": "31___CATEGORICAL___reservation_status_date___2016-05-14", "1048": "31___CATEGORICAL___reservation_status_date___2016-05-15", "1049": "31___CATEGORICAL___reservation_status_date___2016-05-16", "1050": "31___CATEGORICAL___reservation_status_date___2016-05-17", "1051": "31___CATEGORICAL___reservation_status_date___2016-05-18", "1052": "31___CATEGORICAL___reservation_status_date___2016-05-19", "1053": "31___CATEGORICAL___reservation_status_date___2016-05-20", "1054": "31___CATEGORICAL___reservation_status_date___2016-05-21", "1055": "31___CATEGORICAL___reservation_status_date___2016-05-22", "1056": "31___CATEGORICAL___reservation_status_date___2016-05-23", "1057": "31___CATEGORICAL___reservation_status_date___2016-05-24", "1058": "31___CATEGORICAL___reservation_status_date___2016-05-25", "1059": "31___CATEGORICAL___reservation_status_date___2016-05-26", "1060": "31___CATEGORICAL___reservation_status_date___2016-05-27", "1061": "31___CATEGORICAL___reservation_status_date___2016-05-28", "1062": "31___CATEGORICAL___reservation_status_date___2016-05-29", "1063": "31___CATEGORICAL___reservation_status_date___2016-05-30", "1064": "31___CATEGORICAL___reservation_status_date___2016-05-31", "1065": "31___CATEGORICAL___reservation_status_date___2016-06-01", "1066": "31___CATEGORICAL___reservation_status_date___2016-06-02", "1067": "31___CATEGORICAL___reservation_status_date___2016-06-03", "1068": "31___CATEGORICAL___reservation_status_date___2016-06-04", "1069": "31___CATEGORICAL___reservation_status_date___2016-06-05", "1070": "31___CATEGORICAL___reservation_status_date___2016-06-06", "1071": "31___CATEGORICAL___reservation_status_date___2016-06-07", "1072": "31___CATEGORICAL___reservation_status_date___2016-06-08", "1073": "31___CATEGORICAL___reservation_status_date___2016-06-09", "1074": "31___CATEGORICAL___reservation_status_date___2016-06-10", "1075": "31___CATEGORICAL___reservation_status_date___2016-06-11", "1076": "31___CATEGORICAL___reservation_status_date___2016-06-12", "1077": "31___CATEGORICAL___reservation_status_date___2016-06-13", "1078": "31___CATEGORICAL___reservation_status_date___2016-06-14", "1079": "31___CATEGORICAL___reservation_status_date___2016-06-15", "1080": "31___CATEGORICAL___reservation_status_date___2016-06-16", "1081": "31___CATEGORICAL___reservation_status_date___2016-06-17", "1082": "31___CATEGORICAL___reservation_status_date___2016-06-18", "1083": "31___CATEGORICAL___reservation_status_date___2016-06-19", "1084": "31___CATEGORICAL___reservation_status_date___2016-06-20", "1085": "31___CATEGORICAL___reservation_status_date___2016-06-21", "1086": "31___CATEGORICAL___reservation_status_date___2016-06-22", "1087": "31___CATEGORICAL___reservation_status_date___2016-06-23", "1088": "31___CATEGORICAL___reservation_status_date___2016-06-24", "1089": "31___CATEGORICAL___reservation_status_date___2016-06-25", "1090": "31___CATEGORICAL___reservation_status_date___2016-06-26", "1091": "31___CATEGORICAL___reservation_status_date___2016-06-27", "1092": "31___CATEGORICAL___reservation_status_date___2016-06-28", "1093": "31___CATEGORICAL___reservation_status_date___2016-06-29", "1094": "31___CATEGORICAL___reservation_status_date___2016-06-30", "1095": "31___CATEGORICAL___reservation_status_date___2016-07-01", "1096": "31___CATEGORICAL___reservation_status_date___2016-07-02", "1097": "31___CATEGORICAL___reservation_status_date___2016-07-03", "1098": "31___CATEGORICAL___reservation_status_date___2016-07-04", "1099": "31___CATEGORICAL___reservation_status_date___2016-07-05", "1100": "31___CATEGORICAL___reservation_status_date___2016-07-06", "1101": "31___CATEGORICAL___reservation_status_date___2016-07-07", "1102": "31___CATEGORICAL___reservation_status_date___2016-07-08", "1103": "31___CATEGORICAL___reservation_status_date___2016-07-09", "1104": "31___CATEGORICAL___reservation_status_date___2016-07-10", "1105": "31___CATEGORICAL___reservation_status_date___2016-07-11", "1106": "31___CATEGORICAL___reservation_status_date___2016-07-12", "1107": "31___CATEGORICAL___reservation_status_date___2016-07-13", "1108": "31___CATEGORICAL___reservation_status_date___2016-07-14", "1109": "31___CATEGORICAL___reservation_status_date___2016-07-15", "1110": "31___CATEGORICAL___reservation_status_date___2016-07-16", "1111": "31___CATEGORICAL___reservation_status_date___2016-07-17", "1112": "31___CATEGORICAL___reservation_status_date___2016-07-18", "1113": "31___CATEGORICAL___reservation_status_date___2016-07-19", "1114": "31___CATEGORICAL___reservation_status_date___2016-07-20", "1115": "31___CATEGORICAL___reservation_status_date___2016-07-21", "1116": "31___CATEGORICAL___reservation_status_date___2016-07-22", "1117": "31___CATEGORICAL___reservation_status_date___2016-07-23", "1118": "31___CATEGORICAL___reservation_status_date___2016-07-24", "1119": "31___CATEGORICAL___reservation_status_date___2016-07-25", "1120": "31___CATEGORICAL___reservation_status_date___2016-07-26", "1121": "31___CATEGORICAL___reservation_status_date___2016-07-27", "1122": "31___CATEGORICAL___reservation_status_date___2016-07-28", "1123": "31___CATEGORICAL___reservation_status_date___2016-07-29", "1124": "31___CATEGORICAL___reservation_status_date___2016-07-30", "1125": "31___CATEGORICAL___reservation_status_date___2016-07-31", "1126": "31___CATEGORICAL___reservation_status_date___2016-08-01", "1127": "31___CATEGORICAL___reservation_status_date___2016-08-02", "1128": "31___CATEGORICAL___reservation_status_date___2016-08-03", "1129": "31___CATEGORICAL___reservation_status_date___2016-08-04", "1130": "31___CATEGORICAL___reservation_status_date___2016-08-05", "1131": "31___CATEGORICAL___reservation_status_date___2016-08-06", "1132": "31___CATEGORICAL___reservation_status_date___2016-08-07", "1133": "31___CATEGORICAL___reservation_status_date___2016-08-08", "1134": "31___CATEGORICAL___reservation_status_date___2016-08-09", "1135": "31___CATEGORICAL___reservation_status_date___2016-08-10", "1136": "31___CATEGORICAL___reservation_status_date___2016-08-11", "1137": "31___CATEGORICAL___reservation_status_date___2016-08-12", "1138": "31___CATEGORICAL___reservation_status_date___2016-08-13", "1139": "31___CATEGORICAL___reservation_status_date___2016-08-14", "1140": "31___CATEGORICAL___reservation_status_date___2016-08-15", "1141": "31___CATEGORICAL___reservation_status_date___2016-08-16", "1142": "31___CATEGORICAL___reservation_status_date___2016-08-17", "1143": "31___CATEGORICAL___reservation_status_date___2016-08-18", "1144": "31___CATEGORICAL___reservation_status_date___2016-08-19", "1145": "31___CATEGORICAL___reservation_status_date___2016-08-20", "1146": "31___CATEGORICAL___reservation_status_date___2016-08-21", "1147": "31___CATEGORICAL___reservation_status_date___2016-08-22", "1148": "31___CATEGORICAL___reservation_status_date___2016-08-23", "1149": "31___CATEGORICAL___reservation_status_date___2016-08-24", "1150": "31___CATEGORICAL___reservation_status_date___2016-08-25", "1151": "31___CATEGORICAL___reservation_status_date___2016-08-26", "1152": "31___CATEGORICAL___reservation_status_date___2016-08-27", "1153": "31___CATEGORICAL___reservation_status_date___2016-08-28", "1154": "31___CATEGORICAL___reservation_status_date___2016-08-29", "1155": "31___CATEGORICAL___reservation_status_date___2016-08-30", "1156": "31___CATEGORICAL___reservation_status_date___2016-08-31", "1157": "31___CATEGORICAL___reservation_status_date___2016-09-01", "1158": "31___CATEGORICAL___reservation_status_date___2016-09-02", "1159": "31___CATEGORICAL___reservation_status_date___2016-09-03", "1160": "31___CATEGORICAL___reservation_status_date___2016-09-04", "1161": "31___CATEGORICAL___reservation_status_date___2016-09-05", "1162": "31___CATEGORICAL___reservation_status_date___2016-09-06", "1163": "31___CATEGORICAL___reservation_status_date___2016-09-07", "1164": "31___CATEGORICAL___reservation_status_date___2016-09-08", "1165": "31___CATEGORICAL___reservation_status_date___2016-09-09", "1166": "31___CATEGORICAL___reservation_status_date___2016-09-10", "1167": "31___CATEGORICAL___reservation_status_date___2016-09-11", "1168": "31___CATEGORICAL___reservation_status_date___2016-09-12", "1169": "31___CATEGORICAL___reservation_status_date___2016-09-13", "1170": "31___CATEGORICAL___reservation_status_date___2016-09-14", "1171": "31___CATEGORICAL___reservation_status_date___2016-09-15", "1172": "31___CATEGORICAL___reservation_status_date___2016-09-16", "1173": "31___CATEGORICAL___reservation_status_date___2016-09-17", "1174": "31___CATEGORICAL___reservation_status_date___2016-09-18", "1175": "31___CATEGORICAL___reservation_status_date___2016-09-19", "1176": "31___CATEGORICAL___reservation_status_date___2016-09-20", "1177": "31___CATEGORICAL___reservation_status_date___2016-09-21", "1178": "31___CATEGORICAL___reservation_status_date___2016-09-22", "1179": "31___CATEGORICAL___reservation_status_date___2016-09-23", "1180": "31___CATEGORICAL___reservation_status_date___2016-09-24", "1181": "31___CATEGORICAL___reservation_status_date___2016-09-25", "1182": "31___CATEGORICAL___reservation_status_date___2016-09-26", "1183": "31___CATEGORICAL___reservation_status_date___2016-09-27", "1184": "31___CATEGORICAL___reservation_status_date___2016-09-28", "1185": "31___CATEGORICAL___reservation_status_date___2016-09-29", "1186": "31___CATEGORICAL___reservation_status_date___2016-09-30", "1187": "31___CATEGORICAL___reservation_status_date___2016-10-01", "1188": "31___CATEGORICAL___reservation_status_date___2016-10-02", "1189": "31___CATEGORICAL___reservation_status_date___2016-10-03", "1190": "31___CATEGORICAL___reservation_status_date___2016-10-04", "1191": "31___CATEGORICAL___reservation_status_date___2016-10-05", "1192": "31___CATEGORICAL___reservation_status_date___2016-10-06", "1193": "31___CATEGORICAL___reservation_status_date___2016-10-07", "1194": "31___CATEGORICAL___reservation_status_date___2016-10-08", "1195": "31___CATEGORICAL___reservation_status_date___2016-10-09", "1196": "31___CATEGORICAL___reservation_status_date___2016-10-10", "1197": "31___CATEGORICAL___reservation_status_date___2016-10-11", "1198": "31___CATEGORICAL___reservation_status_date___2016-10-12", "1199": "31___CATEGORICAL___reservation_status_date___2016-10-13", "1200": "31___CATEGORICAL___reservation_status_date___2016-10-14", "1201": "31___CATEGORICAL___reservation_status_date___2016-10-15", "1202": "31___CATEGORICAL___reservation_status_date___2016-10-16", "1203": "31___CATEGORICAL___reservation_status_date___2016-10-17", "1204": "31___CATEGORICAL___reservation_status_date___2016-10-18", "1205": "31___CATEGORICAL___reservation_status_date___2016-10-19", "1206": "31___CATEGORICAL___reservation_status_date___2016-10-20", "1207": "31___CATEGORICAL___reservation_status_date___2016-10-21", "1208": "31___CATEGORICAL___reservation_status_date___2016-10-22", "1209": "31___CATEGORICAL___reservation_status_date___2016-10-23", "1210": "31___CATEGORICAL___reservation_status_date___2016-10-24", "1211": "31___CATEGORICAL___reservation_status_date___2016-10-25", "1212": "31___CATEGORICAL___reservation_status_date___2016-10-26", "1213": "31___CATEGORICAL___reservation_status_date___2016-10-27", "1214": "31___CATEGORICAL___reservation_status_date___2016-10-28", "1215": "31___CATEGORICAL___reservation_status_date___2016-10-29", "1216": "31___CATEGORICAL___reservation_status_date___2016-10-30", "1217": "31___CATEGORICAL___reservation_status_date___2016-10-31", "1218": "31___CATEGORICAL___reservation_status_date___2016-11-01", "1219": "31___CATEGORICAL___reservation_status_date___2016-11-02", "1220": "31___CATEGORICAL___reservation_status_date___2016-11-03", "1221": "31___CATEGORICAL___reservation_status_date___2016-11-04", "1222": "31___CATEGORICAL___reservation_status_date___2016-11-05", "1223": "31___CATEGORICAL___reservation_status_date___2016-11-06", "1224": "31___CATEGORICAL___reservation_status_date___2016-11-07", "1225": "31___CATEGORICAL___reservation_status_date___2016-11-08", "1226": "31___CATEGORICAL___reservation_status_date___2016-11-09", "1227": "31___CATEGORICAL___reservation_status_date___2016-11-10", "1228": "31___CATEGORICAL___reservation_status_date___2016-11-11", "1229": "31___CATEGORICAL___reservation_status_date___2016-11-12", "1230": "31___CATEGORICAL___reservation_status_date___2016-11-13", "1231": "31___CATEGORICAL___reservation_status_date___2016-11-14", "1232": "31___CATEGORICAL___reservation_status_date___2016-11-15", "1233": "31___CATEGORICAL___reservation_status_date___2016-11-16", "1234": "31___CATEGORICAL___reservation_status_date___2016-11-17", "1235": "31___CATEGORICAL___reservation_status_date___2016-11-18", "1236": "31___CATEGORICAL___reservation_status_date___2016-11-19", "1237": "31___CATEGORICAL___reservation_status_date___2016-11-20", "1238": "31___CATEGORICAL___reservation_status_date___2016-11-21", "1239": "31___CATEGORICAL___reservation_status_date___2016-11-22", "1240": "31___CATEGORICAL___reservation_status_date___2016-11-23", "1241": "31___CATEGORICAL___reservation_status_date___2016-11-24", "1242": "31___CATEGORICAL___reservation_status_date___2016-11-25", "1243": "31___CATEGORICAL___reservation_status_date___2016-11-26", "1244": "31___CATEGORICAL___reservation_status_date___2016-11-27", "1245": "31___CATEGORICAL___reservation_status_date___2016-11-28", "1246": "31___CATEGORICAL___reservation_status_date___2016-11-29", "1247": "31___CATEGORICAL___reservation_status_date___2016-11-30", "1248": "31___CATEGORICAL___reservation_status_date___2016-12-01", "1249": "31___CATEGORICAL___reservation_status_date___2016-12-02", "1250": "31___CATEGORICAL___reservation_status_date___2016-12-03", "1251": "31___CATEGORICAL___reservation_status_date___2016-12-04", "1252": "31___CATEGORICAL___reservation_status_date___2016-12-05", "1253": "31___CATEGORICAL___reservation_status_date___2016-12-06", "1254": "31___CATEGORICAL___reservation_status_date___2016-12-07", "1255": "31___CATEGORICAL___reservation_status_date___2016-12-08", "1256": "31___CATEGORICAL___reservation_status_date___2016-12-09", "1257": "31___CATEGORICAL___reservation_status_date___2016-12-10", "1258": "31___CATEGORICAL___reservation_status_date___2016-12-11", "1259": "31___CATEGORICAL___reservation_status_date___2016-12-12", "1260": "31___CATEGORICAL___reservation_status_date___2016-12-13", "1261": "31___CATEGORICAL___reservation_status_date___2016-12-14", "1262": "31___CATEGORICAL___reservation_status_date___2016-12-15", "1263": "31___CATEGORICAL___reservation_status_date___2016-12-16", "1264": "31___CATEGORICAL___reservation_status_date___2016-12-17", "1265": "31___CATEGORICAL___reservation_status_date___2016-12-18", "1266": "31___CATEGORICAL___reservation_status_date___2016-12-19", "1267": "31___CATEGORICAL___reservation_status_date___2016-12-20", "1268": "31___CATEGORICAL___reservation_status_date___2016-12-21", "1269": "31___CATEGORICAL___reservation_status_date___2016-12-22", "1270": "31___CATEGORICAL___reservation_status_date___2016-12-23", "1271": "31___CATEGORICAL___reservation_status_date___2016-12-24", "1272": "31___CATEGORICAL___reservation_status_date___2016-12-25", "1273": "31___CATEGORICAL___reservation_status_date___2016-12-26", "1274": "31___CATEGORICAL___reservation_status_date___2016-12-27", "1275": "31___CATEGORICAL___reservation_status_date___2016-12-28", "1276": "31___CATEGORICAL___reservation_status_date___2016-12-29", "1277": "31___CATEGORICAL___reservation_status_date___2016-12-30", "1278": "31___CATEGORICAL___reservation_status_date___2016-12-31", "1279": "31___CATEGORICAL___reservation_status_date___2017-01-01", "1280": "31___CATEGORICAL___reservation_status_date___2017-01-02", "1281": "31___CATEGORICAL___reservation_status_date___2017-01-03", "1282": "31___CATEGORICAL___reservation_status_date___2017-01-04", "1283": "31___CATEGORICAL___reservation_status_date___2017-01-05", "1284": "31___CATEGORICAL___reservation_status_date___2017-01-06", "1285": "31___CATEGORICAL___reservation_status_date___2017-01-07", "1286": "31___CATEGORICAL___reservation_status_date___2017-01-08", "1287": "31___CATEGORICAL___reservation_status_date___2017-01-09", "1288": "31___CATEGORICAL___reservation_status_date___2017-01-10", "1289": "31___CATEGORICAL___reservation_status_date___2017-01-11", "1290": "31___CATEGORICAL___reservation_status_date___2017-01-12", "1291": "31___CATEGORICAL___reservation_status_date___2017-01-13", "1292": "31___CATEGORICAL___reservation_status_date___2017-01-14", "1293": "31___CATEGORICAL___reservation_status_date___2017-01-15", "1294": "31___CATEGORICAL___reservation_status_date___2017-01-16", "1295": "31___CATEGORICAL___reservation_status_date___2017-01-17", "1296": "31___CATEGORICAL___reservation_status_date___2017-01-18", "1297": "31___CATEGORICAL___reservation_status_date___2017-01-19", "1298": "31___CATEGORICAL___reservation_status_date___2017-01-20", "1299": "31___CATEGORICAL___reservation_status_date___2017-01-21", "1300": "31___CATEGORICAL___reservation_status_date___2017-01-22", "1301": "31___CATEGORICAL___reservation_status_date___2017-01-23", "1302": "31___CATEGORICAL___reservation_status_date___2017-01-24", "1303": "31___CATEGORICAL___reservation_status_date___2017-01-25", "1304": "31___CATEGORICAL___reservation_status_date___2017-01-26", "1305": "31___CATEGORICAL___reservation_status_date___2017-01-27", "1306": "31___CATEGORICAL___reservation_status_date___2017-01-28", "1307": "31___CATEGORICAL___reservation_status_date___2017-01-29", "1308": "31___CATEGORICAL___reservation_status_date___2017-01-30", "1309": "31___CATEGORICAL___reservation_status_date___2017-01-31", "1310": "31___CATEGORICAL___reservation_status_date___2017-02-01", "1311": "31___CATEGORICAL___reservation_status_date___2017-02-02", "1312": "31___CATEGORICAL___reservation_status_date___2017-02-03", "1313": "31___CATEGORICAL___reservation_status_date___2017-02-04", "1314": "31___CATEGORICAL___reservation_status_date___2017-02-05", "1315": "31___CATEGORICAL___reservation_status_date___2017-02-06", "1316": "31___CATEGORICAL___reservation_status_date___2017-02-07", "1317": "31___CATEGORICAL___reservation_status_date___2017-02-08", "1318": "31___CATEGORICAL___reservation_status_date___2017-02-09", "1319": "31___CATEGORICAL___reservation_status_date___2017-02-10", "1320": "31___CATEGORICAL___reservation_status_date___2017-02-11", "1321": "31___CATEGORICAL___reservation_status_date___2017-02-12", "1322": "31___CATEGORICAL___reservation_status_date___2017-02-13", "1323": "31___CATEGORICAL___reservation_status_date___2017-02-14", "1324": "31___CATEGORICAL___reservation_status_date___2017-02-15", "1325": "31___CATEGORICAL___reservation_status_date___2017-02-16", "1326": "31___CATEGORICAL___reservation_status_date___2017-02-17", "1327": "31___CATEGORICAL___reservation_status_date___2017-02-18", "1328": "31___CATEGORICAL___reservation_status_date___2017-02-19", "1329": "31___CATEGORICAL___reservation_status_date___2017-02-20", "1330": "31___CATEGORICAL___reservation_status_date___2017-02-21", "1331": "31___CATEGORICAL___reservation_status_date___2017-02-22", "1332": "31___CATEGORICAL___reservation_status_date___2017-02-23", "1333": "31___CATEGORICAL___reservation_status_date___2017-02-24", "1334": "31___CATEGORICAL___reservation_status_date___2017-02-25", "1335": "31___CATEGORICAL___reservation_status_date___2017-02-26", "1336": "31___CATEGORICAL___reservation_status_date___2017-02-27", "1337": "31___CATEGORICAL___reservation_status_date___2017-02-28", "1338": "31___CATEGORICAL___reservation_status_date___2017-03-01", "1339": "31___CATEGORICAL___reservation_status_date___2017-03-02", "1340": "31___CATEGORICAL___reservation_status_date___2017-03-03", "1341": "31___CATEGORICAL___reservation_status_date___2017-03-04", "1342": "31___CATEGORICAL___reservation_status_date___2017-03-05", "1343": "31___CATEGORICAL___reservation_status_date___2017-03-06", "1344": "31___CATEGORICAL___reservation_status_date___2017-03-07", "1345": "31___CATEGORICAL___reservation_status_date___2017-03-08", "1346": "31___CATEGORICAL___reservation_status_date___2017-03-09", "1347": "31___CATEGORICAL___reservation_status_date___2017-03-10", "1348": "31___CATEGORICAL___reservation_status_date___2017-03-11", "1349": "31___CATEGORICAL___reservation_status_date___2017-03-12", "1350": "31___CATEGORICAL___reservation_status_date___2017-03-13", "1351": "31___CATEGORICAL___reservation_status_date___2017-03-14", "1352": "31___CATEGORICAL___reservation_status_date___2017-03-15", "1353": "31___CATEGORICAL___reservation_status_date___2017-03-16", "1354": "31___CATEGORICAL___reservation_status_date___2017-03-17", "1355": "31___CATEGORICAL___reservation_status_date___2017-03-18", "1356": "31___CATEGORICAL___reservation_status_date___2017-03-19", "1357": "31___CATEGORICAL___reservation_status_date___2017-03-20", "1358": "31___CATEGORICAL___reservation_status_date___2017-03-21", "1359": "31___CATEGORICAL___reservation_status_date___2017-03-22", "1360": "31___CATEGORICAL___reservation_status_date___2017-03-23", "1361": "31___CATEGORICAL___reservation_status_date___2017-03-24", "1362": "31___CATEGORICAL___reservation_status_date___2017-03-25", "1363": "31___CATEGORICAL___reservation_status_date___2017-03-26", "1364": "31___CATEGORICAL___reservation_status_date___2017-03-27", "1365": "31___CATEGORICAL___reservation_status_date___2017-03-28", "1366": "31___CATEGORICAL___reservation_status_date___2017-03-29", "1367": "31___CATEGORICAL___reservation_status_date___2017-03-30", "1368": "31___CATEGORICAL___reservation_status_date___2017-03-31", "1369": "31___CATEGORICAL___reservation_status_date___2017-04-01", "1370": "31___CATEGORICAL___reservation_status_date___2017-04-02", "1371": "31___CATEGORICAL___reservation_status_date___2017-04-03", "1372": "31___CATEGORICAL___reservation_status_date___2017-04-04", "1373": "31___CATEGORICAL___reservation_status_date___2017-04-05", "1374": "31___CATEGORICAL___reservation_status_date___2017-04-06", "1375": "31___CATEGORICAL___reservation_status_date___2017-04-07", "1376": "31___CATEGORICAL___reservation_status_date___2017-04-08", "1377": "31___CATEGORICAL___reservation_status_date___2017-04-09", "1378": "31___CATEGORICAL___reservation_status_date___2017-04-10", "1379": "31___CATEGORICAL___reservation_status_date___2017-04-11", "1380": "31___CATEGORICAL___reservation_status_date___2017-04-12", "1381": "31___CATEGORICAL___reservation_status_date___2017-04-13", "1382": "31___CATEGORICAL___reservation_status_date___2017-04-14", "1383": "31___CATEGORICAL___reservation_status_date___2017-04-15", "1384": "31___CATEGORICAL___reservation_status_date___2017-04-16", "1385": "31___CATEGORICAL___reservation_status_date___2017-04-17", "1386": "31___CATEGORICAL___reservation_status_date___2017-04-18", "1387": "31___CATEGORICAL___reservation_status_date___2017-04-19", "1388": "31___CATEGORICAL___reservation_status_date___2017-04-20", "1389": "31___CATEGORICAL___reservation_status_date___2017-04-21", "1390": "31___CATEGORICAL___reservation_status_date___2017-04-22", "1391": "31___CATEGORICAL___reservation_status_date___2017-04-23", "1392": "31___CATEGORICAL___reservation_status_date___2017-04-24", "1393": "31___CATEGORICAL___reservation_status_date___2017-04-25", "1394": "31___CATEGORICAL___reservation_status_date___2017-04-26", "1395": "31___CATEGORICAL___reservation_status_date___2017-04-27", "1396": "31___CATEGORICAL___reservation_status_date___2017-04-28", "1397": "31___CATEGORICAL___reservation_status_date___2017-04-29", "1398": "31___CATEGORICAL___reservation_status_date___2017-04-30", "1399": "31___CATEGORICAL___reservation_status_date___2017-05-01", "1400": "31___CATEGORICAL___reservation_status_date___2017-05-02", "1401": "31___CATEGORICAL___reservation_status_date___2017-05-03", "1402": "31___CATEGORICAL___reservation_status_date___2017-05-04", "1403": "31___CATEGORICAL___reservation_status_date___2017-05-05", "1404": "31___CATEGORICAL___reservation_status_date___2017-05-06", "1405": "31___CATEGORICAL___reservation_status_date___2017-05-07", "1406": "31___CATEGORICAL___reservation_status_date___2017-05-08", "1407": "31___CATEGORICAL___reservation_status_date___2017-05-09", "1408": "31___CATEGORICAL___reservation_status_date___2017-05-10", "1409": "31___CATEGORICAL___reservation_status_date___2017-05-11", "1410": "31___CATEGORICAL___reservation_status_date___2017-05-12", "1411": "31___CATEGORICAL___reservation_status_date___2017-05-13", "1412": "31___CATEGORICAL___reservation_status_date___2017-05-14", "1413": "31___CATEGORICAL___reservation_status_date___2017-05-15", "1414": "31___CATEGORICAL___reservation_status_date___2017-05-16", "1415": "31___CATEGORICAL___reservation_status_date___2017-05-17", "1416": "31___CATEGORICAL___reservation_status_date___2017-05-18", "1417": "31___CATEGORICAL___reservation_status_date___2017-05-19", "1418": "31___CATEGORICAL___reservation_status_date___2017-05-20", "1419": "31___CATEGORICAL___reservation_status_date___2017-05-21", "1420": "31___CATEGORICAL___reservation_status_date___2017-05-22", "1421": "31___CATEGORICAL___reservation_status_date___2017-05-23", "1422": "31___CATEGORICAL___reservation_status_date___2017-05-24", "1423": "31___CATEGORICAL___reservation_status_date___2017-05-25", "1424": "31___CATEGORICAL___reservation_status_date___2017-05-26", "1425": "31___CATEGORICAL___reservation_status_date___2017-05-27", "1426": "31___CATEGORICAL___reservation_status_date___2017-05-28", "1427": "31___CATEGORICAL___reservation_status_date___2017-05-29", "1428": "31___CATEGORICAL___reservation_status_date___2017-05-30", "1429": "31___CATEGORICAL___reservation_status_date___2017-05-31", "1430": "31___CATEGORICAL___reservation_status_date___2017-06-01", "1431": "31___CATEGORICAL___reservation_status_date___2017-06-02", "1432": "31___CATEGORICAL___reservation_status_date___2017-06-03", "1433": "31___CATEGORICAL___reservation_status_date___2017-06-04", "1434": "31___CATEGORICAL___reservation_status_date___2017-06-05", "1435": "31___CATEGORICAL___reservation_status_date___2017-06-06", "1436": "31___CATEGORICAL___reservation_status_date___2017-06-07", "1437": "31___CATEGORICAL___reservation_status_date___2017-06-08", "1438": "31___CATEGORICAL___reservation_status_date___2017-06-09", "1439": "31___CATEGORICAL___reservation_status_date___2017-06-10", "1440": "31___CATEGORICAL___reservation_status_date___2017-06-11", "1441": "31___CATEGORICAL___reservation_status_date___2017-06-12", "1442": "31___CATEGORICAL___reservation_status_date___2017-06-13", "1443": "31___CATEGORICAL___reservation_status_date___2017-06-14", "1444": "31___CATEGORICAL___reservation_status_date___2017-06-15", "1445": "31___CATEGORICAL___reservation_status_date___2017-06-16", "1446": "31___CATEGORICAL___reservation_status_date___2017-06-17", "1447": "31___CATEGORICAL___reservation_status_date___2017-06-18", "1448": "31___CATEGORICAL___reservation_status_date___2017-06-19", "1449": "31___CATEGORICAL___reservation_status_date___2017-06-20", "1450": "31___CATEGORICAL___reservation_status_date___2017-06-21", "1451": "31___CATEGORICAL___reservation_status_date___2017-06-22", "1452": "31___CATEGORICAL___reservation_status_date___2017-06-23", "1453": "31___CATEGORICAL___reservation_status_date___2017-06-24", "1454": "31___CATEGORICAL___reservation_status_date___2017-06-25", "1455": "31___CATEGORICAL___reservation_status_date___2017-06-26", "1456": "31___CATEGORICAL___reservation_status_date___2017-06-27", "1457": "31___CATEGORICAL___reservation_status_date___2017-06-28", "1458": "31___CATEGORICAL___reservation_status_date___2017-06-29", "1459": "31___CATEGORICAL___reservation_status_date___2017-06-30", "1460": "31___CATEGORICAL___reservation_status_date___2017-07-01", "1461": "31___CATEGORICAL___reservation_status_date___2017-07-02", "1462": "31___CATEGORICAL___reservation_status_date___2017-07-03", "1463": "31___CATEGORICAL___reservation_status_date___2017-07-04", "1464": "31___CATEGORICAL___reservation_status_date___2017-07-05", "1465": "31___CATEGORICAL___reservation_status_date___2017-07-06", "1466": "31___CATEGORICAL___reservation_status_date___2017-07-07", "1467": "31___CATEGORICAL___reservation_status_date___2017-07-08", "1468": "31___CATEGORICAL___reservation_status_date___2017-07-09", "1469": "31___CATEGORICAL___reservation_status_date___2017-07-10", "1470": "31___CATEGORICAL___reservation_status_date___2017-07-11", "1471": "31___CATEGORICAL___reservation_status_date___2017-07-12", "1472": "31___CATEGORICAL___reservation_status_date___2017-07-13", "1473": "31___CATEGORICAL___reservation_status_date___2017-07-14", "1474": "31___CATEGORICAL___reservation_status_date___2017-07-15", "1475": "31___CATEGORICAL___reservation_status_date___2017-07-16", "1476": "31___CATEGORICAL___reservation_status_date___2017-07-17", "1477": "31___CATEGORICAL___reservation_status_date___2017-07-18", "1478": "31___CATEGORICAL___reservation_status_date___2017-07-19", "1479": "31___CATEGORICAL___reservation_status_date___2017-07-20", "1480": "31___CATEGORICAL___reservation_status_date___2017-07-21", "1481": "31___CATEGORICAL___reservation_status_date___2017-07-22", "1482": "31___CATEGORICAL___reservation_status_date___2017-07-23", "1483": "31___CATEGORICAL___reservation_status_date___2017-07-24", "1484": "31___CATEGORICAL___reservation_status_date___2017-07-25", "1485": "31___CATEGORICAL___reservation_status_date___2017-07-26", "1486": "31___CATEGORICAL___reservation_status_date___2017-07-27", "1487": "31___CATEGORICAL___reservation_status_date___2017-07-28", "1488": "31___CATEGORICAL___reservation_status_date___2017-07-29", "1489": "31___CATEGORICAL___reservation_status_date___2017-07-30", "1490": "31___CATEGORICAL___reservation_status_date___2017-07-31", "1491": "31___CATEGORICAL___reservation_status_date___2017-08-01", "1492": "31___CATEGORICAL___reservation_status_date___2017-08-02", "1493": "31___CATEGORICAL___reservation_status_date___2017-08-03", "1494": "31___CATEGORICAL___reservation_status_date___2017-08-04", "1495": "31___CATEGORICAL___reservation_status_date___2017-08-05", "1496": "31___CATEGORICAL___reservation_status_date___2017-08-06", "1497": "31___CATEGORICAL___reservation_status_date___2017-08-07", "1498": "31___CATEGORICAL___reservation_status_date___2017-08-08", "1499": "31___CATEGORICAL___reservation_status_date___2017-08-09", "1500": "31___CATEGORICAL___reservation_status_date___2017-08-10", "1501": "31___CATEGORICAL___reservation_status_date___2017-08-11", "1502": "31___CATEGORICAL___reservation_status_date___2017-08-12", "1503": "31___CATEGORICAL___reservation_status_date___2017-08-13", "1504": "31___CATEGORICAL___reservation_status_date___2017-08-14", "1505": "31___CATEGORICAL___reservation_status_date___2017-08-15", "1506": "31___CATEGORICAL___reservation_status_date___2017-08-16", "1507": "31___CATEGORICAL___reservation_status_date___2017-08-17", "1508": "31___CATEGORICAL___reservation_status_date___2017-08-18", "1509": "31___CATEGORICAL___reservation_status_date___2017-08-19", "1510": "31___CATEGORICAL___reservation_status_date___2017-08-20", "1511": "31___CATEGORICAL___reservation_status_date___2017-08-21", "1512": "31___CATEGORICAL___reservation_status_date___2017-08-22", "1513": "31___CATEGORICAL___reservation_status_date___2017-08-23", "1514": "31___CATEGORICAL___reservation_status_date___2017-08-24", "1515": "31___CATEGORICAL___reservation_status_date___2017-08-25", "1516": "31___CATEGORICAL___reservation_status_date___2017-08-26", "1517": "31___CATEGORICAL___reservation_status_date___2017-08-27", "1518": "31___CATEGORICAL___reservation_status_date___2017-08-28", "1519": "31___CATEGORICAL___reservation_status_date___2017-08-29", "1520": "31___CATEGORICAL___reservation_status_date___2017-08-30", "1521": "31___CATEGORICAL___reservation_status_date___2017-08-31", "1522": "31___CATEGORICAL___reservation_status_date___2017-09-01", "1523": "31___CATEGORICAL___reservation_status_date___2017-09-02", "1524": "31___CATEGORICAL___reservation_status_date___2017-09-03", "1525": "31___CATEGORICAL___reservation_status_date___2017-09-04", "1526": "31___CATEGORICAL___reservation_status_date___2017-09-05", "1527": "31___CATEGORICAL___reservation_status_date___2017-09-06", "1528": "31___CATEGORICAL___reservation_status_date___2017-09-07", "1529": "31___CATEGORICAL___reservation_status_date___2017-09-08", "1530": "31___CATEGORICAL___reservation_status_date___2017-09-09", "1531": "31___CATEGORICAL___reservation_status_date___2017-09-10", "1532": "31___CATEGORICAL___reservation_status_date___2017-09-12", "1533": "31___CATEGORICAL___reservation_status_date___2017-09-14"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___CATEGORICAL___hotel___City Hotel": 11, "00___CATEGORICAL___hotel___Resort Hotel": 12, "01___CATEGORICAL___is_canceled___0": 13, "01___CATEGORICAL___is_canceled___1": 14, "02___NUMERIC___lead_time_00___0": 15, "02___NUMERIC___lead_time_00___1": 16, "02___NUMERIC___lead_time_00___2": 17, "02___NUMERIC___lead_time_00___3": 18, "02___NUMERIC___lead_time_00___4": 19, "02___NUMERIC___lead_time_00___5": 20, "02___NUMERIC___lead_time_00___6": 21, "02___NUMERIC___lead_time_00___7": 22, "02___NUMERIC___lead_time_01___0": 23, "02___NUMERIC___lead_time_01___1": 24, "02___NUMERIC___lead_time_01___2": 25, "02___NUMERIC___lead_time_01___3": 26, "02___NUMERIC___lead_time_01___4": 27, "02___NUMERIC___lead_time_01___5": 28, "02___NUMERIC___lead_time_01___6": 29, "02___NUMERIC___lead_time_01___7": 30, "02___NUMERIC___lead_time_01___8": 31, "02___NUMERIC___lead_time_01___9": 32, "02___NUMERIC___lead_time_02___0": 33, "02___NUMERIC___lead_time_02___1": 34, "02___NUMERIC___lead_time_02___2": 35, "02___NUMERIC___lead_time_02___3": 36, "02___NUMERIC___lead_time_02___4": 37, "02___NUMERIC___lead_time_02___5": 38, "02___NUMERIC___lead_time_02___6": 39, "02___NUMERIC___lead_time_02___7": 40, "02___NUMERIC___lead_time_02___8": 41, "02___NUMERIC___lead_time_02___9": 42, "03___NUMERIC___arrival_date_year_00___2": 43, "03___NUMERIC___arrival_date_year_01___0": 44, "03___NUMERIC___arrival_date_year_02___1": 45, "03___NUMERIC___arrival_date_year_03___5": 46, "03___NUMERIC___arrival_date_year_03___6": 47, "03___NUMERIC___arrival_date_year_03___7": 48, "04___CATEGORICAL___arrival_date_month___April": 49, "04___CATEGORICAL___arrival_date_month___August": 50, "04___CATEGORICAL___arrival_date_month___December": 51, "04___CATEGORICAL___arrival_date_month___February": 52, "04___CATEGORICAL___arrival_date_month___January": 53, "04___CATEGORICAL___arrival_date_month___July": 54, "04___CATEGORICAL___arrival_date_month___June": 55, "04___CATEGORICAL___arrival_date_month___March": 56, "04___CATEGORICAL___arrival_date_month___May": 57, "04___CATEGORICAL___arrival_date_month___November": 58, "04___CATEGORICAL___arrival_date_month___October": 59, "04___CATEGORICAL___arrival_date_month___September": 60, "05___NUMERIC___arrival_date_week_number_00___0": 61, "05___NUMERIC___arrival_date_week_number_00___1": 62, "05___NUMERIC___arrival_date_week_number_00___2": 63, "05___NUMERIC___arrival_date_week_number_00___3": 64, "05___NUMERIC___arrival_date_week_number_00___4": 65, "05___NUMERIC___arrival_date_week_number_00___5": 66, "05___NUMERIC___arrival_date_week_number_01___0": 67, "05___NUMERIC___arrival_date_week_number_01___1": 68, "05___NUMERIC___arrival_date_week_number_01___2": 69, "05___NUMERIC___arrival_date_week_number_01___3": 70, "05___NUMERIC___arrival_date_week_number_01___4": 71, "05___NUMERIC___arrival_date_week_number_01___5": 72, "05___NUMERIC___arrival_date_week_number_01___6": 73, "05___NUMERIC___arrival_date_week_number_01___7": 74, "05___NUMERIC___arrival_date_week_number_01___8": 75, "05___NUMERIC___arrival_date_week_number_01___9": 76, "06___NUMERIC___arrival_date_day_of_month_00___0": 77, "06___NUMERIC___arrival_date_day_of_month_00___1": 78, "06___NUMERIC___arrival_date_day_of_month_00___2": 79, "06___NUMERIC___arrival_date_day_of_month_00___3": 80, "06___NUMERIC___arrival_date_day_of_month_01___0": 81, "06___NUMERIC___arrival_date_day_of_month_01___1": 82, "06___NUMERIC___arrival_date_day_of_month_01___2": 83, "06___NUMERIC___arrival_date_day_of_month_01___3": 84, "06___NUMERIC___arrival_date_day_of_month_01___4": 85, "06___NUMERIC___arrival_date_day_of_month_01___5": 86, "06___NUMERIC___arrival_date_day_of_month_01___6": 87, "06___NUMERIC___arrival_date_day_of_month_01___7": 88, "06___NUMERIC___arrival_date_day_of_month_01___8": 89, "06___NUMERIC___arrival_date_day_of_month_01___9": 90, "07___NUMERIC___stays_in_weekend_nights_00___0": 91, "07___NUMERIC___stays_in_weekend_nights_00___1": 92, "07___NUMERIC___stays_in_weekend_nights_01___0": 93, "07___NUMERIC___stays_in_weekend_nights_01___1": 94, "07___NUMERIC___stays_in_weekend_nights_01___2": 95, "07___NUMERIC___stays_in_weekend_nights_01___3": 96, "07___NUMERIC___stays_in_weekend_nights_01___4": 97, "07___NUMERIC___stays_in_weekend_nights_01___5": 98, "07___NUMERIC___stays_in_weekend_nights_01___6": 99, "07___NUMERIC___stays_in_weekend_nights_01___7": 100, "07___NUMERIC___stays_in_weekend_nights_01___8": 101, "07___NUMERIC___stays_in_weekend_nights_01___9": 102, "08___NUMERIC___stays_in_week_nights_00___0": 103, "08___NUMERIC___stays_in_week_nights_00___1": 104, "08___NUMERIC___stays_in_week_nights_00___2": 105, "08___NUMERIC___stays_in_week_nights_00___3": 106, "08___NUMERIC___stays_in_week_nights_00___4": 107, "08___NUMERIC___stays_in_week_nights_00___5": 108, "08___NUMERIC___stays_in_week_nights_01___0": 109, "08___NUMERIC___stays_in_week_nights_01___1": 110, "08___NUMERIC___stays_in_week_nights_01___2": 111, "08___NUMERIC___stays_in_week_nights_01___3": 112, "08___NUMERIC___stays_in_week_nights_01___4": 113, "08___NUMERIC___stays_in_week_nights_01___5": 114, "08___NUMERIC___stays_in_week_nights_01___6": 115, "08___NUMERIC___stays_in_week_nights_01___7": 116, "08___NUMERIC___stays_in_week_nights_01___8": 117, "08___NUMERIC___stays_in_week_nights_01___9": 118, "09___NUMERIC___adults_00___0": 119, "09___NUMERIC___adults_00___1": 120, "09___NUMERIC___adults_00___2": 121, "09___NUMERIC___adults_00___4": 122, "09___NUMERIC___adults_00___5": 123, "09___NUMERIC___adults_01___0": 124, "09___NUMERIC___adults_01___1": 125, "09___NUMERIC___adults_01___2": 126, "09___NUMERIC___adults_01___3": 127, "09___NUMERIC___adults_01___4": 128, "09___NUMERIC___adults_01___5": 129, "09___NUMERIC___adults_01___6": 130, "09___NUMERIC___adults_01___7": 131, "10___NUMERIC___children_00___0": 132, "10___NUMERIC___children_00___@": 133, "10___NUMERIC___children_01___0": 134, "10___NUMERIC___children_01___@": 135, "10___NUMERIC___children_02___0": 136, "10___NUMERIC___children_02___1": 137, "10___NUMERIC___children_02___@": 138, "10___NUMERIC___children_03___0": 139, "10___NUMERIC___children_03___1": 140, "10___NUMERIC___children_03___2": 141, "10___NUMERIC___children_03___3": 142, "10___NUMERIC___children_03___@": 143, "11___CATEGORICAL___babies___0": 144, "11___CATEGORICAL___babies___1": 145, "11___CATEGORICAL___babies___10": 146, "11___CATEGORICAL___babies___2": 147, "12___CATEGORICAL___meal___BB": 148, "12___CATEGORICAL___meal___FB": 149, "12___CATEGORICAL___meal___HB": 150, "12___CATEGORICAL___meal___SC": 151, "12___CATEGORICAL___meal___Undefined": 152, "13___CATEGORICAL___country___": 153, "13___CATEGORICAL___country___ABW": 154, "13___CATEGORICAL___country___AGO": 155, "13___CATEGORICAL___country___AIA": 156, "13___CATEGORICAL___country___ALB": 157, "13___CATEGORICAL___country___AND": 158, "13___CATEGORICAL___country___ARE": 159, "13___CATEGORICAL___country___ARG": 160, "13___CATEGORICAL___country___ARM": 161, "13___CATEGORICAL___country___ASM": 162, "13___CATEGORICAL___country___ATA": 163, "13___CATEGORICAL___country___ATF": 164, "13___CATEGORICAL___country___AUS": 165, "13___CATEGORICAL___country___AUT": 166, "13___CATEGORICAL___country___AZE": 167, "13___CATEGORICAL___country___BDI": 168, "13___CATEGORICAL___country___BEL": 169, "13___CATEGORICAL___country___BEN": 170, "13___CATEGORICAL___country___BGD": 171, "13___CATEGORICAL___country___BGR": 172, "13___CATEGORICAL___country___BHR": 173, "13___CATEGORICAL___country___BHS": 174, "13___CATEGORICAL___country___BIH": 175, "13___CATEGORICAL___country___BLR": 176, "13___CATEGORICAL___country___BOL": 177, "13___CATEGORICAL___country___BRA": 178, "13___CATEGORICAL___country___BRB": 179, "13___CATEGORICAL___country___BWA": 180, "13___CATEGORICAL___country___CAF": 181, "13___CATEGORICAL___country___CHE": 182, "13___CATEGORICAL___country___CHL": 183, "13___CATEGORICAL___country___CHN": 184, "13___CATEGORICAL___country___CIV": 185, "13___CATEGORICAL___country___CMR": 186, "13___CATEGORICAL___country___CN": 187, "13___CATEGORICAL___country___COL": 188, "13___CATEGORICAL___country___COM": 189, "13___CATEGORICAL___country___CPV": 190, "13___CATEGORICAL___country___CRI": 191, "13___CATEGORICAL___country___CUB": 192, "13___CATEGORICAL___country___CYM": 193, "13___CATEGORICAL___country___CYP": 194, "13___CATEGORICAL___country___CZE": 195, "13___CATEGORICAL___country___DEU": 196, "13___CATEGORICAL___country___DJI": 197, "13___CATEGORICAL___country___DMA": 198, "13___CATEGORICAL___country___DNK": 199, "13___CATEGORICAL___country___DOM": 200, "13___CATEGORICAL___country___DZA": 201, "13___CATEGORICAL___country___ECU": 202, "13___CATEGORICAL___country___EGY": 203, "13___CATEGORICAL___country___ESP": 204, "13___CATEGORICAL___country___EST": 205, "13___CATEGORICAL___country___ETH": 206, "13___CATEGORICAL___country___FIN": 207, "13___CATEGORICAL___country___FJI": 208, "13___CATEGORICAL___country___FRA": 209, "13___CATEGORICAL___country___FRO": 210, "13___CATEGORICAL___country___GAB": 211, "13___CATEGORICAL___country___GBR": 212, "13___CATEGORICAL___country___GEO": 213, "13___CATEGORICAL___country___GGY": 214, "13___CATEGORICAL___country___GHA": 215, "13___CATEGORICAL___country___GIB": 216, "13___CATEGORICAL___country___GLP": 217, "13___CATEGORICAL___country___GNB": 218, "13___CATEGORICAL___country___GRC": 219, "13___CATEGORICAL___country___GTM": 220, "13___CATEGORICAL___country___GUY": 221, "13___CATEGORICAL___country___HKG": 222, "13___CATEGORICAL___country___HND": 223, "13___CATEGORICAL___country___HRV": 224, "13___CATEGORICAL___country___HUN": 225, "13___CATEGORICAL___country___IDN": 226, "13___CATEGORICAL___country___IMN": 227, "13___CATEGORICAL___country___IND": 228, "13___CATEGORICAL___country___IRL": 229, "13___CATEGORICAL___country___IRN": 230, "13___CATEGORICAL___country___IRQ": 231, "13___CATEGORICAL___country___ISL": 232, "13___CATEGORICAL___country___ISR": 233, "13___CATEGORICAL___country___ITA": 234, "13___CATEGORICAL___country___JAM": 235, "13___CATEGORICAL___country___JEY": 236, "13___CATEGORICAL___country___JOR": 237, "13___CATEGORICAL___country___JPN": 238, "13___CATEGORICAL___country___KAZ": 239, "13___CATEGORICAL___country___KEN": 240, "13___CATEGORICAL___country___KHM": 241, "13___CATEGORICAL___country___KIR": 242, "13___CATEGORICAL___country___KNA": 243, "13___CATEGORICAL___country___KOR": 244, "13___CATEGORICAL___country___KWT": 245, "13___CATEGORICAL___country___LAO": 246, "13___CATEGORICAL___country___LBN": 247, "13___CATEGORICAL___country___LBY": 248, "13___CATEGORICAL___country___LCA": 249, "13___CATEGORICAL___country___LIE": 250, "13___CATEGORICAL___country___LKA": 251, "13___CATEGORICAL___country___LTU": 252, "13___CATEGORICAL___country___LUX": 253, "13___CATEGORICAL___country___LVA": 254, "13___CATEGORICAL___country___MAC": 255, "13___CATEGORICAL___country___MAR": 256, "13___CATEGORICAL___country___MCO": 257, "13___CATEGORICAL___country___MDG": 258, "13___CATEGORICAL___country___MDV": 259, "13___CATEGORICAL___country___MEX": 260, "13___CATEGORICAL___country___MKD": 261, "13___CATEGORICAL___country___MLI": 262, "13___CATEGORICAL___country___MLT": 263, "13___CATEGORICAL___country___MMR": 264, "13___CATEGORICAL___country___MNE": 265, "13___CATEGORICAL___country___MOZ": 266, "13___CATEGORICAL___country___MRT": 267, "13___CATEGORICAL___country___MUS": 268, "13___CATEGORICAL___country___MWI": 269, "13___CATEGORICAL___country___MYS": 270, "13___CATEGORICAL___country___MYT": 271, "13___CATEGORICAL___country___NAM": 272, "13___CATEGORICAL___country___NCL": 273, "13___CATEGORICAL___country___NGA": 274, "13___CATEGORICAL___country___NIC": 275, "13___CATEGORICAL___country___NLD": 276, "13___CATEGORICAL___country___NOR": 277, "13___CATEGORICAL___country___NPL": 278, "13___CATEGORICAL___country___NZL": 279, "13___CATEGORICAL___country___OMN": 280, "13___CATEGORICAL___country___PAK": 281, "13___CATEGORICAL___country___PAN": 282, "13___CATEGORICAL___country___PER": 283, "13___CATEGORICAL___country___PHL": 284, "13___CATEGORICAL___country___POL": 285, "13___CATEGORICAL___country___PRI": 286, "13___CATEGORICAL___country___PRT": 287, "13___CATEGORICAL___country___PRY": 288, "13___CATEGORICAL___country___PYF": 289, "13___CATEGORICAL___country___QAT": 290, "13___CATEGORICAL___country___ROU": 291, "13___CATEGORICAL___country___RUS": 292, "13___CATEGORICAL___country___RWA": 293, "13___CATEGORICAL___country___SAU": 294, "13___CATEGORICAL___country___SDN": 295, "13___CATEGORICAL___country___SEN": 296, "13___CATEGORICAL___country___SGP": 297, "13___CATEGORICAL___country___SLE": 298, "13___CATEGORICAL___country___SLV": 299, "13___CATEGORICAL___country___SMR": 300, "13___CATEGORICAL___country___SRB": 301, "13___CATEGORICAL___country___STP": 302, "13___CATEGORICAL___country___SUR": 303, "13___CATEGORICAL___country___SVK": 304, "13___CATEGORICAL___country___SVN": 305, "13___CATEGORICAL___country___SWE": 306, "13___CATEGORICAL___country___SYC": 307, "13___CATEGORICAL___country___SYR": 308, "13___CATEGORICAL___country___TGO": 309, "13___CATEGORICAL___country___THA": 310, "13___CATEGORICAL___country___TJK": 311, "13___CATEGORICAL___country___TMP": 312, "13___CATEGORICAL___country___TUN": 313, "13___CATEGORICAL___country___TUR": 314, "13___CATEGORICAL___country___TWN": 315, "13___CATEGORICAL___country___TZA": 316, "13___CATEGORICAL___country___UGA": 317, "13___CATEGORICAL___country___UKR": 318, "13___CATEGORICAL___country___UMI": 319, "13___CATEGORICAL___country___URY": 320, "13___CATEGORICAL___country___USA": 321, "13___CATEGORICAL___country___UZB": 322, "13___CATEGORICAL___country___VEN": 323, "13___CATEGORICAL___country___VGB": 324, "13___CATEGORICAL___country___VNM": 325, "13___CATEGORICAL___country___ZAF": 326, "13___CATEGORICAL___country___ZMB": 327, "13___CATEGORICAL___country___ZWE": 328, "14___CATEGORICAL___market_segment___Aviation": 329, "14___CATEGORICAL___market_segment___Complementary": 330, "14___CATEGORICAL___market_segment___Corporate": 331, "14___CATEGORICAL___market_segment___Direct": 332, "14___CATEGORICAL___market_segment___Groups": 333, "14___CATEGORICAL___market_segment___Offline TA/TO": 334, "14___CATEGORICAL___market_segment___Online TA": 335, "15___CATEGORICAL___distribution_channel___Corporate": 336, "15___CATEGORICAL___distribution_channel___Direct": 337, "15___CATEGORICAL___distribution_channel___GDS": 338, "15___CATEGORICAL___distribution_channel___TA/TO": 339, "15___CATEGORICAL___distribution_channel___Undefined": 340, "16___CATEGORICAL___is_repeated_guest___0": 341, "16___CATEGORICAL___is_repeated_guest___1": 342, "17___CATEGORICAL___previous_cancellations___0": 343, "17___CATEGORICAL___previous_cancellations___1": 344, "17___CATEGORICAL___previous_cancellations___11": 345, "17___CATEGORICAL___previous_cancellations___13": 346, "17___CATEGORICAL___previous_cancellations___14": 347, "17___CATEGORICAL___previous_cancellations___19": 348, "17___CATEGORICAL___previous_cancellations___2": 349, "17___CATEGORICAL___previous_cancellations___21": 350, "17___CATEGORICAL___previous_cancellations___24": 351, "17___CATEGORICAL___previous_cancellations___25": 352, "17___CATEGORICAL___previous_cancellations___26": 353, "17___CATEGORICAL___previous_cancellations___3": 354, "17___CATEGORICAL___previous_cancellations___4": 355, "17___CATEGORICAL___previous_cancellations___5": 356, "17___CATEGORICAL___previous_cancellations___6": 357, "18___CATEGORICAL___previous_bookings_not_canceled___0": 358, "18___CATEGORICAL___previous_bookings_not_canceled___1": 359, "18___CATEGORICAL___previous_bookings_not_canceled___10": 360, "18___CATEGORICAL___previous_bookings_not_canceled___11": 361, "18___CATEGORICAL___previous_bookings_not_canceled___12": 362, "18___CATEGORICAL___previous_bookings_not_canceled___13": 363, "18___CATEGORICAL___previous_bookings_not_canceled___14": 364, "18___CATEGORICAL___previous_bookings_not_canceled___15": 365, "18___CATEGORICAL___previous_bookings_not_canceled___16": 366, "18___CATEGORICAL___previous_bookings_not_canceled___17": 367, "18___CATEGORICAL___previous_bookings_not_canceled___18": 368, "18___CATEGORICAL___previous_bookings_not_canceled___19": 369, "18___CATEGORICAL___previous_bookings_not_canceled___2": 370, "18___CATEGORICAL___previous_bookings_not_canceled___20": 371, "18___CATEGORICAL___previous_bookings_not_canceled___21": 372, "18___CATEGORICAL___previous_bookings_not_canceled___22": 373, "18___CATEGORICAL___previous_bookings_not_canceled___23": 374, "18___CATEGORICAL___previous_bookings_not_canceled___24": 375, "18___CATEGORICAL___previous_bookings_not_canceled___25": 376, "18___CATEGORICAL___previous_bookings_not_canceled___26": 377, "18___CATEGORICAL___previous_bookings_not_canceled___27": 378, "18___CATEGORICAL___previous_bookings_not_canceled___28": 379, "18___CATEGORICAL___previous_bookings_not_canceled___29": 380, "18___CATEGORICAL___previous_bookings_not_canceled___3": 381, "18___CATEGORICAL___previous_bookings_not_canceled___30": 382, "18___CATEGORICAL___previous_bookings_not_canceled___31": 383, "18___CATEGORICAL___previous_bookings_not_canceled___32": 384, "18___CATEGORICAL___previous_bookings_not_canceled___34": 385, "18___CATEGORICAL___previous_bookings_not_canceled___35": 386, "18___CATEGORICAL___previous_bookings_not_canceled___37": 387, "18___CATEGORICAL___previous_bookings_not_canceled___38": 388, "18___CATEGORICAL___previous_bookings_not_canceled___39": 389, "18___CATEGORICAL___previous_bookings_not_canceled___4": 390, "18___CATEGORICAL___previous_bookings_not_canceled___40": 391, "18___CATEGORICAL___previous_bookings_not_canceled___42": 392, "18___CATEGORICAL___previous_bookings_not_canceled___43": 393, "18___CATEGORICAL___previous_bookings_not_canceled___44": 394, "18___CATEGORICAL___previous_bookings_not_canceled___45": 395, "18___CATEGORICAL___previous_bookings_not_canceled___46": 396, "18___CATEGORICAL___previous_bookings_not_canceled___48": 397, "18___CATEGORICAL___previous_bookings_not_canceled___49": 398, "18___CATEGORICAL___previous_bookings_not_canceled___5": 399, "18___CATEGORICAL___previous_bookings_not_canceled___50": 400, "18___CATEGORICAL___previous_bookings_not_canceled___51": 401, "18___CATEGORICAL___previous_bookings_not_canceled___52": 402, "18___CATEGORICAL___previous_bookings_not_canceled___53": 403, "18___CATEGORICAL___previous_bookings_not_canceled___54": 404, "18___CATEGORICAL___previous_bookings_not_canceled___55": 405, "18___CATEGORICAL___previous_bookings_not_canceled___56": 406, "18___CATEGORICAL___previous_bookings_not_canceled___57": 407, "18___CATEGORICAL___previous_bookings_not_canceled___58": 408, "18___CATEGORICAL___previous_bookings_not_canceled___59": 409, "18___CATEGORICAL___previous_bookings_not_canceled___6": 410, "18___CATEGORICAL___previous_bookings_not_canceled___60": 411, "18___CATEGORICAL___previous_bookings_not_canceled___62": 412, "18___CATEGORICAL___previous_bookings_not_canceled___63": 413, "18___CATEGORICAL___previous_bookings_not_canceled___64": 414, "18___CATEGORICAL___previous_bookings_not_canceled___67": 415, "18___CATEGORICAL___previous_bookings_not_canceled___68": 416, "18___CATEGORICAL___previous_bookings_not_canceled___69": 417, "18___CATEGORICAL___previous_bookings_not_canceled___7": 418, "18___CATEGORICAL___previous_bookings_not_canceled___70": 419, "18___CATEGORICAL___previous_bookings_not_canceled___71": 420, "18___CATEGORICAL___previous_bookings_not_canceled___72": 421, "18___CATEGORICAL___previous_bookings_not_canceled___8": 422, "18___CATEGORICAL___previous_bookings_not_canceled___9": 423, "19___CATEGORICAL___reserved_room_type___A": 424, "19___CATEGORICAL___reserved_room_type___B": 425, "19___CATEGORICAL___reserved_room_type___C": 426, "19___CATEGORICAL___reserved_room_type___D": 427, "19___CATEGORICAL___reserved_room_type___E": 428, "19___CATEGORICAL___reserved_room_type___F": 429, "19___CATEGORICAL___reserved_room_type___G": 430, "19___CATEGORICAL___reserved_room_type___H": 431, "19___CATEGORICAL___reserved_room_type___L": 432, "19___CATEGORICAL___reserved_room_type___P": 433, "20___CATEGORICAL___assigned_room_type___A": 434, "20___CATEGORICAL___assigned_room_type___B": 435, "20___CATEGORICAL___assigned_room_type___C": 436, "20___CATEGORICAL___assigned_room_type___D": 437, "20___CATEGORICAL___assigned_room_type___E": 438, "20___CATEGORICAL___assigned_room_type___F": 439, "20___CATEGORICAL___assigned_room_type___G": 440, "20___CATEGORICAL___assigned_room_type___H": 441, "20___CATEGORICAL___assigned_room_type___I": 442, "20___CATEGORICAL___assigned_room_type___K": 443, "20___CATEGORICAL___assigned_room_type___L": 444, "20___CATEGORICAL___assigned_room_type___P": 445, "21___NUMERIC___booking_changes_00___0": 446, "21___NUMERIC___booking_changes_00___1": 447, "21___NUMERIC___booking_changes_00___2": 448, "21___NUMERIC___booking_changes_01___0": 449, "21___NUMERIC___booking_changes_01___1": 450, "21___NUMERIC___booking_changes_01___2": 451, "21___NUMERIC___booking_changes_01___3": 452, "21___NUMERIC___booking_changes_01___4": 453, "21___NUMERIC___booking_changes_01___5": 454, "21___NUMERIC___booking_changes_01___6": 455, "21___NUMERIC___booking_changes_01___7": 456, "21___NUMERIC___booking_changes_01___8": 457, "21___NUMERIC___booking_changes_01___9": 458, "22___CATEGORICAL___deposit_type___No Deposit": 459, "22___CATEGORICAL___deposit_type___Non Refund": 460, "22___CATEGORICAL___deposit_type___Refundable": 461, "23___NUMERIC___agent_00___0": 462, "23___NUMERIC___agent_00___@": 463, "23___NUMERIC___agent_01___0": 464, "23___NUMERIC___agent_01___1": 465, "23___NUMERIC___agent_01___2": 466, "23___NUMERIC___agent_01___3": 467, "23___NUMERIC___agent_01___4": 468, "23___NUMERIC___agent_01___5": 469, "23___NUMERIC___agent_01___@": 470, "23___NUMERIC___agent_02___0": 471, "23___NUMERIC___agent_02___1": 472, "23___NUMERIC___agent_02___2": 473, "23___NUMERIC___agent_02___3": 474, "23___NUMERIC___agent_02___4": 475, "23___NUMERIC___agent_02___5": 476, "23___NUMERIC___agent_02___6": 477, "23___NUMERIC___agent_02___7": 478, "23___NUMERIC___agent_02___8": 479, "23___NUMERIC___agent_02___9": 480, "23___NUMERIC___agent_02___@": 481, "23___NUMERIC___agent_03___0": 482, "23___NUMERIC___agent_03___1": 483, "23___NUMERIC___agent_03___2": 484, "23___NUMERIC___agent_03___3": 485, "23___NUMERIC___agent_03___4": 486, "23___NUMERIC___agent_03___5": 487, "23___NUMERIC___agent_03___6": 488, "23___NUMERIC___agent_03___7": 489, "23___NUMERIC___agent_03___8": 490, "23___NUMERIC___agent_03___9": 491, "23___NUMERIC___agent_03___@": 492, "24___NUMERIC___company_00___0": 493, "24___NUMERIC___company_00___@": 494, "24___NUMERIC___company_01___0": 495, "24___NUMERIC___company_01___1": 496, "24___NUMERIC___company_01___2": 497, "24___NUMERIC___company_01___3": 498, "24___NUMERIC___company_01___4": 499, "24___NUMERIC___company_01___5": 500, "24___NUMERIC___company_01___@": 501, "24___NUMERIC___company_02___0": 502, "24___NUMERIC___company_02___1": 503, "24___NUMERIC___company_02___2": 504, "24___NUMERIC___company_02___3": 505, "24___NUMERIC___company_02___4": 506, "24___NUMERIC___company_02___5": 507, "24___NUMERIC___company_02___6": 508, "24___NUMERIC___company_02___7": 509, "24___NUMERIC___company_02___8": 510, "24___NUMERIC___company_02___9": 511, "24___NUMERIC___company_02___@": 512, "24___NUMERIC___company_03___0": 513, "24___NUMERIC___company_03___1": 514, "24___NUMERIC___company_03___2": 515, "24___NUMERIC___company_03___3": 516, "24___NUMERIC___company_03___4": 517, "24___NUMERIC___company_03___5": 518, "24___NUMERIC___company_03___6": 519, "24___NUMERIC___company_03___7": 520, "24___NUMERIC___company_03___8": 521, "24___NUMERIC___company_03___9": 522, "24___NUMERIC___company_03___@": 523, "25___NUMERIC___days_in_waiting_list_00___0": 524, "25___NUMERIC___days_in_waiting_list_00___1": 525, "25___NUMERIC___days_in_waiting_list_00___2": 526, "25___NUMERIC___days_in_waiting_list_00___3": 527, "25___NUMERIC___days_in_waiting_list_01___0": 528, "25___NUMERIC___days_in_waiting_list_01___1": 529, "25___NUMERIC___days_in_waiting_list_01___2": 530, "25___NUMERIC___days_in_waiting_list_01___3": 531, "25___NUMERIC___days_in_waiting_list_01___4": 532, "25___NUMERIC___days_in_waiting_list_01___5": 533, "25___NUMERIC___days_in_waiting_list_01___6": 534, "25___NUMERIC___days_in_waiting_list_01___7": 535, "25___NUMERIC___days_in_waiting_list_01___8": 536, "25___NUMERIC___days_in_waiting_list_01___9": 537, "25___NUMERIC___days_in_waiting_list_02___0": 538, "25___NUMERIC___days_in_waiting_list_02___1": 539, "25___NUMERIC___days_in_waiting_list_02___2": 540, "25___NUMERIC___days_in_waiting_list_02___3": 541, "25___NUMERIC___days_in_waiting_list_02___4": 542, "25___NUMERIC___days_in_waiting_list_02___5": 543, "25___NUMERIC___days_in_waiting_list_02___6": 544, "25___NUMERIC___days_in_waiting_list_02___7": 545, "25___NUMERIC___days_in_waiting_list_02___8": 546, "25___NUMERIC___days_in_waiting_list_02___9": 547, "26___CATEGORICAL___customer_type___Contract": 548, "26___CATEGORICAL___customer_type___Group": 549, "26___CATEGORICAL___customer_type___Transient": 550, "26___CATEGORICAL___customer_type___Transient-Party": 551, "27___NUMERIC___adr_00___0": 552, "27___NUMERIC___adr_00___5": 553, "27___NUMERIC___adr_01___0": 554, "27___NUMERIC___adr_01___1": 555, "27___NUMERIC___adr_01___2": 556, "27___NUMERIC___adr_01___3": 557, "27___NUMERIC___adr_01___4": 558, "27___NUMERIC___adr_02___0": 559, "27___NUMERIC___adr_02___1": 560, "27___NUMERIC___adr_02___2": 561, "27___NUMERIC___adr_02___3": 562, "27___NUMERIC___adr_02___4": 563, "27___NUMERIC___adr_02___5": 564, "27___NUMERIC___adr_02___6": 565, "27___NUMERIC___adr_02___7": 566, "27___NUMERIC___adr_02___8": 567, "27___NUMERIC___adr_02___9": 568, "27___NUMERIC___adr_03___0": 569, "27___NUMERIC___adr_03___1": 570, "27___NUMERIC___adr_03___2": 571, "27___NUMERIC___adr_03___3": 572, "27___NUMERIC___adr_03___4": 573, "27___NUMERIC___adr_03___5": 574, "27___NUMERIC___adr_03___6": 575, "27___NUMERIC___adr_03___7": 576, "27___NUMERIC___adr_03___8": 577, "27___NUMERIC___adr_03___9": 578, "27___NUMERIC___adr_04___.": 579, "27___NUMERIC___adr_05___0": 580, "27___NUMERIC___adr_05___1": 581, "27___NUMERIC___adr_05___2": 582, "27___NUMERIC___adr_05___3": 583, "27___NUMERIC___adr_05___4": 584, "27___NUMERIC___adr_05___5": 585, "27___NUMERIC___adr_05___6": 586, "27___NUMERIC___adr_05___7": 587, "27___NUMERIC___adr_05___8": 588, "27___NUMERIC___adr_05___9": 589, "27___NUMERIC___adr_06___0": 590, "27___NUMERIC___adr_06___1": 591, "27___NUMERIC___adr_06___2": 592, "27___NUMERIC___adr_06___3": 593, "27___NUMERIC___adr_06___4": 594, "27___NUMERIC___adr_06___5": 595, "27___NUMERIC___adr_06___6": 596, "27___NUMERIC___adr_06___7": 597, "27___NUMERIC___adr_06___8": 598, "27___NUMERIC___adr_06___9": 599, "28___CATEGORICAL___required_car_parking_spaces___0": 600, "28___CATEGORICAL___required_car_parking_spaces___1": 601, "28___CATEGORICAL___required_car_parking_spaces___2": 602, "28___CATEGORICAL___required_car_parking_spaces___3": 603, "28___CATEGORICAL___required_car_parking_spaces___8": 604, "29___NUMERIC___total_of_special_requests_00___0": 605, "29___NUMERIC___total_of_special_requests_00___1": 606, "29___NUMERIC___total_of_special_requests_00___2": 607, "29___NUMERIC___total_of_special_requests_00___3": 608, "29___NUMERIC___total_of_special_requests_00___4": 609, "29___NUMERIC___total_of_special_requests_00___5": 610, "30___CATEGORICAL___reservation_status___Canceled": 611, "30___CATEGORICAL___reservation_status___Check-Out": 612, "30___CATEGORICAL___reservation_status___No-Show": 613, "31___CATEGORICAL___reservation_status_date___2014-10-17": 614, "31___CATEGORICAL___reservation_status_date___2015-01-01": 615, "31___CATEGORICAL___reservation_status_date___2015-01-02": 616, "31___CATEGORICAL___reservation_status_date___2015-01-18": 617, "31___CATEGORICAL___reservation_status_date___2015-01-20": 618, "31___CATEGORICAL___reservation_status_date___2015-01-21": 619, "31___CATEGORICAL___reservation_status_date___2015-01-22": 620, "31___CATEGORICAL___reservation_status_date___2015-01-28": 621, "31___CATEGORICAL___reservation_status_date___2015-01-30": 622, "31___CATEGORICAL___reservation_status_date___2015-02-02": 623, "31___CATEGORICAL___reservation_status_date___2015-02-05": 624, "31___CATEGORICAL___reservation_status_date___2015-02-06": 625, "31___CATEGORICAL___reservation_status_date___2015-02-09": 626, "31___CATEGORICAL___reservation_status_date___2015-02-10": 627, "31___CATEGORICAL___reservation_status_date___2015-02-11": 628, "31___CATEGORICAL___reservation_status_date___2015-02-12": 629, "31___CATEGORICAL___reservation_status_date___2015-02-17": 630, "31___CATEGORICAL___reservation_status_date___2015-02-19": 631, "31___CATEGORICAL___reservation_status_date___2015-02-20": 632, "31___CATEGORICAL___reservation_status_date___2015-02-23": 633, "31___CATEGORICAL___reservation_status_date___2015-02-24": 634, "31___CATEGORICAL___reservation_status_date___2015-02-25": 635, "31___CATEGORICAL___reservation_status_date___2015-02-26": 636, "31___CATEGORICAL___reservation_status_date___2015-02-27": 637, "31___CATEGORICAL___reservation_status_date___2015-03-03": 638, "31___CATEGORICAL___reservation_status_date___2015-03-04": 639, "31___CATEGORICAL___reservation_status_date___2015-03-05": 640, "31___CATEGORICAL___reservation_status_date___2015-03-06": 641, "31___CATEGORICAL___reservation_status_date___2015-03-09": 642, "31___CATEGORICAL___reservation_status_date___2015-03-10": 643, "31___CATEGORICAL___reservation_status_date___2015-03-12": 644, "31___CATEGORICAL___reservation_status_date___2015-03-13": 645, "31___CATEGORICAL___reservation_status_date___2015-03-17": 646, "31___CATEGORICAL___reservation_status_date___2015-03-18": 647, "31___CATEGORICAL___reservation_status_date___2015-03-23": 648, "31___CATEGORICAL___reservation_status_date___2015-03-24": 649, "31___CATEGORICAL___reservation_status_date___2015-03-25": 650, "31___CATEGORICAL___reservation_status_date___2015-03-28": 651, "31___CATEGORICAL___reservation_status_date___2015-03-29": 652, "31___CATEGORICAL___reservation_status_date___2015-03-30": 653, "31___CATEGORICAL___reservation_status_date___2015-03-31": 654, "31___CATEGORICAL___reservation_status_date___2015-04-02": 655, "31___CATEGORICAL___reservation_status_date___2015-04-03": 656, "31___CATEGORICAL___reservation_status_date___2015-04-04": 657, "31___CATEGORICAL___reservation_status_date___2015-04-05": 658, "31___CATEGORICAL___reservation_status_date___2015-04-06": 659, "31___CATEGORICAL___reservation_status_date___2015-04-07": 660, "31___CATEGORICAL___reservation_status_date___2015-04-08": 661, "31___CATEGORICAL___reservation_status_date___2015-04-10": 662, "31___CATEGORICAL___reservation_status_date___2015-04-11": 663, "31___CATEGORICAL___reservation_status_date___2015-04-14": 664, "31___CATEGORICAL___reservation_status_date___2015-04-15": 665, "31___CATEGORICAL___reservation_status_date___2015-04-16": 666, "31___CATEGORICAL___reservation_status_date___2015-04-17": 667, "31___CATEGORICAL___reservation_status_date___2015-04-18": 668, "31___CATEGORICAL___reservation_status_date___2015-04-20": 669, "31___CATEGORICAL___reservation_status_date___2015-04-22": 670, "31___CATEGORICAL___reservation_status_date___2015-04-23": 671, "31___CATEGORICAL___reservation_status_date___2015-04-24": 672, "31___CATEGORICAL___reservation_status_date___2015-04-27": 673, "31___CATEGORICAL___reservation_status_date___2015-04-28": 674, "31___CATEGORICAL___reservation_status_date___2015-04-29": 675, "31___CATEGORICAL___reservation_status_date___2015-04-30": 676, "31___CATEGORICAL___reservation_status_date___2015-05-01": 677, "31___CATEGORICAL___reservation_status_date___2015-05-04": 678, "31___CATEGORICAL___reservation_status_date___2015-05-05": 679, "31___CATEGORICAL___reservation_status_date___2015-05-06": 680, "31___CATEGORICAL___reservation_status_date___2015-05-07": 681, "31___CATEGORICAL___reservation_status_date___2015-05-08": 682, "31___CATEGORICAL___reservation_status_date___2015-05-09": 683, "31___CATEGORICAL___reservation_status_date___2015-05-11": 684, "31___CATEGORICAL___reservation_status_date___2015-05-12": 685, "31___CATEGORICAL___reservation_status_date___2015-05-13": 686, "31___CATEGORICAL___reservation_status_date___2015-05-14": 687, "31___CATEGORICAL___reservation_status_date___2015-05-15": 688, "31___CATEGORICAL___reservation_status_date___2015-05-16": 689, "31___CATEGORICAL___reservation_status_date___2015-05-18": 690, "31___CATEGORICAL___reservation_status_date___2015-05-19": 691, "31___CATEGORICAL___reservation_status_date___2015-05-20": 692, "31___CATEGORICAL___reservation_status_date___2015-05-21": 693, "31___CATEGORICAL___reservation_status_date___2015-05-22": 694, "31___CATEGORICAL___reservation_status_date___2015-05-23": 695, "31___CATEGORICAL___reservation_status_date___2015-05-25": 696, "31___CATEGORICAL___reservation_status_date___2015-05-26": 697, "31___CATEGORICAL___reservation_status_date___2015-05-27": 698, "31___CATEGORICAL___reservation_status_date___2015-05-28": 699, "31___CATEGORICAL___reservation_status_date___2015-05-29": 700, "31___CATEGORICAL___reservation_status_date___2015-05-30": 701, "31___CATEGORICAL___reservation_status_date___2015-06-01": 702, "31___CATEGORICAL___reservation_status_date___2015-06-02": 703, "31___CATEGORICAL___reservation_status_date___2015-06-03": 704, "31___CATEGORICAL___reservation_status_date___2015-06-04": 705, "31___CATEGORICAL___reservation_status_date___2015-06-05": 706, "31___CATEGORICAL___reservation_status_date___2015-06-06": 707, "31___CATEGORICAL___reservation_status_date___2015-06-08": 708, "31___CATEGORICAL___reservation_status_date___2015-06-09": 709, "31___CATEGORICAL___reservation_status_date___2015-06-10": 710, "31___CATEGORICAL___reservation_status_date___2015-06-11": 711, "31___CATEGORICAL___reservation_status_date___2015-06-12": 712, "31___CATEGORICAL___reservation_status_date___2015-06-13": 713, "31___CATEGORICAL___reservation_status_date___2015-06-14": 714, "31___CATEGORICAL___reservation_status_date___2015-06-15": 715, "31___CATEGORICAL___reservation_status_date___2015-06-16": 716, "31___CATEGORICAL___reservation_status_date___2015-06-17": 717, "31___CATEGORICAL___reservation_status_date___2015-06-18": 718, "31___CATEGORICAL___reservation_status_date___2015-06-19": 719, "31___CATEGORICAL___reservation_status_date___2015-06-20": 720, "31___CATEGORICAL___reservation_status_date___2015-06-22": 721, "31___CATEGORICAL___reservation_status_date___2015-06-23": 722, "31___CATEGORICAL___reservation_status_date___2015-06-24": 723, "31___CATEGORICAL___reservation_status_date___2015-06-25": 724, "31___CATEGORICAL___reservation_status_date___2015-06-26": 725, "31___CATEGORICAL___reservation_status_date___2015-06-27": 726, "31___CATEGORICAL___reservation_status_date___2015-06-29": 727, "31___CATEGORICAL___reservation_status_date___2015-06-30": 728, "31___CATEGORICAL___reservation_status_date___2015-07-01": 729, "31___CATEGORICAL___reservation_status_date___2015-07-02": 730, "31___CATEGORICAL___reservation_status_date___2015-07-03": 731, "31___CATEGORICAL___reservation_status_date___2015-07-04": 732, "31___CATEGORICAL___reservation_status_date___2015-07-05": 733, "31___CATEGORICAL___reservation_status_date___2015-07-06": 734, "31___CATEGORICAL___reservation_status_date___2015-07-07": 735, "31___CATEGORICAL___reservation_status_date___2015-07-08": 736, "31___CATEGORICAL___reservation_status_date___2015-07-09": 737, "31___CATEGORICAL___reservation_status_date___2015-07-10": 738, "31___CATEGORICAL___reservation_status_date___2015-07-11": 739, "31___CATEGORICAL___reservation_status_date___2015-07-12": 740, "31___CATEGORICAL___reservation_status_date___2015-07-13": 741, "31___CATEGORICAL___reservation_status_date___2015-07-14": 742, "31___CATEGORICAL___reservation_status_date___2015-07-15": 743, "31___CATEGORICAL___reservation_status_date___2015-07-16": 744, "31___CATEGORICAL___reservation_status_date___2015-07-17": 745, "31___CATEGORICAL___reservation_status_date___2015-07-18": 746, "31___CATEGORICAL___reservation_status_date___2015-07-19": 747, "31___CATEGORICAL___reservation_status_date___2015-07-20": 748, "31___CATEGORICAL___reservation_status_date___2015-07-21": 749, "31___CATEGORICAL___reservation_status_date___2015-07-22": 750, "31___CATEGORICAL___reservation_status_date___2015-07-23": 751, "31___CATEGORICAL___reservation_status_date___2015-07-24": 752, "31___CATEGORICAL___reservation_status_date___2015-07-25": 753, "31___CATEGORICAL___reservation_status_date___2015-07-26": 754, "31___CATEGORICAL___reservation_status_date___2015-07-27": 755, "31___CATEGORICAL___reservation_status_date___2015-07-28": 756, "31___CATEGORICAL___reservation_status_date___2015-07-29": 757, "31___CATEGORICAL___reservation_status_date___2015-07-30": 758, "31___CATEGORICAL___reservation_status_date___2015-07-31": 759, "31___CATEGORICAL___reservation_status_date___2015-08-01": 760, "31___CATEGORICAL___reservation_status_date___2015-08-02": 761, "31___CATEGORICAL___reservation_status_date___2015-08-03": 762, "31___CATEGORICAL___reservation_status_date___2015-08-04": 763, "31___CATEGORICAL___reservation_status_date___2015-08-05": 764, "31___CATEGORICAL___reservation_status_date___2015-08-06": 765, "31___CATEGORICAL___reservation_status_date___2015-08-07": 766, "31___CATEGORICAL___reservation_status_date___2015-08-08": 767, "31___CATEGORICAL___reservation_status_date___2015-08-09": 768, "31___CATEGORICAL___reservation_status_date___2015-08-10": 769, "31___CATEGORICAL___reservation_status_date___2015-08-11": 770, "31___CATEGORICAL___reservation_status_date___2015-08-12": 771, "31___CATEGORICAL___reservation_status_date___2015-08-13": 772, "31___CATEGORICAL___reservation_status_date___2015-08-14": 773, "31___CATEGORICAL___reservation_status_date___2015-08-15": 774, "31___CATEGORICAL___reservation_status_date___2015-08-16": 775, "31___CATEGORICAL___reservation_status_date___2015-08-17": 776, "31___CATEGORICAL___reservation_status_date___2015-08-18": 777, "31___CATEGORICAL___reservation_status_date___2015-08-19": 778, "31___CATEGORICAL___reservation_status_date___2015-08-20": 779, "31___CATEGORICAL___reservation_status_date___2015-08-21": 780, "31___CATEGORICAL___reservation_status_date___2015-08-22": 781, "31___CATEGORICAL___reservation_status_date___2015-08-23": 782, "31___CATEGORICAL___reservation_status_date___2015-08-24": 783, "31___CATEGORICAL___reservation_status_date___2015-08-25": 784, "31___CATEGORICAL___reservation_status_date___2015-08-26": 785, "31___CATEGORICAL___reservation_status_date___2015-08-27": 786, "31___CATEGORICAL___reservation_status_date___2015-08-28": 787, "31___CATEGORICAL___reservation_status_date___2015-08-29": 788, "31___CATEGORICAL___reservation_status_date___2015-08-30": 789, "31___CATEGORICAL___reservation_status_date___2015-08-31": 790, "31___CATEGORICAL___reservation_status_date___2015-09-01": 791, "31___CATEGORICAL___reservation_status_date___2015-09-02": 792, "31___CATEGORICAL___reservation_status_date___2015-09-03": 793, "31___CATEGORICAL___reservation_status_date___2015-09-04": 794, "31___CATEGORICAL___reservation_status_date___2015-09-05": 795, "31___CATEGORICAL___reservation_status_date___2015-09-06": 796, "31___CATEGORICAL___reservation_status_date___2015-09-07": 797, "31___CATEGORICAL___reservation_status_date___2015-09-08": 798, "31___CATEGORICAL___reservation_status_date___2015-09-09": 799, "31___CATEGORICAL___reservation_status_date___2015-09-10": 800, "31___CATEGORICAL___reservation_status_date___2015-09-11": 801, "31___CATEGORICAL___reservation_status_date___2015-09-12": 802, "31___CATEGORICAL___reservation_status_date___2015-09-13": 803, "31___CATEGORICAL___reservation_status_date___2015-09-14": 804, "31___CATEGORICAL___reservation_status_date___2015-09-15": 805, "31___CATEGORICAL___reservation_status_date___2015-09-16": 806, "31___CATEGORICAL___reservation_status_date___2015-09-17": 807, "31___CATEGORICAL___reservation_status_date___2015-09-18": 808, "31___CATEGORICAL___reservation_status_date___2015-09-19": 809, "31___CATEGORICAL___reservation_status_date___2015-09-20": 810, "31___CATEGORICAL___reservation_status_date___2015-09-21": 811, "31___CATEGORICAL___reservation_status_date___2015-09-22": 812, "31___CATEGORICAL___reservation_status_date___2015-09-23": 813, "31___CATEGORICAL___reservation_status_date___2015-09-24": 814, "31___CATEGORICAL___reservation_status_date___2015-09-25": 815, "31___CATEGORICAL___reservation_status_date___2015-09-26": 816, "31___CATEGORICAL___reservation_status_date___2015-09-27": 817, "31___CATEGORICAL___reservation_status_date___2015-09-28": 818, "31___CATEGORICAL___reservation_status_date___2015-09-29": 819, "31___CATEGORICAL___reservation_status_date___2015-09-30": 820, "31___CATEGORICAL___reservation_status_date___2015-10-01": 821, "31___CATEGORICAL___reservation_status_date___2015-10-02": 822, "31___CATEGORICAL___reservation_status_date___2015-10-03": 823, "31___CATEGORICAL___reservation_status_date___2015-10-04": 824, "31___CATEGORICAL___reservation_status_date___2015-10-05": 825, "31___CATEGORICAL___reservation_status_date___2015-10-06": 826, "31___CATEGORICAL___reservation_status_date___2015-10-07": 827, "31___CATEGORICAL___reservation_status_date___2015-10-08": 828, "31___CATEGORICAL___reservation_status_date___2015-10-09": 829, "31___CATEGORICAL___reservation_status_date___2015-10-10": 830, "31___CATEGORICAL___reservation_status_date___2015-10-11": 831, "31___CATEGORICAL___reservation_status_date___2015-10-12": 832, "31___CATEGORICAL___reservation_status_date___2015-10-13": 833, "31___CATEGORICAL___reservation_status_date___2015-10-14": 834, "31___CATEGORICAL___reservation_status_date___2015-10-15": 835, "31___CATEGORICAL___reservation_status_date___2015-10-16": 836, "31___CATEGORICAL___reservation_status_date___2015-10-17": 837, "31___CATEGORICAL___reservation_status_date___2015-10-18": 838, "31___CATEGORICAL___reservation_status_date___2015-10-19": 839, "31___CATEGORICAL___reservation_status_date___2015-10-20": 840, "31___CATEGORICAL___reservation_status_date___2015-10-21": 841, "31___CATEGORICAL___reservation_status_date___2015-10-22": 842, "31___CATEGORICAL___reservation_status_date___2015-10-23": 843, "31___CATEGORICAL___reservation_status_date___2015-10-24": 844, "31___CATEGORICAL___reservation_status_date___2015-10-25": 845, "31___CATEGORICAL___reservation_status_date___2015-10-26": 846, "31___CATEGORICAL___reservation_status_date___2015-10-27": 847, "31___CATEGORICAL___reservation_status_date___2015-10-28": 848, "31___CATEGORICAL___reservation_status_date___2015-10-29": 849, "31___CATEGORICAL___reservation_status_date___2015-10-30": 850, "31___CATEGORICAL___reservation_status_date___2015-10-31": 851, "31___CATEGORICAL___reservation_status_date___2015-11-01": 852, "31___CATEGORICAL___reservation_status_date___2015-11-02": 853, "31___CATEGORICAL___reservation_status_date___2015-11-03": 854, "31___CATEGORICAL___reservation_status_date___2015-11-04": 855, "31___CATEGORICAL___reservation_status_date___2015-11-05": 856, "31___CATEGORICAL___reservation_status_date___2015-11-06": 857, "31___CATEGORICAL___reservation_status_date___2015-11-07": 858, "31___CATEGORICAL___reservation_status_date___2015-11-08": 859, "31___CATEGORICAL___reservation_status_date___2015-11-09": 860, "31___CATEGORICAL___reservation_status_date___2015-11-10": 861, "31___CATEGORICAL___reservation_status_date___2015-11-11": 862, "31___CATEGORICAL___reservation_status_date___2015-11-12": 863, "31___CATEGORICAL___reservation_status_date___2015-11-13": 864, "31___CATEGORICAL___reservation_status_date___2015-11-14": 865, "31___CATEGORICAL___reservation_status_date___2015-11-15": 866, "31___CATEGORICAL___reservation_status_date___2015-11-16": 867, "31___CATEGORICAL___reservation_status_date___2015-11-17": 868, "31___CATEGORICAL___reservation_status_date___2015-11-18": 869, "31___CATEGORICAL___reservation_status_date___2015-11-19": 870, "31___CATEGORICAL___reservation_status_date___2015-11-20": 871, "31___CATEGORICAL___reservation_status_date___2015-11-21": 872, "31___CATEGORICAL___reservation_status_date___2015-11-22": 873, "31___CATEGORICAL___reservation_status_date___2015-11-23": 874, "31___CATEGORICAL___reservation_status_date___2015-11-24": 875, "31___CATEGORICAL___reservation_status_date___2015-11-25": 876, "31___CATEGORICAL___reservation_status_date___2015-11-26": 877, "31___CATEGORICAL___reservation_status_date___2015-11-27": 878, "31___CATEGORICAL___reservation_status_date___2015-11-28": 879, "31___CATEGORICAL___reservation_status_date___2015-11-29": 880, "31___CATEGORICAL___reservation_status_date___2015-11-30": 881, "31___CATEGORICAL___reservation_status_date___2015-12-01": 882, "31___CATEGORICAL___reservation_status_date___2015-12-02": 883, "31___CATEGORICAL___reservation_status_date___2015-12-03": 884, "31___CATEGORICAL___reservation_status_date___2015-12-04": 885, "31___CATEGORICAL___reservation_status_date___2015-12-05": 886, "31___CATEGORICAL___reservation_status_date___2015-12-06": 887, "31___CATEGORICAL___reservation_status_date___2015-12-07": 888, "31___CATEGORICAL___reservation_status_date___2015-12-08": 889, "31___CATEGORICAL___reservation_status_date___2015-12-09": 890, "31___CATEGORICAL___reservation_status_date___2015-12-10": 891, "31___CATEGORICAL___reservation_status_date___2015-12-11": 892, "31___CATEGORICAL___reservation_status_date___2015-12-12": 893, "31___CATEGORICAL___reservation_status_date___2015-12-13": 894, "31___CATEGORICAL___reservation_status_date___2015-12-14": 895, "31___CATEGORICAL___reservation_status_date___2015-12-15": 896, "31___CATEGORICAL___reservation_status_date___2015-12-16": 897, "31___CATEGORICAL___reservation_status_date___2015-12-17": 898, "31___CATEGORICAL___reservation_status_date___2015-12-18": 899, "31___CATEGORICAL___reservation_status_date___2015-12-19": 900, "31___CATEGORICAL___reservation_status_date___2015-12-20": 901, "31___CATEGORICAL___reservation_status_date___2015-12-21": 902, "31___CATEGORICAL___reservation_status_date___2015-12-22": 903, "31___CATEGORICAL___reservation_status_date___2015-12-23": 904, "31___CATEGORICAL___reservation_status_date___2015-12-24": 905, "31___CATEGORICAL___reservation_status_date___2015-12-25": 906, "31___CATEGORICAL___reservation_status_date___2015-12-26": 907, "31___CATEGORICAL___reservation_status_date___2015-12-27": 908, "31___CATEGORICAL___reservation_status_date___2015-12-28": 909, "31___CATEGORICAL___reservation_status_date___2015-12-29": 910, "31___CATEGORICAL___reservation_status_date___2015-12-30": 911, "31___CATEGORICAL___reservation_status_date___2015-12-31": 912, "31___CATEGORICAL___reservation_status_date___2016-01-01": 913, "31___CATEGORICAL___reservation_status_date___2016-01-02": 914, "31___CATEGORICAL___reservation_status_date___2016-01-03": 915, "31___CATEGORICAL___reservation_status_date___2016-01-04": 916, "31___CATEGORICAL___reservation_status_date___2016-01-05": 917, "31___CATEGORICAL___reservation_status_date___2016-01-06": 918, "31___CATEGORICAL___reservation_status_date___2016-01-07": 919, "31___CATEGORICAL___reservation_status_date___2016-01-08": 920, "31___CATEGORICAL___reservation_status_date___2016-01-09": 921, "31___CATEGORICAL___reservation_status_date___2016-01-10": 922, "31___CATEGORICAL___reservation_status_date___2016-01-11": 923, "31___CATEGORICAL___reservation_status_date___2016-01-12": 924, "31___CATEGORICAL___reservation_status_date___2016-01-13": 925, "31___CATEGORICAL___reservation_status_date___2016-01-14": 926, "31___CATEGORICAL___reservation_status_date___2016-01-15": 927, "31___CATEGORICAL___reservation_status_date___2016-01-16": 928, "31___CATEGORICAL___reservation_status_date___2016-01-17": 929, "31___CATEGORICAL___reservation_status_date___2016-01-18": 930, "31___CATEGORICAL___reservation_status_date___2016-01-19": 931, "31___CATEGORICAL___reservation_status_date___2016-01-20": 932, "31___CATEGORICAL___reservation_status_date___2016-01-21": 933, "31___CATEGORICAL___reservation_status_date___2016-01-22": 934, "31___CATEGORICAL___reservation_status_date___2016-01-23": 935, "31___CATEGORICAL___reservation_status_date___2016-01-24": 936, "31___CATEGORICAL___reservation_status_date___2016-01-25": 937, "31___CATEGORICAL___reservation_status_date___2016-01-26": 938, "31___CATEGORICAL___reservation_status_date___2016-01-27": 939, "31___CATEGORICAL___reservation_status_date___2016-01-28": 940, "31___CATEGORICAL___reservation_status_date___2016-01-29": 941, "31___CATEGORICAL___reservation_status_date___2016-01-30": 942, "31___CATEGORICAL___reservation_status_date___2016-01-31": 943, "31___CATEGORICAL___reservation_status_date___2016-02-01": 944, "31___CATEGORICAL___reservation_status_date___2016-02-02": 945, "31___CATEGORICAL___reservation_status_date___2016-02-03": 946, "31___CATEGORICAL___reservation_status_date___2016-02-04": 947, "31___CATEGORICAL___reservation_status_date___2016-02-05": 948, "31___CATEGORICAL___reservation_status_date___2016-02-06": 949, "31___CATEGORICAL___reservation_status_date___2016-02-07": 950, "31___CATEGORICAL___reservation_status_date___2016-02-08": 951, "31___CATEGORICAL___reservation_status_date___2016-02-09": 952, "31___CATEGORICAL___reservation_status_date___2016-02-10": 953, "31___CATEGORICAL___reservation_status_date___2016-02-11": 954, "31___CATEGORICAL___reservation_status_date___2016-02-12": 955, "31___CATEGORICAL___reservation_status_date___2016-02-13": 956, "31___CATEGORICAL___reservation_status_date___2016-02-14": 957, "31___CATEGORICAL___reservation_status_date___2016-02-15": 958, "31___CATEGORICAL___reservation_status_date___2016-02-16": 959, "31___CATEGORICAL___reservation_status_date___2016-02-17": 960, "31___CATEGORICAL___reservation_status_date___2016-02-18": 961, "31___CATEGORICAL___reservation_status_date___2016-02-19": 962, "31___CATEGORICAL___reservation_status_date___2016-02-20": 963, "31___CATEGORICAL___reservation_status_date___2016-02-21": 964, "31___CATEGORICAL___reservation_status_date___2016-02-22": 965, "31___CATEGORICAL___reservation_status_date___2016-02-23": 966, "31___CATEGORICAL___reservation_status_date___2016-02-24": 967, "31___CATEGORICAL___reservation_status_date___2016-02-25": 968, "31___CATEGORICAL___reservation_status_date___2016-02-26": 969, "31___CATEGORICAL___reservation_status_date___2016-02-27": 970, "31___CATEGORICAL___reservation_status_date___2016-02-28": 971, "31___CATEGORICAL___reservation_status_date___2016-02-29": 972, "31___CATEGORICAL___reservation_status_date___2016-03-01": 973, "31___CATEGORICAL___reservation_status_date___2016-03-02": 974, "31___CATEGORICAL___reservation_status_date___2016-03-03": 975, "31___CATEGORICAL___reservation_status_date___2016-03-04": 976, "31___CATEGORICAL___reservation_status_date___2016-03-05": 977, "31___CATEGORICAL___reservation_status_date___2016-03-06": 978, "31___CATEGORICAL___reservation_status_date___2016-03-07": 979, "31___CATEGORICAL___reservation_status_date___2016-03-08": 980, "31___CATEGORICAL___reservation_status_date___2016-03-09": 981, "31___CATEGORICAL___reservation_status_date___2016-03-10": 982, "31___CATEGORICAL___reservation_status_date___2016-03-11": 983, "31___CATEGORICAL___reservation_status_date___2016-03-12": 984, "31___CATEGORICAL___reservation_status_date___2016-03-13": 985, "31___CATEGORICAL___reservation_status_date___2016-03-14": 986, "31___CATEGORICAL___reservation_status_date___2016-03-15": 987, "31___CATEGORICAL___reservation_status_date___2016-03-16": 988, "31___CATEGORICAL___reservation_status_date___2016-03-17": 989, "31___CATEGORICAL___reservation_status_date___2016-03-18": 990, "31___CATEGORICAL___reservation_status_date___2016-03-19": 991, "31___CATEGORICAL___reservation_status_date___2016-03-20": 992, "31___CATEGORICAL___reservation_status_date___2016-03-21": 993, "31___CATEGORICAL___reservation_status_date___2016-03-22": 994, "31___CATEGORICAL___reservation_status_date___2016-03-23": 995, "31___CATEGORICAL___reservation_status_date___2016-03-24": 996, "31___CATEGORICAL___reservation_status_date___2016-03-25": 997, "31___CATEGORICAL___reservation_status_date___2016-03-26": 998, "31___CATEGORICAL___reservation_status_date___2016-03-27": 999, "31___CATEGORICAL___reservation_status_date___2016-03-28": 1000, "31___CATEGORICAL___reservation_status_date___2016-03-29": 1001, "31___CATEGORICAL___reservation_status_date___2016-03-30": 1002, "31___CATEGORICAL___reservation_status_date___2016-03-31": 1003, "31___CATEGORICAL___reservation_status_date___2016-04-01": 1004, "31___CATEGORICAL___reservation_status_date___2016-04-02": 1005, "31___CATEGORICAL___reservation_status_date___2016-04-03": 1006, "31___CATEGORICAL___reservation_status_date___2016-04-04": 1007, "31___CATEGORICAL___reservation_status_date___2016-04-05": 1008, "31___CATEGORICAL___reservation_status_date___2016-04-06": 1009, "31___CATEGORICAL___reservation_status_date___2016-04-07": 1010, "31___CATEGORICAL___reservation_status_date___2016-04-08": 1011, "31___CATEGORICAL___reservation_status_date___2016-04-09": 1012, "31___CATEGORICAL___reservation_status_date___2016-04-10": 1013, "31___CATEGORICAL___reservation_status_date___2016-04-11": 1014, "31___CATEGORICAL___reservation_status_date___2016-04-12": 1015, "31___CATEGORICAL___reservation_status_date___2016-04-13": 1016, "31___CATEGORICAL___reservation_status_date___2016-04-14": 1017, "31___CATEGORICAL___reservation_status_date___2016-04-15": 1018, "31___CATEGORICAL___reservation_status_date___2016-04-16": 1019, "31___CATEGORICAL___reservation_status_date___2016-04-17": 1020, "31___CATEGORICAL___reservation_status_date___2016-04-18": 1021, "31___CATEGORICAL___reservation_status_date___2016-04-19": 1022, "31___CATEGORICAL___reservation_status_date___2016-04-20": 1023, "31___CATEGORICAL___reservation_status_date___2016-04-21": 1024, "31___CATEGORICAL___reservation_status_date___2016-04-22": 1025, "31___CATEGORICAL___reservation_status_date___2016-04-23": 1026, "31___CATEGORICAL___reservation_status_date___2016-04-24": 1027, "31___CATEGORICAL___reservation_status_date___2016-04-25": 1028, "31___CATEGORICAL___reservation_status_date___2016-04-26": 1029, "31___CATEGORICAL___reservation_status_date___2016-04-27": 1030, "31___CATEGORICAL___reservation_status_date___2016-04-28": 1031, "31___CATEGORICAL___reservation_status_date___2016-04-29": 1032, "31___CATEGORICAL___reservation_status_date___2016-04-30": 1033, "31___CATEGORICAL___reservation_status_date___2016-05-01": 1034, "31___CATEGORICAL___reservation_status_date___2016-05-02": 1035, "31___CATEGORICAL___reservation_status_date___2016-05-03": 1036, "31___CATEGORICAL___reservation_status_date___2016-05-04": 1037, "31___CATEGORICAL___reservation_status_date___2016-05-05": 1038, "31___CATEGORICAL___reservation_status_date___2016-05-06": 1039, "31___CATEGORICAL___reservation_status_date___2016-05-07": 1040, "31___CATEGORICAL___reservation_status_date___2016-05-08": 1041, "31___CATEGORICAL___reservation_status_date___2016-05-09": 1042, "31___CATEGORICAL___reservation_status_date___2016-05-10": 1043, "31___CATEGORICAL___reservation_status_date___2016-05-11": 1044, "31___CATEGORICAL___reservation_status_date___2016-05-12": 1045, "31___CATEGORICAL___reservation_status_date___2016-05-13": 1046, "31___CATEGORICAL___reservation_status_date___2016-05-14": 1047, "31___CATEGORICAL___reservation_status_date___2016-05-15": 1048, "31___CATEGORICAL___reservation_status_date___2016-05-16": 1049, "31___CATEGORICAL___reservation_status_date___2016-05-17": 1050, "31___CATEGORICAL___reservation_status_date___2016-05-18": 1051, "31___CATEGORICAL___reservation_status_date___2016-05-19": 1052, "31___CATEGORICAL___reservation_status_date___2016-05-20": 1053, "31___CATEGORICAL___reservation_status_date___2016-05-21": 1054, "31___CATEGORICAL___reservation_status_date___2016-05-22": 1055, "31___CATEGORICAL___reservation_status_date___2016-05-23": 1056, "31___CATEGORICAL___reservation_status_date___2016-05-24": 1057, "31___CATEGORICAL___reservation_status_date___2016-05-25": 1058, "31___CATEGORICAL___reservation_status_date___2016-05-26": 1059, "31___CATEGORICAL___reservation_status_date___2016-05-27": 1060, "31___CATEGORICAL___reservation_status_date___2016-05-28": 1061, "31___CATEGORICAL___reservation_status_date___2016-05-29": 1062, "31___CATEGORICAL___reservation_status_date___2016-05-30": 1063, "31___CATEGORICAL___reservation_status_date___2016-05-31": 1064, "31___CATEGORICAL___reservation_status_date___2016-06-01": 1065, "31___CATEGORICAL___reservation_status_date___2016-06-02": 1066, "31___CATEGORICAL___reservation_status_date___2016-06-03": 1067, "31___CATEGORICAL___reservation_status_date___2016-06-04": 1068, "31___CATEGORICAL___reservation_status_date___2016-06-05": 1069, "31___CATEGORICAL___reservation_status_date___2016-06-06": 1070, "31___CATEGORICAL___reservation_status_date___2016-06-07": 1071, "31___CATEGORICAL___reservation_status_date___2016-06-08": 1072, "31___CATEGORICAL___reservation_status_date___2016-06-09": 1073, "31___CATEGORICAL___reservation_status_date___2016-06-10": 1074, "31___CATEGORICAL___reservation_status_date___2016-06-11": 1075, "31___CATEGORICAL___reservation_status_date___2016-06-12": 1076, "31___CATEGORICAL___reservation_status_date___2016-06-13": 1077, "31___CATEGORICAL___reservation_status_date___2016-06-14": 1078, "31___CATEGORICAL___reservation_status_date___2016-06-15": 1079, "31___CATEGORICAL___reservation_status_date___2016-06-16": 1080, "31___CATEGORICAL___reservation_status_date___2016-06-17": 1081, "31___CATEGORICAL___reservation_status_date___2016-06-18": 1082, "31___CATEGORICAL___reservation_status_date___2016-06-19": 1083, "31___CATEGORICAL___reservation_status_date___2016-06-20": 1084, "31___CATEGORICAL___reservation_status_date___2016-06-21": 1085, "31___CATEGORICAL___reservation_status_date___2016-06-22": 1086, "31___CATEGORICAL___reservation_status_date___2016-06-23": 1087, "31___CATEGORICAL___reservation_status_date___2016-06-24": 1088, "31___CATEGORICAL___reservation_status_date___2016-06-25": 1089, "31___CATEGORICAL___reservation_status_date___2016-06-26": 1090, "31___CATEGORICAL___reservation_status_date___2016-06-27": 1091, "31___CATEGORICAL___reservation_status_date___2016-06-28": 1092, "31___CATEGORICAL___reservation_status_date___2016-06-29": 1093, "31___CATEGORICAL___reservation_status_date___2016-06-30": 1094, "31___CATEGORICAL___reservation_status_date___2016-07-01": 1095, "31___CATEGORICAL___reservation_status_date___2016-07-02": 1096, "31___CATEGORICAL___reservation_status_date___2016-07-03": 1097, "31___CATEGORICAL___reservation_status_date___2016-07-04": 1098, "31___CATEGORICAL___reservation_status_date___2016-07-05": 1099, "31___CATEGORICAL___reservation_status_date___2016-07-06": 1100, "31___CATEGORICAL___reservation_status_date___2016-07-07": 1101, "31___CATEGORICAL___reservation_status_date___2016-07-08": 1102, "31___CATEGORICAL___reservation_status_date___2016-07-09": 1103, "31___CATEGORICAL___reservation_status_date___2016-07-10": 1104, "31___CATEGORICAL___reservation_status_date___2016-07-11": 1105, "31___CATEGORICAL___reservation_status_date___2016-07-12": 1106, "31___CATEGORICAL___reservation_status_date___2016-07-13": 1107, "31___CATEGORICAL___reservation_status_date___2016-07-14": 1108, "31___CATEGORICAL___reservation_status_date___2016-07-15": 1109, "31___CATEGORICAL___reservation_status_date___2016-07-16": 1110, "31___CATEGORICAL___reservation_status_date___2016-07-17": 1111, "31___CATEGORICAL___reservation_status_date___2016-07-18": 1112, "31___CATEGORICAL___reservation_status_date___2016-07-19": 1113, "31___CATEGORICAL___reservation_status_date___2016-07-20": 1114, "31___CATEGORICAL___reservation_status_date___2016-07-21": 1115, "31___CATEGORICAL___reservation_status_date___2016-07-22": 1116, "31___CATEGORICAL___reservation_status_date___2016-07-23": 1117, "31___CATEGORICAL___reservation_status_date___2016-07-24": 1118, "31___CATEGORICAL___reservation_status_date___2016-07-25": 1119, "31___CATEGORICAL___reservation_status_date___2016-07-26": 1120, "31___CATEGORICAL___reservation_status_date___2016-07-27": 1121, "31___CATEGORICAL___reservation_status_date___2016-07-28": 1122, "31___CATEGORICAL___reservation_status_date___2016-07-29": 1123, "31___CATEGORICAL___reservation_status_date___2016-07-30": 1124, "31___CATEGORICAL___reservation_status_date___2016-07-31": 1125, "31___CATEGORICAL___reservation_status_date___2016-08-01": 1126, "31___CATEGORICAL___reservation_status_date___2016-08-02": 1127, "31___CATEGORICAL___reservation_status_date___2016-08-03": 1128, "31___CATEGORICAL___reservation_status_date___2016-08-04": 1129, "31___CATEGORICAL___reservation_status_date___2016-08-05": 1130, "31___CATEGORICAL___reservation_status_date___2016-08-06": 1131, "31___CATEGORICAL___reservation_status_date___2016-08-07": 1132, "31___CATEGORICAL___reservation_status_date___2016-08-08": 1133, "31___CATEGORICAL___reservation_status_date___2016-08-09": 1134, "31___CATEGORICAL___reservation_status_date___2016-08-10": 1135, "31___CATEGORICAL___reservation_status_date___2016-08-11": 1136, "31___CATEGORICAL___reservation_status_date___2016-08-12": 1137, "31___CATEGORICAL___reservation_status_date___2016-08-13": 1138, "31___CATEGORICAL___reservation_status_date___2016-08-14": 1139, "31___CATEGORICAL___reservation_status_date___2016-08-15": 1140, "31___CATEGORICAL___reservation_status_date___2016-08-16": 1141, "31___CATEGORICAL___reservation_status_date___2016-08-17": 1142, "31___CATEGORICAL___reservation_status_date___2016-08-18": 1143, "31___CATEGORICAL___reservation_status_date___2016-08-19": 1144, "31___CATEGORICAL___reservation_status_date___2016-08-20": 1145, "31___CATEGORICAL___reservation_status_date___2016-08-21": 1146, "31___CATEGORICAL___reservation_status_date___2016-08-22": 1147, "31___CATEGORICAL___reservation_status_date___2016-08-23": 1148, "31___CATEGORICAL___reservation_status_date___2016-08-24": 1149, "31___CATEGORICAL___reservation_status_date___2016-08-25": 1150, "31___CATEGORICAL___reservation_status_date___2016-08-26": 1151, "31___CATEGORICAL___reservation_status_date___2016-08-27": 1152, "31___CATEGORICAL___reservation_status_date___2016-08-28": 1153, "31___CATEGORICAL___reservation_status_date___2016-08-29": 1154, "31___CATEGORICAL___reservation_status_date___2016-08-30": 1155, "31___CATEGORICAL___reservation_status_date___2016-08-31": 1156, "31___CATEGORICAL___reservation_status_date___2016-09-01": 1157, "31___CATEGORICAL___reservation_status_date___2016-09-02": 1158, "31___CATEGORICAL___reservation_status_date___2016-09-03": 1159, "31___CATEGORICAL___reservation_status_date___2016-09-04": 1160, "31___CATEGORICAL___reservation_status_date___2016-09-05": 1161, "31___CATEGORICAL___reservation_status_date___2016-09-06": 1162, "31___CATEGORICAL___reservation_status_date___2016-09-07": 1163, "31___CATEGORICAL___reservation_status_date___2016-09-08": 1164, "31___CATEGORICAL___reservation_status_date___2016-09-09": 1165, "31___CATEGORICAL___reservation_status_date___2016-09-10": 1166, "31___CATEGORICAL___reservation_status_date___2016-09-11": 1167, "31___CATEGORICAL___reservation_status_date___2016-09-12": 1168, "31___CATEGORICAL___reservation_status_date___2016-09-13": 1169, "31___CATEGORICAL___reservation_status_date___2016-09-14": 1170, "31___CATEGORICAL___reservation_status_date___2016-09-15": 1171, "31___CATEGORICAL___reservation_status_date___2016-09-16": 1172, "31___CATEGORICAL___reservation_status_date___2016-09-17": 1173, "31___CATEGORICAL___reservation_status_date___2016-09-18": 1174, "31___CATEGORICAL___reservation_status_date___2016-09-19": 1175, "31___CATEGORICAL___reservation_status_date___2016-09-20": 1176, "31___CATEGORICAL___reservation_status_date___2016-09-21": 1177, "31___CATEGORICAL___reservation_status_date___2016-09-22": 1178, "31___CATEGORICAL___reservation_status_date___2016-09-23": 1179, "31___CATEGORICAL___reservation_status_date___2016-09-24": 1180, "31___CATEGORICAL___reservation_status_date___2016-09-25": 1181, "31___CATEGORICAL___reservation_status_date___2016-09-26": 1182, "31___CATEGORICAL___reservation_status_date___2016-09-27": 1183, "31___CATEGORICAL___reservation_status_date___2016-09-28": 1184, "31___CATEGORICAL___reservation_status_date___2016-09-29": 1185, "31___CATEGORICAL___reservation_status_date___2016-09-30": 1186, "31___CATEGORICAL___reservation_status_date___2016-10-01": 1187, "31___CATEGORICAL___reservation_status_date___2016-10-02": 1188, "31___CATEGORICAL___reservation_status_date___2016-10-03": 1189, "31___CATEGORICAL___reservation_status_date___2016-10-04": 1190, "31___CATEGORICAL___reservation_status_date___2016-10-05": 1191, "31___CATEGORICAL___reservation_status_date___2016-10-06": 1192, "31___CATEGORICAL___reservation_status_date___2016-10-07": 1193, "31___CATEGORICAL___reservation_status_date___2016-10-08": 1194, "31___CATEGORICAL___reservation_status_date___2016-10-09": 1195, "31___CATEGORICAL___reservation_status_date___2016-10-10": 1196, "31___CATEGORICAL___reservation_status_date___2016-10-11": 1197, "31___CATEGORICAL___reservation_status_date___2016-10-12": 1198, "31___CATEGORICAL___reservation_status_date___2016-10-13": 1199, "31___CATEGORICAL___reservation_status_date___2016-10-14": 1200, "31___CATEGORICAL___reservation_status_date___2016-10-15": 1201, "31___CATEGORICAL___reservation_status_date___2016-10-16": 1202, "31___CATEGORICAL___reservation_status_date___2016-10-17": 1203, "31___CATEGORICAL___reservation_status_date___2016-10-18": 1204, "31___CATEGORICAL___reservation_status_date___2016-10-19": 1205, "31___CATEGORICAL___reservation_status_date___2016-10-20": 1206, "31___CATEGORICAL___reservation_status_date___2016-10-21": 1207, "31___CATEGORICAL___reservation_status_date___2016-10-22": 1208, "31___CATEGORICAL___reservation_status_date___2016-10-23": 1209, "31___CATEGORICAL___reservation_status_date___2016-10-24": 1210, "31___CATEGORICAL___reservation_status_date___2016-10-25": 1211, "31___CATEGORICAL___reservation_status_date___2016-10-26": 1212, "31___CATEGORICAL___reservation_status_date___2016-10-27": 1213, "31___CATEGORICAL___reservation_status_date___2016-10-28": 1214, "31___CATEGORICAL___reservation_status_date___2016-10-29": 1215, "31___CATEGORICAL___reservation_status_date___2016-10-30": 1216, "31___CATEGORICAL___reservation_status_date___2016-10-31": 1217, "31___CATEGORICAL___reservation_status_date___2016-11-01": 1218, "31___CATEGORICAL___reservation_status_date___2016-11-02": 1219, "31___CATEGORICAL___reservation_status_date___2016-11-03": 1220, "31___CATEGORICAL___reservation_status_date___2016-11-04": 1221, "31___CATEGORICAL___reservation_status_date___2016-11-05": 1222, "31___CATEGORICAL___reservation_status_date___2016-11-06": 1223, "31___CATEGORICAL___reservation_status_date___2016-11-07": 1224, "31___CATEGORICAL___reservation_status_date___2016-11-08": 1225, "31___CATEGORICAL___reservation_status_date___2016-11-09": 1226, "31___CATEGORICAL___reservation_status_date___2016-11-10": 1227, "31___CATEGORICAL___reservation_status_date___2016-11-11": 1228, "31___CATEGORICAL___reservation_status_date___2016-11-12": 1229, "31___CATEGORICAL___reservation_status_date___2016-11-13": 1230, "31___CATEGORICAL___reservation_status_date___2016-11-14": 1231, "31___CATEGORICAL___reservation_status_date___2016-11-15": 1232, "31___CATEGORICAL___reservation_status_date___2016-11-16": 1233, "31___CATEGORICAL___reservation_status_date___2016-11-17": 1234, "31___CATEGORICAL___reservation_status_date___2016-11-18": 1235, "31___CATEGORICAL___reservation_status_date___2016-11-19": 1236, "31___CATEGORICAL___reservation_status_date___2016-11-20": 1237, "31___CATEGORICAL___reservation_status_date___2016-11-21": 1238, "31___CATEGORICAL___reservation_status_date___2016-11-22": 1239, "31___CATEGORICAL___reservation_status_date___2016-11-23": 1240, "31___CATEGORICAL___reservation_status_date___2016-11-24": 1241, "31___CATEGORICAL___reservation_status_date___2016-11-25": 1242, "31___CATEGORICAL___reservation_status_date___2016-11-26": 1243, "31___CATEGORICAL___reservation_status_date___2016-11-27": 1244, "31___CATEGORICAL___reservation_status_date___2016-11-28": 1245, "31___CATEGORICAL___reservation_status_date___2016-11-29": 1246, "31___CATEGORICAL___reservation_status_date___2016-11-30": 1247, "31___CATEGORICAL___reservation_status_date___2016-12-01": 1248, "31___CATEGORICAL___reservation_status_date___2016-12-02": 1249, "31___CATEGORICAL___reservation_status_date___2016-12-03": 1250, "31___CATEGORICAL___reservation_status_date___2016-12-04": 1251, "31___CATEGORICAL___reservation_status_date___2016-12-05": 1252, "31___CATEGORICAL___reservation_status_date___2016-12-06": 1253, "31___CATEGORICAL___reservation_status_date___2016-12-07": 1254, "31___CATEGORICAL___reservation_status_date___2016-12-08": 1255, "31___CATEGORICAL___reservation_status_date___2016-12-09": 1256, "31___CATEGORICAL___reservation_status_date___2016-12-10": 1257, "31___CATEGORICAL___reservation_status_date___2016-12-11": 1258, "31___CATEGORICAL___reservation_status_date___2016-12-12": 1259, "31___CATEGORICAL___reservation_status_date___2016-12-13": 1260, "31___CATEGORICAL___reservation_status_date___2016-12-14": 1261, "31___CATEGORICAL___reservation_status_date___2016-12-15": 1262, "31___CATEGORICAL___reservation_status_date___2016-12-16": 1263, "31___CATEGORICAL___reservation_status_date___2016-12-17": 1264, "31___CATEGORICAL___reservation_status_date___2016-12-18": 1265, "31___CATEGORICAL___reservation_status_date___2016-12-19": 1266, "31___CATEGORICAL___reservation_status_date___2016-12-20": 1267, "31___CATEGORICAL___reservation_status_date___2016-12-21": 1268, "31___CATEGORICAL___reservation_status_date___2016-12-22": 1269, "31___CATEGORICAL___reservation_status_date___2016-12-23": 1270, "31___CATEGORICAL___reservation_status_date___2016-12-24": 1271, "31___CATEGORICAL___reservation_status_date___2016-12-25": 1272, "31___CATEGORICAL___reservation_status_date___2016-12-26": 1273, "31___CATEGORICAL___reservation_status_date___2016-12-27": 1274, "31___CATEGORICAL___reservation_status_date___2016-12-28": 1275, "31___CATEGORICAL___reservation_status_date___2016-12-29": 1276, "31___CATEGORICAL___reservation_status_date___2016-12-30": 1277, "31___CATEGORICAL___reservation_status_date___2016-12-31": 1278, "31___CATEGORICAL___reservation_status_date___2017-01-01": 1279, "31___CATEGORICAL___reservation_status_date___2017-01-02": 1280, "31___CATEGORICAL___reservation_status_date___2017-01-03": 1281, "31___CATEGORICAL___reservation_status_date___2017-01-04": 1282, "31___CATEGORICAL___reservation_status_date___2017-01-05": 1283, "31___CATEGORICAL___reservation_status_date___2017-01-06": 1284, "31___CATEGORICAL___reservation_status_date___2017-01-07": 1285, "31___CATEGORICAL___reservation_status_date___2017-01-08": 1286, "31___CATEGORICAL___reservation_status_date___2017-01-09": 1287, "31___CATEGORICAL___reservation_status_date___2017-01-10": 1288, "31___CATEGORICAL___reservation_status_date___2017-01-11": 1289, "31___CATEGORICAL___reservation_status_date___2017-01-12": 1290, "31___CATEGORICAL___reservation_status_date___2017-01-13": 1291, "31___CATEGORICAL___reservation_status_date___2017-01-14": 1292, "31___CATEGORICAL___reservation_status_date___2017-01-15": 1293, "31___CATEGORICAL___reservation_status_date___2017-01-16": 1294, "31___CATEGORICAL___reservation_status_date___2017-01-17": 1295, "31___CATEGORICAL___reservation_status_date___2017-01-18": 1296, "31___CATEGORICAL___reservation_status_date___2017-01-19": 1297, "31___CATEGORICAL___reservation_status_date___2017-01-20": 1298, "31___CATEGORICAL___reservation_status_date___2017-01-21": 1299, "31___CATEGORICAL___reservation_status_date___2017-01-22": 1300, "31___CATEGORICAL___reservation_status_date___2017-01-23": 1301, "31___CATEGORICAL___reservation_status_date___2017-01-24": 1302, "31___CATEGORICAL___reservation_status_date___2017-01-25": 1303, "31___CATEGORICAL___reservation_status_date___2017-01-26": 1304, "31___CATEGORICAL___reservation_status_date___2017-01-27": 1305, "31___CATEGORICAL___reservation_status_date___2017-01-28": 1306, "31___CATEGORICAL___reservation_status_date___2017-01-29": 1307, "31___CATEGORICAL___reservation_status_date___2017-01-30": 1308, "31___CATEGORICAL___reservation_status_date___2017-01-31": 1309, "31___CATEGORICAL___reservation_status_date___2017-02-01": 1310, "31___CATEGORICAL___reservation_status_date___2017-02-02": 1311, "31___CATEGORICAL___reservation_status_date___2017-02-03": 1312, "31___CATEGORICAL___reservation_status_date___2017-02-04": 1313, "31___CATEGORICAL___reservation_status_date___2017-02-05": 1314, "31___CATEGORICAL___reservation_status_date___2017-02-06": 1315, "31___CATEGORICAL___reservation_status_date___2017-02-07": 1316, "31___CATEGORICAL___reservation_status_date___2017-02-08": 1317, "31___CATEGORICAL___reservation_status_date___2017-02-09": 1318, "31___CATEGORICAL___reservation_status_date___2017-02-10": 1319, "31___CATEGORICAL___reservation_status_date___2017-02-11": 1320, "31___CATEGORICAL___reservation_status_date___2017-02-12": 1321, "31___CATEGORICAL___reservation_status_date___2017-02-13": 1322, "31___CATEGORICAL___reservation_status_date___2017-02-14": 1323, "31___CATEGORICAL___reservation_status_date___2017-02-15": 1324, "31___CATEGORICAL___reservation_status_date___2017-02-16": 1325, "31___CATEGORICAL___reservation_status_date___2017-02-17": 1326, "31___CATEGORICAL___reservation_status_date___2017-02-18": 1327, "31___CATEGORICAL___reservation_status_date___2017-02-19": 1328, "31___CATEGORICAL___reservation_status_date___2017-02-20": 1329, "31___CATEGORICAL___reservation_status_date___2017-02-21": 1330, "31___CATEGORICAL___reservation_status_date___2017-02-22": 1331, "31___CATEGORICAL___reservation_status_date___2017-02-23": 1332, "31___CATEGORICAL___reservation_status_date___2017-02-24": 1333, "31___CATEGORICAL___reservation_status_date___2017-02-25": 1334, "31___CATEGORICAL___reservation_status_date___2017-02-26": 1335, "31___CATEGORICAL___reservation_status_date___2017-02-27": 1336, "31___CATEGORICAL___reservation_status_date___2017-02-28": 1337, "31___CATEGORICAL___reservation_status_date___2017-03-01": 1338, "31___CATEGORICAL___reservation_status_date___2017-03-02": 1339, "31___CATEGORICAL___reservation_status_date___2017-03-03": 1340, "31___CATEGORICAL___reservation_status_date___2017-03-04": 1341, "31___CATEGORICAL___reservation_status_date___2017-03-05": 1342, "31___CATEGORICAL___reservation_status_date___2017-03-06": 1343, "31___CATEGORICAL___reservation_status_date___2017-03-07": 1344, "31___CATEGORICAL___reservation_status_date___2017-03-08": 1345, "31___CATEGORICAL___reservation_status_date___2017-03-09": 1346, "31___CATEGORICAL___reservation_status_date___2017-03-10": 1347, "31___CATEGORICAL___reservation_status_date___2017-03-11": 1348, "31___CATEGORICAL___reservation_status_date___2017-03-12": 1349, "31___CATEGORICAL___reservation_status_date___2017-03-13": 1350, "31___CATEGORICAL___reservation_status_date___2017-03-14": 1351, "31___CATEGORICAL___reservation_status_date___2017-03-15": 1352, "31___CATEGORICAL___reservation_status_date___2017-03-16": 1353, "31___CATEGORICAL___reservation_status_date___2017-03-17": 1354, "31___CATEGORICAL___reservation_status_date___2017-03-18": 1355, "31___CATEGORICAL___reservation_status_date___2017-03-19": 1356, "31___CATEGORICAL___reservation_status_date___2017-03-20": 1357, "31___CATEGORICAL___reservation_status_date___2017-03-21": 1358, "31___CATEGORICAL___reservation_status_date___2017-03-22": 1359, "31___CATEGORICAL___reservation_status_date___2017-03-23": 1360, "31___CATEGORICAL___reservation_status_date___2017-03-24": 1361, "31___CATEGORICAL___reservation_status_date___2017-03-25": 1362, "31___CATEGORICAL___reservation_status_date___2017-03-26": 1363, "31___CATEGORICAL___reservation_status_date___2017-03-27": 1364, "31___CATEGORICAL___reservation_status_date___2017-03-28": 1365, "31___CATEGORICAL___reservation_status_date___2017-03-29": 1366, "31___CATEGORICAL___reservation_status_date___2017-03-30": 1367, "31___CATEGORICAL___reservation_status_date___2017-03-31": 1368, "31___CATEGORICAL___reservation_status_date___2017-04-01": 1369, "31___CATEGORICAL___reservation_status_date___2017-04-02": 1370, "31___CATEGORICAL___reservation_status_date___2017-04-03": 1371, "31___CATEGORICAL___reservation_status_date___2017-04-04": 1372, "31___CATEGORICAL___reservation_status_date___2017-04-05": 1373, "31___CATEGORICAL___reservation_status_date___2017-04-06": 1374, "31___CATEGORICAL___reservation_status_date___2017-04-07": 1375, "31___CATEGORICAL___reservation_status_date___2017-04-08": 1376, "31___CATEGORICAL___reservation_status_date___2017-04-09": 1377, "31___CATEGORICAL___reservation_status_date___2017-04-10": 1378, "31___CATEGORICAL___reservation_status_date___2017-04-11": 1379, "31___CATEGORICAL___reservation_status_date___2017-04-12": 1380, "31___CATEGORICAL___reservation_status_date___2017-04-13": 1381, "31___CATEGORICAL___reservation_status_date___2017-04-14": 1382, "31___CATEGORICAL___reservation_status_date___2017-04-15": 1383, "31___CATEGORICAL___reservation_status_date___2017-04-16": 1384, "31___CATEGORICAL___reservation_status_date___2017-04-17": 1385, "31___CATEGORICAL___reservation_status_date___2017-04-18": 1386, "31___CATEGORICAL___reservation_status_date___2017-04-19": 1387, "31___CATEGORICAL___reservation_status_date___2017-04-20": 1388, "31___CATEGORICAL___reservation_status_date___2017-04-21": 1389, "31___CATEGORICAL___reservation_status_date___2017-04-22": 1390, "31___CATEGORICAL___reservation_status_date___2017-04-23": 1391, "31___CATEGORICAL___reservation_status_date___2017-04-24": 1392, "31___CATEGORICAL___reservation_status_date___2017-04-25": 1393, "31___CATEGORICAL___reservation_status_date___2017-04-26": 1394, "31___CATEGORICAL___reservation_status_date___2017-04-27": 1395, "31___CATEGORICAL___reservation_status_date___2017-04-28": 1396, "31___CATEGORICAL___reservation_status_date___2017-04-29": 1397, "31___CATEGORICAL___reservation_status_date___2017-04-30": 1398, "31___CATEGORICAL___reservation_status_date___2017-05-01": 1399, "31___CATEGORICAL___reservation_status_date___2017-05-02": 1400, "31___CATEGORICAL___reservation_status_date___2017-05-03": 1401, "31___CATEGORICAL___reservation_status_date___2017-05-04": 1402, "31___CATEGORICAL___reservation_status_date___2017-05-05": 1403, "31___CATEGORICAL___reservation_status_date___2017-05-06": 1404, "31___CATEGORICAL___reservation_status_date___2017-05-07": 1405, "31___CATEGORICAL___reservation_status_date___2017-05-08": 1406, "31___CATEGORICAL___reservation_status_date___2017-05-09": 1407, "31___CATEGORICAL___reservation_status_date___2017-05-10": 1408, "31___CATEGORICAL___reservation_status_date___2017-05-11": 1409, "31___CATEGORICAL___reservation_status_date___2017-05-12": 1410, "31___CATEGORICAL___reservation_status_date___2017-05-13": 1411, "31___CATEGORICAL___reservation_status_date___2017-05-14": 1412, "31___CATEGORICAL___reservation_status_date___2017-05-15": 1413, "31___CATEGORICAL___reservation_status_date___2017-05-16": 1414, "31___CATEGORICAL___reservation_status_date___2017-05-17": 1415, "31___CATEGORICAL___reservation_status_date___2017-05-18": 1416, "31___CATEGORICAL___reservation_status_date___2017-05-19": 1417, "31___CATEGORICAL___reservation_status_date___2017-05-20": 1418, "31___CATEGORICAL___reservation_status_date___2017-05-21": 1419, "31___CATEGORICAL___reservation_status_date___2017-05-22": 1420, "31___CATEGORICAL___reservation_status_date___2017-05-23": 1421, "31___CATEGORICAL___reservation_status_date___2017-05-24": 1422, "31___CATEGORICAL___reservation_status_date___2017-05-25": 1423, "31___CATEGORICAL___reservation_status_date___2017-05-26": 1424, "31___CATEGORICAL___reservation_status_date___2017-05-27": 1425, "31___CATEGORICAL___reservation_status_date___2017-05-28": 1426, "31___CATEGORICAL___reservation_status_date___2017-05-29": 1427, "31___CATEGORICAL___reservation_status_date___2017-05-30": 1428, "31___CATEGORICAL___reservation_status_date___2017-05-31": 1429, "31___CATEGORICAL___reservation_status_date___2017-06-01": 1430, "31___CATEGORICAL___reservation_status_date___2017-06-02": 1431, "31___CATEGORICAL___reservation_status_date___2017-06-03": 1432, "31___CATEGORICAL___reservation_status_date___2017-06-04": 1433, "31___CATEGORICAL___reservation_status_date___2017-06-05": 1434, "31___CATEGORICAL___reservation_status_date___2017-06-06": 1435, "31___CATEGORICAL___reservation_status_date___2017-06-07": 1436, "31___CATEGORICAL___reservation_status_date___2017-06-08": 1437, "31___CATEGORICAL___reservation_status_date___2017-06-09": 1438, "31___CATEGORICAL___reservation_status_date___2017-06-10": 1439, "31___CATEGORICAL___reservation_status_date___2017-06-11": 1440, "31___CATEGORICAL___reservation_status_date___2017-06-12": 1441, "31___CATEGORICAL___reservation_status_date___2017-06-13": 1442, "31___CATEGORICAL___reservation_status_date___2017-06-14": 1443, "31___CATEGORICAL___reservation_status_date___2017-06-15": 1444, "31___CATEGORICAL___reservation_status_date___2017-06-16": 1445, "31___CATEGORICAL___reservation_status_date___2017-06-17": 1446, "31___CATEGORICAL___reservation_status_date___2017-06-18": 1447, "31___CATEGORICAL___reservation_status_date___2017-06-19": 1448, "31___CATEGORICAL___reservation_status_date___2017-06-20": 1449, "31___CATEGORICAL___reservation_status_date___2017-06-21": 1450, "31___CATEGORICAL___reservation_status_date___2017-06-22": 1451, "31___CATEGORICAL___reservation_status_date___2017-06-23": 1452, "31___CATEGORICAL___reservation_status_date___2017-06-24": 1453, "31___CATEGORICAL___reservation_status_date___2017-06-25": 1454, "31___CATEGORICAL___reservation_status_date___2017-06-26": 1455, "31___CATEGORICAL___reservation_status_date___2017-06-27": 1456, "31___CATEGORICAL___reservation_status_date___2017-06-28": 1457, "31___CATEGORICAL___reservation_status_date___2017-06-29": 1458, "31___CATEGORICAL___reservation_status_date___2017-06-30": 1459, "31___CATEGORICAL___reservation_status_date___2017-07-01": 1460, "31___CATEGORICAL___reservation_status_date___2017-07-02": 1461, "31___CATEGORICAL___reservation_status_date___2017-07-03": 1462, "31___CATEGORICAL___reservation_status_date___2017-07-04": 1463, "31___CATEGORICAL___reservation_status_date___2017-07-05": 1464, "31___CATEGORICAL___reservation_status_date___2017-07-06": 1465, "31___CATEGORICAL___reservation_status_date___2017-07-07": 1466, "31___CATEGORICAL___reservation_status_date___2017-07-08": 1467, "31___CATEGORICAL___reservation_status_date___2017-07-09": 1468, "31___CATEGORICAL___reservation_status_date___2017-07-10": 1469, "31___CATEGORICAL___reservation_status_date___2017-07-11": 1470, "31___CATEGORICAL___reservation_status_date___2017-07-12": 1471, "31___CATEGORICAL___reservation_status_date___2017-07-13": 1472, "31___CATEGORICAL___reservation_status_date___2017-07-14": 1473, "31___CATEGORICAL___reservation_status_date___2017-07-15": 1474, "31___CATEGORICAL___reservation_status_date___2017-07-16": 1475, "31___CATEGORICAL___reservation_status_date___2017-07-17": 1476, "31___CATEGORICAL___reservation_status_date___2017-07-18": 1477, "31___CATEGORICAL___reservation_status_date___2017-07-19": 1478, "31___CATEGORICAL___reservation_status_date___2017-07-20": 1479, "31___CATEGORICAL___reservation_status_date___2017-07-21": 1480, "31___CATEGORICAL___reservation_status_date___2017-07-22": 1481, "31___CATEGORICAL___reservation_status_date___2017-07-23": 1482, "31___CATEGORICAL___reservation_status_date___2017-07-24": 1483, "31___CATEGORICAL___reservation_status_date___2017-07-25": 1484, "31___CATEGORICAL___reservation_status_date___2017-07-26": 1485, "31___CATEGORICAL___reservation_status_date___2017-07-27": 1486, "31___CATEGORICAL___reservation_status_date___2017-07-28": 1487, "31___CATEGORICAL___reservation_status_date___2017-07-29": 1488, "31___CATEGORICAL___reservation_status_date___2017-07-30": 1489, "31___CATEGORICAL___reservation_status_date___2017-07-31": 1490, "31___CATEGORICAL___reservation_status_date___2017-08-01": 1491, "31___CATEGORICAL___reservation_status_date___2017-08-02": 1492, "31___CATEGORICAL___reservation_status_date___2017-08-03": 1493, "31___CATEGORICAL___reservation_status_date___2017-08-04": 1494, "31___CATEGORICAL___reservation_status_date___2017-08-05": 1495, "31___CATEGORICAL___reservation_status_date___2017-08-06": 1496, "31___CATEGORICAL___reservation_status_date___2017-08-07": 1497, "31___CATEGORICAL___reservation_status_date___2017-08-08": 1498, "31___CATEGORICAL___reservation_status_date___2017-08-09": 1499, "31___CATEGORICAL___reservation_status_date___2017-08-10": 1500, "31___CATEGORICAL___reservation_status_date___2017-08-11": 1501, "31___CATEGORICAL___reservation_status_date___2017-08-12": 1502, "31___CATEGORICAL___reservation_status_date___2017-08-13": 1503, "31___CATEGORICAL___reservation_status_date___2017-08-14": 1504, "31___CATEGORICAL___reservation_status_date___2017-08-15": 1505, "31___CATEGORICAL___reservation_status_date___2017-08-16": 1506, "31___CATEGORICAL___reservation_status_date___2017-08-17": 1507, "31___CATEGORICAL___reservation_status_date___2017-08-18": 1508, "31___CATEGORICAL___reservation_status_date___2017-08-19": 1509, "31___CATEGORICAL___reservation_status_date___2017-08-20": 1510, "31___CATEGORICAL___reservation_status_date___2017-08-21": 1511, "31___CATEGORICAL___reservation_status_date___2017-08-22": 1512, "31___CATEGORICAL___reservation_status_date___2017-08-23": 1513, "31___CATEGORICAL___reservation_status_date___2017-08-24": 1514, "31___CATEGORICAL___reservation_status_date___2017-08-25": 1515, "31___CATEGORICAL___reservation_status_date___2017-08-26": 1516, "31___CATEGORICAL___reservation_status_date___2017-08-27": 1517, "31___CATEGORICAL___reservation_status_date___2017-08-28": 1518, "31___CATEGORICAL___reservation_status_date___2017-08-29": 1519, "31___CATEGORICAL___reservation_status_date___2017-08-30": 1520, "31___CATEGORICAL___reservation_status_date___2017-08-31": 1521, "31___CATEGORICAL___reservation_status_date___2017-09-01": 1522, "31___CATEGORICAL___reservation_status_date___2017-09-02": 1523, "31___CATEGORICAL___reservation_status_date___2017-09-03": 1524, "31___CATEGORICAL___reservation_status_date___2017-09-04": 1525, "31___CATEGORICAL___reservation_status_date___2017-09-05": 1526, "31___CATEGORICAL___reservation_status_date___2017-09-06": 1527, "31___CATEGORICAL___reservation_status_date___2017-09-07": 1528, "31___CATEGORICAL___reservation_status_date___2017-09-08": 1529, "31___CATEGORICAL___reservation_status_date___2017-09-09": 1530, "31___CATEGORICAL___reservation_status_date___2017-09-10": 1531, "31___CATEGORICAL___reservation_status_date___2017-09-12": 1532, "31___CATEGORICAL___reservation_status_date___2017-09-14": 1533}, "column_token_ids": {"00___CATEGORICAL___hotel": [11, 12], "01___CATEGORICAL___is_canceled": [13, 14], "02___NUMERIC___lead_time_00": [15, 16, 17, 18, 19, 20, 21, 22], "02___NUMERIC___lead_time_01": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "02___NUMERIC___lead_time_02": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42], "03___NUMERIC___arrival_date_year_00": [43], "03___NUMERIC___arrival_date_year_01": [44], "03___NUMERIC___arrival_date_year_02": [45], "03___NUMERIC___arrival_date_year_03": [46, 47, 48], "04___CATEGORICAL___arrival_date_month": [49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "05___NUMERIC___arrival_date_week_number_00": [61, 62, 63, 64, 65, 66], "05___NUMERIC___arrival_date_week_number_01": [67, 68, 69, 70, 71, 72, 73, 74, 75, 76], "06___NUMERIC___arrival_date_day_of_month_00": [77, 78, 79, 80], "06___NUMERIC___arrival_date_day_of_month_01": [81, 82, 83, 84, 85, 86, 87, 88, 89, 90], "07___NUMERIC___stays_in_weekend_nights_00": [91, 92], "07___NUMERIC___stays_in_weekend_nights_01": [93, 94, 95, 96, 97, 98, 99, 100, 101, 102], "08___NUMERIC___stays_in_week_nights_00": [103, 104, 105, 106, 107, 108], "08___NUMERIC___stays_in_week_nights_01": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118], "09___NUMERIC___adults_00": [119, 120, 121, 122, 123], "09___NUMERIC___adults_01": [124, 125, 126, 127, 128, 129, 130, 131], "10___NUMERIC___children_00": [132, 133], "10___NUMERIC___children_01": [134, 135], "10___NUMERIC___children_02": [136, 137, 138], "10___NUMERIC___children_03": [139, 140, 141, 142, 143], "11___CATEGORICAL___babies": [144, 145, 146, 147], "12___CATEGORICAL___meal": [148, 149, 150, 151, 152], "13___CATEGORICAL___country": [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328], "14___CATEGORICAL___market_segment": [329, 330, 331, 332, 333, 334, 335], "15___CATEGORICAL___distribution_channel": [336, 337, 338, 339, 340], "16___CATEGORICAL___is_repeated_guest": [341, 342], "17___CATEGORICAL___previous_cancellations": [343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357], "18___CATEGORICAL___previous_bookings_not_canceled": [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], "19___CATEGORICAL___reserved_room_type": [424, 425, 426, 427, 428, 429, 430, 431, 432, 433], "20___CATEGORICAL___assigned_room_type": [434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445], "21___NUMERIC___booking_changes_00": [446, 447, 448], "21___NUMERIC___booking_changes_01": [449, 450, 451, 452, 453, 454, 455, 456, 457, 458], "22___CATEGORICAL___deposit_type": [459, 460, 461], "23___NUMERIC___agent_00": [462, 463], "23___NUMERIC___agent_01": [464, 465, 466, 467, 468, 469, 470], "23___NUMERIC___agent_02": [471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "23___NUMERIC___agent_03": [482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492], "24___NUMERIC___company_00": [493, 494], "24___NUMERIC___company_01": [495, 496, 497, 498, 499, 500, 501], "24___NUMERIC___company_02": [502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512], "24___NUMERIC___company_03": [513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523], "25___NUMERIC___days_in_waiting_list_00": [524, 525, 526, 527], "25___NUMERIC___days_in_waiting_list_01": [528, 529, 530, 531, 532, 533, 534, 535, 536, 537], "25___NUMERIC___days_in_waiting_list_02": [538, 539, 540, 541, 542, 543, 544, 545, 546, 547], "26___CATEGORICAL___customer_type": [548, 549, 550, 551], "27___NUMERIC___adr_00": [552, 553], "27___NUMERIC___adr_01": [554, 555, 556, 557, 558], "27___NUMERIC___adr_02": [559, 560, 561, 562, 563, 564, 565, 566, 567, 568], "27___NUMERIC___adr_03": [569, 570, 571, 572, 573, 574, 575, 576, 577, 578], "27___NUMERIC___adr_04": [579], "27___NUMERIC___adr_05": [580, 581, 582, 583, 584, 585, 586, 587, 588, 589], "27___NUMERIC___adr_06": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599], "28___CATEGORICAL___required_car_parking_spaces": [600, 601, 602, 603, 604], "29___NUMERIC___total_of_special_requests_00": [605, 606, 607, 608, 609, 610], "30___CATEGORICAL___reservation_status": [611, 612, 613], "31___CATEGORICAL___reservation_status_date": [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, 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]}}, "tabular_max_length": 62, "relational_max_length": null, "tabular_col_size": 95512, "relational_col_size": null, "col_transform_data": {"lead_time": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "arrival_date_year": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "arrival_date_week_number": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "arrival_date_day_of_month": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "stays_in_weekend_nights": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "stays_in_week_nights": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "adults": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "children": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "booking_changes": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "agent": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "company": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "days_in_waiting_list": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "adr": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 7, "numeric_nparts": 1}, "total_of_special_requests": {"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], "2": [15, 16, 17, 18, 19, 20, 21, 22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42], "5": [43], "6": [44], "7": [45], "8": [46, 47, 48], "9": [49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "10": [61, 62, 63, 64, 65, 66], "11": [67, 68, 69, 70, 71, 72, 73, 74, 75, 76], "12": [77, 78, 79, 80], "13": [81, 82, 83, 84, 85, 86, 87, 88, 89, 90], "14": [91, 92], "15": [93, 94, 95, 96, 97, 98, 99, 100, 101, 102], "16": [103, 104, 105, 106, 107, 108], "17": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118], "18": [119, 120, 121, 122, 123], "19": [124, 125, 126, 127, 128, 129, 130, 131], "20": [132, 133], "21": [134, 135], "22": [136, 137, 138], "23": [139, 140, 141, 142, 143], "24": [144, 145, 146, 147], "25": [148, 149, 150, 151, 152], "26": [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328], "27": [329, 330, 331, 332, 333, 334, 335], "28": [336, 337, 338, 339, 340], "29": [341, 342], "30": [343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357], "31": [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], "32": [424, 425, 426, 427, 428, 429, 430, 431, 432, 433], "33": [434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445], "34": [446, 447, 448], "35": [449, 450, 451, 452, 453, 454, 455, 456, 457, 458], "36": [459, 460, 461], "37": [462, 463], "38": [464, 465, 466, 467, 468, 469, 470], "39": [471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "40": [482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492], "41": [493, 494], "42": [495, 496, 497, 498, 499, 500, 501], "43": [502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512], "44": [513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523], "45": [524, 525, 526, 527], "46": [528, 529, 530, 531, 532, 533, 534, 535, 536, 537], "47": [538, 539, 540, 541, 542, 543, 544, 545, 546, 547], "48": [548, 549, 550, 551], "49": [552, 553], "50": [554, 555, 556, 557, 558], "51": [559, 560, 561, 562, 563, 564, 565, 566, 567, 568], "52": [569, 570, 571, 572, 573, 574, 575, 576, 577, 578], "53": [579], "54": [580, 581, 582, 583, 584, 585, 586, 587, 588, 589], "55": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599], "56": [600, 601, 602, 603, 604], "57": [605, 606, 607, 608, 609, 610], "58": [611, 612, 613], "59": [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, 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]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017749069688557215744", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/models_100epochs/id000017749069688557215744/rtf_model.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/models_100epochs/id000017749069688557215744/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..de9466026463947762d3b41ec8502cb0c1555d81 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/models_100epochs/id000017749069688557215744/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7b41dc823fe9e94f0f34025602eb3819a7bc6efe73de196e288239c1e7b803 +size 178002403 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..13970fcc2a09d39cc1add97c9eb4654cee58f612 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,670 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "columns": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/public_gate_report.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3bf58f493bcfc411bffebeec97fba57674499b --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m12", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "customer_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/staged_input_manifest.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..96c0c9f3848deaca796c8f4b5cf0b72209c86da9 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/public_gate/staged_input_manifest.json @@ -0,0 +1,675 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/realtabformer_features.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a6df78b1e7df37d82c9f69413e26d4ae848a3c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/realtabformer_features.json @@ -0,0 +1,162 @@ +[ + { + "feature_name": "hotel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "lead_time", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_year", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "arrival_date_week_number", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_day_of_month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_weekend_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_week_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "adults", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "babies", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "meal", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "market_segment", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "distribution_channel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_repeated_guest", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_cancellations", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_bookings_not_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "reserved_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "assigned_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "booking_changes", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "deposit_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "agent", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "company", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "days_in_waiting_list", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "customer_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "adr", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "required_car_parking_spaces", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "total_of_special_requests", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "reservation_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "reservation_status_date", + "data_type": "timestamp", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf-m12-1000-20260331_054253.csv b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf-m12-1000-20260331_054253.csv new file mode 100644 index 0000000000000000000000000000000000000000..e8e0631260cabb15db57de6c1edfdc02dcf4a27c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf-m12-1000-20260331_054253.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a244db2c8e2739965aea3ecc81725b3feb5815d9ac5655a37f63a63b70373f +size 142155 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf-m12-95512-20260418_132327.csv b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf-m12-95512-20260418_132327.csv new file mode 100644 index 0000000000000000000000000000000000000000..6ea88ae6daf48d642e46ece8db5fd5b574105685 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf-m12-95512-20260418_132327.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e221adf8836fa6dc3efeb8333517a2060d714c9a3257669e4907577a1384b1 +size 13554562 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..4243bd5e526d7e7d0d142ff9063a8e0096d948ea --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.0.0", + "use_cache": false, + "vocab_size": 1534 +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/generation_config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/model.safetensors b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6bcf6d495c00f0ed98f39831204e3169c7cf9666 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3180edfee4e3c735802cc0668c4b5581c8635b8c108a19c6f6d3e94e339ca260 +size 177980872 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/optimizer.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e5ac8742c686f9be18883e65d57e47caf56cbf06 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3352bb67abe8dd45cb0f3fd8e7e8e1a016e9023ee6be23b8ee68e19e63e1a440 +size 356010827 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/rng_state.pth b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..f103797c0b38c68b893298b567ae91607dbd9d0d --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8290ab2b8373701f10c878ceaee2943e58c0a2f9656d3c04256f2150c1895fce +size 14645 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/scaler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9f8f8e87484ee358346306e587f778b86ea6fa3f --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1190383bbd44f4e49f2e4e2d31b71ad01c46fb64d2f63286c18e6d88245f5d3 +size 1383 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/scheduler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2f5dee330e021d7ea977605847cced78da3b7f0d --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248f4160c88dfc8dcbc7f56c1f72a051997c681119891a3ba4fb5f92fd933fb1 +size 1465 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/trainer_state.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..cbdc614a418982c3ada1c1c705c9f00ad76961a3 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/trainer_state.json @@ -0,0 +1,20894 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.83256554150263, + "eval_steps": 100, + "global_step": 298000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.03350364352123293, + "grad_norm": 0.8461591005325317, + "learning_rate": 4.9983417085427135e-05, + "loss": 1.800863037109375, + "step": 100 + }, + { + "epoch": 0.06700728704246586, + "grad_norm": 0.7391623258590698, + "learning_rate": 4.996666666666667e-05, + "loss": 0.8150953674316406, + "step": 200 + }, + { + "epoch": 0.10051093056369881, + "grad_norm": 0.6344850659370422, + "learning_rate": 4.99499162479062e-05, + "loss": 0.7532137298583984, + "step": 300 + }, + { + "epoch": 0.13401457408493173, + "grad_norm": 0.6711709499359131, + "learning_rate": 4.993316582914573e-05, + "loss": 0.7202082061767578, + "step": 400 + }, + { + "epoch": 0.16751821760616467, + "grad_norm": 0.6779165267944336, + "learning_rate": 4.9916415410385264e-05, + "loss": 0.7091973114013672, + "step": 500 + }, + { + "epoch": 0.20102186112739762, + "grad_norm": 0.6654858589172363, + "learning_rate": 4.989966499162479e-05, + "loss": 0.685182876586914, + "step": 600 + }, + { + "epoch": 0.23452550464863053, + "grad_norm": 0.6182253956794739, + "learning_rate": 4.988291457286433e-05, + "loss": 0.6745145416259766, + "step": 700 + }, + { + "epoch": 0.26802914816986345, + "grad_norm": 0.6512383818626404, + "learning_rate": 4.986616415410386e-05, + "loss": 0.6662254333496094, + "step": 800 + }, + { + "epoch": 0.3015327916910964, + "grad_norm": 0.6715951561927795, + "learning_rate": 4.9849413735343386e-05, + "loss": 0.6557020568847656, + "step": 900 + }, + { + "epoch": 0.33503643521232934, + "grad_norm": 0.5785344839096069, + "learning_rate": 4.9832663316582915e-05, + "loss": 0.6456297302246093, + "step": 1000 + }, + { + "epoch": 0.36854007873356226, + "grad_norm": 0.6495988368988037, + "learning_rate": 4.981591289782245e-05, + "loss": 0.6365409851074219, + "step": 1100 + }, + { + "epoch": 0.40204372225479523, + "grad_norm": 0.634831428527832, + "learning_rate": 4.979916247906198e-05, + "loss": 0.6296848678588867, + "step": 1200 + }, + { + "epoch": 0.43554736577602815, + "grad_norm": 0.5968198180198669, + "learning_rate": 4.978241206030151e-05, + "loss": 0.6211205673217773, + "step": 1300 + }, + { + "epoch": 0.46905100929726107, + "grad_norm": 0.634230375289917, + "learning_rate": 4.976566164154104e-05, + "loss": 0.6164393997192383, + "step": 1400 + }, + { + "epoch": 0.502554652818494, + "grad_norm": 0.5891489386558533, + "learning_rate": 4.974891122278057e-05, + "loss": 0.6082125854492187, + "step": 1500 + }, + { + "epoch": 0.5360582963397269, + "grad_norm": 0.6446542739868164, + "learning_rate": 4.97321608040201e-05, + "loss": 0.611778564453125, + "step": 1600 + }, + { + "epoch": 0.5695619398609599, + "grad_norm": 0.6366457343101501, + "learning_rate": 4.971541038525964e-05, + "loss": 0.6013064193725586, + "step": 1700 + }, + { + "epoch": 0.6030655833821928, + "grad_norm": 0.6310938596725464, + "learning_rate": 4.9698659966499166e-05, + "loss": 0.5960189819335937, + "step": 1800 + }, + { + "epoch": 0.6365692269034258, + "grad_norm": 0.6312111616134644, + "learning_rate": 4.9681909547738694e-05, + "loss": 0.5902027511596679, + "step": 1900 + }, + { + "epoch": 0.6700728704246587, + "grad_norm": 0.6359553337097168, + "learning_rate": 4.966515912897823e-05, + "loss": 0.5884978485107422, + "step": 2000 + }, + { + "epoch": 0.7035765139458916, + "grad_norm": 0.6602451205253601, + "learning_rate": 4.964840871021776e-05, + "loss": 0.58427734375, + "step": 2100 + }, + { + "epoch": 0.7370801574671245, + "grad_norm": 0.6105899810791016, + "learning_rate": 4.963165829145729e-05, + "loss": 0.5838186645507812, + "step": 2200 + }, + { + "epoch": 0.7705838009883574, + "grad_norm": 0.5694506764411926, + "learning_rate": 4.9614907872696816e-05, + "loss": 0.5781952667236329, + "step": 2300 + }, + { + "epoch": 0.8040874445095905, + "grad_norm": 0.6220190525054932, + "learning_rate": 4.959815745393635e-05, + "loss": 0.5734509658813477, + "step": 2400 + }, + { + "epoch": 0.8375910880308234, + "grad_norm": 0.5669824481010437, + "learning_rate": 4.958140703517588e-05, + "loss": 0.573906478881836, + "step": 2500 + }, + { + "epoch": 0.8710947315520563, + "grad_norm": 0.6178188920021057, + "learning_rate": 4.956465661641541e-05, + "loss": 0.5677206802368164, + "step": 2600 + }, + { + "epoch": 0.9045983750732892, + "grad_norm": 0.5571620464324951, + "learning_rate": 4.9547906197654945e-05, + "loss": 0.5622820663452148, + "step": 2700 + }, + { + "epoch": 0.9381020185945221, + "grad_norm": 0.5818703770637512, + "learning_rate": 4.9531155778894474e-05, + "loss": 0.5609216690063477, + "step": 2800 + }, + { + "epoch": 0.971605662115755, + "grad_norm": 0.5967586040496826, + "learning_rate": 4.9514405360134e-05, + "loss": 0.5596435165405274, + "step": 2900 + }, + { + "epoch": 1.005025546528185, + "grad_norm": 0.6468071937561035, + "learning_rate": 4.949765494137354e-05, + "loss": 0.5584405899047852, + "step": 3000 + }, + { + "epoch": 1.0385291900494178, + "grad_norm": 0.6350861191749573, + "learning_rate": 4.948090452261307e-05, + "loss": 0.5500188446044922, + "step": 3100 + }, + { + "epoch": 1.0720328335706508, + "grad_norm": 0.6933004260063171, + "learning_rate": 4.94641541038526e-05, + "loss": 0.546169662475586, + "step": 3200 + }, + { + "epoch": 1.1055364770918836, + "grad_norm": 0.6557233333587646, + "learning_rate": 4.944740368509213e-05, + "loss": 0.5476358795166015, + "step": 3300 + }, + { + "epoch": 1.1390401206131167, + "grad_norm": 0.6253458857536316, + "learning_rate": 4.943065326633166e-05, + "loss": 0.544293212890625, + "step": 3400 + }, + { + "epoch": 1.1725437641343497, + "grad_norm": 0.6146714091300964, + "learning_rate": 4.941390284757119e-05, + "loss": 0.5420544052124023, + "step": 3500 + }, + { + "epoch": 1.2060474076555825, + "grad_norm": 0.6168274879455566, + "learning_rate": 4.9397152428810725e-05, + "loss": 0.5440950775146485, + "step": 3600 + }, + { + "epoch": 1.2395510511768155, + "grad_norm": 0.6314318180084229, + "learning_rate": 4.9380402010050254e-05, + "loss": 0.5422676086425782, + "step": 3700 + }, + { + "epoch": 1.2730546946980486, + "grad_norm": 0.6257957816123962, + "learning_rate": 4.936365159128978e-05, + "loss": 0.5370346069335937, + "step": 3800 + }, + { + "epoch": 1.3065583382192814, + "grad_norm": 0.6324900984764099, + "learning_rate": 4.934690117252931e-05, + "loss": 0.5346813583374024, + "step": 3900 + }, + { + "epoch": 1.3400619817405142, + "grad_norm": 0.6128197312355042, + "learning_rate": 4.933015075376885e-05, + "loss": 0.5321989822387695, + "step": 4000 + }, + { + "epoch": 1.3735656252617472, + "grad_norm": 0.5664730072021484, + "learning_rate": 4.9313400335008376e-05, + "loss": 0.5304061126708984, + "step": 4100 + }, + { + "epoch": 1.4070692687829802, + "grad_norm": 0.5894239544868469, + "learning_rate": 4.929664991624791e-05, + "loss": 0.5285339736938477, + "step": 4200 + }, + { + "epoch": 1.440572912304213, + "grad_norm": 0.6181634068489075, + "learning_rate": 4.927989949748744e-05, + "loss": 0.5315813446044921, + "step": 4300 + }, + { + "epoch": 1.474076555825446, + "grad_norm": 0.6103029251098633, + "learning_rate": 4.926314907872697e-05, + "loss": 0.5283493423461914, + "step": 4400 + }, + { + "epoch": 1.507580199346679, + "grad_norm": 0.5960842967033386, + "learning_rate": 4.9246398659966505e-05, + "loss": 0.5253337097167968, + "step": 4500 + }, + { + "epoch": 1.541083842867912, + "grad_norm": 0.6720269918441772, + "learning_rate": 4.9229648241206034e-05, + "loss": 0.5257507705688477, + "step": 4600 + }, + { + "epoch": 1.5745874863891447, + "grad_norm": 0.6651366949081421, + "learning_rate": 4.921289782244556e-05, + "loss": 0.5222479248046875, + "step": 4700 + }, + { + "epoch": 1.6080911299103777, + "grad_norm": 0.6316231489181519, + "learning_rate": 4.919614740368509e-05, + "loss": 0.5179043197631836, + "step": 4800 + }, + { + "epoch": 1.6415947734316108, + "grad_norm": 0.5880525708198547, + "learning_rate": 4.917939698492463e-05, + "loss": 0.5151556777954102, + "step": 4900 + }, + { + "epoch": 1.6750984169528436, + "grad_norm": 0.6046984195709229, + "learning_rate": 4.9162646566164156e-05, + "loss": 0.5172126007080078, + "step": 5000 + }, + { + "epoch": 1.7086020604740766, + "grad_norm": 0.6584818959236145, + "learning_rate": 4.9145896147403684e-05, + "loss": 0.5168862533569336, + "step": 5100 + }, + { + "epoch": 1.7421057039953096, + "grad_norm": 0.644334077835083, + "learning_rate": 4.912914572864321e-05, + "loss": 0.516330337524414, + "step": 5200 + }, + { + "epoch": 1.7756093475165424, + "grad_norm": 0.6277704834938049, + "learning_rate": 4.911239530988275e-05, + "loss": 0.5101805114746094, + "step": 5300 + }, + { + "epoch": 1.8091129910377752, + "grad_norm": 0.6398980617523193, + "learning_rate": 4.909564489112228e-05, + "loss": 0.5114438247680664, + "step": 5400 + }, + { + "epoch": 1.8426166345590083, + "grad_norm": 0.6116181015968323, + "learning_rate": 4.907889447236181e-05, + "loss": 0.5063412094116211, + "step": 5500 + }, + { + "epoch": 1.8761202780802413, + "grad_norm": 0.6046104431152344, + "learning_rate": 4.906214405360134e-05, + "loss": 0.5081657409667969, + "step": 5600 + }, + { + "epoch": 1.909623921601474, + "grad_norm": 0.5920073390007019, + "learning_rate": 4.904539363484088e-05, + "loss": 0.5051012802124023, + "step": 5700 + }, + { + "epoch": 1.9431275651227071, + "grad_norm": 0.6170016527175903, + "learning_rate": 4.9028643216080407e-05, + "loss": 0.5026112747192383, + "step": 5800 + }, + { + "epoch": 1.9766312086439402, + "grad_norm": 0.6302964091300964, + "learning_rate": 4.9011892797319935e-05, + "loss": 0.501869125366211, + "step": 5900 + }, + { + "epoch": 2.01005109305637, + "grad_norm": 0.6208528280258179, + "learning_rate": 4.8995142378559464e-05, + "loss": 0.49743770599365233, + "step": 6000 + }, + { + "epoch": 2.043554736577603, + "grad_norm": 0.6439351439476013, + "learning_rate": 4.8978391959799e-05, + "loss": 0.49052135467529295, + "step": 6100 + }, + { + "epoch": 2.0770583800988356, + "grad_norm": 0.6153578162193298, + "learning_rate": 4.896164154103853e-05, + "loss": 0.4963309860229492, + "step": 6200 + }, + { + "epoch": 2.110562023620069, + "grad_norm": 0.5905429720878601, + "learning_rate": 4.894489112227806e-05, + "loss": 0.4935873413085938, + "step": 6300 + }, + { + "epoch": 2.1440656671413016, + "grad_norm": 0.5844092965126038, + "learning_rate": 4.8928140703517586e-05, + "loss": 0.49054019927978515, + "step": 6400 + }, + { + "epoch": 2.1775693106625345, + "grad_norm": 0.6116010546684265, + "learning_rate": 4.891139028475712e-05, + "loss": 0.4881373596191406, + "step": 6500 + }, + { + "epoch": 2.2110729541837673, + "grad_norm": 0.5920172333717346, + "learning_rate": 4.889463986599665e-05, + "loss": 0.48111820220947266, + "step": 6600 + }, + { + "epoch": 2.2445765977050005, + "grad_norm": 0.6223201155662537, + "learning_rate": 4.8877889447236186e-05, + "loss": 0.4858921813964844, + "step": 6700 + }, + { + "epoch": 2.2780802412262333, + "grad_norm": 0.679458737373352, + "learning_rate": 4.8861139028475715e-05, + "loss": 0.4880897903442383, + "step": 6800 + }, + { + "epoch": 2.311583884747466, + "grad_norm": 0.6320315003395081, + "learning_rate": 4.8844388609715244e-05, + "loss": 0.4870236587524414, + "step": 6900 + }, + { + "epoch": 2.3450875282686994, + "grad_norm": 0.6325832009315491, + "learning_rate": 4.882763819095478e-05, + "loss": 0.4866282272338867, + "step": 7000 + }, + { + "epoch": 2.378591171789932, + "grad_norm": 0.6240285634994507, + "learning_rate": 4.881088777219431e-05, + "loss": 0.48300540924072266, + "step": 7100 + }, + { + "epoch": 2.412094815311165, + "grad_norm": 0.6501027941703796, + "learning_rate": 4.879413735343384e-05, + "loss": 0.48553779602050784, + "step": 7200 + }, + { + "epoch": 2.4455984588323982, + "grad_norm": 0.6311469078063965, + "learning_rate": 4.8777386934673366e-05, + "loss": 0.4865619659423828, + "step": 7300 + }, + { + "epoch": 2.479102102353631, + "grad_norm": 0.6794814467430115, + "learning_rate": 4.87606365159129e-05, + "loss": 0.4808743286132813, + "step": 7400 + }, + { + "epoch": 2.512605745874864, + "grad_norm": 0.5595630407333374, + "learning_rate": 4.874388609715243e-05, + "loss": 0.48029510498046873, + "step": 7500 + }, + { + "epoch": 2.546109389396097, + "grad_norm": 0.6712229251861572, + "learning_rate": 4.872713567839196e-05, + "loss": 0.476650276184082, + "step": 7600 + }, + { + "epoch": 2.57961303291733, + "grad_norm": 0.6312442421913147, + "learning_rate": 4.871038525963149e-05, + "loss": 0.4794431686401367, + "step": 7700 + }, + { + "epoch": 2.6131166764385627, + "grad_norm": 0.6586233377456665, + "learning_rate": 4.8693634840871024e-05, + "loss": 0.4789765930175781, + "step": 7800 + }, + { + "epoch": 2.6466203199597955, + "grad_norm": 0.6464796662330627, + "learning_rate": 4.867688442211055e-05, + "loss": 0.4760271072387695, + "step": 7900 + }, + { + "epoch": 2.6801239634810283, + "grad_norm": 0.6250919103622437, + "learning_rate": 4.866013400335009e-05, + "loss": 0.47466728210449216, + "step": 8000 + }, + { + "epoch": 2.7136276070022616, + "grad_norm": 0.6650984287261963, + "learning_rate": 4.864338358458962e-05, + "loss": 0.4735995864868164, + "step": 8100 + }, + { + "epoch": 2.7471312505234944, + "grad_norm": 0.6536551713943481, + "learning_rate": 4.862663316582915e-05, + "loss": 0.47292491912841794, + "step": 8200 + }, + { + "epoch": 2.780634894044727, + "grad_norm": 0.6191151142120361, + "learning_rate": 4.860988274706868e-05, + "loss": 0.4695613479614258, + "step": 8300 + }, + { + "epoch": 2.8141385375659604, + "grad_norm": 0.6110975742340088, + "learning_rate": 4.859313232830821e-05, + "loss": 0.47242835998535154, + "step": 8400 + }, + { + "epoch": 2.8476421810871932, + "grad_norm": 0.6511522531509399, + "learning_rate": 4.857638190954774e-05, + "loss": 0.46818080902099607, + "step": 8500 + }, + { + "epoch": 2.881145824608426, + "grad_norm": 0.640023410320282, + "learning_rate": 4.8559631490787275e-05, + "loss": 0.4684713745117188, + "step": 8600 + }, + { + "epoch": 2.9146494681296593, + "grad_norm": 0.6558462381362915, + "learning_rate": 4.85428810720268e-05, + "loss": 0.47039485931396485, + "step": 8700 + }, + { + "epoch": 2.948153111650892, + "grad_norm": 0.64987713098526, + "learning_rate": 4.852613065326633e-05, + "loss": 0.46639087677001956, + "step": 8800 + }, + { + "epoch": 2.981656755172125, + "grad_norm": 0.6003667712211609, + "learning_rate": 4.850938023450586e-05, + "loss": 0.4636190795898438, + "step": 8900 + }, + { + "epoch": 3.0150766395845547, + "grad_norm": 0.6194270253181458, + "learning_rate": 4.8492629815745397e-05, + "loss": 0.4602717590332031, + "step": 9000 + }, + { + "epoch": 3.0485802831057875, + "grad_norm": 0.6473113894462585, + "learning_rate": 4.8475879396984925e-05, + "loss": 0.4513474655151367, + "step": 9100 + }, + { + "epoch": 3.082083926627021, + "grad_norm": 0.581709086894989, + "learning_rate": 4.845912897822446e-05, + "loss": 0.45967998504638674, + "step": 9200 + }, + { + "epoch": 3.1155875701482536, + "grad_norm": 0.6870703101158142, + "learning_rate": 4.844237855946399e-05, + "loss": 0.4573031997680664, + "step": 9300 + }, + { + "epoch": 3.1490912136694864, + "grad_norm": 0.6703235507011414, + "learning_rate": 4.842562814070352e-05, + "loss": 0.45413665771484374, + "step": 9400 + }, + { + "epoch": 3.1825948571907197, + "grad_norm": 0.6165799498558044, + "learning_rate": 4.8408877721943054e-05, + "loss": 0.4570289993286133, + "step": 9500 + }, + { + "epoch": 3.2160985007119525, + "grad_norm": 0.6460033059120178, + "learning_rate": 4.839212730318258e-05, + "loss": 0.4591374969482422, + "step": 9600 + }, + { + "epoch": 3.2496021442331853, + "grad_norm": 0.6148829460144043, + "learning_rate": 4.837537688442211e-05, + "loss": 0.4580984115600586, + "step": 9700 + }, + { + "epoch": 3.283105787754418, + "grad_norm": 0.6245681047439575, + "learning_rate": 4.835862646566164e-05, + "loss": 0.4545408248901367, + "step": 9800 + }, + { + "epoch": 3.3166094312756513, + "grad_norm": 0.6586223840713501, + "learning_rate": 4.8341876046901176e-05, + "loss": 0.4529739761352539, + "step": 9900 + }, + { + "epoch": 3.350113074796884, + "grad_norm": 0.6357883810997009, + "learning_rate": 4.8325125628140705e-05, + "loss": 0.4568283843994141, + "step": 10000 + }, + { + "epoch": 3.383616718318117, + "grad_norm": 0.6078239679336548, + "learning_rate": 4.8308375209380234e-05, + "loss": 0.45651729583740236, + "step": 10100 + }, + { + "epoch": 3.41712036183935, + "grad_norm": 0.6468596458435059, + "learning_rate": 4.829162479061976e-05, + "loss": 0.45133846282958984, + "step": 10200 + }, + { + "epoch": 3.450624005360583, + "grad_norm": 0.6487044095993042, + "learning_rate": 4.82748743718593e-05, + "loss": 0.4508181381225586, + "step": 10300 + }, + { + "epoch": 3.484127648881816, + "grad_norm": 0.642910897731781, + "learning_rate": 4.825812395309883e-05, + "loss": 0.45145717620849607, + "step": 10400 + }, + { + "epoch": 3.517631292403049, + "grad_norm": 0.6625356674194336, + "learning_rate": 4.824137353433836e-05, + "loss": 0.45529659271240236, + "step": 10500 + }, + { + "epoch": 3.551134935924282, + "grad_norm": 0.6431829929351807, + "learning_rate": 4.822462311557789e-05, + "loss": 0.4476095962524414, + "step": 10600 + }, + { + "epoch": 3.5846385794455147, + "grad_norm": 0.6072223782539368, + "learning_rate": 4.820787269681743e-05, + "loss": 0.4495735168457031, + "step": 10700 + }, + { + "epoch": 3.6181422229667475, + "grad_norm": 0.586395800113678, + "learning_rate": 4.8191122278056956e-05, + "loss": 0.44253528594970704, + "step": 10800 + }, + { + "epoch": 3.6516458664879807, + "grad_norm": 0.5829164981842041, + "learning_rate": 4.8174371859296485e-05, + "loss": 0.44407268524169924, + "step": 10900 + }, + { + "epoch": 3.6851495100092135, + "grad_norm": 0.612237274646759, + "learning_rate": 4.8157621440536014e-05, + "loss": 0.44537506103515623, + "step": 11000 + }, + { + "epoch": 3.7186531535304463, + "grad_norm": 0.5877944827079773, + "learning_rate": 4.814087102177555e-05, + "loss": 0.44692161560058596, + "step": 11100 + }, + { + "epoch": 3.752156797051679, + "grad_norm": 0.6447933316230774, + "learning_rate": 4.812412060301508e-05, + "loss": 0.44803882598876954, + "step": 11200 + }, + { + "epoch": 3.7856604405729124, + "grad_norm": 0.6374318599700928, + "learning_rate": 4.810737018425461e-05, + "loss": 0.4482523345947266, + "step": 11300 + }, + { + "epoch": 3.819164084094145, + "grad_norm": 0.7126030921936035, + "learning_rate": 4.8090619765494136e-05, + "loss": 0.44646026611328127, + "step": 11400 + }, + { + "epoch": 3.852667727615378, + "grad_norm": 0.6466185450553894, + "learning_rate": 4.807386934673367e-05, + "loss": 0.44249160766601564, + "step": 11500 + }, + { + "epoch": 3.8861713711366113, + "grad_norm": 0.6428183913230896, + "learning_rate": 4.80571189279732e-05, + "loss": 0.44268692016601563, + "step": 11600 + }, + { + "epoch": 3.919675014657844, + "grad_norm": 0.5706833600997925, + "learning_rate": 4.8040368509212736e-05, + "loss": 0.4477870559692383, + "step": 11700 + }, + { + "epoch": 3.953178658179077, + "grad_norm": 0.6583021879196167, + "learning_rate": 4.8023618090452265e-05, + "loss": 0.44658790588378905, + "step": 11800 + }, + { + "epoch": 3.98668230170031, + "grad_norm": 0.6143375039100647, + "learning_rate": 4.800686767169179e-05, + "loss": 0.4439199447631836, + "step": 11900 + }, + { + "epoch": 4.02010218611274, + "grad_norm": 0.5873826146125793, + "learning_rate": 4.799011725293133e-05, + "loss": 0.43299171447753904, + "step": 12000 + }, + { + "epoch": 4.053605829633972, + "grad_norm": 0.652965247631073, + "learning_rate": 4.797336683417086e-05, + "loss": 0.43379459381103513, + "step": 12100 + }, + { + "epoch": 4.087109473155206, + "grad_norm": 0.6809676885604858, + "learning_rate": 4.795661641541039e-05, + "loss": 0.434725341796875, + "step": 12200 + }, + { + "epoch": 4.120613116676439, + "grad_norm": 0.7001864314079285, + "learning_rate": 4.7939865996649915e-05, + "loss": 0.4402421188354492, + "step": 12300 + }, + { + "epoch": 4.154116760197671, + "grad_norm": 0.5879281759262085, + "learning_rate": 4.792311557788945e-05, + "loss": 0.436952018737793, + "step": 12400 + }, + { + "epoch": 4.187620403718904, + "grad_norm": 0.6814981698989868, + "learning_rate": 4.790636515912898e-05, + "loss": 0.43582103729248045, + "step": 12500 + }, + { + "epoch": 4.221124047240138, + "grad_norm": 0.6850152611732483, + "learning_rate": 4.788961474036851e-05, + "loss": 0.4337678527832031, + "step": 12600 + }, + { + "epoch": 4.25462769076137, + "grad_norm": 0.6886492967605591, + "learning_rate": 4.787286432160804e-05, + "loss": 0.4366899108886719, + "step": 12700 + }, + { + "epoch": 4.288131334282603, + "grad_norm": 0.6915615797042847, + "learning_rate": 4.785611390284757e-05, + "loss": 0.4344156265258789, + "step": 12800 + }, + { + "epoch": 4.3216349778038365, + "grad_norm": 0.6565848588943481, + "learning_rate": 4.78393634840871e-05, + "loss": 0.43212577819824216, + "step": 12900 + }, + { + "epoch": 4.355138621325069, + "grad_norm": 0.6957235336303711, + "learning_rate": 4.782261306532664e-05, + "loss": 0.4340908432006836, + "step": 13000 + }, + { + "epoch": 4.388642264846302, + "grad_norm": 0.6763550043106079, + "learning_rate": 4.7805862646566166e-05, + "loss": 0.43744525909423826, + "step": 13100 + }, + { + "epoch": 4.4221459083675345, + "grad_norm": 0.6657949090003967, + "learning_rate": 4.77891122278057e-05, + "loss": 0.4336092758178711, + "step": 13200 + }, + { + "epoch": 4.455649551888768, + "grad_norm": 0.6623894572257996, + "learning_rate": 4.777236180904523e-05, + "loss": 0.43067619323730466, + "step": 13300 + }, + { + "epoch": 4.489153195410001, + "grad_norm": 0.7518236041069031, + "learning_rate": 4.775561139028476e-05, + "loss": 0.4269240951538086, + "step": 13400 + }, + { + "epoch": 4.522656838931233, + "grad_norm": 0.6672277450561523, + "learning_rate": 4.773886097152429e-05, + "loss": 0.42989879608154297, + "step": 13500 + }, + { + "epoch": 4.556160482452467, + "grad_norm": 0.6400379538536072, + "learning_rate": 4.7722110552763824e-05, + "loss": 0.4264271926879883, + "step": 13600 + }, + { + "epoch": 4.5896641259737, + "grad_norm": 0.5992236733436584, + "learning_rate": 4.770536013400335e-05, + "loss": 0.4286244964599609, + "step": 13700 + }, + { + "epoch": 4.623167769494932, + "grad_norm": 0.674788773059845, + "learning_rate": 4.768860971524288e-05, + "loss": 0.42616188049316406, + "step": 13800 + }, + { + "epoch": 4.6566714130161655, + "grad_norm": 0.6788604259490967, + "learning_rate": 4.767185929648241e-05, + "loss": 0.4273800277709961, + "step": 13900 + }, + { + "epoch": 4.690175056537399, + "grad_norm": 0.6140567064285278, + "learning_rate": 4.7655108877721946e-05, + "loss": 0.43147178649902346, + "step": 14000 + }, + { + "epoch": 4.723678700058631, + "grad_norm": 0.6155766248703003, + "learning_rate": 4.7638525963149085e-05, + "loss": 0.4265935134887695, + "step": 14100 + }, + { + "epoch": 4.757182343579864, + "grad_norm": 0.6408616304397583, + "learning_rate": 4.7621775544388614e-05, + "loss": 0.4271296691894531, + "step": 14200 + }, + { + "epoch": 4.790685987101098, + "grad_norm": 0.6060003638267517, + "learning_rate": 4.760502512562814e-05, + "loss": 0.42877567291259766, + "step": 14300 + }, + { + "epoch": 4.82418963062233, + "grad_norm": 0.594854474067688, + "learning_rate": 4.758827470686767e-05, + "loss": 0.42625518798828127, + "step": 14400 + }, + { + "epoch": 4.857693274143563, + "grad_norm": 0.7048496007919312, + "learning_rate": 4.757152428810721e-05, + "loss": 0.4247948455810547, + "step": 14500 + }, + { + "epoch": 4.8911969176647965, + "grad_norm": 0.6743406057357788, + "learning_rate": 4.7554773869346736e-05, + "loss": 0.42869789123535157, + "step": 14600 + }, + { + "epoch": 4.924700561186029, + "grad_norm": 0.6159805059432983, + "learning_rate": 4.7538023450586265e-05, + "loss": 0.42471588134765625, + "step": 14700 + }, + { + "epoch": 4.958204204707262, + "grad_norm": 0.6490402817726135, + "learning_rate": 4.7521273031825794e-05, + "loss": 0.42407047271728515, + "step": 14800 + }, + { + "epoch": 4.991707848228495, + "grad_norm": 0.6755446791648865, + "learning_rate": 4.750452261306533e-05, + "loss": 0.42307563781738283, + "step": 14900 + }, + { + "epoch": 5.025127732640924, + "grad_norm": 0.6245474219322205, + "learning_rate": 4.748777219430486e-05, + "loss": 0.4140509796142578, + "step": 15000 + }, + { + "epoch": 5.0586313761621575, + "grad_norm": 0.6199154257774353, + "learning_rate": 4.747102177554439e-05, + "loss": 0.4141695785522461, + "step": 15100 + }, + { + "epoch": 5.092135019683391, + "grad_norm": 0.6318620443344116, + "learning_rate": 4.7454271356783916e-05, + "loss": 0.4133845520019531, + "step": 15200 + }, + { + "epoch": 5.125638663204623, + "grad_norm": 0.6261297464370728, + "learning_rate": 4.743752093802346e-05, + "loss": 0.41985397338867186, + "step": 15300 + }, + { + "epoch": 5.159142306725856, + "grad_norm": 0.6642125248908997, + "learning_rate": 4.742077051926299e-05, + "loss": 0.41414112091064453, + "step": 15400 + }, + { + "epoch": 5.19264595024709, + "grad_norm": 0.7118062973022461, + "learning_rate": 4.7404020100502516e-05, + "loss": 0.4157746505737305, + "step": 15500 + }, + { + "epoch": 5.226149593768322, + "grad_norm": 0.6888347268104553, + "learning_rate": 4.7387269681742045e-05, + "loss": 0.41798015594482424, + "step": 15600 + }, + { + "epoch": 5.259653237289555, + "grad_norm": 0.6572776436805725, + "learning_rate": 4.737051926298158e-05, + "loss": 0.4158905029296875, + "step": 15700 + }, + { + "epoch": 5.2931568808107885, + "grad_norm": 0.6731371283531189, + "learning_rate": 4.735376884422111e-05, + "loss": 0.4200982666015625, + "step": 15800 + }, + { + "epoch": 5.326660524332021, + "grad_norm": 0.6026290655136108, + "learning_rate": 4.733701842546064e-05, + "loss": 0.4160591125488281, + "step": 15900 + }, + { + "epoch": 5.360164167853254, + "grad_norm": 0.6480405926704407, + "learning_rate": 4.732026800670017e-05, + "loss": 0.4141067123413086, + "step": 16000 + }, + { + "epoch": 5.393667811374487, + "grad_norm": 0.7435486912727356, + "learning_rate": 4.7303685092127306e-05, + "loss": 0.4195803451538086, + "step": 16100 + }, + { + "epoch": 5.42717145489572, + "grad_norm": 0.6561776995658875, + "learning_rate": 4.7286934673366835e-05, + "loss": 0.41183818817138673, + "step": 16200 + }, + { + "epoch": 5.460675098416953, + "grad_norm": 0.637554407119751, + "learning_rate": 4.727018425460637e-05, + "loss": 0.41124614715576174, + "step": 16300 + }, + { + "epoch": 5.494178741938185, + "grad_norm": 0.6575638055801392, + "learning_rate": 4.72534338358459e-05, + "loss": 0.41794925689697265, + "step": 16400 + }, + { + "epoch": 5.527682385459419, + "grad_norm": 0.678394079208374, + "learning_rate": 4.723668341708543e-05, + "loss": 0.4172962188720703, + "step": 16500 + }, + { + "epoch": 5.561186028980652, + "grad_norm": 0.6401932835578918, + "learning_rate": 4.7219932998324964e-05, + "loss": 0.4176398468017578, + "step": 16600 + }, + { + "epoch": 5.594689672501884, + "grad_norm": 0.7197437286376953, + "learning_rate": 4.720318257956449e-05, + "loss": 0.4155929183959961, + "step": 16700 + }, + { + "epoch": 5.6281933160231175, + "grad_norm": 0.6697796583175659, + "learning_rate": 4.718643216080402e-05, + "loss": 0.41755367279052735, + "step": 16800 + }, + { + "epoch": 5.661696959544351, + "grad_norm": 0.6090868711471558, + "learning_rate": 4.716968174204355e-05, + "loss": 0.4136951446533203, + "step": 16900 + }, + { + "epoch": 5.695200603065583, + "grad_norm": 0.6004068851470947, + "learning_rate": 4.7152931323283086e-05, + "loss": 0.4162490463256836, + "step": 17000 + }, + { + "epoch": 5.728704246586816, + "grad_norm": 0.6552139520645142, + "learning_rate": 4.7136180904522615e-05, + "loss": 0.4109830856323242, + "step": 17100 + }, + { + "epoch": 5.76220789010805, + "grad_norm": 0.7132771015167236, + "learning_rate": 4.7119430485762144e-05, + "loss": 0.4129109573364258, + "step": 17200 + }, + { + "epoch": 5.795711533629282, + "grad_norm": 0.6571471095085144, + "learning_rate": 4.710268006700167e-05, + "loss": 0.4140293121337891, + "step": 17300 + }, + { + "epoch": 5.829215177150515, + "grad_norm": 0.6521652936935425, + "learning_rate": 4.708592964824121e-05, + "loss": 0.41335311889648435, + "step": 17400 + }, + { + "epoch": 5.862718820671748, + "grad_norm": 0.6223021149635315, + "learning_rate": 4.706917922948074e-05, + "loss": 0.41415943145751954, + "step": 17500 + }, + { + "epoch": 5.896222464192981, + "grad_norm": 0.6671064496040344, + "learning_rate": 4.705242881072027e-05, + "loss": 0.4121688461303711, + "step": 17600 + }, + { + "epoch": 5.929726107714214, + "grad_norm": 0.6168386340141296, + "learning_rate": 4.70356783919598e-05, + "loss": 0.40964771270751954, + "step": 17700 + }, + { + "epoch": 5.963229751235447, + "grad_norm": 0.6829288601875305, + "learning_rate": 4.701892797319934e-05, + "loss": 0.4161583709716797, + "step": 17800 + }, + { + "epoch": 5.99673339475668, + "grad_norm": 0.6415479183197021, + "learning_rate": 4.7002177554438866e-05, + "loss": 0.4163412857055664, + "step": 17900 + }, + { + "epoch": 6.0301532791691095, + "grad_norm": 0.6762277483940125, + "learning_rate": 4.6985427135678394e-05, + "loss": 0.40404136657714845, + "step": 18000 + }, + { + "epoch": 6.063656922690343, + "grad_norm": 0.7215397357940674, + "learning_rate": 4.696884422110553e-05, + "loss": 0.40555873870849607, + "step": 18100 + }, + { + "epoch": 6.097160566211575, + "grad_norm": 0.6093649864196777, + "learning_rate": 4.695209380234506e-05, + "loss": 0.3959674072265625, + "step": 18200 + }, + { + "epoch": 6.130664209732808, + "grad_norm": 0.6576215624809265, + "learning_rate": 4.693534338358459e-05, + "loss": 0.4000381851196289, + "step": 18300 + }, + { + "epoch": 6.164167853254042, + "grad_norm": 0.6869475841522217, + "learning_rate": 4.691859296482412e-05, + "loss": 0.40716861724853515, + "step": 18400 + }, + { + "epoch": 6.197671496775274, + "grad_norm": 0.6864603161811829, + "learning_rate": 4.690184254606365e-05, + "loss": 0.4014585494995117, + "step": 18500 + }, + { + "epoch": 6.231175140296507, + "grad_norm": 0.68086177110672, + "learning_rate": 4.6885092127303185e-05, + "loss": 0.3985603713989258, + "step": 18600 + }, + { + "epoch": 6.2646787838177405, + "grad_norm": 0.700307309627533, + "learning_rate": 4.686834170854272e-05, + "loss": 0.3990879440307617, + "step": 18700 + }, + { + "epoch": 6.298182427338973, + "grad_norm": 0.7301186919212341, + "learning_rate": 4.685159128978225e-05, + "loss": 0.4010288619995117, + "step": 18800 + }, + { + "epoch": 6.331686070860206, + "grad_norm": 0.6819117069244385, + "learning_rate": 4.683484087102178e-05, + "loss": 0.4012245941162109, + "step": 18900 + }, + { + "epoch": 6.365189714381439, + "grad_norm": 0.6428888440132141, + "learning_rate": 4.681809045226131e-05, + "loss": 0.40439247131347655, + "step": 19000 + }, + { + "epoch": 6.398693357902672, + "grad_norm": 0.6879697442054749, + "learning_rate": 4.680134003350084e-05, + "loss": 0.4002133560180664, + "step": 19100 + }, + { + "epoch": 6.432197001423905, + "grad_norm": 0.7050502300262451, + "learning_rate": 4.678458961474037e-05, + "loss": 0.40451095581054686, + "step": 19200 + }, + { + "epoch": 6.465700644945138, + "grad_norm": 0.6575663685798645, + "learning_rate": 4.67678391959799e-05, + "loss": 0.40367134094238283, + "step": 19300 + }, + { + "epoch": 6.4992042884663705, + "grad_norm": 0.725883424282074, + "learning_rate": 4.675108877721943e-05, + "loss": 0.40375911712646484, + "step": 19400 + }, + { + "epoch": 6.532707931987604, + "grad_norm": 0.6960121989250183, + "learning_rate": 4.6734338358458964e-05, + "loss": 0.39711700439453124, + "step": 19500 + }, + { + "epoch": 6.566211575508836, + "grad_norm": 0.6402387022972107, + "learning_rate": 4.671758793969849e-05, + "loss": 0.40309242248535154, + "step": 19600 + }, + { + "epoch": 6.599715219030069, + "grad_norm": 0.6541135311126709, + "learning_rate": 4.670083752093802e-05, + "loss": 0.3986012268066406, + "step": 19700 + }, + { + "epoch": 6.633218862551303, + "grad_norm": 0.7802708745002747, + "learning_rate": 4.668408710217756e-05, + "loss": 0.4055080795288086, + "step": 19800 + }, + { + "epoch": 6.666722506072535, + "grad_norm": 0.7293182015419006, + "learning_rate": 4.666733668341709e-05, + "loss": 0.39762969970703127, + "step": 19900 + }, + { + "epoch": 6.700226149593768, + "grad_norm": 0.6476279497146606, + "learning_rate": 4.665058626465662e-05, + "loss": 0.39965827941894533, + "step": 20000 + }, + { + "epoch": 6.7337297931150015, + "grad_norm": 0.7234406471252441, + "learning_rate": 4.663383584589615e-05, + "loss": 0.40417919158935545, + "step": 20100 + }, + { + "epoch": 6.767233436636234, + "grad_norm": 0.6661069989204407, + "learning_rate": 4.661725293132328e-05, + "loss": 0.40048927307128906, + "step": 20200 + }, + { + "epoch": 6.800737080157467, + "grad_norm": 0.6745995283126831, + "learning_rate": 4.660050251256282e-05, + "loss": 0.40084247589111327, + "step": 20300 + }, + { + "epoch": 6.8342407236787, + "grad_norm": 0.6546103954315186, + "learning_rate": 4.658375209380235e-05, + "loss": 0.40273414611816405, + "step": 20400 + }, + { + "epoch": 6.867744367199933, + "grad_norm": 0.6249874830245972, + "learning_rate": 4.6567001675041877e-05, + "loss": 0.4047482299804688, + "step": 20500 + }, + { + "epoch": 6.901248010721166, + "grad_norm": 0.621865451335907, + "learning_rate": 4.6550251256281405e-05, + "loss": 0.40309608459472657, + "step": 20600 + }, + { + "epoch": 6.934751654242399, + "grad_norm": 0.664582371711731, + "learning_rate": 4.653350083752094e-05, + "loss": 0.402041015625, + "step": 20700 + }, + { + "epoch": 6.968255297763632, + "grad_norm": 0.6802883148193359, + "learning_rate": 4.651675041876047e-05, + "loss": 0.40645900726318357, + "step": 20800 + }, + { + "epoch": 7.001675182176061, + "grad_norm": 0.6586912870407104, + "learning_rate": 4.6500000000000005e-05, + "loss": 0.3996978759765625, + "step": 20900 + }, + { + "epoch": 7.035178825697295, + "grad_norm": 0.6849681735038757, + "learning_rate": 4.6483249581239534e-05, + "loss": 0.38614749908447266, + "step": 21000 + }, + { + "epoch": 7.068682469218528, + "grad_norm": 0.694872260093689, + "learning_rate": 4.646649916247906e-05, + "loss": 0.38619533538818357, + "step": 21100 + }, + { + "epoch": 7.10218611273976, + "grad_norm": 0.7047699689865112, + "learning_rate": 4.64497487437186e-05, + "loss": 0.38167682647705076, + "step": 21200 + }, + { + "epoch": 7.1356897562609936, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.643299832495813e-05, + "loss": 0.3932147979736328, + "step": 21300 + }, + { + "epoch": 7.169193399782226, + "grad_norm": 0.6869648098945618, + "learning_rate": 4.6416247906197656e-05, + "loss": 0.38886920928955077, + "step": 21400 + }, + { + "epoch": 7.202697043303459, + "grad_norm": 0.7238380908966064, + "learning_rate": 4.6399497487437185e-05, + "loss": 0.3933087158203125, + "step": 21500 + }, + { + "epoch": 7.236200686824692, + "grad_norm": 0.708855152130127, + "learning_rate": 4.638274706867672e-05, + "loss": 0.3932600784301758, + "step": 21600 + }, + { + "epoch": 7.269704330345925, + "grad_norm": 0.6577633619308472, + "learning_rate": 4.636599664991625e-05, + "loss": 0.38899864196777345, + "step": 21700 + }, + { + "epoch": 7.303207973867158, + "grad_norm": 0.7226035594940186, + "learning_rate": 4.634924623115578e-05, + "loss": 0.3912385559082031, + "step": 21800 + }, + { + "epoch": 7.336711617388391, + "grad_norm": 0.7393138408660889, + "learning_rate": 4.633249581239531e-05, + "loss": 0.38804672241210936, + "step": 21900 + }, + { + "epoch": 7.370215260909624, + "grad_norm": 0.7591322660446167, + "learning_rate": 4.631574539363484e-05, + "loss": 0.39187992095947266, + "step": 22000 + }, + { + "epoch": 7.403718904430857, + "grad_norm": 0.7180842757225037, + "learning_rate": 4.629899497487438e-05, + "loss": 0.3885354232788086, + "step": 22100 + }, + { + "epoch": 7.43722254795209, + "grad_norm": 0.5701187252998352, + "learning_rate": 4.628241206030151e-05, + "loss": 0.3929626083374023, + "step": 22200 + }, + { + "epoch": 7.4707261914733225, + "grad_norm": 0.6831353902816772, + "learning_rate": 4.626566164154104e-05, + "loss": 0.3864256286621094, + "step": 22300 + }, + { + "epoch": 7.504229834994556, + "grad_norm": 0.7295540571212769, + "learning_rate": 4.6248911222780575e-05, + "loss": 0.3930975341796875, + "step": 22400 + }, + { + "epoch": 7.537733478515788, + "grad_norm": 0.6555300951004028, + "learning_rate": 4.6232160804020104e-05, + "loss": 0.39193412780761716, + "step": 22500 + }, + { + "epoch": 7.571237122037021, + "grad_norm": 0.6836072206497192, + "learning_rate": 4.621541038525963e-05, + "loss": 0.39321327209472656, + "step": 22600 + }, + { + "epoch": 7.604740765558255, + "grad_norm": 0.7344244122505188, + "learning_rate": 4.619865996649916e-05, + "loss": 0.39178211212158204, + "step": 22700 + }, + { + "epoch": 7.638244409079487, + "grad_norm": 0.6757531762123108, + "learning_rate": 4.61819095477387e-05, + "loss": 0.3929476547241211, + "step": 22800 + }, + { + "epoch": 7.67174805260072, + "grad_norm": 0.790185272693634, + "learning_rate": 4.6165159128978226e-05, + "loss": 0.388702392578125, + "step": 22900 + }, + { + "epoch": 7.7052516961219535, + "grad_norm": 0.6090592741966248, + "learning_rate": 4.6148408710217755e-05, + "loss": 0.39199878692626955, + "step": 23000 + }, + { + "epoch": 7.738755339643186, + "grad_norm": 0.7253360152244568, + "learning_rate": 4.6131658291457284e-05, + "loss": 0.39112945556640627, + "step": 23100 + }, + { + "epoch": 7.772258983164419, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.611490787269682e-05, + "loss": 0.39291053771972656, + "step": 23200 + }, + { + "epoch": 7.805762626685652, + "grad_norm": 0.6961659789085388, + "learning_rate": 4.6098157453936355e-05, + "loss": 0.39124824523925783, + "step": 23300 + }, + { + "epoch": 7.839266270206885, + "grad_norm": 0.7136702537536621, + "learning_rate": 4.6081407035175884e-05, + "loss": 0.39080577850341797, + "step": 23400 + }, + { + "epoch": 7.872769913728118, + "grad_norm": 0.7133346199989319, + "learning_rate": 4.606465661641541e-05, + "loss": 0.3894335174560547, + "step": 23500 + }, + { + "epoch": 7.906273557249351, + "grad_norm": 0.7279176115989685, + "learning_rate": 4.604790619765494e-05, + "loss": 0.3878567886352539, + "step": 23600 + }, + { + "epoch": 7.939777200770584, + "grad_norm": 0.6854584217071533, + "learning_rate": 4.603115577889448e-05, + "loss": 0.3958644104003906, + "step": 23700 + }, + { + "epoch": 7.973280844291817, + "grad_norm": 0.7134712934494019, + "learning_rate": 4.6014405360134006e-05, + "loss": 0.39134223937988283, + "step": 23800 + }, + { + "epoch": 8.006700728704246, + "grad_norm": 0.7242705821990967, + "learning_rate": 4.5997654941373535e-05, + "loss": 0.38787689208984377, + "step": 23900 + }, + { + "epoch": 8.04020437222548, + "grad_norm": 0.6507485508918762, + "learning_rate": 4.5980904522613064e-05, + "loss": 0.3778019332885742, + "step": 24000 + }, + { + "epoch": 8.073708015746712, + "grad_norm": 0.6936424374580383, + "learning_rate": 4.59641541038526e-05, + "loss": 0.3767805862426758, + "step": 24100 + }, + { + "epoch": 8.107211659267945, + "grad_norm": 0.6715813279151917, + "learning_rate": 4.594757118927974e-05, + "loss": 0.37527366638183596, + "step": 24200 + }, + { + "epoch": 8.140715302789179, + "grad_norm": 0.7407135367393494, + "learning_rate": 4.593082077051927e-05, + "loss": 0.37779621124267576, + "step": 24300 + }, + { + "epoch": 8.174218946310411, + "grad_norm": 0.7536392211914062, + "learning_rate": 4.5914070351758796e-05, + "loss": 0.3771663665771484, + "step": 24400 + }, + { + "epoch": 8.207722589831643, + "grad_norm": 0.7159863114356995, + "learning_rate": 4.589731993299833e-05, + "loss": 0.3789206314086914, + "step": 24500 + }, + { + "epoch": 8.241226233352878, + "grad_norm": 0.7217793464660645, + "learning_rate": 4.588056951423786e-05, + "loss": 0.37845233917236326, + "step": 24600 + }, + { + "epoch": 8.27472987687411, + "grad_norm": 0.6689481139183044, + "learning_rate": 4.586381909547739e-05, + "loss": 0.3793601989746094, + "step": 24700 + }, + { + "epoch": 8.308233520395342, + "grad_norm": 0.6575570702552795, + "learning_rate": 4.584706867671692e-05, + "loss": 0.3798051452636719, + "step": 24800 + }, + { + "epoch": 8.341737163916576, + "grad_norm": 0.7236769795417786, + "learning_rate": 4.5830318257956454e-05, + "loss": 0.3808049011230469, + "step": 24900 + }, + { + "epoch": 8.375240807437809, + "grad_norm": 0.7543460130691528, + "learning_rate": 4.581356783919598e-05, + "loss": 0.3847679138183594, + "step": 25000 + }, + { + "epoch": 8.408744450959041, + "grad_norm": 0.7130107879638672, + "learning_rate": 4.579681742043551e-05, + "loss": 0.37841434478759767, + "step": 25100 + }, + { + "epoch": 8.442248094480275, + "grad_norm": 0.6971204876899719, + "learning_rate": 4.578006700167504e-05, + "loss": 0.3828566360473633, + "step": 25200 + }, + { + "epoch": 8.475751738001508, + "grad_norm": 0.7880971431732178, + "learning_rate": 4.5763316582914576e-05, + "loss": 0.37794727325439453, + "step": 25300 + }, + { + "epoch": 8.50925538152274, + "grad_norm": 0.795606255531311, + "learning_rate": 4.574656616415411e-05, + "loss": 0.3807938003540039, + "step": 25400 + }, + { + "epoch": 8.542759025043974, + "grad_norm": 0.662270724773407, + "learning_rate": 4.572981574539364e-05, + "loss": 0.38113510131835937, + "step": 25500 + }, + { + "epoch": 8.576262668565207, + "grad_norm": 0.7585960626602173, + "learning_rate": 4.571306532663317e-05, + "loss": 0.3807952880859375, + "step": 25600 + }, + { + "epoch": 8.609766312086439, + "grad_norm": 0.7054327726364136, + "learning_rate": 4.56963149078727e-05, + "loss": 0.3791161346435547, + "step": 25700 + }, + { + "epoch": 8.643269955607673, + "grad_norm": 0.7529199719429016, + "learning_rate": 4.5679564489112233e-05, + "loss": 0.3771999359130859, + "step": 25800 + }, + { + "epoch": 8.676773599128905, + "grad_norm": 0.7693551182746887, + "learning_rate": 4.566281407035176e-05, + "loss": 0.37909912109375, + "step": 25900 + }, + { + "epoch": 8.710277242650138, + "grad_norm": 0.7142516374588013, + "learning_rate": 4.564606365159129e-05, + "loss": 0.38215831756591795, + "step": 26000 + }, + { + "epoch": 8.743780886171372, + "grad_norm": 0.7293452024459839, + "learning_rate": 4.562931323283082e-05, + "loss": 0.38390281677246096, + "step": 26100 + }, + { + "epoch": 8.777284529692604, + "grad_norm": 0.725549578666687, + "learning_rate": 4.561273031825796e-05, + "loss": 0.37903385162353515, + "step": 26200 + }, + { + "epoch": 8.810788173213837, + "grad_norm": 0.7497493028640747, + "learning_rate": 4.559597989949749e-05, + "loss": 0.3807545852661133, + "step": 26300 + }, + { + "epoch": 8.844291816735069, + "grad_norm": 0.6810445189476013, + "learning_rate": 4.557922948073702e-05, + "loss": 0.38407058715820314, + "step": 26400 + }, + { + "epoch": 8.877795460256303, + "grad_norm": 0.6970882415771484, + "learning_rate": 4.556247906197655e-05, + "loss": 0.377288818359375, + "step": 26500 + }, + { + "epoch": 8.911299103777536, + "grad_norm": 0.6579902768135071, + "learning_rate": 4.554572864321608e-05, + "loss": 0.3823952484130859, + "step": 26600 + }, + { + "epoch": 8.94480274729877, + "grad_norm": 0.7329373359680176, + "learning_rate": 4.552897822445562e-05, + "loss": 0.38345798492431643, + "step": 26700 + }, + { + "epoch": 8.978306390820002, + "grad_norm": 0.7462034821510315, + "learning_rate": 4.5512227805695146e-05, + "loss": 0.38348892211914065, + "step": 26800 + }, + { + "epoch": 9.011726275232432, + "grad_norm": 0.6734225153923035, + "learning_rate": 4.5495477386934675e-05, + "loss": 0.37156158447265625, + "step": 26900 + }, + { + "epoch": 9.045229918753664, + "grad_norm": 0.7718762159347534, + "learning_rate": 4.54787269681742e-05, + "loss": 0.3672407913208008, + "step": 27000 + }, + { + "epoch": 9.078733562274897, + "grad_norm": 0.7702797055244446, + "learning_rate": 4.546197654941374e-05, + "loss": 0.36319580078125, + "step": 27100 + }, + { + "epoch": 9.11223720579613, + "grad_norm": 0.7608715891838074, + "learning_rate": 4.544522613065327e-05, + "loss": 0.3686368179321289, + "step": 27200 + }, + { + "epoch": 9.145740849317363, + "grad_norm": 0.6544201970100403, + "learning_rate": 4.54284757118928e-05, + "loss": 0.3657124710083008, + "step": 27300 + }, + { + "epoch": 9.179244492838595, + "grad_norm": 0.7948552370071411, + "learning_rate": 4.541172529313233e-05, + "loss": 0.3642101669311523, + "step": 27400 + }, + { + "epoch": 9.21274813635983, + "grad_norm": 0.7283180356025696, + "learning_rate": 4.539497487437186e-05, + "loss": 0.36608253479003905, + "step": 27500 + }, + { + "epoch": 9.246251779881062, + "grad_norm": 0.7535043358802795, + "learning_rate": 4.537822445561139e-05, + "loss": 0.3699675750732422, + "step": 27600 + }, + { + "epoch": 9.279755423402294, + "grad_norm": 0.7893076539039612, + "learning_rate": 4.5361474036850925e-05, + "loss": 0.3712180709838867, + "step": 27700 + }, + { + "epoch": 9.313259066923528, + "grad_norm": 0.7542401552200317, + "learning_rate": 4.5344723618090454e-05, + "loss": 0.36577003479003906, + "step": 27800 + }, + { + "epoch": 9.34676271044476, + "grad_norm": 0.7122746706008911, + "learning_rate": 4.532797319932999e-05, + "loss": 0.3700094985961914, + "step": 27900 + }, + { + "epoch": 9.380266353965993, + "grad_norm": 0.7706195116043091, + "learning_rate": 4.531122278056952e-05, + "loss": 0.3662248229980469, + "step": 28000 + }, + { + "epoch": 9.413769997487227, + "grad_norm": 0.7564675211906433, + "learning_rate": 4.529447236180905e-05, + "loss": 0.37131824493408205, + "step": 28100 + }, + { + "epoch": 9.44727364100846, + "grad_norm": 0.7425429224967957, + "learning_rate": 4.5277721943048576e-05, + "loss": 0.3740149688720703, + "step": 28200 + }, + { + "epoch": 9.480777284529692, + "grad_norm": 0.7587184906005859, + "learning_rate": 4.5261139028475716e-05, + "loss": 0.3699770736694336, + "step": 28300 + }, + { + "epoch": 9.514280928050926, + "grad_norm": 0.7541705369949341, + "learning_rate": 4.5244388609715244e-05, + "loss": 0.37311084747314455, + "step": 28400 + }, + { + "epoch": 9.547784571572159, + "grad_norm": 0.7311919331550598, + "learning_rate": 4.522763819095477e-05, + "loss": 0.3715859603881836, + "step": 28500 + }, + { + "epoch": 9.581288215093391, + "grad_norm": 0.700539767742157, + "learning_rate": 4.52108877721943e-05, + "loss": 0.3688846206665039, + "step": 28600 + }, + { + "epoch": 9.614791858614625, + "grad_norm": 0.6238375306129456, + "learning_rate": 4.519413735343384e-05, + "loss": 0.3701490020751953, + "step": 28700 + }, + { + "epoch": 9.648295502135857, + "grad_norm": 0.6758601069450378, + "learning_rate": 4.517738693467337e-05, + "loss": 0.37076793670654296, + "step": 28800 + }, + { + "epoch": 9.68179914565709, + "grad_norm": 0.7019829750061035, + "learning_rate": 4.51606365159129e-05, + "loss": 0.3690201187133789, + "step": 28900 + }, + { + "epoch": 9.715302789178324, + "grad_norm": 0.8280263543128967, + "learning_rate": 4.514388609715243e-05, + "loss": 0.3725156402587891, + "step": 29000 + }, + { + "epoch": 9.748806432699556, + "grad_norm": 0.6962838172912598, + "learning_rate": 4.512713567839196e-05, + "loss": 0.3695372009277344, + "step": 29100 + }, + { + "epoch": 9.782310076220789, + "grad_norm": 0.6678254008293152, + "learning_rate": 4.5110385259631495e-05, + "loss": 0.36981796264648437, + "step": 29200 + }, + { + "epoch": 9.815813719742023, + "grad_norm": 0.7574114799499512, + "learning_rate": 4.5093634840871024e-05, + "loss": 0.3735762023925781, + "step": 29300 + }, + { + "epoch": 9.849317363263255, + "grad_norm": 0.6498548984527588, + "learning_rate": 4.507688442211055e-05, + "loss": 0.36818092346191406, + "step": 29400 + }, + { + "epoch": 9.882821006784487, + "grad_norm": 0.6784448623657227, + "learning_rate": 4.506013400335008e-05, + "loss": 0.3738037872314453, + "step": 29500 + }, + { + "epoch": 9.916324650305722, + "grad_norm": 0.748648464679718, + "learning_rate": 4.504338358458962e-05, + "loss": 0.3744197463989258, + "step": 29600 + }, + { + "epoch": 9.949828293826954, + "grad_norm": 0.7319295406341553, + "learning_rate": 4.5026633165829146e-05, + "loss": 0.3747980499267578, + "step": 29700 + }, + { + "epoch": 9.983331937348186, + "grad_norm": 0.7425316572189331, + "learning_rate": 4.5009882747068675e-05, + "loss": 0.37337436676025393, + "step": 29800 + }, + { + "epoch": 10.016751821760616, + "grad_norm": 0.6705507040023804, + "learning_rate": 4.499313232830821e-05, + "loss": 0.36580001831054687, + "step": 29900 + }, + { + "epoch": 10.050255465281849, + "grad_norm": 0.7338049411773682, + "learning_rate": 4.4976381909547746e-05, + "loss": 0.35635528564453123, + "step": 30000 + }, + { + "epoch": 10.083759108803083, + "grad_norm": 0.7279812693595886, + "learning_rate": 4.4959631490787275e-05, + "loss": 0.3529629898071289, + "step": 30100 + }, + { + "epoch": 10.117262752324315, + "grad_norm": 0.7696557641029358, + "learning_rate": 4.4942881072026804e-05, + "loss": 0.354565315246582, + "step": 30200 + }, + { + "epoch": 10.150766395845547, + "grad_norm": 0.728212833404541, + "learning_rate": 4.4926298157453936e-05, + "loss": 0.3530071258544922, + "step": 30300 + }, + { + "epoch": 10.184270039366782, + "grad_norm": 0.7012603878974915, + "learning_rate": 4.490954773869347e-05, + "loss": 0.3573540496826172, + "step": 30400 + }, + { + "epoch": 10.217773682888014, + "grad_norm": 0.7446846961975098, + "learning_rate": 4.4892797319933e-05, + "loss": 0.35920669555664064, + "step": 30500 + }, + { + "epoch": 10.251277326409246, + "grad_norm": 0.792353630065918, + "learning_rate": 4.487604690117253e-05, + "loss": 0.3555112075805664, + "step": 30600 + }, + { + "epoch": 10.28478096993048, + "grad_norm": 0.6799439787864685, + "learning_rate": 4.485929648241206e-05, + "loss": 0.36326725006103516, + "step": 30700 + }, + { + "epoch": 10.318284613451713, + "grad_norm": 0.7877249121665955, + "learning_rate": 4.4842546063651594e-05, + "loss": 0.36337570190429686, + "step": 30800 + }, + { + "epoch": 10.351788256972945, + "grad_norm": 0.8450521230697632, + "learning_rate": 4.482579564489112e-05, + "loss": 0.3597735595703125, + "step": 30900 + }, + { + "epoch": 10.38529190049418, + "grad_norm": 0.7301276922225952, + "learning_rate": 4.480904522613066e-05, + "loss": 0.3627984619140625, + "step": 31000 + }, + { + "epoch": 10.418795544015412, + "grad_norm": 0.7038715481758118, + "learning_rate": 4.479229480737019e-05, + "loss": 0.356929817199707, + "step": 31100 + }, + { + "epoch": 10.452299187536644, + "grad_norm": 0.7955334782600403, + "learning_rate": 4.4775544388609716e-05, + "loss": 0.35474601745605466, + "step": 31200 + }, + { + "epoch": 10.485802831057878, + "grad_norm": 0.7089738249778748, + "learning_rate": 4.475879396984925e-05, + "loss": 0.36358638763427736, + "step": 31300 + }, + { + "epoch": 10.51930647457911, + "grad_norm": 0.8143360018730164, + "learning_rate": 4.474204355108878e-05, + "loss": 0.3624624252319336, + "step": 31400 + }, + { + "epoch": 10.552810118100343, + "grad_norm": 0.8367409706115723, + "learning_rate": 4.472529313232831e-05, + "loss": 0.36308753967285157, + "step": 31500 + }, + { + "epoch": 10.586313761621577, + "grad_norm": 0.7856859564781189, + "learning_rate": 4.470854271356784e-05, + "loss": 0.362791862487793, + "step": 31600 + }, + { + "epoch": 10.61981740514281, + "grad_norm": 0.8061284422874451, + "learning_rate": 4.4691792294807374e-05, + "loss": 0.3634458541870117, + "step": 31700 + }, + { + "epoch": 10.653321048664042, + "grad_norm": 0.785724401473999, + "learning_rate": 4.46750418760469e-05, + "loss": 0.36115474700927735, + "step": 31800 + }, + { + "epoch": 10.686824692185276, + "grad_norm": 0.7530859112739563, + "learning_rate": 4.465829145728643e-05, + "loss": 0.36017478942871095, + "step": 31900 + }, + { + "epoch": 10.720328335706508, + "grad_norm": 0.7640136480331421, + "learning_rate": 4.464154103852596e-05, + "loss": 0.36370697021484377, + "step": 32000 + }, + { + "epoch": 10.75383197922774, + "grad_norm": 0.7125088572502136, + "learning_rate": 4.4624790619765496e-05, + "loss": 0.36396575927734376, + "step": 32100 + }, + { + "epoch": 10.787335622748975, + "grad_norm": 0.8106554746627808, + "learning_rate": 4.4608040201005025e-05, + "loss": 0.3571950912475586, + "step": 32200 + }, + { + "epoch": 10.820839266270207, + "grad_norm": 0.768183708190918, + "learning_rate": 4.4591457286432164e-05, + "loss": 0.3580643844604492, + "step": 32300 + }, + { + "epoch": 10.85434290979144, + "grad_norm": 0.7329164743423462, + "learning_rate": 4.457470686767169e-05, + "loss": 0.36159816741943357, + "step": 32400 + }, + { + "epoch": 10.887846553312674, + "grad_norm": 0.7993727922439575, + "learning_rate": 4.455795644891123e-05, + "loss": 0.3672108840942383, + "step": 32500 + }, + { + "epoch": 10.921350196833906, + "grad_norm": 0.7389618754386902, + "learning_rate": 4.454120603015076e-05, + "loss": 0.3596214294433594, + "step": 32600 + }, + { + "epoch": 10.954853840355138, + "grad_norm": 0.6745049953460693, + "learning_rate": 4.4524455611390286e-05, + "loss": 0.36047595977783203, + "step": 32700 + }, + { + "epoch": 10.98835748387637, + "grad_norm": 0.7832050919532776, + "learning_rate": 4.4507705192629815e-05, + "loss": 0.3599930953979492, + "step": 32800 + }, + { + "epoch": 11.021777368288802, + "grad_norm": 0.7236883044242859, + "learning_rate": 4.449095477386935e-05, + "loss": 0.3518721771240234, + "step": 32900 + }, + { + "epoch": 11.055281011810035, + "grad_norm": 0.6951456069946289, + "learning_rate": 4.447420435510888e-05, + "loss": 0.3448529815673828, + "step": 33000 + }, + { + "epoch": 11.088784655331267, + "grad_norm": 0.8174095749855042, + "learning_rate": 4.445745393634841e-05, + "loss": 0.3480173873901367, + "step": 33100 + }, + { + "epoch": 11.1222882988525, + "grad_norm": 0.8361256122589111, + "learning_rate": 4.444070351758794e-05, + "loss": 0.3429459762573242, + "step": 33200 + }, + { + "epoch": 11.155791942373734, + "grad_norm": 0.8620163202285767, + "learning_rate": 4.442395309882747e-05, + "loss": 0.3492248916625977, + "step": 33300 + }, + { + "epoch": 11.189295585894966, + "grad_norm": 0.7246844172477722, + "learning_rate": 4.440720268006701e-05, + "loss": 0.3458073043823242, + "step": 33400 + }, + { + "epoch": 11.222799229416198, + "grad_norm": 0.7091465592384338, + "learning_rate": 4.439045226130654e-05, + "loss": 0.34752788543701174, + "step": 33500 + }, + { + "epoch": 11.256302872937432, + "grad_norm": 0.7573132514953613, + "learning_rate": 4.4373701842546066e-05, + "loss": 0.3496548080444336, + "step": 33600 + }, + { + "epoch": 11.289806516458665, + "grad_norm": 0.7986613512039185, + "learning_rate": 4.4356951423785595e-05, + "loss": 0.34697345733642576, + "step": 33700 + }, + { + "epoch": 11.323310159979897, + "grad_norm": 0.7822960615158081, + "learning_rate": 4.434020100502513e-05, + "loss": 0.35006622314453123, + "step": 33800 + }, + { + "epoch": 11.356813803501131, + "grad_norm": 0.8444114327430725, + "learning_rate": 4.432345058626466e-05, + "loss": 0.3496244430541992, + "step": 33900 + }, + { + "epoch": 11.390317447022364, + "grad_norm": 0.7642440795898438, + "learning_rate": 4.430670016750419e-05, + "loss": 0.350846061706543, + "step": 34000 + }, + { + "epoch": 11.423821090543596, + "grad_norm": 0.7518153190612793, + "learning_rate": 4.428994974874372e-05, + "loss": 0.3499641036987305, + "step": 34100 + }, + { + "epoch": 11.45732473406483, + "grad_norm": 0.8707530498504639, + "learning_rate": 4.427319932998325e-05, + "loss": 0.3532308578491211, + "step": 34200 + }, + { + "epoch": 11.490828377586062, + "grad_norm": 0.7227981686592102, + "learning_rate": 4.4256616415410385e-05, + "loss": 0.35490013122558595, + "step": 34300 + }, + { + "epoch": 11.524332021107295, + "grad_norm": 0.7735912203788757, + "learning_rate": 4.423986599664992e-05, + "loss": 0.3542043304443359, + "step": 34400 + }, + { + "epoch": 11.557835664628529, + "grad_norm": 0.8353047370910645, + "learning_rate": 4.422311557788945e-05, + "loss": 0.34967689514160155, + "step": 34500 + }, + { + "epoch": 11.591339308149761, + "grad_norm": 0.7564737200737, + "learning_rate": 4.4206365159128985e-05, + "loss": 0.35371181488037107, + "step": 34600 + }, + { + "epoch": 11.624842951670994, + "grad_norm": 0.656694233417511, + "learning_rate": 4.4189614740368514e-05, + "loss": 0.3496272277832031, + "step": 34700 + }, + { + "epoch": 11.658346595192228, + "grad_norm": 0.8337951302528381, + "learning_rate": 4.417286432160804e-05, + "loss": 0.35147029876708985, + "step": 34800 + }, + { + "epoch": 11.69185023871346, + "grad_norm": 0.779253363609314, + "learning_rate": 4.415611390284757e-05, + "loss": 0.3496464920043945, + "step": 34900 + }, + { + "epoch": 11.725353882234693, + "grad_norm": 0.8846334218978882, + "learning_rate": 4.413936348408711e-05, + "loss": 0.3506482696533203, + "step": 35000 + }, + { + "epoch": 11.758857525755927, + "grad_norm": 0.7678661346435547, + "learning_rate": 4.4122613065326636e-05, + "loss": 0.35182670593261717, + "step": 35100 + }, + { + "epoch": 11.792361169277159, + "grad_norm": 0.779376745223999, + "learning_rate": 4.4105862646566165e-05, + "loss": 0.3535502624511719, + "step": 35200 + }, + { + "epoch": 11.825864812798391, + "grad_norm": 0.8054938316345215, + "learning_rate": 4.408911222780569e-05, + "loss": 0.35151683807373046, + "step": 35300 + }, + { + "epoch": 11.859368456319626, + "grad_norm": 0.7657700181007385, + "learning_rate": 4.407236180904523e-05, + "loss": 0.3521769714355469, + "step": 35400 + }, + { + "epoch": 11.892872099840858, + "grad_norm": 0.7825794219970703, + "learning_rate": 4.405561139028476e-05, + "loss": 0.3515496826171875, + "step": 35500 + }, + { + "epoch": 11.92637574336209, + "grad_norm": 0.811125636100769, + "learning_rate": 4.403886097152429e-05, + "loss": 0.35637962341308593, + "step": 35600 + }, + { + "epoch": 11.959879386883323, + "grad_norm": 0.7954035401344299, + "learning_rate": 4.402211055276382e-05, + "loss": 0.3535337066650391, + "step": 35700 + }, + { + "epoch": 11.993383030404557, + "grad_norm": 0.9039795994758606, + "learning_rate": 4.400536013400335e-05, + "loss": 0.351923828125, + "step": 35800 + }, + { + "epoch": 12.026802914816987, + "grad_norm": 0.7764714360237122, + "learning_rate": 4.3988609715242887e-05, + "loss": 0.3385712432861328, + "step": 35900 + }, + { + "epoch": 12.060306558338219, + "grad_norm": 0.8632619380950928, + "learning_rate": 4.3971859296482415e-05, + "loss": 0.3341633605957031, + "step": 36000 + }, + { + "epoch": 12.093810201859451, + "grad_norm": 0.7242739200592041, + "learning_rate": 4.3955108877721944e-05, + "loss": 0.33580013275146486, + "step": 36100 + }, + { + "epoch": 12.127313845380685, + "grad_norm": 0.8469365239143372, + "learning_rate": 4.393835845896147e-05, + "loss": 0.33277801513671873, + "step": 36200 + }, + { + "epoch": 12.160817488901918, + "grad_norm": 0.8422605991363525, + "learning_rate": 4.392177554438861e-05, + "loss": 0.33413345336914063, + "step": 36300 + }, + { + "epoch": 12.19432113242315, + "grad_norm": 0.7811619639396667, + "learning_rate": 4.390502512562814e-05, + "loss": 0.33585643768310547, + "step": 36400 + }, + { + "epoch": 12.227824775944384, + "grad_norm": 0.7483822703361511, + "learning_rate": 4.388827470686767e-05, + "loss": 0.33689048767089846, + "step": 36500 + }, + { + "epoch": 12.261328419465617, + "grad_norm": 0.8344827890396118, + "learning_rate": 4.3871524288107206e-05, + "loss": 0.33572166442871093, + "step": 36600 + }, + { + "epoch": 12.294832062986849, + "grad_norm": 0.8680643439292908, + "learning_rate": 4.385477386934674e-05, + "loss": 0.3416824722290039, + "step": 36700 + }, + { + "epoch": 12.328335706508083, + "grad_norm": 0.8696274757385254, + "learning_rate": 4.383802345058627e-05, + "loss": 0.33966796875, + "step": 36800 + }, + { + "epoch": 12.361839350029316, + "grad_norm": 0.8183309435844421, + "learning_rate": 4.38212730318258e-05, + "loss": 0.3437775039672852, + "step": 36900 + }, + { + "epoch": 12.395342993550548, + "grad_norm": 0.8513368368148804, + "learning_rate": 4.380452261306533e-05, + "loss": 0.3392060470581055, + "step": 37000 + }, + { + "epoch": 12.428846637071782, + "grad_norm": 0.799085259437561, + "learning_rate": 4.378777219430486e-05, + "loss": 0.34548038482666016, + "step": 37100 + }, + { + "epoch": 12.462350280593014, + "grad_norm": 0.8001937866210938, + "learning_rate": 4.377102177554439e-05, + "loss": 0.3440947723388672, + "step": 37200 + }, + { + "epoch": 12.495853924114247, + "grad_norm": 0.7208882570266724, + "learning_rate": 4.375427135678392e-05, + "loss": 0.33991405487060544, + "step": 37300 + }, + { + "epoch": 12.529357567635481, + "grad_norm": 0.7442817687988281, + "learning_rate": 4.373752093802345e-05, + "loss": 0.3403905487060547, + "step": 37400 + }, + { + "epoch": 12.562861211156713, + "grad_norm": 0.8188682794570923, + "learning_rate": 4.3720770519262985e-05, + "loss": 0.3432355499267578, + "step": 37500 + }, + { + "epoch": 12.596364854677946, + "grad_norm": 0.8770096302032471, + "learning_rate": 4.3704020100502514e-05, + "loss": 0.3425747299194336, + "step": 37600 + }, + { + "epoch": 12.62986849819918, + "grad_norm": 0.6969801187515259, + "learning_rate": 4.368726968174204e-05, + "loss": 0.3424406051635742, + "step": 37700 + }, + { + "epoch": 12.663372141720412, + "grad_norm": 0.7996489405632019, + "learning_rate": 4.367051926298157e-05, + "loss": 0.34474189758300783, + "step": 37800 + }, + { + "epoch": 12.696875785241645, + "grad_norm": 0.8017092943191528, + "learning_rate": 4.365376884422111e-05, + "loss": 0.3453398895263672, + "step": 37900 + }, + { + "epoch": 12.730379428762879, + "grad_norm": 0.8389545679092407, + "learning_rate": 4.363701842546064e-05, + "loss": 0.3442976760864258, + "step": 38000 + }, + { + "epoch": 12.763883072284111, + "grad_norm": 0.829469621181488, + "learning_rate": 4.362026800670017e-05, + "loss": 0.3431151580810547, + "step": 38100 + }, + { + "epoch": 12.797386715805343, + "grad_norm": 0.747890055179596, + "learning_rate": 4.36035175879397e-05, + "loss": 0.3406733322143555, + "step": 38200 + }, + { + "epoch": 12.830890359326578, + "grad_norm": 0.8428831100463867, + "learning_rate": 4.358693467336683e-05, + "loss": 0.34296836853027346, + "step": 38300 + }, + { + "epoch": 12.86439400284781, + "grad_norm": 0.837282121181488, + "learning_rate": 4.357018425460637e-05, + "loss": 0.3470125579833984, + "step": 38400 + }, + { + "epoch": 12.897897646369042, + "grad_norm": 0.7993006706237793, + "learning_rate": 4.35534338358459e-05, + "loss": 0.3433689117431641, + "step": 38500 + }, + { + "epoch": 12.931401289890276, + "grad_norm": 0.7729536294937134, + "learning_rate": 4.3536683417085426e-05, + "loss": 0.34415348052978517, + "step": 38600 + }, + { + "epoch": 12.964904933411509, + "grad_norm": 0.8379591107368469, + "learning_rate": 4.3519932998324955e-05, + "loss": 0.3490380096435547, + "step": 38700 + }, + { + "epoch": 12.998408576932741, + "grad_norm": 0.8118153214454651, + "learning_rate": 4.350318257956449e-05, + "loss": 0.3449933624267578, + "step": 38800 + }, + { + "epoch": 13.031828461345171, + "grad_norm": 0.7350383400917053, + "learning_rate": 4.3486432160804026e-05, + "loss": 0.3230305862426758, + "step": 38900 + }, + { + "epoch": 13.065332104866405, + "grad_norm": 0.844278872013092, + "learning_rate": 4.3469681742043555e-05, + "loss": 0.3269623565673828, + "step": 39000 + }, + { + "epoch": 13.098835748387637, + "grad_norm": 0.7997421622276306, + "learning_rate": 4.3452931323283084e-05, + "loss": 0.32578598022460936, + "step": 39100 + }, + { + "epoch": 13.13233939190887, + "grad_norm": 0.830944299697876, + "learning_rate": 4.343618090452262e-05, + "loss": 0.32753429412841795, + "step": 39200 + }, + { + "epoch": 13.165843035430104, + "grad_norm": 0.7835378646850586, + "learning_rate": 4.341943048576215e-05, + "loss": 0.32705738067626955, + "step": 39300 + }, + { + "epoch": 13.199346678951336, + "grad_norm": 0.9184708595275879, + "learning_rate": 4.340268006700168e-05, + "loss": 0.32659355163574216, + "step": 39400 + }, + { + "epoch": 13.232850322472569, + "grad_norm": 0.9233602285385132, + "learning_rate": 4.3385929648241206e-05, + "loss": 0.3316535186767578, + "step": 39500 + }, + { + "epoch": 13.266353965993801, + "grad_norm": 0.8355572819709778, + "learning_rate": 4.336917922948074e-05, + "loss": 0.3265563583374023, + "step": 39600 + }, + { + "epoch": 13.299857609515035, + "grad_norm": 0.8072609901428223, + "learning_rate": 4.335242881072027e-05, + "loss": 0.329896354675293, + "step": 39700 + }, + { + "epoch": 13.333361253036268, + "grad_norm": 0.7573186159133911, + "learning_rate": 4.33356783919598e-05, + "loss": 0.3345551300048828, + "step": 39800 + }, + { + "epoch": 13.3668648965575, + "grad_norm": 0.7736772894859314, + "learning_rate": 4.331892797319933e-05, + "loss": 0.32930431365966795, + "step": 39900 + }, + { + "epoch": 13.400368540078734, + "grad_norm": 0.6786108016967773, + "learning_rate": 4.3302177554438864e-05, + "loss": 0.3282357406616211, + "step": 40000 + }, + { + "epoch": 13.433872183599966, + "grad_norm": 0.9429032206535339, + "learning_rate": 4.328542713567839e-05, + "loss": 0.33234012603759766, + "step": 40100 + }, + { + "epoch": 13.467375827121199, + "grad_norm": 0.8342773914337158, + "learning_rate": 4.326867671691793e-05, + "loss": 0.33062789916992186, + "step": 40200 + }, + { + "epoch": 13.500879470642433, + "grad_norm": 0.8285291194915771, + "learning_rate": 4.325209380234506e-05, + "loss": 0.33372978210449217, + "step": 40300 + }, + { + "epoch": 13.534383114163665, + "grad_norm": 0.9048053622245789, + "learning_rate": 4.323534338358459e-05, + "loss": 0.3388665771484375, + "step": 40400 + }, + { + "epoch": 13.567886757684898, + "grad_norm": 0.8660252690315247, + "learning_rate": 4.3218592964824125e-05, + "loss": 0.33297966003417967, + "step": 40500 + }, + { + "epoch": 13.601390401206132, + "grad_norm": 0.8536561727523804, + "learning_rate": 4.3201842546063654e-05, + "loss": 0.3336554718017578, + "step": 40600 + }, + { + "epoch": 13.634894044727364, + "grad_norm": 0.8385009765625, + "learning_rate": 4.318509212730318e-05, + "loss": 0.3373324203491211, + "step": 40700 + }, + { + "epoch": 13.668397688248596, + "grad_norm": 0.8286055326461792, + "learning_rate": 4.316834170854271e-05, + "loss": 0.3344192886352539, + "step": 40800 + }, + { + "epoch": 13.70190133176983, + "grad_norm": 0.8716219067573547, + "learning_rate": 4.315159128978225e-05, + "loss": 0.3346976089477539, + "step": 40900 + }, + { + "epoch": 13.735404975291063, + "grad_norm": 0.9002569317817688, + "learning_rate": 4.3134840871021776e-05, + "loss": 0.33477676391601563, + "step": 41000 + }, + { + "epoch": 13.768908618812295, + "grad_norm": 0.7407629489898682, + "learning_rate": 4.3118090452261305e-05, + "loss": 0.3335411071777344, + "step": 41100 + }, + { + "epoch": 13.80241226233353, + "grad_norm": 0.8391560316085815, + "learning_rate": 4.310134003350084e-05, + "loss": 0.33270046234130857, + "step": 41200 + }, + { + "epoch": 13.835915905854762, + "grad_norm": 0.8274234533309937, + "learning_rate": 4.3084589614740376e-05, + "loss": 0.3338147735595703, + "step": 41300 + }, + { + "epoch": 13.869419549375994, + "grad_norm": 0.7722423672676086, + "learning_rate": 4.3067839195979905e-05, + "loss": 0.3329287338256836, + "step": 41400 + }, + { + "epoch": 13.902923192897228, + "grad_norm": 0.8129300475120544, + "learning_rate": 4.3051088777219434e-05, + "loss": 0.3391679000854492, + "step": 41500 + }, + { + "epoch": 13.93642683641846, + "grad_norm": 0.7851378917694092, + "learning_rate": 4.303433835845896e-05, + "loss": 0.33578712463378907, + "step": 41600 + }, + { + "epoch": 13.969930479939693, + "grad_norm": 0.8963794708251953, + "learning_rate": 4.30175879396985e-05, + "loss": 0.3370305252075195, + "step": 41700 + }, + { + "epoch": 14.003350364352123, + "grad_norm": 0.7511172890663147, + "learning_rate": 4.300083752093803e-05, + "loss": 0.3332187652587891, + "step": 41800 + }, + { + "epoch": 14.036854007873357, + "grad_norm": 0.8411696553230286, + "learning_rate": 4.2984087102177556e-05, + "loss": 0.3142329978942871, + "step": 41900 + }, + { + "epoch": 14.07035765139459, + "grad_norm": 0.8463764190673828, + "learning_rate": 4.2967336683417085e-05, + "loss": 0.31400049209594727, + "step": 42000 + }, + { + "epoch": 14.103861294915822, + "grad_norm": 0.8349206447601318, + "learning_rate": 4.295058626465662e-05, + "loss": 0.3154226112365723, + "step": 42100 + }, + { + "epoch": 14.137364938437056, + "grad_norm": 0.8107666373252869, + "learning_rate": 4.293383584589615e-05, + "loss": 0.31885833740234376, + "step": 42200 + }, + { + "epoch": 14.170868581958288, + "grad_norm": 0.8954828381538391, + "learning_rate": 4.291725293132329e-05, + "loss": 0.3197479820251465, + "step": 42300 + }, + { + "epoch": 14.20437222547952, + "grad_norm": 0.8605073094367981, + "learning_rate": 4.290050251256282e-05, + "loss": 0.32168098449707033, + "step": 42400 + }, + { + "epoch": 14.237875869000753, + "grad_norm": 0.8864564299583435, + "learning_rate": 4.2883752093802346e-05, + "loss": 0.31901069641113283, + "step": 42500 + }, + { + "epoch": 14.271379512521987, + "grad_norm": 0.8231778144836426, + "learning_rate": 4.286700167504188e-05, + "loss": 0.3223213577270508, + "step": 42600 + }, + { + "epoch": 14.30488315604322, + "grad_norm": 0.8360753059387207, + "learning_rate": 4.285025125628141e-05, + "loss": 0.32040260314941404, + "step": 42700 + }, + { + "epoch": 14.338386799564452, + "grad_norm": 0.8900824785232544, + "learning_rate": 4.283350083752094e-05, + "loss": 0.32190364837646485, + "step": 42800 + }, + { + "epoch": 14.371890443085686, + "grad_norm": 0.8233429193496704, + "learning_rate": 4.281675041876047e-05, + "loss": 0.32389614105224607, + "step": 42900 + }, + { + "epoch": 14.405394086606918, + "grad_norm": 0.7868608236312866, + "learning_rate": 4.2800000000000004e-05, + "loss": 0.3197458839416504, + "step": 43000 + }, + { + "epoch": 14.43889773012815, + "grad_norm": 0.9061699509620667, + "learning_rate": 4.278324958123953e-05, + "loss": 0.32365760803222654, + "step": 43100 + }, + { + "epoch": 14.472401373649385, + "grad_norm": 0.8254518508911133, + "learning_rate": 4.276649916247906e-05, + "loss": 0.32395694732666014, + "step": 43200 + }, + { + "epoch": 14.505905017170617, + "grad_norm": 0.8711475729942322, + "learning_rate": 4.274974874371859e-05, + "loss": 0.32183242797851563, + "step": 43300 + }, + { + "epoch": 14.53940866069185, + "grad_norm": 0.8801646828651428, + "learning_rate": 4.2732998324958126e-05, + "loss": 0.3255552673339844, + "step": 43400 + }, + { + "epoch": 14.572912304213084, + "grad_norm": 0.9780988693237305, + "learning_rate": 4.271624790619766e-05, + "loss": 0.32349624633789065, + "step": 43500 + }, + { + "epoch": 14.606415947734316, + "grad_norm": 0.7670713663101196, + "learning_rate": 4.269949748743719e-05, + "loss": 0.325313720703125, + "step": 43600 + }, + { + "epoch": 14.639919591255548, + "grad_norm": 0.8528743386268616, + "learning_rate": 4.268274706867672e-05, + "loss": 0.3246849822998047, + "step": 43700 + }, + { + "epoch": 14.673423234776783, + "grad_norm": 0.8485456109046936, + "learning_rate": 4.2665996649916254e-05, + "loss": 0.3302822494506836, + "step": 43800 + }, + { + "epoch": 14.706926878298015, + "grad_norm": 0.7821197509765625, + "learning_rate": 4.264924623115578e-05, + "loss": 0.3271540451049805, + "step": 43900 + }, + { + "epoch": 14.740430521819247, + "grad_norm": 0.8672188520431519, + "learning_rate": 4.263249581239531e-05, + "loss": 0.32373977661132813, + "step": 44000 + }, + { + "epoch": 14.773934165340481, + "grad_norm": 0.8280694484710693, + "learning_rate": 4.261574539363484e-05, + "loss": 0.3241862106323242, + "step": 44100 + }, + { + "epoch": 14.807437808861714, + "grad_norm": 0.8599796891212463, + "learning_rate": 4.2598994974874377e-05, + "loss": 0.32549205780029294, + "step": 44200 + }, + { + "epoch": 14.840941452382946, + "grad_norm": 0.8781849145889282, + "learning_rate": 4.258241206030151e-05, + "loss": 0.331417121887207, + "step": 44300 + }, + { + "epoch": 14.87444509590418, + "grad_norm": 0.9023721814155579, + "learning_rate": 4.256566164154104e-05, + "loss": 0.33159866333007815, + "step": 44400 + }, + { + "epoch": 14.907948739425413, + "grad_norm": 0.8109947443008423, + "learning_rate": 4.2548911222780573e-05, + "loss": 0.3285139846801758, + "step": 44500 + }, + { + "epoch": 14.941452382946645, + "grad_norm": 0.9133332371711731, + "learning_rate": 4.25321608040201e-05, + "loss": 0.3285633850097656, + "step": 44600 + }, + { + "epoch": 14.97495602646788, + "grad_norm": 0.897939145565033, + "learning_rate": 4.251541038525964e-05, + "loss": 0.3268856430053711, + "step": 44700 + }, + { + "epoch": 15.008375910880309, + "grad_norm": 0.8286980986595154, + "learning_rate": 4.249865996649917e-05, + "loss": 0.31992229461669924, + "step": 44800 + }, + { + "epoch": 15.041879554401541, + "grad_norm": 0.8173639178276062, + "learning_rate": 4.2481909547738696e-05, + "loss": 0.3056914710998535, + "step": 44900 + }, + { + "epoch": 15.075383197922774, + "grad_norm": 0.7765247821807861, + "learning_rate": 4.2465159128978224e-05, + "loss": 0.30892095565795896, + "step": 45000 + }, + { + "epoch": 15.108886841444008, + "grad_norm": 0.9506803750991821, + "learning_rate": 4.244840871021776e-05, + "loss": 0.31020853042602536, + "step": 45100 + }, + { + "epoch": 15.14239048496524, + "grad_norm": 0.855025053024292, + "learning_rate": 4.243165829145729e-05, + "loss": 0.30636240005493165, + "step": 45200 + }, + { + "epoch": 15.175894128486473, + "grad_norm": 0.8373168110847473, + "learning_rate": 4.241490787269682e-05, + "loss": 0.3096147537231445, + "step": 45300 + }, + { + "epoch": 15.209397772007707, + "grad_norm": 0.8214793801307678, + "learning_rate": 4.2398157453936346e-05, + "loss": 0.3086151885986328, + "step": 45400 + }, + { + "epoch": 15.242901415528939, + "grad_norm": 0.8581687211990356, + "learning_rate": 4.238140703517588e-05, + "loss": 0.3079892349243164, + "step": 45500 + }, + { + "epoch": 15.276405059050171, + "grad_norm": 0.8844295740127563, + "learning_rate": 4.236465661641541e-05, + "loss": 0.31047849655151366, + "step": 45600 + }, + { + "epoch": 15.309908702571404, + "grad_norm": 0.8439965844154358, + "learning_rate": 4.234790619765494e-05, + "loss": 0.3138412094116211, + "step": 45700 + }, + { + "epoch": 15.343412346092638, + "grad_norm": 0.903762698173523, + "learning_rate": 4.2331155778894475e-05, + "loss": 0.3122879219055176, + "step": 45800 + }, + { + "epoch": 15.37691598961387, + "grad_norm": 0.8018752932548523, + "learning_rate": 4.2314405360134004e-05, + "loss": 0.3170251655578613, + "step": 45900 + }, + { + "epoch": 15.410419633135103, + "grad_norm": 0.92534339427948, + "learning_rate": 4.229765494137354e-05, + "loss": 0.3110039138793945, + "step": 46000 + }, + { + "epoch": 15.443923276656337, + "grad_norm": 0.9206555485725403, + "learning_rate": 4.228090452261307e-05, + "loss": 0.31349218368530274, + "step": 46100 + }, + { + "epoch": 15.47742692017757, + "grad_norm": 0.9693331122398376, + "learning_rate": 4.22641541038526e-05, + "loss": 0.3193240737915039, + "step": 46200 + }, + { + "epoch": 15.510930563698802, + "grad_norm": 0.8420470952987671, + "learning_rate": 4.224757118927974e-05, + "loss": 0.3151701354980469, + "step": 46300 + }, + { + "epoch": 15.544434207220036, + "grad_norm": 0.9353216290473938, + "learning_rate": 4.2230820770519265e-05, + "loss": 0.3188944435119629, + "step": 46400 + }, + { + "epoch": 15.577937850741268, + "grad_norm": 0.9871792197227478, + "learning_rate": 4.2214070351758794e-05, + "loss": 0.31723602294921877, + "step": 46500 + }, + { + "epoch": 15.6114414942625, + "grad_norm": 0.7518536448478699, + "learning_rate": 4.219731993299832e-05, + "loss": 0.31692527770996093, + "step": 46600 + }, + { + "epoch": 15.644945137783735, + "grad_norm": 0.8153543472290039, + "learning_rate": 4.218056951423786e-05, + "loss": 0.3178220748901367, + "step": 46700 + }, + { + "epoch": 15.678448781304967, + "grad_norm": 0.9253189563751221, + "learning_rate": 4.2163819095477394e-05, + "loss": 0.31681758880615235, + "step": 46800 + }, + { + "epoch": 15.7119524248262, + "grad_norm": 0.9607227444648743, + "learning_rate": 4.214706867671692e-05, + "loss": 0.31734546661376956, + "step": 46900 + }, + { + "epoch": 15.745456068347433, + "grad_norm": 0.9105275273323059, + "learning_rate": 4.213031825795645e-05, + "loss": 0.3183962059020996, + "step": 47000 + }, + { + "epoch": 15.778959711868666, + "grad_norm": 0.943592369556427, + "learning_rate": 4.211356783919598e-05, + "loss": 0.3173214912414551, + "step": 47100 + }, + { + "epoch": 15.812463355389898, + "grad_norm": 0.8281202912330627, + "learning_rate": 4.2096817420435516e-05, + "loss": 0.31825736999511717, + "step": 47200 + }, + { + "epoch": 15.845966998911132, + "grad_norm": 0.9243564009666443, + "learning_rate": 4.2080067001675045e-05, + "loss": 0.31478778839111327, + "step": 47300 + }, + { + "epoch": 15.879470642432365, + "grad_norm": 0.9413986206054688, + "learning_rate": 4.2063316582914574e-05, + "loss": 0.3212542343139648, + "step": 47400 + }, + { + "epoch": 15.912974285953597, + "grad_norm": 0.7720843553543091, + "learning_rate": 4.20465661641541e-05, + "loss": 0.3203662109375, + "step": 47500 + }, + { + "epoch": 15.946477929474831, + "grad_norm": 0.9300262331962585, + "learning_rate": 4.202981574539364e-05, + "loss": 0.31860551834106443, + "step": 47600 + }, + { + "epoch": 15.979981572996063, + "grad_norm": 0.9552218317985535, + "learning_rate": 4.201306532663317e-05, + "loss": 0.32005401611328127, + "step": 47700 + }, + { + "epoch": 16.01340145740849, + "grad_norm": 0.9004557132720947, + "learning_rate": 4.1996314907872696e-05, + "loss": 0.30930152893066404, + "step": 47800 + }, + { + "epoch": 16.046905100929727, + "grad_norm": 0.8685380220413208, + "learning_rate": 4.1979564489112225e-05, + "loss": 0.2990193176269531, + "step": 47900 + }, + { + "epoch": 16.08040874445096, + "grad_norm": 0.9357792735099792, + "learning_rate": 4.196281407035176e-05, + "loss": 0.3014987373352051, + "step": 48000 + }, + { + "epoch": 16.113912387972192, + "grad_norm": 0.8524284362792969, + "learning_rate": 4.1946063651591296e-05, + "loss": 0.29952068328857423, + "step": 48100 + }, + { + "epoch": 16.147416031493425, + "grad_norm": 0.8511279225349426, + "learning_rate": 4.1929313232830825e-05, + "loss": 0.2990330505371094, + "step": 48200 + }, + { + "epoch": 16.180919675014657, + "grad_norm": 0.9268020987510681, + "learning_rate": 4.191273031825796e-05, + "loss": 0.2993707275390625, + "step": 48300 + }, + { + "epoch": 16.21442331853589, + "grad_norm": 0.9302972555160522, + "learning_rate": 4.1895979899497486e-05, + "loss": 0.30082115173339846, + "step": 48400 + }, + { + "epoch": 16.247926962057125, + "grad_norm": 0.7517661452293396, + "learning_rate": 4.187922948073702e-05, + "loss": 0.29987972259521484, + "step": 48500 + }, + { + "epoch": 16.281430605578358, + "grad_norm": 0.9238623976707458, + "learning_rate": 4.186247906197655e-05, + "loss": 0.30625816345214846, + "step": 48600 + }, + { + "epoch": 16.31493424909959, + "grad_norm": 0.8699862360954285, + "learning_rate": 4.184572864321608e-05, + "loss": 0.3052105522155762, + "step": 48700 + }, + { + "epoch": 16.348437892620822, + "grad_norm": 0.8557946085929871, + "learning_rate": 4.182897822445561e-05, + "loss": 0.30761667251586916, + "step": 48800 + }, + { + "epoch": 16.381941536142055, + "grad_norm": 0.9344996213912964, + "learning_rate": 4.1812227805695144e-05, + "loss": 0.3052439498901367, + "step": 48900 + }, + { + "epoch": 16.415445179663287, + "grad_norm": 0.8814606070518494, + "learning_rate": 4.179547738693467e-05, + "loss": 0.3072672843933105, + "step": 49000 + }, + { + "epoch": 16.448948823184523, + "grad_norm": 0.847149670124054, + "learning_rate": 4.177872696817421e-05, + "loss": 0.3086087226867676, + "step": 49100 + }, + { + "epoch": 16.482452466705755, + "grad_norm": 0.8724634051322937, + "learning_rate": 4.176197654941374e-05, + "loss": 0.3087570571899414, + "step": 49200 + }, + { + "epoch": 16.515956110226988, + "grad_norm": 0.909691572189331, + "learning_rate": 4.174522613065327e-05, + "loss": 0.3070098495483398, + "step": 49300 + }, + { + "epoch": 16.54945975374822, + "grad_norm": 0.9307814240455627, + "learning_rate": 4.17284757118928e-05, + "loss": 0.305695915222168, + "step": 49400 + }, + { + "epoch": 16.582963397269452, + "grad_norm": 0.7699813842773438, + "learning_rate": 4.171172529313233e-05, + "loss": 0.30605703353881836, + "step": 49500 + }, + { + "epoch": 16.616467040790685, + "grad_norm": 1.0044174194335938, + "learning_rate": 4.169497487437186e-05, + "loss": 0.3084003257751465, + "step": 49600 + }, + { + "epoch": 16.64997068431192, + "grad_norm": 0.8166942000389099, + "learning_rate": 4.1678224455611395e-05, + "loss": 0.307757682800293, + "step": 49700 + }, + { + "epoch": 16.683474327833153, + "grad_norm": 0.8853956460952759, + "learning_rate": 4.1661474036850924e-05, + "loss": 0.3071472358703613, + "step": 49800 + }, + { + "epoch": 16.716977971354385, + "grad_norm": 0.8246440291404724, + "learning_rate": 4.164472361809045e-05, + "loss": 0.3088929557800293, + "step": 49900 + }, + { + "epoch": 16.750481614875618, + "grad_norm": 0.9108903408050537, + "learning_rate": 4.162797319932998e-05, + "loss": 0.3075083541870117, + "step": 50000 + }, + { + "epoch": 16.78398525839685, + "grad_norm": 0.9037117958068848, + "learning_rate": 4.161122278056952e-05, + "loss": 0.31276445388793944, + "step": 50100 + }, + { + "epoch": 16.817488901918082, + "grad_norm": 0.9087954759597778, + "learning_rate": 4.1594472361809046e-05, + "loss": 0.30919795989990234, + "step": 50200 + }, + { + "epoch": 16.85099254543932, + "grad_norm": Infinity, + "learning_rate": 4.157772194304858e-05, + "loss": 0.3113286209106445, + "step": 50300 + }, + { + "epoch": 16.88449618896055, + "grad_norm": 0.9613434076309204, + "learning_rate": 4.1561139028475714e-05, + "loss": 0.31487524032592773, + "step": 50400 + }, + { + "epoch": 16.917999832481783, + "grad_norm": 0.9458907246589661, + "learning_rate": 4.154438860971524e-05, + "loss": 0.3127643394470215, + "step": 50500 + }, + { + "epoch": 16.951503476003015, + "grad_norm": 0.9252173900604248, + "learning_rate": 4.152763819095478e-05, + "loss": 0.3084212112426758, + "step": 50600 + }, + { + "epoch": 16.985007119524248, + "grad_norm": 0.9816356897354126, + "learning_rate": 4.151088777219431e-05, + "loss": 0.31181251525878906, + "step": 50700 + }, + { + "epoch": 17.01842700393668, + "grad_norm": 0.8120167851448059, + "learning_rate": 4.1494137353433836e-05, + "loss": 0.2999544906616211, + "step": 50800 + }, + { + "epoch": 17.05193064745791, + "grad_norm": 0.7779452800750732, + "learning_rate": 4.1477386934673365e-05, + "loss": 0.2881363487243652, + "step": 50900 + }, + { + "epoch": 17.085434290979144, + "grad_norm": 0.8800045847892761, + "learning_rate": 4.14606365159129e-05, + "loss": 0.29184545516967775, + "step": 51000 + }, + { + "epoch": 17.118937934500376, + "grad_norm": 0.8309177160263062, + "learning_rate": 4.144388609715243e-05, + "loss": 0.293133430480957, + "step": 51100 + }, + { + "epoch": 17.15244157802161, + "grad_norm": 0.8549261093139648, + "learning_rate": 4.142713567839196e-05, + "loss": 0.29502378463745116, + "step": 51200 + }, + { + "epoch": 17.18594522154284, + "grad_norm": 0.9220601916313171, + "learning_rate": 4.141038525963149e-05, + "loss": 0.29487173080444334, + "step": 51300 + }, + { + "epoch": 17.219448865064077, + "grad_norm": 0.8818517327308655, + "learning_rate": 4.139363484087103e-05, + "loss": 0.2922089767456055, + "step": 51400 + }, + { + "epoch": 17.25295250858531, + "grad_norm": 0.9325298070907593, + "learning_rate": 4.137688442211056e-05, + "loss": 0.2953068351745605, + "step": 51500 + }, + { + "epoch": 17.286456152106542, + "grad_norm": 0.842454731464386, + "learning_rate": 4.136013400335009e-05, + "loss": 0.29264474868774415, + "step": 51600 + }, + { + "epoch": 17.319959795627774, + "grad_norm": 0.9482097029685974, + "learning_rate": 4.1343383584589616e-05, + "loss": 0.2976564979553223, + "step": 51700 + }, + { + "epoch": 17.353463439149007, + "grad_norm": 0.9430213570594788, + "learning_rate": 4.132663316582915e-05, + "loss": 0.29929805755615235, + "step": 51800 + }, + { + "epoch": 17.38696708267024, + "grad_norm": 0.9468767642974854, + "learning_rate": 4.130988274706868e-05, + "loss": 0.2957676124572754, + "step": 51900 + }, + { + "epoch": 17.420470726191475, + "grad_norm": 0.9603669047355652, + "learning_rate": 4.129313232830821e-05, + "loss": 0.2980274963378906, + "step": 52000 + }, + { + "epoch": 17.453974369712707, + "grad_norm": 0.8796602487564087, + "learning_rate": 4.127638190954774e-05, + "loss": 0.3016574096679687, + "step": 52100 + }, + { + "epoch": 17.48747801323394, + "grad_norm": 0.9244174957275391, + "learning_rate": 4.125963149078727e-05, + "loss": 0.2988929748535156, + "step": 52200 + }, + { + "epoch": 17.520981656755172, + "grad_norm": 0.7938122749328613, + "learning_rate": 4.12428810720268e-05, + "loss": 0.29994075775146484, + "step": 52300 + }, + { + "epoch": 17.554485300276404, + "grad_norm": 0.9149840474128723, + "learning_rate": 4.122629815745394e-05, + "loss": 0.29651493072509766, + "step": 52400 + }, + { + "epoch": 17.587988943797637, + "grad_norm": 0.96629399061203, + "learning_rate": 4.120954773869347e-05, + "loss": 0.30109855651855466, + "step": 52500 + }, + { + "epoch": 17.621492587318873, + "grad_norm": 0.8029501438140869, + "learning_rate": 4.1192797319933e-05, + "loss": 0.3032656478881836, + "step": 52600 + }, + { + "epoch": 17.654996230840105, + "grad_norm": 0.831659734249115, + "learning_rate": 4.1176046901172535e-05, + "loss": 0.2977634048461914, + "step": 52700 + }, + { + "epoch": 17.688499874361337, + "grad_norm": 0.8770350813865662, + "learning_rate": 4.1159296482412063e-05, + "loss": 0.3002130317687988, + "step": 52800 + }, + { + "epoch": 17.72200351788257, + "grad_norm": 0.9197613596916199, + "learning_rate": 4.114254606365159e-05, + "loss": 0.30171897888183596, + "step": 52900 + }, + { + "epoch": 17.755507161403802, + "grad_norm": 0.8716971278190613, + "learning_rate": 4.112579564489112e-05, + "loss": 0.3020934104919434, + "step": 53000 + }, + { + "epoch": 17.789010804925034, + "grad_norm": 0.9348130226135254, + "learning_rate": 4.110904522613066e-05, + "loss": 0.30243810653686526, + "step": 53100 + }, + { + "epoch": 17.82251444844627, + "grad_norm": 1.0112886428833008, + "learning_rate": 4.1092294807370185e-05, + "loss": 0.3036368370056152, + "step": 53200 + }, + { + "epoch": 17.856018091967503, + "grad_norm": 0.9333941340446472, + "learning_rate": 4.1075544388609714e-05, + "loss": 0.30571670532226564, + "step": 53300 + }, + { + "epoch": 17.889521735488735, + "grad_norm": 0.8895190358161926, + "learning_rate": 4.105879396984924e-05, + "loss": 0.3056245040893555, + "step": 53400 + }, + { + "epoch": 17.923025379009967, + "grad_norm": 0.953789472579956, + "learning_rate": 4.104204355108878e-05, + "loss": 0.30313159942626955, + "step": 53500 + }, + { + "epoch": 17.9565290225312, + "grad_norm": 0.8885256052017212, + "learning_rate": 4.102529313232831e-05, + "loss": 0.3018374061584473, + "step": 53600 + }, + { + "epoch": 17.990032666052432, + "grad_norm": 1.043843388557434, + "learning_rate": 4.100854271356784e-05, + "loss": 0.30093835830688476, + "step": 53700 + }, + { + "epoch": 18.023452550464864, + "grad_norm": 0.8944602012634277, + "learning_rate": 4.099179229480737e-05, + "loss": 0.28485956192016604, + "step": 53800 + }, + { + "epoch": 18.056956193986096, + "grad_norm": 0.9355315566062927, + "learning_rate": 4.097504187604691e-05, + "loss": 0.28318214416503906, + "step": 53900 + }, + { + "epoch": 18.09045983750733, + "grad_norm": 0.7996422052383423, + "learning_rate": 4.0958291457286436e-05, + "loss": 0.2806725120544434, + "step": 54000 + }, + { + "epoch": 18.12396348102856, + "grad_norm": 0.9255834817886353, + "learning_rate": 4.0941541038525965e-05, + "loss": 0.2835847473144531, + "step": 54100 + }, + { + "epoch": 18.157467124549793, + "grad_norm": 0.9625722169876099, + "learning_rate": 4.0924790619765494e-05, + "loss": 0.28318588256835936, + "step": 54200 + }, + { + "epoch": 18.19097076807103, + "grad_norm": 0.9195216298103333, + "learning_rate": 4.090804020100503e-05, + "loss": 0.2873989105224609, + "step": 54300 + }, + { + "epoch": 18.22447441159226, + "grad_norm": 0.9396908283233643, + "learning_rate": 4.089145728643216e-05, + "loss": 0.2853095054626465, + "step": 54400 + }, + { + "epoch": 18.257978055113494, + "grad_norm": 0.8911498188972473, + "learning_rate": 4.087470686767169e-05, + "loss": 0.2902779769897461, + "step": 54500 + }, + { + "epoch": 18.291481698634726, + "grad_norm": 0.995733916759491, + "learning_rate": 4.085795644891122e-05, + "loss": 0.28672319412231445, + "step": 54600 + }, + { + "epoch": 18.32498534215596, + "grad_norm": 1.0607621669769287, + "learning_rate": 4.0841206030150755e-05, + "loss": 0.288260498046875, + "step": 54700 + }, + { + "epoch": 18.35848898567719, + "grad_norm": 0.9770358204841614, + "learning_rate": 4.082445561139029e-05, + "loss": 0.2871124267578125, + "step": 54800 + }, + { + "epoch": 18.391992629198427, + "grad_norm": 0.7948865294456482, + "learning_rate": 4.080770519262982e-05, + "loss": 0.2901685333251953, + "step": 54900 + }, + { + "epoch": 18.42549627271966, + "grad_norm": 0.829538106918335, + "learning_rate": 4.079095477386935e-05, + "loss": 0.29097063064575196, + "step": 55000 + }, + { + "epoch": 18.45899991624089, + "grad_norm": 0.972334086894989, + "learning_rate": 4.077420435510888e-05, + "loss": 0.2907312965393066, + "step": 55100 + }, + { + "epoch": 18.492503559762124, + "grad_norm": 1.0088402032852173, + "learning_rate": 4.075745393634841e-05, + "loss": 0.2925748634338379, + "step": 55200 + }, + { + "epoch": 18.526007203283356, + "grad_norm": 1.0144375562667847, + "learning_rate": 4.074070351758794e-05, + "loss": 0.29165184020996093, + "step": 55300 + }, + { + "epoch": 18.55951084680459, + "grad_norm": 0.9276221394538879, + "learning_rate": 4.072395309882747e-05, + "loss": 0.2919579887390137, + "step": 55400 + }, + { + "epoch": 18.593014490325825, + "grad_norm": 0.9088070392608643, + "learning_rate": 4.0707202680067e-05, + "loss": 0.29476572036743165, + "step": 55500 + }, + { + "epoch": 18.626518133847057, + "grad_norm": 0.8358734846115112, + "learning_rate": 4.0690452261306535e-05, + "loss": 0.29323875427246093, + "step": 55600 + }, + { + "epoch": 18.66002177736829, + "grad_norm": 0.9234775304794312, + "learning_rate": 4.0673701842546064e-05, + "loss": 0.295458984375, + "step": 55700 + }, + { + "epoch": 18.69352542088952, + "grad_norm": 1.033413052558899, + "learning_rate": 4.065695142378559e-05, + "loss": 0.29363622665405276, + "step": 55800 + }, + { + "epoch": 18.727029064410754, + "grad_norm": 0.8682520389556885, + "learning_rate": 4.064020100502513e-05, + "loss": 0.2977585220336914, + "step": 55900 + }, + { + "epoch": 18.760532707931986, + "grad_norm": 1.0640672445297241, + "learning_rate": 4.0623450586264664e-05, + "loss": 0.2952461051940918, + "step": 56000 + }, + { + "epoch": 18.794036351453222, + "grad_norm": 0.9460969567298889, + "learning_rate": 4.060670016750419e-05, + "loss": 0.2973412322998047, + "step": 56100 + }, + { + "epoch": 18.827539994974455, + "grad_norm": 0.9299043416976929, + "learning_rate": 4.058994974874372e-05, + "loss": 0.29550174713134764, + "step": 56200 + }, + { + "epoch": 18.861043638495687, + "grad_norm": 1.0823304653167725, + "learning_rate": 4.057319932998325e-05, + "loss": 0.2938914680480957, + "step": 56300 + }, + { + "epoch": 18.89454728201692, + "grad_norm": 0.9436834454536438, + "learning_rate": 4.055661641541039e-05, + "loss": 0.29774511337280274, + "step": 56400 + }, + { + "epoch": 18.92805092553815, + "grad_norm": 0.9670146107673645, + "learning_rate": 4.053986599664992e-05, + "loss": 0.29711448669433593, + "step": 56500 + }, + { + "epoch": 18.961554569059384, + "grad_norm": 0.971251368522644, + "learning_rate": 4.052311557788945e-05, + "loss": 0.29909347534179687, + "step": 56600 + }, + { + "epoch": 18.995058212580616, + "grad_norm": 0.8543409705162048, + "learning_rate": 4.0506365159128976e-05, + "loss": 0.29678007125854494, + "step": 56700 + }, + { + "epoch": 19.028478096993048, + "grad_norm": 0.9036636352539062, + "learning_rate": 4.048961474036851e-05, + "loss": 0.2788318824768066, + "step": 56800 + }, + { + "epoch": 19.06198174051428, + "grad_norm": 1.0365597009658813, + "learning_rate": 4.047286432160804e-05, + "loss": 0.2757110023498535, + "step": 56900 + }, + { + "epoch": 19.095485384035513, + "grad_norm": 0.8653129935264587, + "learning_rate": 4.0456113902847576e-05, + "loss": 0.2768836402893066, + "step": 57000 + }, + { + "epoch": 19.128989027556745, + "grad_norm": 0.8460621237754822, + "learning_rate": 4.0439363484087105e-05, + "loss": 0.2755991363525391, + "step": 57100 + }, + { + "epoch": 19.16249267107798, + "grad_norm": 0.8957028985023499, + "learning_rate": 4.0422613065326634e-05, + "loss": 0.27972606658935545, + "step": 57200 + }, + { + "epoch": 19.195996314599213, + "grad_norm": 0.9295471906661987, + "learning_rate": 4.040586264656617e-05, + "loss": 0.2782594871520996, + "step": 57300 + }, + { + "epoch": 19.229499958120446, + "grad_norm": 0.8899731636047363, + "learning_rate": 4.03891122278057e-05, + "loss": 0.2778139877319336, + "step": 57400 + }, + { + "epoch": 19.263003601641678, + "grad_norm": 0.9683830142021179, + "learning_rate": 4.037236180904523e-05, + "loss": 0.28136295318603516, + "step": 57500 + }, + { + "epoch": 19.29650724516291, + "grad_norm": 0.8920564651489258, + "learning_rate": 4.0355611390284756e-05, + "loss": 0.28040409088134766, + "step": 57600 + }, + { + "epoch": 19.330010888684143, + "grad_norm": 0.9366307854652405, + "learning_rate": 4.033886097152429e-05, + "loss": 0.28461326599121095, + "step": 57700 + }, + { + "epoch": 19.36351453220538, + "grad_norm": 0.9464457035064697, + "learning_rate": 4.032211055276382e-05, + "loss": 0.28297006607055664, + "step": 57800 + }, + { + "epoch": 19.39701817572661, + "grad_norm": 1.0350395441055298, + "learning_rate": 4.030536013400335e-05, + "loss": 0.2860834503173828, + "step": 57900 + }, + { + "epoch": 19.430521819247843, + "grad_norm": 0.8994850516319275, + "learning_rate": 4.028860971524288e-05, + "loss": 0.28455873489379885, + "step": 58000 + }, + { + "epoch": 19.464025462769076, + "grad_norm": 1.0085395574569702, + "learning_rate": 4.0271859296482414e-05, + "loss": 0.28580081939697266, + "step": 58100 + }, + { + "epoch": 19.497529106290308, + "grad_norm": 0.9378731846809387, + "learning_rate": 4.025510887772195e-05, + "loss": 0.28492233276367185, + "step": 58200 + }, + { + "epoch": 19.53103274981154, + "grad_norm": 1.1039483547210693, + "learning_rate": 4.023835845896148e-05, + "loss": 0.28393068313598635, + "step": 58300 + }, + { + "epoch": 19.564536393332776, + "grad_norm": 1.0000792741775513, + "learning_rate": 4.022177554438861e-05, + "loss": 0.28428964614868163, + "step": 58400 + }, + { + "epoch": 19.59804003685401, + "grad_norm": 0.9822189211845398, + "learning_rate": 4.0205025125628146e-05, + "loss": 0.28679338455200193, + "step": 58500 + }, + { + "epoch": 19.63154368037524, + "grad_norm": 1.008216142654419, + "learning_rate": 4.0188274706867675e-05, + "loss": 0.2877239990234375, + "step": 58600 + }, + { + "epoch": 19.665047323896474, + "grad_norm": 0.8709893822669983, + "learning_rate": 4.0171524288107204e-05, + "loss": 0.28736095428466796, + "step": 58700 + }, + { + "epoch": 19.698550967417706, + "grad_norm": 1.0486055612564087, + "learning_rate": 4.015477386934673e-05, + "loss": 0.2875706672668457, + "step": 58800 + }, + { + "epoch": 19.73205461093894, + "grad_norm": 0.9718714952468872, + "learning_rate": 4.013802345058627e-05, + "loss": 0.2887088394165039, + "step": 58900 + }, + { + "epoch": 19.765558254460174, + "grad_norm": 0.9496104717254639, + "learning_rate": 4.01212730318258e-05, + "loss": 0.2863414573669434, + "step": 59000 + }, + { + "epoch": 19.799061897981407, + "grad_norm": 1.0247166156768799, + "learning_rate": 4.0104522613065326e-05, + "loss": 0.287678165435791, + "step": 59100 + }, + { + "epoch": 19.83256554150264, + "grad_norm": 0.9370303153991699, + "learning_rate": 4.008777219430486e-05, + "loss": 0.28977474212646487, + "step": 59200 + }, + { + "epoch": 19.86606918502387, + "grad_norm": 0.8732765316963196, + "learning_rate": 4.007102177554439e-05, + "loss": 0.2899479293823242, + "step": 59300 + }, + { + "epoch": 19.899572828545104, + "grad_norm": 0.9661251306533813, + "learning_rate": 4.0054271356783926e-05, + "loss": 0.28924821853637694, + "step": 59400 + }, + { + "epoch": 19.933076472066336, + "grad_norm": 0.9300135374069214, + "learning_rate": 4.0037520938023455e-05, + "loss": 0.2898877716064453, + "step": 59500 + }, + { + "epoch": 19.96658011558757, + "grad_norm": 1.0985535383224487, + "learning_rate": 4.0020770519262983e-05, + "loss": 0.28800737380981445, + "step": 59600 + }, + { + "epoch": 20.0, + "grad_norm": 1.0769129991531372, + "learning_rate": 4.000402010050251e-05, + "loss": 0.2884260940551758, + "step": 59700 + }, + { + "epoch": 20.033503643521232, + "grad_norm": 0.9619253277778625, + "learning_rate": 3.998726968174205e-05, + "loss": 0.2721578788757324, + "step": 59800 + }, + { + "epoch": 20.067007287042465, + "grad_norm": 0.9351584911346436, + "learning_rate": 3.997051926298158e-05, + "loss": 0.2715591049194336, + "step": 59900 + }, + { + "epoch": 20.100510930563697, + "grad_norm": 0.957760214805603, + "learning_rate": 3.9953768844221106e-05, + "loss": 0.2707101821899414, + "step": 60000 + }, + { + "epoch": 20.134014574084933, + "grad_norm": 0.8414269089698792, + "learning_rate": 3.9937018425460634e-05, + "loss": 0.27344297409057616, + "step": 60100 + }, + { + "epoch": 20.167518217606165, + "grad_norm": 1.0471901893615723, + "learning_rate": 3.992026800670017e-05, + "loss": 0.2716003227233887, + "step": 60200 + }, + { + "epoch": 20.201021861127398, + "grad_norm": 0.9024125933647156, + "learning_rate": 3.99035175879397e-05, + "loss": 0.27117115020751953, + "step": 60300 + }, + { + "epoch": 20.23452550464863, + "grad_norm": 0.8774855136871338, + "learning_rate": 3.988693467336684e-05, + "loss": 0.2748865509033203, + "step": 60400 + }, + { + "epoch": 20.268029148169862, + "grad_norm": 0.9664554595947266, + "learning_rate": 3.987018425460637e-05, + "loss": 0.27406461715698244, + "step": 60500 + }, + { + "epoch": 20.301532791691095, + "grad_norm": 1.035376787185669, + "learning_rate": 3.98534338358459e-05, + "loss": 0.2735789489746094, + "step": 60600 + }, + { + "epoch": 20.33503643521233, + "grad_norm": 0.9546007513999939, + "learning_rate": 3.983668341708543e-05, + "loss": 0.2764925956726074, + "step": 60700 + }, + { + "epoch": 20.368540078733563, + "grad_norm": 1.0165990591049194, + "learning_rate": 3.981993299832496e-05, + "loss": 0.27297565460205075, + "step": 60800 + }, + { + "epoch": 20.402043722254795, + "grad_norm": 0.9471421241760254, + "learning_rate": 3.980318257956449e-05, + "loss": 0.27823368072509763, + "step": 60900 + }, + { + "epoch": 20.435547365776028, + "grad_norm": 0.9725298285484314, + "learning_rate": 3.9786432160804025e-05, + "loss": 0.2764093208312988, + "step": 61000 + }, + { + "epoch": 20.46905100929726, + "grad_norm": 0.8394715189933777, + "learning_rate": 3.976968174204355e-05, + "loss": 0.2772574996948242, + "step": 61100 + }, + { + "epoch": 20.502554652818493, + "grad_norm": 0.8922716975212097, + "learning_rate": 3.975293132328308e-05, + "loss": 0.27750770568847655, + "step": 61200 + }, + { + "epoch": 20.53605829633973, + "grad_norm": 0.9844845533370972, + "learning_rate": 3.973618090452261e-05, + "loss": 0.2779910278320312, + "step": 61300 + }, + { + "epoch": 20.56956193986096, + "grad_norm": 0.8804232478141785, + "learning_rate": 3.971943048576215e-05, + "loss": 0.2776468086242676, + "step": 61400 + }, + { + "epoch": 20.603065583382193, + "grad_norm": 0.9889972805976868, + "learning_rate": 3.970268006700168e-05, + "loss": 0.27890708923339846, + "step": 61500 + }, + { + "epoch": 20.636569226903426, + "grad_norm": 0.980644166469574, + "learning_rate": 3.968592964824121e-05, + "loss": 0.28234588623046875, + "step": 61600 + }, + { + "epoch": 20.670072870424658, + "grad_norm": 0.9484408497810364, + "learning_rate": 3.966917922948074e-05, + "loss": 0.28126981735229495, + "step": 61700 + }, + { + "epoch": 20.70357651394589, + "grad_norm": 1.055678367614746, + "learning_rate": 3.965242881072027e-05, + "loss": 0.2830071067810059, + "step": 61800 + }, + { + "epoch": 20.737080157467126, + "grad_norm": 0.8886085748672485, + "learning_rate": 3.9635678391959804e-05, + "loss": 0.27813196182250977, + "step": 61900 + }, + { + "epoch": 20.77058380098836, + "grad_norm": 1.0629770755767822, + "learning_rate": 3.961892797319933e-05, + "loss": 0.2837041664123535, + "step": 62000 + }, + { + "epoch": 20.80408744450959, + "grad_norm": 0.8154080510139465, + "learning_rate": 3.960217755443886e-05, + "loss": 0.2794221115112305, + "step": 62100 + }, + { + "epoch": 20.837591088030823, + "grad_norm": 0.9643964171409607, + "learning_rate": 3.958542713567839e-05, + "loss": 0.2807983207702637, + "step": 62200 + }, + { + "epoch": 20.871094731552056, + "grad_norm": 1.0410659313201904, + "learning_rate": 3.9568676716917926e-05, + "loss": 0.27797990798950195, + "step": 62300 + }, + { + "epoch": 20.904598375073288, + "grad_norm": 0.9507243633270264, + "learning_rate": 3.955209380234506e-05, + "loss": 0.2836384010314941, + "step": 62400 + }, + { + "epoch": 20.93810201859452, + "grad_norm": 1.0288045406341553, + "learning_rate": 3.953534338358459e-05, + "loss": 0.28449560165405274, + "step": 62500 + }, + { + "epoch": 20.971605662115756, + "grad_norm": 0.9709306359291077, + "learning_rate": 3.951859296482412e-05, + "loss": 0.282686824798584, + "step": 62600 + }, + { + "epoch": 21.005025546528184, + "grad_norm": 0.8715474009513855, + "learning_rate": 3.950184254606365e-05, + "loss": 0.2808470153808594, + "step": 62700 + }, + { + "epoch": 21.038529190049417, + "grad_norm": 0.9847482442855835, + "learning_rate": 3.948509212730319e-05, + "loss": 0.2635519218444824, + "step": 62800 + }, + { + "epoch": 21.07203283357065, + "grad_norm": 0.945732057094574, + "learning_rate": 3.9468341708542717e-05, + "loss": 0.26160152435302736, + "step": 62900 + }, + { + "epoch": 21.105536477091885, + "grad_norm": 0.9310206174850464, + "learning_rate": 3.945175879396985e-05, + "loss": 0.26616928100585935, + "step": 63000 + }, + { + "epoch": 21.139040120613117, + "grad_norm": 0.8321387767791748, + "learning_rate": 3.9435008375209385e-05, + "loss": 0.2665995216369629, + "step": 63100 + }, + { + "epoch": 21.17254376413435, + "grad_norm": 0.9247589707374573, + "learning_rate": 3.9418257956448913e-05, + "loss": 0.2642600440979004, + "step": 63200 + }, + { + "epoch": 21.206047407655582, + "grad_norm": 0.9166206121444702, + "learning_rate": 3.940150753768844e-05, + "loss": 0.2661565208435059, + "step": 63300 + }, + { + "epoch": 21.239551051176814, + "grad_norm": 1.0146381855010986, + "learning_rate": 3.938475711892797e-05, + "loss": 0.26595497131347656, + "step": 63400 + }, + { + "epoch": 21.273054694698047, + "grad_norm": 0.8782115578651428, + "learning_rate": 3.936800670016751e-05, + "loss": 0.2683505821228027, + "step": 63500 + }, + { + "epoch": 21.306558338219283, + "grad_norm": 0.8348855376243591, + "learning_rate": 3.935125628140704e-05, + "loss": 0.27002309799194335, + "step": 63600 + }, + { + "epoch": 21.340061981740515, + "grad_norm": 1.0207946300506592, + "learning_rate": 3.933450586264657e-05, + "loss": 0.2727695083618164, + "step": 63700 + }, + { + "epoch": 21.373565625261747, + "grad_norm": 0.9709821939468384, + "learning_rate": 3.93177554438861e-05, + "loss": 0.2713334655761719, + "step": 63800 + }, + { + "epoch": 21.40706926878298, + "grad_norm": 0.9931967258453369, + "learning_rate": 3.930100502512563e-05, + "loss": 0.2715752029418945, + "step": 63900 + }, + { + "epoch": 21.440572912304212, + "grad_norm": 1.002032995223999, + "learning_rate": 3.9284254606365164e-05, + "loss": 0.27039655685424807, + "step": 64000 + }, + { + "epoch": 21.474076555825445, + "grad_norm": 1.011479377746582, + "learning_rate": 3.926750418760469e-05, + "loss": 0.27180171966552735, + "step": 64100 + }, + { + "epoch": 21.50758019934668, + "grad_norm": 0.8830493092536926, + "learning_rate": 3.925075376884422e-05, + "loss": 0.27189735412597654, + "step": 64200 + }, + { + "epoch": 21.541083842867913, + "grad_norm": 0.957878828048706, + "learning_rate": 3.923400335008375e-05, + "loss": 0.27135616302490234, + "step": 64300 + }, + { + "epoch": 21.574587486389145, + "grad_norm": 0.9988912343978882, + "learning_rate": 3.9217252931323286e-05, + "loss": 0.2725925064086914, + "step": 64400 + }, + { + "epoch": 21.608091129910378, + "grad_norm": 0.9891326427459717, + "learning_rate": 3.9200502512562815e-05, + "loss": 0.27440677642822264, + "step": 64500 + }, + { + "epoch": 21.64159477343161, + "grad_norm": 1.0808324813842773, + "learning_rate": 3.9183752093802344e-05, + "loss": 0.27411041259765623, + "step": 64600 + }, + { + "epoch": 21.675098416952842, + "grad_norm": 0.9373248219490051, + "learning_rate": 3.916700167504187e-05, + "loss": 0.2749940490722656, + "step": 64700 + }, + { + "epoch": 21.708602060474078, + "grad_norm": 1.165182113647461, + "learning_rate": 3.915025125628141e-05, + "loss": 0.27408443450927733, + "step": 64800 + }, + { + "epoch": 21.74210570399531, + "grad_norm": 0.9180405139923096, + "learning_rate": 3.9133500837520944e-05, + "loss": 0.27541778564453123, + "step": 64900 + }, + { + "epoch": 21.775609347516543, + "grad_norm": 1.0415167808532715, + "learning_rate": 3.911675041876047e-05, + "loss": 0.2752027893066406, + "step": 65000 + }, + { + "epoch": 21.809112991037775, + "grad_norm": 0.996279239654541, + "learning_rate": 3.91e-05, + "loss": 0.27856874465942383, + "step": 65100 + }, + { + "epoch": 21.842616634559008, + "grad_norm": 0.8467832207679749, + "learning_rate": 3.908324958123953e-05, + "loss": 0.2744846153259277, + "step": 65200 + }, + { + "epoch": 21.87612027808024, + "grad_norm": 0.9609348177909851, + "learning_rate": 3.9066499162479066e-05, + "loss": 0.27501155853271486, + "step": 65300 + }, + { + "epoch": 21.909623921601476, + "grad_norm": 1.0232717990875244, + "learning_rate": 3.9049748743718595e-05, + "loss": 0.2766411590576172, + "step": 65400 + }, + { + "epoch": 21.94312756512271, + "grad_norm": 0.9764308333396912, + "learning_rate": 3.9032998324958124e-05, + "loss": 0.27579292297363284, + "step": 65500 + }, + { + "epoch": 21.97663120864394, + "grad_norm": 0.8772796392440796, + "learning_rate": 3.901624790619766e-05, + "loss": 0.27892873764038084, + "step": 65600 + }, + { + "epoch": 22.01005109305637, + "grad_norm": 0.9070359468460083, + "learning_rate": 3.899949748743719e-05, + "loss": 0.27117897033691407, + "step": 65700 + }, + { + "epoch": 22.043554736577605, + "grad_norm": 0.9539000988006592, + "learning_rate": 3.898274706867672e-05, + "loss": 0.2588020706176758, + "step": 65800 + }, + { + "epoch": 22.077058380098837, + "grad_norm": 0.7974834442138672, + "learning_rate": 3.8965996649916246e-05, + "loss": 0.2590653610229492, + "step": 65900 + }, + { + "epoch": 22.11056202362007, + "grad_norm": 0.9373714327812195, + "learning_rate": 3.894924623115578e-05, + "loss": 0.25843637466430663, + "step": 66000 + }, + { + "epoch": 22.1440656671413, + "grad_norm": 0.9088506698608398, + "learning_rate": 3.893249581239532e-05, + "loss": 0.2609646987915039, + "step": 66100 + }, + { + "epoch": 22.177569310662534, + "grad_norm": 0.7560039162635803, + "learning_rate": 3.8915745393634846e-05, + "loss": 0.25976266860961916, + "step": 66200 + }, + { + "epoch": 22.211072954183766, + "grad_norm": 1.0187093019485474, + "learning_rate": 3.8898994974874375e-05, + "loss": 0.2626813507080078, + "step": 66300 + }, + { + "epoch": 22.244576597705, + "grad_norm": 0.9864270687103271, + "learning_rate": 3.8882244556113904e-05, + "loss": 0.26082069396972657, + "step": 66400 + }, + { + "epoch": 22.278080241226235, + "grad_norm": 0.9238985776901245, + "learning_rate": 3.886549413735344e-05, + "loss": 0.26303247451782225, + "step": 66500 + }, + { + "epoch": 22.311583884747467, + "grad_norm": 1.06230628490448, + "learning_rate": 3.884874371859297e-05, + "loss": 0.2636404609680176, + "step": 66600 + }, + { + "epoch": 22.3450875282687, + "grad_norm": 0.8938685655593872, + "learning_rate": 3.88319932998325e-05, + "loss": 0.26432344436645505, + "step": 66700 + }, + { + "epoch": 22.37859117178993, + "grad_norm": 0.9398422837257385, + "learning_rate": 3.8815242881072026e-05, + "loss": 0.2664291763305664, + "step": 66800 + }, + { + "epoch": 22.412094815311164, + "grad_norm": 0.9452701210975647, + "learning_rate": 3.879849246231156e-05, + "loss": 0.26500213623046875, + "step": 66900 + }, + { + "epoch": 22.445598458832396, + "grad_norm": 1.0754152536392212, + "learning_rate": 3.8781909547738694e-05, + "loss": 0.266211051940918, + "step": 67000 + }, + { + "epoch": 22.479102102353632, + "grad_norm": 0.966921329498291, + "learning_rate": 3.876515912897823e-05, + "loss": 0.26374603271484376, + "step": 67100 + }, + { + "epoch": 22.512605745874865, + "grad_norm": 0.979242742061615, + "learning_rate": 3.874840871021776e-05, + "loss": 0.266760082244873, + "step": 67200 + }, + { + "epoch": 22.546109389396097, + "grad_norm": 1.169141173362732, + "learning_rate": 3.873165829145729e-05, + "loss": 0.2670201873779297, + "step": 67300 + }, + { + "epoch": 22.57961303291733, + "grad_norm": 0.9599239230155945, + "learning_rate": 3.871490787269682e-05, + "loss": 0.2680745315551758, + "step": 67400 + }, + { + "epoch": 22.613116676438562, + "grad_norm": 1.0141677856445312, + "learning_rate": 3.869815745393635e-05, + "loss": 0.26869884490966794, + "step": 67500 + }, + { + "epoch": 22.646620319959794, + "grad_norm": 0.9633665084838867, + "learning_rate": 3.868140703517588e-05, + "loss": 0.26763187408447264, + "step": 67600 + }, + { + "epoch": 22.68012396348103, + "grad_norm": 1.046339750289917, + "learning_rate": 3.866465661641541e-05, + "loss": 0.271055965423584, + "step": 67700 + }, + { + "epoch": 22.713627607002262, + "grad_norm": 1.0029908418655396, + "learning_rate": 3.8647906197654945e-05, + "loss": 0.26755489349365236, + "step": 67800 + }, + { + "epoch": 22.747131250523495, + "grad_norm": 0.9917793273925781, + "learning_rate": 3.8631155778894473e-05, + "loss": 0.26893938064575196, + "step": 67900 + }, + { + "epoch": 22.780634894044727, + "grad_norm": 0.921280026435852, + "learning_rate": 3.8614405360134e-05, + "loss": 0.26891294479370115, + "step": 68000 + }, + { + "epoch": 22.81413853756596, + "grad_norm": 0.9776479601860046, + "learning_rate": 3.859765494137353e-05, + "loss": 0.2671005058288574, + "step": 68100 + }, + { + "epoch": 22.847642181087192, + "grad_norm": 0.8705649375915527, + "learning_rate": 3.858090452261307e-05, + "loss": 0.2690028762817383, + "step": 68200 + }, + { + "epoch": 22.881145824608428, + "grad_norm": 0.8992595076560974, + "learning_rate": 3.8564154103852595e-05, + "loss": 0.26913272857666015, + "step": 68300 + }, + { + "epoch": 22.91464946812966, + "grad_norm": 0.8897244334220886, + "learning_rate": 3.854740368509213e-05, + "loss": 0.27021236419677735, + "step": 68400 + }, + { + "epoch": 22.948153111650893, + "grad_norm": 0.9646697044372559, + "learning_rate": 3.853065326633166e-05, + "loss": 0.27057441711425784, + "step": 68500 + }, + { + "epoch": 22.981656755172125, + "grad_norm": 0.9705012440681458, + "learning_rate": 3.8513902847571195e-05, + "loss": 0.27003257751464843, + "step": 68600 + }, + { + "epoch": 23.015076639584557, + "grad_norm": 0.9501924514770508, + "learning_rate": 3.8497152428810724e-05, + "loss": 0.2624375915527344, + "step": 68700 + }, + { + "epoch": 23.04858028310579, + "grad_norm": 0.9246262311935425, + "learning_rate": 3.848040201005025e-05, + "loss": 0.2510771560668945, + "step": 68800 + }, + { + "epoch": 23.08208392662702, + "grad_norm": 1.0363575220108032, + "learning_rate": 3.846365159128978e-05, + "loss": 0.2513089370727539, + "step": 68900 + }, + { + "epoch": 23.115587570148254, + "grad_norm": 1.0965619087219238, + "learning_rate": 3.844706867671692e-05, + "loss": 0.2531783103942871, + "step": 69000 + }, + { + "epoch": 23.149091213669486, + "grad_norm": 0.7851601839065552, + "learning_rate": 3.843031825795645e-05, + "loss": 0.25430681228637697, + "step": 69100 + }, + { + "epoch": 23.18259485719072, + "grad_norm": 0.8714056611061096, + "learning_rate": 3.841356783919598e-05, + "loss": 0.2563682746887207, + "step": 69200 + }, + { + "epoch": 23.21609850071195, + "grad_norm": 0.9404228925704956, + "learning_rate": 3.839681742043551e-05, + "loss": 0.25634672164916994, + "step": 69300 + }, + { + "epoch": 23.249602144233187, + "grad_norm": 1.04526948928833, + "learning_rate": 3.838006700167504e-05, + "loss": 0.2558123779296875, + "step": 69400 + }, + { + "epoch": 23.28310578775442, + "grad_norm": 1.0145646333694458, + "learning_rate": 3.836331658291458e-05, + "loss": 0.25761409759521486, + "step": 69500 + }, + { + "epoch": 23.31660943127565, + "grad_norm": 1.0709373950958252, + "learning_rate": 3.834656616415411e-05, + "loss": 0.25936553955078123, + "step": 69600 + }, + { + "epoch": 23.350113074796884, + "grad_norm": 1.0656367540359497, + "learning_rate": 3.8329815745393637e-05, + "loss": 0.25993459701538085, + "step": 69700 + }, + { + "epoch": 23.383616718318116, + "grad_norm": 0.9517690539360046, + "learning_rate": 3.8313065326633165e-05, + "loss": 0.2593793296813965, + "step": 69800 + }, + { + "epoch": 23.41712036183935, + "grad_norm": 0.9651705026626587, + "learning_rate": 3.82963149078727e-05, + "loss": 0.2592854309082031, + "step": 69900 + }, + { + "epoch": 23.450624005360584, + "grad_norm": 0.9077875018119812, + "learning_rate": 3.827956448911223e-05, + "loss": 0.2614713668823242, + "step": 70000 + }, + { + "epoch": 23.484127648881817, + "grad_norm": 0.9982284307479858, + "learning_rate": 3.826281407035176e-05, + "loss": 0.2588504219055176, + "step": 70100 + }, + { + "epoch": 23.51763129240305, + "grad_norm": 0.9539495706558228, + "learning_rate": 3.824606365159129e-05, + "loss": 0.26046722412109374, + "step": 70200 + }, + { + "epoch": 23.55113493592428, + "grad_norm": 1.0776108503341675, + "learning_rate": 3.822931323283082e-05, + "loss": 0.2608753776550293, + "step": 70300 + }, + { + "epoch": 23.584638579445514, + "grad_norm": 1.0306613445281982, + "learning_rate": 3.821256281407035e-05, + "loss": 0.26188905715942384, + "step": 70400 + }, + { + "epoch": 23.618142222966746, + "grad_norm": 0.9900612831115723, + "learning_rate": 3.819581239530988e-05, + "loss": 0.26530147552490235, + "step": 70500 + }, + { + "epoch": 23.651645866487982, + "grad_norm": 1.047272801399231, + "learning_rate": 3.817906197654941e-05, + "loss": 0.26567121505737307, + "step": 70600 + }, + { + "epoch": 23.685149510009214, + "grad_norm": 0.9837287068367004, + "learning_rate": 3.816231155778895e-05, + "loss": 0.2618439865112305, + "step": 70700 + }, + { + "epoch": 23.718653153530447, + "grad_norm": 1.0495308637619019, + "learning_rate": 3.814556113902848e-05, + "loss": 0.2637239646911621, + "step": 70800 + }, + { + "epoch": 23.75215679705168, + "grad_norm": 0.9998559951782227, + "learning_rate": 3.812881072026801e-05, + "loss": 0.2645314788818359, + "step": 70900 + }, + { + "epoch": 23.78566044057291, + "grad_norm": 1.0041533708572388, + "learning_rate": 3.811222780569514e-05, + "loss": 0.26535621643066404, + "step": 71000 + }, + { + "epoch": 23.819164084094144, + "grad_norm": 0.8790546655654907, + "learning_rate": 3.809547738693468e-05, + "loss": 0.26744958877563474, + "step": 71100 + }, + { + "epoch": 23.85266772761538, + "grad_norm": 1.0044236183166504, + "learning_rate": 3.8078726968174206e-05, + "loss": 0.2647633171081543, + "step": 71200 + }, + { + "epoch": 23.886171371136612, + "grad_norm": 0.9612513184547424, + "learning_rate": 3.8061976549413735e-05, + "loss": 0.2649590682983398, + "step": 71300 + }, + { + "epoch": 23.919675014657845, + "grad_norm": 0.8713734745979309, + "learning_rate": 3.8045226130653264e-05, + "loss": 0.266021728515625, + "step": 71400 + }, + { + "epoch": 23.953178658179077, + "grad_norm": 1.0584930181503296, + "learning_rate": 3.80284757118928e-05, + "loss": 0.2661307907104492, + "step": 71500 + }, + { + "epoch": 23.98668230170031, + "grad_norm": 1.003209114074707, + "learning_rate": 3.801172529313233e-05, + "loss": 0.26575571060180664, + "step": 71600 + }, + { + "epoch": 24.02010218611274, + "grad_norm": 1.0001593828201294, + "learning_rate": 3.7994974874371864e-05, + "loss": 0.25387475967407225, + "step": 71700 + }, + { + "epoch": 24.053605829633973, + "grad_norm": 1.0081121921539307, + "learning_rate": 3.797822445561139e-05, + "loss": 0.24931825637817384, + "step": 71800 + }, + { + "epoch": 24.087109473155206, + "grad_norm": 0.969540536403656, + "learning_rate": 3.796147403685092e-05, + "loss": 0.24639154434204102, + "step": 71900 + }, + { + "epoch": 24.120613116676438, + "grad_norm": 0.9975810050964355, + "learning_rate": 3.794472361809046e-05, + "loss": 0.24772171020507813, + "step": 72000 + }, + { + "epoch": 24.15411676019767, + "grad_norm": 1.0242449045181274, + "learning_rate": 3.7927973199329986e-05, + "loss": 0.24881784439086915, + "step": 72100 + }, + { + "epoch": 24.187620403718903, + "grad_norm": 0.9321593642234802, + "learning_rate": 3.7911222780569515e-05, + "loss": 0.250980339050293, + "step": 72200 + }, + { + "epoch": 24.22112404724014, + "grad_norm": 0.8362423181533813, + "learning_rate": 3.7894472361809044e-05, + "loss": 0.2504695320129395, + "step": 72300 + }, + { + "epoch": 24.25462769076137, + "grad_norm": 1.0577383041381836, + "learning_rate": 3.787772194304858e-05, + "loss": 0.25103809356689455, + "step": 72400 + }, + { + "epoch": 24.288131334282603, + "grad_norm": 0.9327830672264099, + "learning_rate": 3.786097152428811e-05, + "loss": 0.2529195785522461, + "step": 72500 + }, + { + "epoch": 24.321634977803836, + "grad_norm": 0.941429078578949, + "learning_rate": 3.784422110552764e-05, + "loss": 0.25365312576293947, + "step": 72600 + }, + { + "epoch": 24.355138621325068, + "grad_norm": 0.9718444347381592, + "learning_rate": 3.7827470686767166e-05, + "loss": 0.25447874069213866, + "step": 72700 + }, + { + "epoch": 24.3886422648463, + "grad_norm": 1.0243566036224365, + "learning_rate": 3.78107202680067e-05, + "loss": 0.2550676727294922, + "step": 72800 + }, + { + "epoch": 24.422145908367536, + "grad_norm": 1.0174282789230347, + "learning_rate": 3.779396984924624e-05, + "loss": 0.25832677841186524, + "step": 72900 + }, + { + "epoch": 24.45564955188877, + "grad_norm": 0.9675871133804321, + "learning_rate": 3.777738693467337e-05, + "loss": 0.2548235511779785, + "step": 73000 + }, + { + "epoch": 24.48915319541, + "grad_norm": 1.095906138420105, + "learning_rate": 3.77606365159129e-05, + "loss": 0.2557443809509277, + "step": 73100 + }, + { + "epoch": 24.522656838931233, + "grad_norm": 0.8963753581047058, + "learning_rate": 3.7743886097152434e-05, + "loss": 0.25586761474609376, + "step": 73200 + }, + { + "epoch": 24.556160482452466, + "grad_norm": 0.8457279801368713, + "learning_rate": 3.772713567839196e-05, + "loss": 0.2581898307800293, + "step": 73300 + }, + { + "epoch": 24.589664125973698, + "grad_norm": 1.0806199312210083, + "learning_rate": 3.771038525963149e-05, + "loss": 0.25776454925537107, + "step": 73400 + }, + { + "epoch": 24.623167769494934, + "grad_norm": 1.117748737335205, + "learning_rate": 3.769363484087102e-05, + "loss": 0.25891387939453125, + "step": 73500 + }, + { + "epoch": 24.656671413016166, + "grad_norm": 1.022865653038025, + "learning_rate": 3.7676884422110556e-05, + "loss": 0.25816925048828127, + "step": 73600 + }, + { + "epoch": 24.6901750565374, + "grad_norm": 1.0696437358856201, + "learning_rate": 3.7660134003350085e-05, + "loss": 0.2563637351989746, + "step": 73700 + }, + { + "epoch": 24.72367870005863, + "grad_norm": 0.9979215860366821, + "learning_rate": 3.7643383584589614e-05, + "loss": 0.25864744186401367, + "step": 73800 + }, + { + "epoch": 24.757182343579863, + "grad_norm": 1.0636203289031982, + "learning_rate": 3.762663316582914e-05, + "loss": 0.25936466217041015, + "step": 73900 + }, + { + "epoch": 24.790685987101096, + "grad_norm": 1.0561468601226807, + "learning_rate": 3.760988274706868e-05, + "loss": 0.2596282005310059, + "step": 74000 + }, + { + "epoch": 24.82418963062233, + "grad_norm": 1.0279403924942017, + "learning_rate": 3.7593132328308214e-05, + "loss": 0.25866455078125, + "step": 74100 + }, + { + "epoch": 24.857693274143564, + "grad_norm": 1.0280523300170898, + "learning_rate": 3.757638190954774e-05, + "loss": 0.2624567985534668, + "step": 74200 + }, + { + "epoch": 24.891196917664796, + "grad_norm": 1.0582387447357178, + "learning_rate": 3.755963149078727e-05, + "loss": 0.26197324752807616, + "step": 74300 + }, + { + "epoch": 24.92470056118603, + "grad_norm": 0.9122918248176575, + "learning_rate": 3.75428810720268e-05, + "loss": 0.25970455169677736, + "step": 74400 + }, + { + "epoch": 24.95820420470726, + "grad_norm": 1.223061442375183, + "learning_rate": 3.7526130653266336e-05, + "loss": 0.2615465927124023, + "step": 74500 + }, + { + "epoch": 24.991707848228494, + "grad_norm": 0.9313095808029175, + "learning_rate": 3.7509380234505865e-05, + "loss": 0.26078268051147463, + "step": 74600 + }, + { + "epoch": 25.025127732640925, + "grad_norm": 0.9277160167694092, + "learning_rate": 3.7492629815745393e-05, + "loss": 0.2467232322692871, + "step": 74700 + }, + { + "epoch": 25.058631376162158, + "grad_norm": 0.8967624306678772, + "learning_rate": 3.747587939698492e-05, + "loss": 0.2427264404296875, + "step": 74800 + }, + { + "epoch": 25.09213501968339, + "grad_norm": 0.9991577863693237, + "learning_rate": 3.745912897822446e-05, + "loss": 0.24398237228393554, + "step": 74900 + }, + { + "epoch": 25.125638663204622, + "grad_norm": 0.9068632125854492, + "learning_rate": 3.74425460636516e-05, + "loss": 0.24407464981079102, + "step": 75000 + }, + { + "epoch": 25.159142306725858, + "grad_norm": 0.9610689878463745, + "learning_rate": 3.7425795644891126e-05, + "loss": 0.2451825523376465, + "step": 75100 + }, + { + "epoch": 25.19264595024709, + "grad_norm": 1.0655577182769775, + "learning_rate": 3.7409045226130655e-05, + "loss": 0.24775781631469726, + "step": 75200 + }, + { + "epoch": 25.226149593768323, + "grad_norm": 0.9166316390037537, + "learning_rate": 3.739229480737019e-05, + "loss": 0.24586162567138672, + "step": 75300 + }, + { + "epoch": 25.259653237289555, + "grad_norm": 1.0330859422683716, + "learning_rate": 3.737554438860972e-05, + "loss": 0.2476130485534668, + "step": 75400 + }, + { + "epoch": 25.293156880810788, + "grad_norm": 0.9790452122688293, + "learning_rate": 3.735879396984925e-05, + "loss": 0.24896875381469727, + "step": 75500 + }, + { + "epoch": 25.32666052433202, + "grad_norm": 0.9078829288482666, + "learning_rate": 3.734204355108878e-05, + "loss": 0.25146854400634766, + "step": 75600 + }, + { + "epoch": 25.360164167853252, + "grad_norm": 1.0172176361083984, + "learning_rate": 3.732529313232831e-05, + "loss": 0.24892644882202147, + "step": 75700 + }, + { + "epoch": 25.39366781137449, + "grad_norm": 0.8392038941383362, + "learning_rate": 3.730854271356784e-05, + "loss": 0.2486979866027832, + "step": 75800 + }, + { + "epoch": 25.42717145489572, + "grad_norm": 1.120992660522461, + "learning_rate": 3.729179229480737e-05, + "loss": 0.2500802612304687, + "step": 75900 + }, + { + "epoch": 25.460675098416953, + "grad_norm": 0.9740986227989197, + "learning_rate": 3.727520938023451e-05, + "loss": 0.2497385025024414, + "step": 76000 + }, + { + "epoch": 25.494178741938185, + "grad_norm": 1.1447396278381348, + "learning_rate": 3.725845896147404e-05, + "loss": 0.2524580001831055, + "step": 76100 + }, + { + "epoch": 25.527682385459418, + "grad_norm": 0.8573219776153564, + "learning_rate": 3.7241708542713574e-05, + "loss": 0.2522186470031738, + "step": 76200 + }, + { + "epoch": 25.56118602898065, + "grad_norm": 1.0129204988479614, + "learning_rate": 3.72249581239531e-05, + "loss": 0.2548684501647949, + "step": 76300 + }, + { + "epoch": 25.594689672501886, + "grad_norm": 0.9877455830574036, + "learning_rate": 3.720820770519263e-05, + "loss": 0.2520929527282715, + "step": 76400 + }, + { + "epoch": 25.62819331602312, + "grad_norm": 0.9686979651451111, + "learning_rate": 3.719145728643216e-05, + "loss": 0.25263065338134766, + "step": 76500 + }, + { + "epoch": 25.66169695954435, + "grad_norm": 0.9908387660980225, + "learning_rate": 3.7174706867671696e-05, + "loss": 0.25347740173339844, + "step": 76600 + }, + { + "epoch": 25.695200603065583, + "grad_norm": 1.006608009338379, + "learning_rate": 3.7157956448911225e-05, + "loss": 0.2546247863769531, + "step": 76700 + }, + { + "epoch": 25.728704246586815, + "grad_norm": 1.003769874572754, + "learning_rate": 3.7141206030150754e-05, + "loss": 0.253816089630127, + "step": 76800 + }, + { + "epoch": 25.762207890108048, + "grad_norm": 1.0374062061309814, + "learning_rate": 3.712445561139028e-05, + "loss": 0.25663318634033205, + "step": 76900 + }, + { + "epoch": 25.795711533629284, + "grad_norm": 1.0362064838409424, + "learning_rate": 3.710770519262982e-05, + "loss": 0.2567397880554199, + "step": 77000 + }, + { + "epoch": 25.829215177150516, + "grad_norm": 1.0892760753631592, + "learning_rate": 3.709095477386935e-05, + "loss": 0.25798879623413085, + "step": 77100 + }, + { + "epoch": 25.86271882067175, + "grad_norm": 1.049902081489563, + "learning_rate": 3.7074204355108876e-05, + "loss": 0.25775598526000976, + "step": 77200 + }, + { + "epoch": 25.89622246419298, + "grad_norm": 0.8818158507347107, + "learning_rate": 3.705745393634841e-05, + "loss": 0.2554671287536621, + "step": 77300 + }, + { + "epoch": 25.929726107714213, + "grad_norm": 1.0922232866287231, + "learning_rate": 3.704070351758795e-05, + "loss": 0.25704565048217776, + "step": 77400 + }, + { + "epoch": 25.963229751235446, + "grad_norm": 0.9811676144599915, + "learning_rate": 3.7023953098827476e-05, + "loss": 0.25583274841308595, + "step": 77500 + }, + { + "epoch": 25.99673339475668, + "grad_norm": 1.044572353363037, + "learning_rate": 3.7007202680067004e-05, + "loss": 0.25744909286499024, + "step": 77600 + }, + { + "epoch": 26.03015327916911, + "grad_norm": 0.790084958076477, + "learning_rate": 3.699045226130653e-05, + "loss": 0.23935884475708008, + "step": 77700 + }, + { + "epoch": 26.063656922690342, + "grad_norm": 0.9131903052330017, + "learning_rate": 3.697370184254607e-05, + "loss": 0.2395966339111328, + "step": 77800 + }, + { + "epoch": 26.097160566211574, + "grad_norm": 1.0206575393676758, + "learning_rate": 3.69569514237856e-05, + "loss": 0.23894302368164064, + "step": 77900 + }, + { + "epoch": 26.13066420973281, + "grad_norm": 0.9167901873588562, + "learning_rate": 3.6940201005025127e-05, + "loss": 0.24095657348632812, + "step": 78000 + }, + { + "epoch": 26.164167853254042, + "grad_norm": 0.9756499528884888, + "learning_rate": 3.6923450586264655e-05, + "loss": 0.24229476928710938, + "step": 78100 + }, + { + "epoch": 26.197671496775275, + "grad_norm": 1.1261674165725708, + "learning_rate": 3.690670016750419e-05, + "loss": 0.24467144012451172, + "step": 78200 + }, + { + "epoch": 26.231175140296507, + "grad_norm": 0.8712000846862793, + "learning_rate": 3.688994974874372e-05, + "loss": 0.2426918601989746, + "step": 78300 + }, + { + "epoch": 26.26467878381774, + "grad_norm": 0.9853079915046692, + "learning_rate": 3.687319932998325e-05, + "loss": 0.2432308578491211, + "step": 78400 + }, + { + "epoch": 26.298182427338972, + "grad_norm": 0.9844798445701599, + "learning_rate": 3.6856448911222784e-05, + "loss": 0.24566902160644533, + "step": 78500 + }, + { + "epoch": 26.331686070860208, + "grad_norm": 0.991397500038147, + "learning_rate": 3.683969849246231e-05, + "loss": 0.24585660934448242, + "step": 78600 + }, + { + "epoch": 26.36518971438144, + "grad_norm": 0.9551209211349487, + "learning_rate": 3.682294807370185e-05, + "loss": 0.24546436309814454, + "step": 78700 + }, + { + "epoch": 26.398693357902673, + "grad_norm": 1.0218653678894043, + "learning_rate": 3.680619765494138e-05, + "loss": 0.2468564987182617, + "step": 78800 + }, + { + "epoch": 26.432197001423905, + "grad_norm": 0.879303514957428, + "learning_rate": 3.6789447236180906e-05, + "loss": 0.24688074111938477, + "step": 78900 + }, + { + "epoch": 26.465700644945137, + "grad_norm": 0.9550554156303406, + "learning_rate": 3.6772696817420435e-05, + "loss": 0.24929559707641602, + "step": 79000 + }, + { + "epoch": 26.49920428846637, + "grad_norm": 1.092371940612793, + "learning_rate": 3.675594639865997e-05, + "loss": 0.2490665817260742, + "step": 79100 + }, + { + "epoch": 26.532707931987602, + "grad_norm": 0.9425039887428284, + "learning_rate": 3.67391959798995e-05, + "loss": 0.24648136138916016, + "step": 79200 + }, + { + "epoch": 26.566211575508838, + "grad_norm": 0.9212557077407837, + "learning_rate": 3.672244556113903e-05, + "loss": 0.24588151931762695, + "step": 79300 + }, + { + "epoch": 26.59971521903007, + "grad_norm": 1.0376055240631104, + "learning_rate": 3.670569514237856e-05, + "loss": 0.24943052291870116, + "step": 79400 + }, + { + "epoch": 26.633218862551303, + "grad_norm": 0.9473478198051453, + "learning_rate": 3.668894472361809e-05, + "loss": 0.24888269424438478, + "step": 79500 + }, + { + "epoch": 26.666722506072535, + "grad_norm": 1.052951455116272, + "learning_rate": 3.667219430485762e-05, + "loss": 0.24891986846923828, + "step": 79600 + }, + { + "epoch": 26.700226149593767, + "grad_norm": 1.1100990772247314, + "learning_rate": 3.665544388609715e-05, + "loss": 0.2513142776489258, + "step": 79700 + }, + { + "epoch": 26.733729793115, + "grad_norm": 0.9589593410491943, + "learning_rate": 3.6638693467336686e-05, + "loss": 0.24993154525756836, + "step": 79800 + }, + { + "epoch": 26.767233436636236, + "grad_norm": 0.9308981895446777, + "learning_rate": 3.662194304857622e-05, + "loss": 0.2495902442932129, + "step": 79900 + }, + { + "epoch": 26.800737080157468, + "grad_norm": 1.0080679655075073, + "learning_rate": 3.6605360134003354e-05, + "loss": 0.25091459274291994, + "step": 80000 + }, + { + "epoch": 26.8342407236787, + "grad_norm": 0.965578556060791, + "learning_rate": 3.658860971524288e-05, + "loss": 0.2524791526794434, + "step": 80100 + }, + { + "epoch": 26.867744367199933, + "grad_norm": 1.0109574794769287, + "learning_rate": 3.657185929648241e-05, + "loss": 0.2515005111694336, + "step": 80200 + }, + { + "epoch": 26.901248010721165, + "grad_norm": 1.0662031173706055, + "learning_rate": 3.655510887772195e-05, + "loss": 0.25569900512695315, + "step": 80300 + }, + { + "epoch": 26.934751654242397, + "grad_norm": 1.0011720657348633, + "learning_rate": 3.6538358458961476e-05, + "loss": 0.25127042770385744, + "step": 80400 + }, + { + "epoch": 26.968255297763633, + "grad_norm": 1.0007758140563965, + "learning_rate": 3.6521608040201005e-05, + "loss": 0.25374698638916016, + "step": 80500 + }, + { + "epoch": 27.00167518217606, + "grad_norm": 0.8360596895217896, + "learning_rate": 3.6504857621440534e-05, + "loss": 0.2519091033935547, + "step": 80600 + }, + { + "epoch": 27.035178825697294, + "grad_norm": 0.772354781627655, + "learning_rate": 3.648810720268007e-05, + "loss": 0.2350589370727539, + "step": 80700 + }, + { + "epoch": 27.068682469218526, + "grad_norm": 0.9291853904724121, + "learning_rate": 3.6471356783919605e-05, + "loss": 0.23687738418579102, + "step": 80800 + }, + { + "epoch": 27.102186112739762, + "grad_norm": 0.8280290365219116, + "learning_rate": 3.6454606365159134e-05, + "loss": 0.23724706649780272, + "step": 80900 + }, + { + "epoch": 27.135689756260994, + "grad_norm": 1.0114185810089111, + "learning_rate": 3.643785594639866e-05, + "loss": 0.2386191940307617, + "step": 81000 + }, + { + "epoch": 27.169193399782227, + "grad_norm": 0.8960608839988708, + "learning_rate": 3.642110552763819e-05, + "loss": 0.23746776580810547, + "step": 81100 + }, + { + "epoch": 27.20269704330346, + "grad_norm": 0.9211316704750061, + "learning_rate": 3.640435510887773e-05, + "loss": 0.24118051528930665, + "step": 81200 + }, + { + "epoch": 27.23620068682469, + "grad_norm": 0.9914082884788513, + "learning_rate": 3.6387604690117256e-05, + "loss": 0.2407957649230957, + "step": 81300 + }, + { + "epoch": 27.269704330345924, + "grad_norm": 0.8905548453330994, + "learning_rate": 3.6370854271356785e-05, + "loss": 0.23928272247314453, + "step": 81400 + }, + { + "epoch": 27.30320797386716, + "grad_norm": 0.8846296072006226, + "learning_rate": 3.635427135678392e-05, + "loss": 0.24042049407958985, + "step": 81500 + }, + { + "epoch": 27.336711617388392, + "grad_norm": 0.9076329469680786, + "learning_rate": 3.633752093802345e-05, + "loss": 0.24250953674316406, + "step": 81600 + }, + { + "epoch": 27.370215260909625, + "grad_norm": 1.1054998636245728, + "learning_rate": 3.632077051926298e-05, + "loss": 0.2428689956665039, + "step": 81700 + }, + { + "epoch": 27.403718904430857, + "grad_norm": 0.9182295799255371, + "learning_rate": 3.630402010050251e-05, + "loss": 0.24241937637329103, + "step": 81800 + }, + { + "epoch": 27.43722254795209, + "grad_norm": 1.0540192127227783, + "learning_rate": 3.6287269681742046e-05, + "loss": 0.24241340637207032, + "step": 81900 + }, + { + "epoch": 27.47072619147332, + "grad_norm": 0.9639661312103271, + "learning_rate": 3.6270519262981575e-05, + "loss": 0.24282842636108398, + "step": 82000 + }, + { + "epoch": 27.504229834994554, + "grad_norm": 0.8837372064590454, + "learning_rate": 3.625376884422111e-05, + "loss": 0.24227666854858398, + "step": 82100 + }, + { + "epoch": 27.53773347851579, + "grad_norm": 0.8825430274009705, + "learning_rate": 3.623701842546064e-05, + "loss": 0.24317176818847655, + "step": 82200 + }, + { + "epoch": 27.571237122037022, + "grad_norm": 1.0860276222229004, + "learning_rate": 3.622026800670017e-05, + "loss": 0.2448468780517578, + "step": 82300 + }, + { + "epoch": 27.604740765558255, + "grad_norm": 1.0138317346572876, + "learning_rate": 3.6203517587939704e-05, + "loss": 0.24316675186157227, + "step": 82400 + }, + { + "epoch": 27.638244409079487, + "grad_norm": 1.0941250324249268, + "learning_rate": 3.618676716917923e-05, + "loss": 0.2473929786682129, + "step": 82500 + }, + { + "epoch": 27.67174805260072, + "grad_norm": 0.8989108800888062, + "learning_rate": 3.617001675041876e-05, + "loss": 0.247222900390625, + "step": 82600 + }, + { + "epoch": 27.70525169612195, + "grad_norm": 1.0026638507843018, + "learning_rate": 3.615326633165829e-05, + "loss": 0.24576572418212891, + "step": 82700 + }, + { + "epoch": 27.738755339643188, + "grad_norm": 1.0626496076583862, + "learning_rate": 3.6136515912897826e-05, + "loss": 0.2481866455078125, + "step": 82800 + }, + { + "epoch": 27.77225898316442, + "grad_norm": 0.8049838542938232, + "learning_rate": 3.6119765494137355e-05, + "loss": 0.24766799926757813, + "step": 82900 + }, + { + "epoch": 27.805762626685652, + "grad_norm": 1.0565505027770996, + "learning_rate": 3.6103015075376883e-05, + "loss": 0.24823820114135742, + "step": 83000 + }, + { + "epoch": 27.839266270206885, + "grad_norm": 1.0819406509399414, + "learning_rate": 3.608626465661642e-05, + "loss": 0.24928997039794923, + "step": 83100 + }, + { + "epoch": 27.872769913728117, + "grad_norm": 1.014066457748413, + "learning_rate": 3.606951423785595e-05, + "loss": 0.24671865463256837, + "step": 83200 + }, + { + "epoch": 27.90627355724935, + "grad_norm": 1.002631425857544, + "learning_rate": 3.6052763819095483e-05, + "loss": 0.24837955474853515, + "step": 83300 + }, + { + "epoch": 27.939777200770585, + "grad_norm": 1.0699118375778198, + "learning_rate": 3.603601340033501e-05, + "loss": 0.25022062301635745, + "step": 83400 + }, + { + "epoch": 27.973280844291818, + "grad_norm": 0.9003764986991882, + "learning_rate": 3.601926298157454e-05, + "loss": 0.24779138565063477, + "step": 83500 + }, + { + "epoch": 28.006700728704246, + "grad_norm": 0.7831597924232483, + "learning_rate": 3.600251256281407e-05, + "loss": 0.24304958343505859, + "step": 83600 + }, + { + "epoch": 28.040204372225478, + "grad_norm": 0.8876057267189026, + "learning_rate": 3.5985762144053605e-05, + "loss": 0.23251798629760742, + "step": 83700 + }, + { + "epoch": 28.073708015746714, + "grad_norm": 0.8161166906356812, + "learning_rate": 3.5969011725293134e-05, + "loss": 0.23175537109375, + "step": 83800 + }, + { + "epoch": 28.107211659267946, + "grad_norm": 1.0348833799362183, + "learning_rate": 3.595226130653266e-05, + "loss": 0.23300014495849608, + "step": 83900 + }, + { + "epoch": 28.14071530278918, + "grad_norm": 0.9496212601661682, + "learning_rate": 3.5935678391959796e-05, + "loss": 0.23465946197509766, + "step": 84000 + }, + { + "epoch": 28.17421894631041, + "grad_norm": 0.8523275256156921, + "learning_rate": 3.591892797319933e-05, + "loss": 0.23583173751831055, + "step": 84100 + }, + { + "epoch": 28.207722589831643, + "grad_norm": 0.9591325521469116, + "learning_rate": 3.590217755443887e-05, + "loss": 0.2353810691833496, + "step": 84200 + }, + { + "epoch": 28.241226233352876, + "grad_norm": 0.876011312007904, + "learning_rate": 3.5885427135678396e-05, + "loss": 0.23749792098999023, + "step": 84300 + }, + { + "epoch": 28.27472987687411, + "grad_norm": 0.9948890209197998, + "learning_rate": 3.5868676716917924e-05, + "loss": 0.23812158584594725, + "step": 84400 + }, + { + "epoch": 28.308233520395344, + "grad_norm": 0.99249267578125, + "learning_rate": 3.585192629815745e-05, + "loss": 0.23765924453735351, + "step": 84500 + }, + { + "epoch": 28.341737163916576, + "grad_norm": 0.8422896265983582, + "learning_rate": 3.583517587939699e-05, + "loss": 0.2388518714904785, + "step": 84600 + }, + { + "epoch": 28.37524080743781, + "grad_norm": 1.0225242376327515, + "learning_rate": 3.581842546063652e-05, + "loss": 0.2379816436767578, + "step": 84700 + }, + { + "epoch": 28.40874445095904, + "grad_norm": 0.9493758082389832, + "learning_rate": 3.5801675041876047e-05, + "loss": 0.23900142669677735, + "step": 84800 + }, + { + "epoch": 28.442248094480274, + "grad_norm": 1.0754547119140625, + "learning_rate": 3.578492462311558e-05, + "loss": 0.2420096778869629, + "step": 84900 + }, + { + "epoch": 28.475751738001506, + "grad_norm": 1.1404248476028442, + "learning_rate": 3.576817420435511e-05, + "loss": 0.2387169647216797, + "step": 85000 + }, + { + "epoch": 28.509255381522742, + "grad_norm": 1.0831667184829712, + "learning_rate": 3.575142378559464e-05, + "loss": 0.23977863311767578, + "step": 85100 + }, + { + "epoch": 28.542759025043974, + "grad_norm": 0.9713730812072754, + "learning_rate": 3.573467336683417e-05, + "loss": 0.24276636123657228, + "step": 85200 + }, + { + "epoch": 28.576262668565207, + "grad_norm": 0.8892617225646973, + "learning_rate": 3.5717922948073704e-05, + "loss": 0.24079540252685547, + "step": 85300 + }, + { + "epoch": 28.60976631208644, + "grad_norm": 0.90485680103302, + "learning_rate": 3.570117252931324e-05, + "loss": 0.23991119384765625, + "step": 85400 + }, + { + "epoch": 28.64326995560767, + "grad_norm": 0.8535875678062439, + "learning_rate": 3.568442211055277e-05, + "loss": 0.24252616882324218, + "step": 85500 + }, + { + "epoch": 28.676773599128904, + "grad_norm": 1.1108918190002441, + "learning_rate": 3.56676716917923e-05, + "loss": 0.24145748138427733, + "step": 85600 + }, + { + "epoch": 28.71027724265014, + "grad_norm": 1.0389022827148438, + "learning_rate": 3.5650921273031826e-05, + "loss": 0.24423345565795898, + "step": 85700 + }, + { + "epoch": 28.743780886171372, + "grad_norm": 1.0552116632461548, + "learning_rate": 3.563417085427136e-05, + "loss": 0.24410188674926758, + "step": 85800 + }, + { + "epoch": 28.777284529692604, + "grad_norm": 0.9229023456573486, + "learning_rate": 3.561742043551089e-05, + "loss": 0.24257204055786133, + "step": 85900 + }, + { + "epoch": 28.810788173213837, + "grad_norm": 1.0788532495498657, + "learning_rate": 3.560067001675042e-05, + "loss": 0.24557861328125, + "step": 86000 + }, + { + "epoch": 28.84429181673507, + "grad_norm": 0.8226192593574524, + "learning_rate": 3.558391959798995e-05, + "loss": 0.24487424850463868, + "step": 86100 + }, + { + "epoch": 28.8777954602563, + "grad_norm": 0.9678732752799988, + "learning_rate": 3.5567169179229484e-05, + "loss": 0.24371047973632812, + "step": 86200 + }, + { + "epoch": 28.911299103777537, + "grad_norm": 0.9942400455474854, + "learning_rate": 3.555041876046901e-05, + "loss": 0.24467437744140624, + "step": 86300 + }, + { + "epoch": 28.94480274729877, + "grad_norm": 1.050825595855713, + "learning_rate": 3.553366834170854e-05, + "loss": 0.2451385498046875, + "step": 86400 + }, + { + "epoch": 28.978306390820002, + "grad_norm": 0.9947119951248169, + "learning_rate": 3.551691792294807e-05, + "loss": 0.24689924240112304, + "step": 86500 + }, + { + "epoch": 29.01172627523243, + "grad_norm": 0.7659996151924133, + "learning_rate": 3.5500167504187606e-05, + "loss": 0.23850542068481445, + "step": 86600 + }, + { + "epoch": 29.045229918753666, + "grad_norm": 0.7991949915885925, + "learning_rate": 3.548341708542714e-05, + "loss": 0.23052330017089845, + "step": 86700 + }, + { + "epoch": 29.0787335622749, + "grad_norm": 0.9375367760658264, + "learning_rate": 3.546666666666667e-05, + "loss": 0.228839168548584, + "step": 86800 + }, + { + "epoch": 29.11223720579613, + "grad_norm": 1.0139492750167847, + "learning_rate": 3.54499162479062e-05, + "loss": 0.2321438217163086, + "step": 86900 + }, + { + "epoch": 29.145740849317363, + "grad_norm": 0.8823564648628235, + "learning_rate": 3.543316582914573e-05, + "loss": 0.23002294540405274, + "step": 87000 + }, + { + "epoch": 29.179244492838595, + "grad_norm": 0.8460071086883545, + "learning_rate": 3.5416415410385264e-05, + "loss": 0.23179996490478516, + "step": 87100 + }, + { + "epoch": 29.212748136359828, + "grad_norm": 0.9480848908424377, + "learning_rate": 3.539966499162479e-05, + "loss": 0.23330198287963866, + "step": 87200 + }, + { + "epoch": 29.246251779881064, + "grad_norm": 0.9003339409828186, + "learning_rate": 3.538291457286432e-05, + "loss": 0.2348067855834961, + "step": 87300 + }, + { + "epoch": 29.279755423402296, + "grad_norm": 0.9011369943618774, + "learning_rate": 3.536616415410386e-05, + "loss": 0.23475120544433595, + "step": 87400 + }, + { + "epoch": 29.31325906692353, + "grad_norm": 1.102575421333313, + "learning_rate": 3.5349413735343386e-05, + "loss": 0.23566722869873047, + "step": 87500 + }, + { + "epoch": 29.34676271044476, + "grad_norm": 1.0036569833755493, + "learning_rate": 3.5332663316582915e-05, + "loss": 0.2358757209777832, + "step": 87600 + }, + { + "epoch": 29.380266353965993, + "grad_norm": 0.9289223551750183, + "learning_rate": 3.531591289782244e-05, + "loss": 0.23525848388671874, + "step": 87700 + }, + { + "epoch": 29.413769997487226, + "grad_norm": 0.9896803498268127, + "learning_rate": 3.529916247906198e-05, + "loss": 0.23644231796264648, + "step": 87800 + }, + { + "epoch": 29.447273641008458, + "grad_norm": 0.9522982239723206, + "learning_rate": 3.5282412060301515e-05, + "loss": 0.23636116027832033, + "step": 87900 + }, + { + "epoch": 29.480777284529694, + "grad_norm": 0.9571079611778259, + "learning_rate": 3.526582914572865e-05, + "loss": 0.23850887298583984, + "step": 88000 + }, + { + "epoch": 29.514280928050926, + "grad_norm": 1.0205976963043213, + "learning_rate": 3.5249078726968176e-05, + "loss": 0.23928991317749024, + "step": 88100 + }, + { + "epoch": 29.54778457157216, + "grad_norm": 1.0385000705718994, + "learning_rate": 3.5232328308207705e-05, + "loss": 0.2364453125, + "step": 88200 + }, + { + "epoch": 29.58128821509339, + "grad_norm": 0.8799936771392822, + "learning_rate": 3.521557788944724e-05, + "loss": 0.2379269027709961, + "step": 88300 + }, + { + "epoch": 29.614791858614623, + "grad_norm": 1.0788037776947021, + "learning_rate": 3.519882747068677e-05, + "loss": 0.23958860397338866, + "step": 88400 + }, + { + "epoch": 29.648295502135856, + "grad_norm": 0.8725781440734863, + "learning_rate": 3.51820770519263e-05, + "loss": 0.23952722549438477, + "step": 88500 + }, + { + "epoch": 29.68179914565709, + "grad_norm": 1.0508238077163696, + "learning_rate": 3.516532663316583e-05, + "loss": 0.2397722053527832, + "step": 88600 + }, + { + "epoch": 29.715302789178324, + "grad_norm": 1.098661184310913, + "learning_rate": 3.514857621440536e-05, + "loss": 0.2380986213684082, + "step": 88700 + }, + { + "epoch": 29.748806432699556, + "grad_norm": 1.1082944869995117, + "learning_rate": 3.513182579564489e-05, + "loss": 0.2417365074157715, + "step": 88800 + }, + { + "epoch": 29.78231007622079, + "grad_norm": 0.9109951853752136, + "learning_rate": 3.511507537688443e-05, + "loss": 0.23964044570922852, + "step": 88900 + }, + { + "epoch": 29.81581371974202, + "grad_norm": 1.106863021850586, + "learning_rate": 3.5098324958123956e-05, + "loss": 0.24028875350952147, + "step": 89000 + }, + { + "epoch": 29.849317363263253, + "grad_norm": 0.9252721667289734, + "learning_rate": 3.5081574539363484e-05, + "loss": 0.24027196884155275, + "step": 89100 + }, + { + "epoch": 29.88282100678449, + "grad_norm": 1.18505859375, + "learning_rate": 3.506482412060302e-05, + "loss": 0.2418280601501465, + "step": 89200 + }, + { + "epoch": 29.91632465030572, + "grad_norm": 0.956193745136261, + "learning_rate": 3.504807370184255e-05, + "loss": 0.24323488235473634, + "step": 89300 + }, + { + "epoch": 29.949828293826954, + "grad_norm": 0.9459329843521118, + "learning_rate": 3.503132328308208e-05, + "loss": 0.24398193359375, + "step": 89400 + }, + { + "epoch": 29.983331937348186, + "grad_norm": 0.9862803816795349, + "learning_rate": 3.5014572864321607e-05, + "loss": 0.2418046760559082, + "step": 89500 + }, + { + "epoch": 30.016751821760618, + "grad_norm": 0.9011918902397156, + "learning_rate": 3.499782244556114e-05, + "loss": 0.23376155853271485, + "step": 89600 + }, + { + "epoch": 30.05025546528185, + "grad_norm": 0.9960854649543762, + "learning_rate": 3.498107202680067e-05, + "loss": 0.22885730743408203, + "step": 89700 + }, + { + "epoch": 30.083759108803083, + "grad_norm": 0.953056275844574, + "learning_rate": 3.49643216080402e-05, + "loss": 0.22713994979858398, + "step": 89800 + }, + { + "epoch": 30.117262752324315, + "grad_norm": 0.8877431154251099, + "learning_rate": 3.494757118927973e-05, + "loss": 0.22972366333007813, + "step": 89900 + }, + { + "epoch": 30.150766395845547, + "grad_norm": 0.9188148379325867, + "learning_rate": 3.493115577889448e-05, + "loss": 0.22967748641967772, + "step": 90000 + }, + { + "epoch": 30.18427003936678, + "grad_norm": 0.8880020380020142, + "learning_rate": 3.491440536013401e-05, + "loss": 0.22878494262695312, + "step": 90100 + }, + { + "epoch": 30.217773682888016, + "grad_norm": 0.9602766036987305, + "learning_rate": 3.4897654941373536e-05, + "loss": 0.23181842803955077, + "step": 90200 + }, + { + "epoch": 30.251277326409248, + "grad_norm": 0.8411327600479126, + "learning_rate": 3.4880904522613065e-05, + "loss": 0.23128870010375976, + "step": 90300 + }, + { + "epoch": 30.28478096993048, + "grad_norm": 0.9455945491790771, + "learning_rate": 3.48641541038526e-05, + "loss": 0.22971813201904298, + "step": 90400 + }, + { + "epoch": 30.318284613451713, + "grad_norm": 1.0151312351226807, + "learning_rate": 3.484740368509213e-05, + "loss": 0.2330830955505371, + "step": 90500 + }, + { + "epoch": 30.351788256972945, + "grad_norm": 0.9535360932350159, + "learning_rate": 3.483065326633166e-05, + "loss": 0.2313951873779297, + "step": 90600 + }, + { + "epoch": 30.385291900494177, + "grad_norm": 1.0460865497589111, + "learning_rate": 3.481390284757119e-05, + "loss": 0.23312372207641602, + "step": 90700 + }, + { + "epoch": 30.418795544015413, + "grad_norm": 0.9364484548568726, + "learning_rate": 3.479715242881072e-05, + "loss": 0.2326444625854492, + "step": 90800 + }, + { + "epoch": 30.452299187536646, + "grad_norm": 1.133334994316101, + "learning_rate": 3.478040201005025e-05, + "loss": 0.23389068603515625, + "step": 90900 + }, + { + "epoch": 30.485802831057878, + "grad_norm": 0.9046189188957214, + "learning_rate": 3.476365159128979e-05, + "loss": 0.23185604095458984, + "step": 91000 + }, + { + "epoch": 30.51930647457911, + "grad_norm": 0.7889045476913452, + "learning_rate": 3.4746901172529316e-05, + "loss": 0.23226310729980468, + "step": 91100 + }, + { + "epoch": 30.552810118100343, + "grad_norm": 0.8806297183036804, + "learning_rate": 3.4730150753768845e-05, + "loss": 0.23628852844238282, + "step": 91200 + }, + { + "epoch": 30.586313761621575, + "grad_norm": 0.8764693737030029, + "learning_rate": 3.471340033500838e-05, + "loss": 0.23575132369995117, + "step": 91300 + }, + { + "epoch": 30.619817405142808, + "grad_norm": 0.8656399846076965, + "learning_rate": 3.469664991624791e-05, + "loss": 0.23674060821533202, + "step": 91400 + }, + { + "epoch": 30.653321048664044, + "grad_norm": 1.0599033832550049, + "learning_rate": 3.467989949748744e-05, + "loss": 0.23605079650878907, + "step": 91500 + }, + { + "epoch": 30.686824692185276, + "grad_norm": 0.994979202747345, + "learning_rate": 3.4663149078726967e-05, + "loss": 0.23578712463378906, + "step": 91600 + }, + { + "epoch": 30.72032833570651, + "grad_norm": 0.9587284326553345, + "learning_rate": 3.46463986599665e-05, + "loss": 0.23613155364990235, + "step": 91700 + }, + { + "epoch": 30.75383197922774, + "grad_norm": 0.8443505764007568, + "learning_rate": 3.462964824120603e-05, + "loss": 0.23871355056762694, + "step": 91800 + }, + { + "epoch": 30.787335622748973, + "grad_norm": 1.099453091621399, + "learning_rate": 3.461289782244556e-05, + "loss": 0.24006723403930663, + "step": 91900 + }, + { + "epoch": 30.820839266270205, + "grad_norm": 1.0319575071334839, + "learning_rate": 3.459614740368509e-05, + "loss": 0.23815488815307617, + "step": 92000 + }, + { + "epoch": 30.85434290979144, + "grad_norm": 1.0333192348480225, + "learning_rate": 3.4579396984924624e-05, + "loss": 0.23808452606201172, + "step": 92100 + }, + { + "epoch": 30.887846553312674, + "grad_norm": 0.9881009459495544, + "learning_rate": 3.456264656616416e-05, + "loss": 0.2392608642578125, + "step": 92200 + }, + { + "epoch": 30.921350196833906, + "grad_norm": 1.0562998056411743, + "learning_rate": 3.454589614740369e-05, + "loss": 0.2401527976989746, + "step": 92300 + }, + { + "epoch": 30.95485384035514, + "grad_norm": 1.0023164749145508, + "learning_rate": 3.452914572864322e-05, + "loss": 0.23784709930419923, + "step": 92400 + }, + { + "epoch": 30.98835748387637, + "grad_norm": 0.8636544942855835, + "learning_rate": 3.451239530988275e-05, + "loss": 0.2380337142944336, + "step": 92500 + }, + { + "epoch": 31.021777368288802, + "grad_norm": 0.9277747273445129, + "learning_rate": 3.449564489112228e-05, + "loss": 0.22985034942626953, + "step": 92600 + }, + { + "epoch": 31.055281011810035, + "grad_norm": 0.8739263415336609, + "learning_rate": 3.4479061976549414e-05, + "loss": 0.22400131225585937, + "step": 92700 + }, + { + "epoch": 31.088784655331267, + "grad_norm": 0.8611975908279419, + "learning_rate": 3.446231155778894e-05, + "loss": 0.22545413970947265, + "step": 92800 + }, + { + "epoch": 31.1222882988525, + "grad_norm": 0.8462928533554077, + "learning_rate": 3.444556113902848e-05, + "loss": 0.22551637649536133, + "step": 92900 + }, + { + "epoch": 31.15579194237373, + "grad_norm": 1.022512435913086, + "learning_rate": 3.442881072026801e-05, + "loss": 0.22650592803955077, + "step": 93000 + }, + { + "epoch": 31.189295585894968, + "grad_norm": 0.9026772975921631, + "learning_rate": 3.4412060301507537e-05, + "loss": 0.22779397964477538, + "step": 93100 + }, + { + "epoch": 31.2227992294162, + "grad_norm": 1.0489071607589722, + "learning_rate": 3.4395309882747065e-05, + "loss": 0.22914936065673827, + "step": 93200 + }, + { + "epoch": 31.256302872937432, + "grad_norm": 0.9933543801307678, + "learning_rate": 3.43785594639866e-05, + "loss": 0.2292425537109375, + "step": 93300 + }, + { + "epoch": 31.289806516458665, + "grad_norm": 0.9085004329681396, + "learning_rate": 3.4361809045226137e-05, + "loss": 0.22929515838623046, + "step": 93400 + }, + { + "epoch": 31.323310159979897, + "grad_norm": 1.075490117073059, + "learning_rate": 3.4345058626465665e-05, + "loss": 0.22939607620239258, + "step": 93500 + }, + { + "epoch": 31.35681380350113, + "grad_norm": 0.9651515483856201, + "learning_rate": 3.4328308207705194e-05, + "loss": 0.22934986114501954, + "step": 93600 + }, + { + "epoch": 31.390317447022365, + "grad_norm": 0.8695613145828247, + "learning_rate": 3.431155778894472e-05, + "loss": 0.22976022720336914, + "step": 93700 + }, + { + "epoch": 31.423821090543598, + "grad_norm": 0.844338595867157, + "learning_rate": 3.429480737018426e-05, + "loss": 0.2312468147277832, + "step": 93800 + }, + { + "epoch": 31.45732473406483, + "grad_norm": 1.0382046699523926, + "learning_rate": 3.427805695142379e-05, + "loss": 0.2319161796569824, + "step": 93900 + }, + { + "epoch": 31.490828377586062, + "grad_norm": 0.9150004386901855, + "learning_rate": 3.4261306532663316e-05, + "loss": 0.23153928756713868, + "step": 94000 + }, + { + "epoch": 31.524332021107295, + "grad_norm": 0.9382134079933167, + "learning_rate": 3.4244556113902845e-05, + "loss": 0.23179262161254882, + "step": 94100 + }, + { + "epoch": 31.557835664628527, + "grad_norm": 1.003744125366211, + "learning_rate": 3.422780569514238e-05, + "loss": 0.2336377716064453, + "step": 94200 + }, + { + "epoch": 31.591339308149763, + "grad_norm": 1.0066591501235962, + "learning_rate": 3.421105527638191e-05, + "loss": 0.23306447982788087, + "step": 94300 + }, + { + "epoch": 31.624842951670995, + "grad_norm": 0.9587600827217102, + "learning_rate": 3.419430485762144e-05, + "loss": 0.23304904937744142, + "step": 94400 + }, + { + "epoch": 31.658346595192228, + "grad_norm": 0.9264236092567444, + "learning_rate": 3.4177554438860974e-05, + "loss": 0.23374231338500975, + "step": 94500 + }, + { + "epoch": 31.69185023871346, + "grad_norm": 0.9786285758018494, + "learning_rate": 3.416080402010051e-05, + "loss": 0.23288776397705077, + "step": 94600 + }, + { + "epoch": 31.725353882234693, + "grad_norm": 1.0406526327133179, + "learning_rate": 3.414405360134004e-05, + "loss": 0.23135658264160155, + "step": 94700 + }, + { + "epoch": 31.758857525755925, + "grad_norm": 1.0150673389434814, + "learning_rate": 3.412730318257957e-05, + "loss": 0.23329238891601561, + "step": 94800 + }, + { + "epoch": 31.792361169277157, + "grad_norm": 1.039716124534607, + "learning_rate": 3.4110552763819096e-05, + "loss": 0.23622480392456055, + "step": 94900 + }, + { + "epoch": 31.825864812798393, + "grad_norm": 0.8796889185905457, + "learning_rate": 3.409380234505863e-05, + "loss": 0.23527551651000977, + "step": 95000 + }, + { + "epoch": 31.859368456319626, + "grad_norm": 1.0430560111999512, + "learning_rate": 3.407705192629816e-05, + "loss": 0.23613218307495118, + "step": 95100 + }, + { + "epoch": 31.892872099840858, + "grad_norm": 0.934065043926239, + "learning_rate": 3.406030150753769e-05, + "loss": 0.23549306869506836, + "step": 95200 + }, + { + "epoch": 31.92637574336209, + "grad_norm": 0.9562022089958191, + "learning_rate": 3.404355108877722e-05, + "loss": 0.23596378326416015, + "step": 95300 + }, + { + "epoch": 31.959879386883323, + "grad_norm": 0.9484182000160217, + "learning_rate": 3.4026800670016754e-05, + "loss": 0.23749320983886718, + "step": 95400 + }, + { + "epoch": 31.993383030404555, + "grad_norm": 0.9226858615875244, + "learning_rate": 3.401005025125628e-05, + "loss": 0.23577556610107422, + "step": 95500 + }, + { + "epoch": 32.02680291481698, + "grad_norm": 0.8082904815673828, + "learning_rate": 3.399346733668342e-05, + "loss": 0.2252376174926758, + "step": 95600 + }, + { + "epoch": 32.06030655833822, + "grad_norm": 0.8369967341423035, + "learning_rate": 3.397671691792295e-05, + "loss": 0.22338224411010743, + "step": 95700 + }, + { + "epoch": 32.093810201859455, + "grad_norm": 0.8281686305999756, + "learning_rate": 3.395996649916248e-05, + "loss": 0.22212993621826171, + "step": 95800 + }, + { + "epoch": 32.127313845380684, + "grad_norm": 0.9705724716186523, + "learning_rate": 3.3943216080402015e-05, + "loss": 0.22465606689453124, + "step": 95900 + }, + { + "epoch": 32.16081748890192, + "grad_norm": 0.8423786163330078, + "learning_rate": 3.3926465661641544e-05, + "loss": 0.2250945281982422, + "step": 96000 + }, + { + "epoch": 32.19432113242315, + "grad_norm": 0.8339988589286804, + "learning_rate": 3.390971524288107e-05, + "loss": 0.22318048477172853, + "step": 96100 + }, + { + "epoch": 32.227824775944384, + "grad_norm": 0.8893176913261414, + "learning_rate": 3.38929648241206e-05, + "loss": 0.22539207458496094, + "step": 96200 + }, + { + "epoch": 32.26132841946562, + "grad_norm": 0.9052960276603699, + "learning_rate": 3.387621440536014e-05, + "loss": 0.22607305526733398, + "step": 96300 + }, + { + "epoch": 32.29483206298685, + "grad_norm": 1.0362404584884644, + "learning_rate": 3.3859463986599666e-05, + "loss": 0.22683595657348632, + "step": 96400 + }, + { + "epoch": 32.328335706508085, + "grad_norm": 0.9416490793228149, + "learning_rate": 3.3842713567839195e-05, + "loss": 0.22825729370117187, + "step": 96500 + }, + { + "epoch": 32.361839350029314, + "grad_norm": 0.8258299827575684, + "learning_rate": 3.3825963149078724e-05, + "loss": 0.2302044677734375, + "step": 96600 + }, + { + "epoch": 32.39534299355055, + "grad_norm": 0.8278768062591553, + "learning_rate": 3.380921273031826e-05, + "loss": 0.22817007064819336, + "step": 96700 + }, + { + "epoch": 32.42884663707178, + "grad_norm": 0.9295879006385803, + "learning_rate": 3.3792462311557795e-05, + "loss": 0.22796960830688476, + "step": 96800 + }, + { + "epoch": 32.462350280593014, + "grad_norm": 0.9297919273376465, + "learning_rate": 3.3775711892797324e-05, + "loss": 0.2300715446472168, + "step": 96900 + }, + { + "epoch": 32.49585392411425, + "grad_norm": 0.9032301902770996, + "learning_rate": 3.375896147403685e-05, + "loss": 0.22858844757080077, + "step": 97000 + }, + { + "epoch": 32.52935756763548, + "grad_norm": 0.9087026119232178, + "learning_rate": 3.374221105527639e-05, + "loss": 0.2282412528991699, + "step": 97100 + }, + { + "epoch": 32.562861211156715, + "grad_norm": 0.846002995967865, + "learning_rate": 3.372546063651592e-05, + "loss": 0.2312621307373047, + "step": 97200 + }, + { + "epoch": 32.596364854677944, + "grad_norm": 1.1084449291229248, + "learning_rate": 3.3708710217755446e-05, + "loss": 0.23065135955810548, + "step": 97300 + }, + { + "epoch": 32.62986849819918, + "grad_norm": 1.00586998462677, + "learning_rate": 3.3691959798994974e-05, + "loss": 0.2318124580383301, + "step": 97400 + }, + { + "epoch": 32.663372141720416, + "grad_norm": 1.010598063468933, + "learning_rate": 3.367520938023451e-05, + "loss": 0.22885004043579102, + "step": 97500 + }, + { + "epoch": 32.696875785241645, + "grad_norm": 0.9496275186538696, + "learning_rate": 3.365845896147404e-05, + "loss": 0.2315340232849121, + "step": 97600 + }, + { + "epoch": 32.73037942876288, + "grad_norm": 0.9502295255661011, + "learning_rate": 3.364170854271357e-05, + "loss": 0.2300456428527832, + "step": 97700 + }, + { + "epoch": 32.76388307228411, + "grad_norm": 0.8757120370864868, + "learning_rate": 3.3624958123953096e-05, + "loss": 0.2325787353515625, + "step": 97800 + }, + { + "epoch": 32.797386715805345, + "grad_norm": 1.086429476737976, + "learning_rate": 3.360820770519263e-05, + "loss": 0.23413005828857422, + "step": 97900 + }, + { + "epoch": 32.830890359326574, + "grad_norm": 0.9264597296714783, + "learning_rate": 3.359145728643216e-05, + "loss": 0.23220701217651368, + "step": 98000 + }, + { + "epoch": 32.86439400284781, + "grad_norm": 1.1024547815322876, + "learning_rate": 3.3574706867671696e-05, + "loss": 0.2337321662902832, + "step": 98100 + }, + { + "epoch": 32.897897646369046, + "grad_norm": 1.0790379047393799, + "learning_rate": 3.355812395309883e-05, + "loss": 0.23275186538696288, + "step": 98200 + }, + { + "epoch": 32.931401289890275, + "grad_norm": 1.0850489139556885, + "learning_rate": 3.354137353433836e-05, + "loss": 0.2350110626220703, + "step": 98300 + }, + { + "epoch": 32.96490493341151, + "grad_norm": 1.0384962558746338, + "learning_rate": 3.3524623115577893e-05, + "loss": 0.23315866470336913, + "step": 98400 + }, + { + "epoch": 32.99840857693274, + "grad_norm": 0.9511744379997253, + "learning_rate": 3.350787269681742e-05, + "loss": 0.23335418701171876, + "step": 98500 + }, + { + "epoch": 33.03182846134517, + "grad_norm": 0.9015313386917114, + "learning_rate": 3.349112227805695e-05, + "loss": 0.2207508850097656, + "step": 98600 + }, + { + "epoch": 33.06533210486641, + "grad_norm": 0.9277299046516418, + "learning_rate": 3.347437185929648e-05, + "loss": 0.2212068557739258, + "step": 98700 + }, + { + "epoch": 33.098835748387636, + "grad_norm": 0.9584958553314209, + "learning_rate": 3.3457621440536015e-05, + "loss": 0.2199711036682129, + "step": 98800 + }, + { + "epoch": 33.13233939190887, + "grad_norm": 0.788788378238678, + "learning_rate": 3.3440871021775544e-05, + "loss": 0.222060546875, + "step": 98900 + }, + { + "epoch": 33.1658430354301, + "grad_norm": 0.7377296090126038, + "learning_rate": 3.342412060301507e-05, + "loss": 0.2214929962158203, + "step": 99000 + }, + { + "epoch": 33.199346678951336, + "grad_norm": 0.9132254719734192, + "learning_rate": 3.340737018425461e-05, + "loss": 0.22287454605102539, + "step": 99100 + }, + { + "epoch": 33.23285032247257, + "grad_norm": 0.8702635169029236, + "learning_rate": 3.3390619765494144e-05, + "loss": 0.2249801254272461, + "step": 99200 + }, + { + "epoch": 33.2663539659938, + "grad_norm": 1.008585810661316, + "learning_rate": 3.337386934673367e-05, + "loss": 0.22441143035888672, + "step": 99300 + }, + { + "epoch": 33.29985760951504, + "grad_norm": 0.9218880534172058, + "learning_rate": 3.33571189279732e-05, + "loss": 0.22384666442871093, + "step": 99400 + }, + { + "epoch": 33.333361253036266, + "grad_norm": 0.8806573748588562, + "learning_rate": 3.334036850921273e-05, + "loss": 0.22616491317749024, + "step": 99500 + }, + { + "epoch": 33.3668648965575, + "grad_norm": 0.9997828602790833, + "learning_rate": 3.3323618090452266e-05, + "loss": 0.2251066780090332, + "step": 99600 + }, + { + "epoch": 33.40036854007873, + "grad_norm": 0.80961012840271, + "learning_rate": 3.3306867671691795e-05, + "loss": 0.22590801239013672, + "step": 99700 + }, + { + "epoch": 33.433872183599966, + "grad_norm": 0.8894720077514648, + "learning_rate": 3.3290117252931324e-05, + "loss": 0.2253563690185547, + "step": 99800 + }, + { + "epoch": 33.4673758271212, + "grad_norm": 0.9108457565307617, + "learning_rate": 3.327336683417085e-05, + "loss": 0.22678316116333008, + "step": 99900 + }, + { + "epoch": 33.50087947064243, + "grad_norm": 0.9380918145179749, + "learning_rate": 3.325661641541039e-05, + "loss": 0.22538763046264648, + "step": 100000 + }, + { + "epoch": 33.53438311416367, + "grad_norm": 0.9901800155639648, + "learning_rate": 3.323986599664992e-05, + "loss": 0.2280316734313965, + "step": 100100 + }, + { + "epoch": 33.567886757684896, + "grad_norm": 0.9266390204429626, + "learning_rate": 3.3223115577889446e-05, + "loss": 0.22870094299316407, + "step": 100200 + }, + { + "epoch": 33.60139040120613, + "grad_norm": 1.033541202545166, + "learning_rate": 3.3206365159128975e-05, + "loss": 0.22756708145141602, + "step": 100300 + }, + { + "epoch": 33.63489404472736, + "grad_norm": 0.9486100673675537, + "learning_rate": 3.318961474036851e-05, + "loss": 0.23031322479248048, + "step": 100400 + }, + { + "epoch": 33.6683976882486, + "grad_norm": 1.0127127170562744, + "learning_rate": 3.3172864321608046e-05, + "loss": 0.22845163345336914, + "step": 100500 + }, + { + "epoch": 33.70190133176983, + "grad_norm": 0.8763633966445923, + "learning_rate": 3.3156113902847575e-05, + "loss": 0.22902427673339842, + "step": 100600 + }, + { + "epoch": 33.73540497529106, + "grad_norm": 1.1065373420715332, + "learning_rate": 3.3139363484087104e-05, + "loss": 0.23073022842407226, + "step": 100700 + }, + { + "epoch": 33.7689086188123, + "grad_norm": 0.9771313071250916, + "learning_rate": 3.3122780569514236e-05, + "loss": 0.23011575698852538, + "step": 100800 + }, + { + "epoch": 33.802412262333526, + "grad_norm": 0.8843592405319214, + "learning_rate": 3.310603015075377e-05, + "loss": 0.23142065048217775, + "step": 100900 + }, + { + "epoch": 33.83591590585476, + "grad_norm": 0.8456923961639404, + "learning_rate": 3.30892797319933e-05, + "loss": 0.23063251495361328, + "step": 101000 + }, + { + "epoch": 33.869419549376, + "grad_norm": 0.8443148732185364, + "learning_rate": 3.307252931323283e-05, + "loss": 0.23091581344604492, + "step": 101100 + }, + { + "epoch": 33.90292319289723, + "grad_norm": 0.960616409778595, + "learning_rate": 3.305577889447236e-05, + "loss": 0.2316324806213379, + "step": 101200 + }, + { + "epoch": 33.93642683641846, + "grad_norm": 0.9722175002098083, + "learning_rate": 3.3039028475711894e-05, + "loss": 0.23007387161254883, + "step": 101300 + }, + { + "epoch": 33.96993047993969, + "grad_norm": 0.8240259289741516, + "learning_rate": 3.302227805695143e-05, + "loss": 0.2318846321105957, + "step": 101400 + }, + { + "epoch": 34.00335036435212, + "grad_norm": 0.9287110567092896, + "learning_rate": 3.300552763819096e-05, + "loss": 0.23206823348999023, + "step": 101500 + }, + { + "epoch": 34.03685400787336, + "grad_norm": 0.9008814692497253, + "learning_rate": 3.298877721943049e-05, + "loss": 0.21785154342651367, + "step": 101600 + }, + { + "epoch": 34.07035765139459, + "grad_norm": 0.9070394039154053, + "learning_rate": 3.297202680067002e-05, + "loss": 0.2177290725708008, + "step": 101700 + }, + { + "epoch": 34.10386129491582, + "grad_norm": 0.9032074809074402, + "learning_rate": 3.295527638190955e-05, + "loss": 0.21938394546508788, + "step": 101800 + }, + { + "epoch": 34.13736493843705, + "grad_norm": 0.9069404006004333, + "learning_rate": 3.293852596314908e-05, + "loss": 0.2203085708618164, + "step": 101900 + }, + { + "epoch": 34.17086858195829, + "grad_norm": 0.9074708819389343, + "learning_rate": 3.292177554438861e-05, + "loss": 0.2204928970336914, + "step": 102000 + }, + { + "epoch": 34.204372225479524, + "grad_norm": 0.9713619351387024, + "learning_rate": 3.2905025125628145e-05, + "loss": 0.22204416275024413, + "step": 102100 + }, + { + "epoch": 34.23787586900075, + "grad_norm": 0.9323224425315857, + "learning_rate": 3.2888274706867674e-05, + "loss": 0.22052072525024413, + "step": 102200 + }, + { + "epoch": 34.27137951252199, + "grad_norm": 0.8843114376068115, + "learning_rate": 3.28715242881072e-05, + "loss": 0.22254072189331053, + "step": 102300 + }, + { + "epoch": 34.30488315604322, + "grad_norm": 1.0152033567428589, + "learning_rate": 3.285477386934673e-05, + "loss": 0.2236959457397461, + "step": 102400 + }, + { + "epoch": 34.338386799564454, + "grad_norm": 0.9482904672622681, + "learning_rate": 3.283802345058627e-05, + "loss": 0.224102725982666, + "step": 102500 + }, + { + "epoch": 34.37189044308568, + "grad_norm": 0.8699772953987122, + "learning_rate": 3.28212730318258e-05, + "loss": 0.22381122589111327, + "step": 102600 + }, + { + "epoch": 34.40539408660692, + "grad_norm": 0.9056621193885803, + "learning_rate": 3.280452261306533e-05, + "loss": 0.22394416809082032, + "step": 102700 + }, + { + "epoch": 34.438897730128154, + "grad_norm": 1.0373077392578125, + "learning_rate": 3.2787939698492464e-05, + "loss": 0.22495691299438478, + "step": 102800 + }, + { + "epoch": 34.47240137364938, + "grad_norm": 1.0134550333023071, + "learning_rate": 3.277118927973199e-05, + "loss": 0.22408302307128905, + "step": 102900 + }, + { + "epoch": 34.50590501717062, + "grad_norm": 0.9845434427261353, + "learning_rate": 3.275443886097153e-05, + "loss": 0.22512359619140626, + "step": 103000 + }, + { + "epoch": 34.53940866069185, + "grad_norm": 1.0372213125228882, + "learning_rate": 3.273768844221106e-05, + "loss": 0.22693737030029296, + "step": 103100 + }, + { + "epoch": 34.572912304213084, + "grad_norm": 0.8394227027893066, + "learning_rate": 3.2720938023450586e-05, + "loss": 0.22773279190063478, + "step": 103200 + }, + { + "epoch": 34.60641594773432, + "grad_norm": 0.9733761548995972, + "learning_rate": 3.2704187604690115e-05, + "loss": 0.2269156265258789, + "step": 103300 + }, + { + "epoch": 34.63991959125555, + "grad_norm": 0.9194538593292236, + "learning_rate": 3.268743718592965e-05, + "loss": 0.22706941604614259, + "step": 103400 + }, + { + "epoch": 34.673423234776784, + "grad_norm": 0.9639450311660767, + "learning_rate": 3.267068676716918e-05, + "loss": 0.22622791290283203, + "step": 103500 + }, + { + "epoch": 34.70692687829801, + "grad_norm": 1.0700583457946777, + "learning_rate": 3.265393634840871e-05, + "loss": 0.2273421859741211, + "step": 103600 + }, + { + "epoch": 34.74043052181925, + "grad_norm": 0.9843416810035706, + "learning_rate": 3.2637185929648244e-05, + "loss": 0.22782588958740235, + "step": 103700 + }, + { + "epoch": 34.77393416534048, + "grad_norm": 0.9237584471702576, + "learning_rate": 3.262043551088777e-05, + "loss": 0.22874467849731445, + "step": 103800 + }, + { + "epoch": 34.807437808861714, + "grad_norm": 0.8710795640945435, + "learning_rate": 3.260368509212731e-05, + "loss": 0.22824941635131835, + "step": 103900 + }, + { + "epoch": 34.84094145238295, + "grad_norm": 0.8803784847259521, + "learning_rate": 3.258693467336684e-05, + "loss": 0.225937442779541, + "step": 104000 + }, + { + "epoch": 34.87444509590418, + "grad_norm": 0.9234800338745117, + "learning_rate": 3.2570184254606366e-05, + "loss": 0.22656524658203125, + "step": 104100 + }, + { + "epoch": 34.907948739425414, + "grad_norm": 0.9999638795852661, + "learning_rate": 3.25534338358459e-05, + "loss": 0.2282132911682129, + "step": 104200 + }, + { + "epoch": 34.94145238294664, + "grad_norm": 1.1694445610046387, + "learning_rate": 3.253668341708543e-05, + "loss": 0.22793378829956054, + "step": 104300 + }, + { + "epoch": 34.97495602646788, + "grad_norm": 0.8837403655052185, + "learning_rate": 3.251993299832496e-05, + "loss": 0.22847984313964845, + "step": 104400 + }, + { + "epoch": 35.00837591088031, + "grad_norm": 0.8809188604354858, + "learning_rate": 3.250318257956449e-05, + "loss": 0.22692270278930665, + "step": 104500 + }, + { + "epoch": 35.04187955440154, + "grad_norm": 1.0068167448043823, + "learning_rate": 3.248643216080402e-05, + "loss": 0.21723543167114256, + "step": 104600 + }, + { + "epoch": 35.075383197922775, + "grad_norm": 0.8723959922790527, + "learning_rate": 3.246968174204355e-05, + "loss": 0.21555179595947266, + "step": 104700 + }, + { + "epoch": 35.108886841444004, + "grad_norm": 0.8103620409965515, + "learning_rate": 3.245293132328308e-05, + "loss": 0.21831268310546875, + "step": 104800 + }, + { + "epoch": 35.14239048496524, + "grad_norm": 0.9336848855018616, + "learning_rate": 3.2436180904522617e-05, + "loss": 0.21713750839233398, + "step": 104900 + }, + { + "epoch": 35.175894128486476, + "grad_norm": 0.7471016049385071, + "learning_rate": 3.2419430485762145e-05, + "loss": 0.21997308731079102, + "step": 105000 + }, + { + "epoch": 35.209397772007705, + "grad_norm": 0.8775885105133057, + "learning_rate": 3.240268006700168e-05, + "loss": 0.21831626892089845, + "step": 105100 + }, + { + "epoch": 35.24290141552894, + "grad_norm": 0.8458008170127869, + "learning_rate": 3.238592964824121e-05, + "loss": 0.21945228576660156, + "step": 105200 + }, + { + "epoch": 35.27640505905017, + "grad_norm": 0.8437234163284302, + "learning_rate": 3.236917922948074e-05, + "loss": 0.2186195182800293, + "step": 105300 + }, + { + "epoch": 35.309908702571406, + "grad_norm": 0.7865097522735596, + "learning_rate": 3.235259631490787e-05, + "loss": 0.22217554092407227, + "step": 105400 + }, + { + "epoch": 35.343412346092634, + "grad_norm": 0.866061806678772, + "learning_rate": 3.233584589614741e-05, + "loss": 0.22084756851196288, + "step": 105500 + }, + { + "epoch": 35.37691598961387, + "grad_norm": 0.9198658466339111, + "learning_rate": 3.2319095477386936e-05, + "loss": 0.21991580963134766, + "step": 105600 + }, + { + "epoch": 35.410419633135106, + "grad_norm": 0.8831592202186584, + "learning_rate": 3.2302345058626464e-05, + "loss": 0.22320646286010742, + "step": 105700 + }, + { + "epoch": 35.443923276656335, + "grad_norm": 0.9197396636009216, + "learning_rate": 3.228559463986599e-05, + "loss": 0.22325061798095702, + "step": 105800 + }, + { + "epoch": 35.47742692017757, + "grad_norm": 0.8785274624824524, + "learning_rate": 3.226884422110553e-05, + "loss": 0.22299362182617188, + "step": 105900 + }, + { + "epoch": 35.5109305636988, + "grad_norm": 0.8461816310882568, + "learning_rate": 3.2252093802345064e-05, + "loss": 0.2225216484069824, + "step": 106000 + }, + { + "epoch": 35.544434207220036, + "grad_norm": 1.063522219657898, + "learning_rate": 3.223534338358459e-05, + "loss": 0.2242141342163086, + "step": 106100 + }, + { + "epoch": 35.57793785074127, + "grad_norm": 0.867465615272522, + "learning_rate": 3.221859296482412e-05, + "loss": 0.2223381805419922, + "step": 106200 + }, + { + "epoch": 35.6114414942625, + "grad_norm": 0.9031139016151428, + "learning_rate": 3.220184254606365e-05, + "loss": 0.22474571228027343, + "step": 106300 + }, + { + "epoch": 35.644945137783736, + "grad_norm": 1.0108989477157593, + "learning_rate": 3.2185092127303186e-05, + "loss": 0.22544246673583984, + "step": 106400 + }, + { + "epoch": 35.678448781304965, + "grad_norm": 1.0109949111938477, + "learning_rate": 3.2168341708542715e-05, + "loss": 0.22579713821411132, + "step": 106500 + }, + { + "epoch": 35.7119524248262, + "grad_norm": 0.9123691916465759, + "learning_rate": 3.2151591289782244e-05, + "loss": 0.22499269485473633, + "step": 106600 + }, + { + "epoch": 35.74545606834743, + "grad_norm": 0.951260507106781, + "learning_rate": 3.213484087102178e-05, + "loss": 0.22552137374877929, + "step": 106700 + }, + { + "epoch": 35.778959711868666, + "grad_norm": 0.8786386251449585, + "learning_rate": 3.211809045226131e-05, + "loss": 0.22638605117797853, + "step": 106800 + }, + { + "epoch": 35.8124633553899, + "grad_norm": 0.9864464998245239, + "learning_rate": 3.210134003350084e-05, + "loss": 0.2277699089050293, + "step": 106900 + }, + { + "epoch": 35.84596699891113, + "grad_norm": 1.0679579973220825, + "learning_rate": 3.2084589614740366e-05, + "loss": 0.22652555465698243, + "step": 107000 + }, + { + "epoch": 35.879470642432366, + "grad_norm": 1.0075697898864746, + "learning_rate": 3.20678391959799e-05, + "loss": 0.22713031768798828, + "step": 107100 + }, + { + "epoch": 35.912974285953595, + "grad_norm": 0.9335576891899109, + "learning_rate": 3.205108877721944e-05, + "loss": 0.22596691131591798, + "step": 107200 + }, + { + "epoch": 35.94647792947483, + "grad_norm": 0.7710935473442078, + "learning_rate": 3.2034338358458966e-05, + "loss": 0.22641992568969727, + "step": 107300 + }, + { + "epoch": 35.97998157299606, + "grad_norm": 1.083516001701355, + "learning_rate": 3.2017587939698495e-05, + "loss": 0.22827293395996093, + "step": 107400 + }, + { + "epoch": 36.01340145740849, + "grad_norm": 0.8612881302833557, + "learning_rate": 3.2000837520938024e-05, + "loss": 0.22379323959350586, + "step": 107500 + }, + { + "epoch": 36.04690510092973, + "grad_norm": 0.7906754016876221, + "learning_rate": 3.198408710217756e-05, + "loss": 0.21393178939819335, + "step": 107600 + }, + { + "epoch": 36.080408744450956, + "grad_norm": 0.6994041800498962, + "learning_rate": 3.196733668341709e-05, + "loss": 0.2150893211364746, + "step": 107700 + }, + { + "epoch": 36.11391238797219, + "grad_norm": 0.7304232120513916, + "learning_rate": 3.195058626465662e-05, + "loss": 0.21509407043457032, + "step": 107800 + }, + { + "epoch": 36.14741603149343, + "grad_norm": 0.8723782896995544, + "learning_rate": 3.1933835845896146e-05, + "loss": 0.21703847885131836, + "step": 107900 + }, + { + "epoch": 36.18091967501466, + "grad_norm": 0.8350656628608704, + "learning_rate": 3.191708542713568e-05, + "loss": 0.21680261611938476, + "step": 108000 + }, + { + "epoch": 36.21442331853589, + "grad_norm": 0.8917808532714844, + "learning_rate": 3.190033500837521e-05, + "loss": 0.21753547668457032, + "step": 108100 + }, + { + "epoch": 36.24792696205712, + "grad_norm": 0.9806150197982788, + "learning_rate": 3.188358458961474e-05, + "loss": 0.21905086517333985, + "step": 108200 + }, + { + "epoch": 36.28143060557836, + "grad_norm": 0.8857609033584595, + "learning_rate": 3.186700167504188e-05, + "loss": 0.21918514251708984, + "step": 108300 + }, + { + "epoch": 36.314934249099586, + "grad_norm": 0.910219669342041, + "learning_rate": 3.185025125628141e-05, + "loss": 0.2200949287414551, + "step": 108400 + }, + { + "epoch": 36.34843789262082, + "grad_norm": 1.0122119188308716, + "learning_rate": 3.183350083752094e-05, + "loss": 0.2193107795715332, + "step": 108500 + }, + { + "epoch": 36.38194153614206, + "grad_norm": 0.9494280815124512, + "learning_rate": 3.181675041876047e-05, + "loss": 0.2197030258178711, + "step": 108600 + }, + { + "epoch": 36.41544517966329, + "grad_norm": 0.9605288505554199, + "learning_rate": 3.18e-05, + "loss": 0.22033754348754883, + "step": 108700 + }, + { + "epoch": 36.44894882318452, + "grad_norm": 0.7704981565475464, + "learning_rate": 3.178324958123953e-05, + "loss": 0.22123022079467775, + "step": 108800 + }, + { + "epoch": 36.48245246670575, + "grad_norm": 0.9490818381309509, + "learning_rate": 3.1766499162479065e-05, + "loss": 0.22183971405029296, + "step": 108900 + }, + { + "epoch": 36.51595611022699, + "grad_norm": 0.9417729377746582, + "learning_rate": 3.1749748743718594e-05, + "loss": 0.22279998779296875, + "step": 109000 + }, + { + "epoch": 36.54945975374822, + "grad_norm": 0.933033287525177, + "learning_rate": 3.173299832495812e-05, + "loss": 0.22310422897338866, + "step": 109100 + }, + { + "epoch": 36.58296339726945, + "grad_norm": 0.8921425342559814, + "learning_rate": 3.171624790619765e-05, + "loss": 0.2227332878112793, + "step": 109200 + }, + { + "epoch": 36.61646704079069, + "grad_norm": 0.8272472023963928, + "learning_rate": 3.169949748743719e-05, + "loss": 0.22220718383789062, + "step": 109300 + }, + { + "epoch": 36.64997068431192, + "grad_norm": 0.9517436027526855, + "learning_rate": 3.1682747068676716e-05, + "loss": 0.22240093231201172, + "step": 109400 + }, + { + "epoch": 36.68347432783315, + "grad_norm": 0.869287371635437, + "learning_rate": 3.166599664991625e-05, + "loss": 0.22267683029174803, + "step": 109500 + }, + { + "epoch": 36.71697797135438, + "grad_norm": 0.8402668237686157, + "learning_rate": 3.164924623115578e-05, + "loss": 0.22277099609375, + "step": 109600 + }, + { + "epoch": 36.75048161487562, + "grad_norm": 0.7411085367202759, + "learning_rate": 3.1632495812395316e-05, + "loss": 0.22394742965698242, + "step": 109700 + }, + { + "epoch": 36.783985258396854, + "grad_norm": 0.9969924092292786, + "learning_rate": 3.1615745393634845e-05, + "loss": 0.22464384078979494, + "step": 109800 + }, + { + "epoch": 36.81748890191808, + "grad_norm": 1.0667954683303833, + "learning_rate": 3.1598994974874373e-05, + "loss": 0.22305191040039063, + "step": 109900 + }, + { + "epoch": 36.85099254543932, + "grad_norm": 0.9248315095901489, + "learning_rate": 3.15822445561139e-05, + "loss": 0.22483558654785157, + "step": 110000 + }, + { + "epoch": 36.88449618896055, + "grad_norm": 0.921510636806488, + "learning_rate": 3.156549413735344e-05, + "loss": 0.22462337493896484, + "step": 110100 + }, + { + "epoch": 36.91799983248178, + "grad_norm": 0.9513688683509827, + "learning_rate": 3.154874371859297e-05, + "loss": 0.22469757080078126, + "step": 110200 + }, + { + "epoch": 36.95150347600301, + "grad_norm": 0.9634213447570801, + "learning_rate": 3.1531993299832495e-05, + "loss": 0.22559005737304688, + "step": 110300 + }, + { + "epoch": 36.98500711952425, + "grad_norm": 0.8968513607978821, + "learning_rate": 3.1515242881072024e-05, + "loss": 0.22452268600463868, + "step": 110400 + }, + { + "epoch": 37.01842700393668, + "grad_norm": 0.9366862773895264, + "learning_rate": 3.149849246231156e-05, + "loss": 0.21873317718505858, + "step": 110500 + }, + { + "epoch": 37.05193064745791, + "grad_norm": 0.9117385149002075, + "learning_rate": 3.148174204355109e-05, + "loss": 0.21297582626342773, + "step": 110600 + }, + { + "epoch": 37.085434290979144, + "grad_norm": 0.8058609962463379, + "learning_rate": 3.1464991624790624e-05, + "loss": 0.21399580001831053, + "step": 110700 + }, + { + "epoch": 37.11893793450038, + "grad_norm": 0.9793832302093506, + "learning_rate": 3.144824120603015e-05, + "loss": 0.21349397659301758, + "step": 110800 + }, + { + "epoch": 37.15244157802161, + "grad_norm": 0.7564776539802551, + "learning_rate": 3.143149078726968e-05, + "loss": 0.2160548210144043, + "step": 110900 + }, + { + "epoch": 37.185945221542845, + "grad_norm": 0.9561526775360107, + "learning_rate": 3.141474036850922e-05, + "loss": 0.21727354049682618, + "step": 111000 + }, + { + "epoch": 37.219448865064074, + "grad_norm": 0.8852317929267883, + "learning_rate": 3.1397989949748746e-05, + "loss": 0.2165077018737793, + "step": 111100 + }, + { + "epoch": 37.25295250858531, + "grad_norm": 0.9445819854736328, + "learning_rate": 3.1381239530988275e-05, + "loss": 0.21671443939208984, + "step": 111200 + }, + { + "epoch": 37.28645615210654, + "grad_norm": 0.8414257168769836, + "learning_rate": 3.136465661641541e-05, + "loss": 0.2156463623046875, + "step": 111300 + }, + { + "epoch": 37.319959795627774, + "grad_norm": 0.9724504351615906, + "learning_rate": 3.134790619765494e-05, + "loss": 0.21695276260375976, + "step": 111400 + }, + { + "epoch": 37.35346343914901, + "grad_norm": 0.8939653038978577, + "learning_rate": 3.133115577889447e-05, + "loss": 0.21864233016967774, + "step": 111500 + }, + { + "epoch": 37.38696708267024, + "grad_norm": 0.7889378070831299, + "learning_rate": 3.1314405360134e-05, + "loss": 0.2170688056945801, + "step": 111600 + }, + { + "epoch": 37.420470726191475, + "grad_norm": 0.9483622312545776, + "learning_rate": 3.129765494137353e-05, + "loss": 0.2190123176574707, + "step": 111700 + }, + { + "epoch": 37.453974369712704, + "grad_norm": 0.8011330366134644, + "learning_rate": 3.128090452261307e-05, + "loss": 0.22048694610595704, + "step": 111800 + }, + { + "epoch": 37.48747801323394, + "grad_norm": 0.8247294425964355, + "learning_rate": 3.12641541038526e-05, + "loss": 0.21904251098632813, + "step": 111900 + }, + { + "epoch": 37.520981656755175, + "grad_norm": 0.750112771987915, + "learning_rate": 3.124740368509213e-05, + "loss": 0.21833335876464843, + "step": 112000 + }, + { + "epoch": 37.554485300276404, + "grad_norm": 0.9256598353385925, + "learning_rate": 3.123065326633166e-05, + "loss": 0.21966569900512695, + "step": 112100 + }, + { + "epoch": 37.58798894379764, + "grad_norm": 0.9734209775924683, + "learning_rate": 3.1213902847571194e-05, + "loss": 0.22099735260009765, + "step": 112200 + }, + { + "epoch": 37.62149258731887, + "grad_norm": 0.990144670009613, + "learning_rate": 3.119715242881072e-05, + "loss": 0.22192005157470704, + "step": 112300 + }, + { + "epoch": 37.654996230840105, + "grad_norm": 0.6585299372673035, + "learning_rate": 3.118040201005025e-05, + "loss": 0.22165678024291993, + "step": 112400 + }, + { + "epoch": 37.688499874361334, + "grad_norm": 0.9786301255226135, + "learning_rate": 3.116365159128978e-05, + "loss": 0.22310081481933594, + "step": 112500 + }, + { + "epoch": 37.72200351788257, + "grad_norm": 0.8770159482955933, + "learning_rate": 3.1146901172529316e-05, + "loss": 0.22149917602539063, + "step": 112600 + }, + { + "epoch": 37.755507161403806, + "grad_norm": 0.9303070306777954, + "learning_rate": 3.1130150753768845e-05, + "loss": 0.22284337997436524, + "step": 112700 + }, + { + "epoch": 37.789010804925034, + "grad_norm": 0.9092078804969788, + "learning_rate": 3.1113400335008374e-05, + "loss": 0.2229990005493164, + "step": 112800 + }, + { + "epoch": 37.82251444844627, + "grad_norm": 0.9219861626625061, + "learning_rate": 3.10966499162479e-05, + "loss": 0.2217073631286621, + "step": 112900 + }, + { + "epoch": 37.8560180919675, + "grad_norm": 0.7435413002967834, + "learning_rate": 3.107989949748744e-05, + "loss": 0.22171833038330077, + "step": 113000 + }, + { + "epoch": 37.889521735488735, + "grad_norm": 0.9068054556846619, + "learning_rate": 3.1063149078726974e-05, + "loss": 0.22258939743041992, + "step": 113100 + }, + { + "epoch": 37.923025379009964, + "grad_norm": 1.0471735000610352, + "learning_rate": 3.10463986599665e-05, + "loss": 0.2234604263305664, + "step": 113200 + }, + { + "epoch": 37.9565290225312, + "grad_norm": 1.0463248491287231, + "learning_rate": 3.102964824120603e-05, + "loss": 0.22215925216674803, + "step": 113300 + }, + { + "epoch": 37.990032666052436, + "grad_norm": 0.9165071845054626, + "learning_rate": 3.101289782244556e-05, + "loss": 0.22422847747802735, + "step": 113400 + }, + { + "epoch": 38.02345255046486, + "grad_norm": 0.8414464592933655, + "learning_rate": 3.09963149078727e-05, + "loss": 0.21486921310424806, + "step": 113500 + }, + { + "epoch": 38.056956193986096, + "grad_norm": 0.8961010575294495, + "learning_rate": 3.097956448911223e-05, + "loss": 0.21109798431396484, + "step": 113600 + }, + { + "epoch": 38.09045983750733, + "grad_norm": 0.9100089073181152, + "learning_rate": 3.096281407035176e-05, + "loss": 0.21328540802001952, + "step": 113700 + }, + { + "epoch": 38.12396348102856, + "grad_norm": 0.9186659455299377, + "learning_rate": 3.0946063651591286e-05, + "loss": 0.21333318710327148, + "step": 113800 + }, + { + "epoch": 38.1574671245498, + "grad_norm": 0.7723438143730164, + "learning_rate": 3.092931323283082e-05, + "loss": 0.21231781005859374, + "step": 113900 + }, + { + "epoch": 38.190970768071026, + "grad_norm": 0.8304508328437805, + "learning_rate": 3.091256281407035e-05, + "loss": 0.21468320846557618, + "step": 114000 + }, + { + "epoch": 38.22447441159226, + "grad_norm": 0.8922227025032043, + "learning_rate": 3.0895812395309886e-05, + "loss": 0.21428609848022462, + "step": 114100 + }, + { + "epoch": 38.25797805511349, + "grad_norm": 0.7371033430099487, + "learning_rate": 3.0879061976549415e-05, + "loss": 0.2143361473083496, + "step": 114200 + }, + { + "epoch": 38.291481698634726, + "grad_norm": 0.8409704566001892, + "learning_rate": 3.086231155778895e-05, + "loss": 0.21631322860717772, + "step": 114300 + }, + { + "epoch": 38.32498534215596, + "grad_norm": 0.7273088097572327, + "learning_rate": 3.084556113902848e-05, + "loss": 0.2163697624206543, + "step": 114400 + }, + { + "epoch": 38.35848898567719, + "grad_norm": 0.8249197602272034, + "learning_rate": 3.082881072026801e-05, + "loss": 0.2180681800842285, + "step": 114500 + }, + { + "epoch": 38.39199262919843, + "grad_norm": 0.7984412312507629, + "learning_rate": 3.081206030150754e-05, + "loss": 0.21718357086181642, + "step": 114600 + }, + { + "epoch": 38.425496272719656, + "grad_norm": 1.08668851852417, + "learning_rate": 3.079530988274707e-05, + "loss": 0.21632287979125978, + "step": 114700 + }, + { + "epoch": 38.45899991624089, + "grad_norm": 0.7324666976928711, + "learning_rate": 3.07785594639866e-05, + "loss": 0.2178202438354492, + "step": 114800 + }, + { + "epoch": 38.49250355976213, + "grad_norm": 0.8047093749046326, + "learning_rate": 3.076180904522613e-05, + "loss": 0.21611106872558594, + "step": 114900 + }, + { + "epoch": 38.526007203283356, + "grad_norm": 0.8086637854576111, + "learning_rate": 3.074505862646566e-05, + "loss": 0.21893905639648437, + "step": 115000 + }, + { + "epoch": 38.55951084680459, + "grad_norm": 0.9299573302268982, + "learning_rate": 3.0728308207705195e-05, + "loss": 0.21941152572631836, + "step": 115100 + }, + { + "epoch": 38.59301449032582, + "grad_norm": 0.921328067779541, + "learning_rate": 3.0711557788944724e-05, + "loss": 0.21848363876342775, + "step": 115200 + }, + { + "epoch": 38.62651813384706, + "grad_norm": 0.8732923865318298, + "learning_rate": 3.069480737018426e-05, + "loss": 0.2199881935119629, + "step": 115300 + }, + { + "epoch": 38.660021777368286, + "grad_norm": 0.8334107995033264, + "learning_rate": 3.067805695142379e-05, + "loss": 0.21993675231933593, + "step": 115400 + }, + { + "epoch": 38.69352542088952, + "grad_norm": 0.9880418181419373, + "learning_rate": 3.066130653266332e-05, + "loss": 0.21957590103149413, + "step": 115500 + }, + { + "epoch": 38.72702906441076, + "grad_norm": 0.7397698760032654, + "learning_rate": 3.0644723618090456e-05, + "loss": 0.22164581298828126, + "step": 115600 + }, + { + "epoch": 38.760532707931986, + "grad_norm": 0.8668732047080994, + "learning_rate": 3.0627973199329985e-05, + "loss": 0.22148818969726564, + "step": 115700 + }, + { + "epoch": 38.79403635145322, + "grad_norm": 0.9017316699028015, + "learning_rate": 3.0611222780569514e-05, + "loss": 0.22045387268066408, + "step": 115800 + }, + { + "epoch": 38.82753999497445, + "grad_norm": 0.960860550403595, + "learning_rate": 3.059447236180904e-05, + "loss": 0.22010658264160157, + "step": 115900 + }, + { + "epoch": 38.86104363849569, + "grad_norm": 0.9069247245788574, + "learning_rate": 3.057772194304858e-05, + "loss": 0.22206361770629882, + "step": 116000 + }, + { + "epoch": 38.894547282016916, + "grad_norm": 0.9507908821105957, + "learning_rate": 3.056097152428811e-05, + "loss": 0.223684139251709, + "step": 116100 + }, + { + "epoch": 38.92805092553815, + "grad_norm": 0.9307253360748291, + "learning_rate": 3.0544221105527636e-05, + "loss": 0.2224336814880371, + "step": 116200 + }, + { + "epoch": 38.96155456905939, + "grad_norm": 0.8504303097724915, + "learning_rate": 3.052747068676717e-05, + "loss": 0.22100894927978515, + "step": 116300 + }, + { + "epoch": 38.995058212580616, + "grad_norm": 1.0041011571884155, + "learning_rate": 3.0510720268006704e-05, + "loss": 0.2226072692871094, + "step": 116400 + }, + { + "epoch": 39.02847809699305, + "grad_norm": 0.8630343675613403, + "learning_rate": 3.0493969849246236e-05, + "loss": 0.21175411224365234, + "step": 116500 + }, + { + "epoch": 39.061981740514284, + "grad_norm": 0.8499475717544556, + "learning_rate": 3.0477219430485765e-05, + "loss": 0.21058534622192382, + "step": 116600 + }, + { + "epoch": 39.09548538403551, + "grad_norm": 0.8700653910636902, + "learning_rate": 3.0460469011725297e-05, + "loss": 0.21063339233398437, + "step": 116700 + }, + { + "epoch": 39.12898902755675, + "grad_norm": 0.928617537021637, + "learning_rate": 3.0443718592964826e-05, + "loss": 0.21142158508300782, + "step": 116800 + }, + { + "epoch": 39.16249267107798, + "grad_norm": 0.7653895616531372, + "learning_rate": 3.0426968174204358e-05, + "loss": 0.2120248031616211, + "step": 116900 + }, + { + "epoch": 39.19599631459921, + "grad_norm": 0.9703547954559326, + "learning_rate": 3.0410217755443887e-05, + "loss": 0.21317352294921876, + "step": 117000 + }, + { + "epoch": 39.22949995812044, + "grad_norm": 0.8479989767074585, + "learning_rate": 3.039346733668342e-05, + "loss": 0.21484851837158203, + "step": 117100 + }, + { + "epoch": 39.26300360164168, + "grad_norm": 0.899630069732666, + "learning_rate": 3.0376716917922948e-05, + "loss": 0.21453136444091797, + "step": 117200 + }, + { + "epoch": 39.296507245162914, + "grad_norm": 1.086026906967163, + "learning_rate": 3.035996649916248e-05, + "loss": 0.21443565368652343, + "step": 117300 + }, + { + "epoch": 39.33001088868414, + "grad_norm": 0.8970637917518616, + "learning_rate": 3.034321608040201e-05, + "loss": 0.21288238525390624, + "step": 117400 + }, + { + "epoch": 39.36351453220538, + "grad_norm": 0.9710267186164856, + "learning_rate": 3.032646566164154e-05, + "loss": 0.21607624053955077, + "step": 117500 + }, + { + "epoch": 39.39701817572661, + "grad_norm": 0.908697783946991, + "learning_rate": 3.030988274706868e-05, + "loss": 0.2151881217956543, + "step": 117600 + }, + { + "epoch": 39.43052181924784, + "grad_norm": 0.9393781423568726, + "learning_rate": 3.029313232830821e-05, + "loss": 0.21689601898193359, + "step": 117700 + }, + { + "epoch": 39.46402546276908, + "grad_norm": 0.8031620383262634, + "learning_rate": 3.027638190954774e-05, + "loss": 0.21640504837036134, + "step": 117800 + }, + { + "epoch": 39.49752910629031, + "grad_norm": 1.027938961982727, + "learning_rate": 3.025963149078727e-05, + "loss": 0.21748722076416016, + "step": 117900 + }, + { + "epoch": 39.531032749811544, + "grad_norm": 0.9682844877243042, + "learning_rate": 3.0242881072026802e-05, + "loss": 0.21787578582763673, + "step": 118000 + }, + { + "epoch": 39.56453639333277, + "grad_norm": 0.884766697883606, + "learning_rate": 3.022613065326633e-05, + "loss": 0.21701082229614257, + "step": 118100 + }, + { + "epoch": 39.59804003685401, + "grad_norm": 0.9033914804458618, + "learning_rate": 3.0209380234505863e-05, + "loss": 0.21810293197631836, + "step": 118200 + }, + { + "epoch": 39.63154368037524, + "grad_norm": 0.8522166013717651, + "learning_rate": 3.0192629815745392e-05, + "loss": 0.2182499122619629, + "step": 118300 + }, + { + "epoch": 39.665047323896474, + "grad_norm": 1.1046702861785889, + "learning_rate": 3.0175879396984924e-05, + "loss": 0.2196645164489746, + "step": 118400 + }, + { + "epoch": 39.69855096741771, + "grad_norm": 0.7786019444465637, + "learning_rate": 3.0159128978224453e-05, + "loss": 0.21823881149291993, + "step": 118500 + }, + { + "epoch": 39.73205461093894, + "grad_norm": 0.8261039853096008, + "learning_rate": 3.0142378559463992e-05, + "loss": 0.2183905029296875, + "step": 118600 + }, + { + "epoch": 39.765558254460174, + "grad_norm": 0.7951787710189819, + "learning_rate": 3.012562814070352e-05, + "loss": 0.22037561416625975, + "step": 118700 + }, + { + "epoch": 39.7990618979814, + "grad_norm": 0.9430021047592163, + "learning_rate": 3.0108877721943053e-05, + "loss": 0.22020740509033204, + "step": 118800 + }, + { + "epoch": 39.83256554150264, + "grad_norm": 0.8699235320091248, + "learning_rate": 3.0092127303182582e-05, + "loss": 0.2182463836669922, + "step": 118900 + }, + { + "epoch": 39.866069185023875, + "grad_norm": 0.6874027252197266, + "learning_rate": 3.0075376884422114e-05, + "loss": 0.21936134338378907, + "step": 119000 + }, + { + "epoch": 39.899572828545104, + "grad_norm": 0.9950704574584961, + "learning_rate": 3.0058626465661643e-05, + "loss": 0.22008882522583006, + "step": 119100 + }, + { + "epoch": 39.93307647206634, + "grad_norm": 0.9827971458435059, + "learning_rate": 3.0041876046901175e-05, + "loss": 0.22005229949951172, + "step": 119200 + }, + { + "epoch": 39.96658011558757, + "grad_norm": 0.9177015423774719, + "learning_rate": 3.0025125628140704e-05, + "loss": 0.21897659301757813, + "step": 119300 + }, + { + "epoch": 40.0, + "grad_norm": 1.1112428903579712, + "learning_rate": 3.0008375209380236e-05, + "loss": 0.2205747604370117, + "step": 119400 + }, + { + "epoch": 40.033503643521236, + "grad_norm": 0.9478968977928162, + "learning_rate": 2.9991624790619765e-05, + "loss": 0.20781259536743163, + "step": 119500 + }, + { + "epoch": 40.067007287042465, + "grad_norm": 0.8990084528923035, + "learning_rate": 2.99750418760469e-05, + "loss": 0.20928415298461914, + "step": 119600 + }, + { + "epoch": 40.1005109305637, + "grad_norm": 1.0282913446426392, + "learning_rate": 2.9958291457286437e-05, + "loss": 0.21068788528442384, + "step": 119700 + }, + { + "epoch": 40.13401457408493, + "grad_norm": 0.781109094619751, + "learning_rate": 2.9941541038525965e-05, + "loss": 0.2100553321838379, + "step": 119800 + }, + { + "epoch": 40.167518217606165, + "grad_norm": 0.7364116311073303, + "learning_rate": 2.9924790619765498e-05, + "loss": 0.211074161529541, + "step": 119900 + }, + { + "epoch": 40.201021861127394, + "grad_norm": 0.8109786510467529, + "learning_rate": 2.9908040201005027e-05, + "loss": 0.2111503028869629, + "step": 120000 + }, + { + "epoch": 40.23452550464863, + "grad_norm": 0.8337066769599915, + "learning_rate": 2.989128978224456e-05, + "loss": 0.21187753677368165, + "step": 120100 + }, + { + "epoch": 40.268029148169866, + "grad_norm": 0.8106216788291931, + "learning_rate": 2.9874539363484088e-05, + "loss": 0.21110746383666992, + "step": 120200 + }, + { + "epoch": 40.301532791691095, + "grad_norm": 0.900480329990387, + "learning_rate": 2.985778894472362e-05, + "loss": 0.21332656860351562, + "step": 120300 + }, + { + "epoch": 40.33503643521233, + "grad_norm": 0.8936036825180054, + "learning_rate": 2.984103852596315e-05, + "loss": 0.21424699783325196, + "step": 120400 + }, + { + "epoch": 40.36854007873356, + "grad_norm": 1.0281628370285034, + "learning_rate": 2.982428810720268e-05, + "loss": 0.21567123413085937, + "step": 120500 + }, + { + "epoch": 40.402043722254795, + "grad_norm": 0.9829724431037903, + "learning_rate": 2.980753768844221e-05, + "loss": 0.21529359817504884, + "step": 120600 + }, + { + "epoch": 40.43554736577603, + "grad_norm": 0.8747444748878479, + "learning_rate": 2.9790787269681742e-05, + "loss": 0.21478731155395508, + "step": 120700 + }, + { + "epoch": 40.46905100929726, + "grad_norm": 0.8821930885314941, + "learning_rate": 2.977403685092127e-05, + "loss": 0.21482231140136718, + "step": 120800 + }, + { + "epoch": 40.502554652818496, + "grad_norm": 0.8955323696136475, + "learning_rate": 2.975728643216081e-05, + "loss": 0.2153952407836914, + "step": 120900 + }, + { + "epoch": 40.536058296339725, + "grad_norm": 0.8369837999343872, + "learning_rate": 2.974053601340034e-05, + "loss": 0.21576461791992188, + "step": 121000 + }, + { + "epoch": 40.56956193986096, + "grad_norm": 0.8737310767173767, + "learning_rate": 2.972378559463987e-05, + "loss": 0.21639930725097656, + "step": 121100 + }, + { + "epoch": 40.60306558338219, + "grad_norm": 0.9263436198234558, + "learning_rate": 2.97070351758794e-05, + "loss": 0.21683277130126954, + "step": 121200 + }, + { + "epoch": 40.636569226903426, + "grad_norm": 0.9024245142936707, + "learning_rate": 2.9690284757118932e-05, + "loss": 0.21628368377685547, + "step": 121300 + }, + { + "epoch": 40.67007287042466, + "grad_norm": 0.8429529070854187, + "learning_rate": 2.967353433835846e-05, + "loss": 0.2163913917541504, + "step": 121400 + }, + { + "epoch": 40.70357651394589, + "grad_norm": 1.2450178861618042, + "learning_rate": 2.9656783919597993e-05, + "loss": 0.2194381523132324, + "step": 121500 + }, + { + "epoch": 40.737080157467126, + "grad_norm": 0.7648131251335144, + "learning_rate": 2.964003350083752e-05, + "loss": 0.21698453903198242, + "step": 121600 + }, + { + "epoch": 40.770583800988355, + "grad_norm": 0.9009991884231567, + "learning_rate": 2.9623283082077054e-05, + "loss": 0.21700273513793944, + "step": 121700 + }, + { + "epoch": 40.80408744450959, + "grad_norm": 0.8008719086647034, + "learning_rate": 2.9606532663316583e-05, + "loss": 0.21888105392456056, + "step": 121800 + }, + { + "epoch": 40.83759108803083, + "grad_norm": 0.9055608510971069, + "learning_rate": 2.9589782244556115e-05, + "loss": 0.21676677703857422, + "step": 121900 + }, + { + "epoch": 40.871094731552056, + "grad_norm": 0.80983567237854, + "learning_rate": 2.9573199329983254e-05, + "loss": 0.21832197189331054, + "step": 122000 + }, + { + "epoch": 40.90459837507329, + "grad_norm": 0.892451286315918, + "learning_rate": 2.9556448911222783e-05, + "loss": 0.21815378189086915, + "step": 122100 + }, + { + "epoch": 40.93810201859452, + "grad_norm": 0.8478377461433411, + "learning_rate": 2.9539698492462315e-05, + "loss": 0.21775611877441406, + "step": 122200 + }, + { + "epoch": 40.971605662115756, + "grad_norm": 0.9962807297706604, + "learning_rate": 2.9522948073701844e-05, + "loss": 0.219617919921875, + "step": 122300 + }, + { + "epoch": 41.00502554652819, + "grad_norm": 0.947913646697998, + "learning_rate": 2.9506197654941376e-05, + "loss": 0.21659244537353517, + "step": 122400 + }, + { + "epoch": 41.03852919004942, + "grad_norm": 0.7525883316993713, + "learning_rate": 2.9489447236180905e-05, + "loss": 0.20789249420166014, + "step": 122500 + }, + { + "epoch": 41.07203283357065, + "grad_norm": 0.6433896422386169, + "learning_rate": 2.9472696817420437e-05, + "loss": 0.2080308723449707, + "step": 122600 + }, + { + "epoch": 41.10553647709188, + "grad_norm": 0.8577892780303955, + "learning_rate": 2.9455946398659966e-05, + "loss": 0.20854692459106444, + "step": 122700 + }, + { + "epoch": 41.13904012061312, + "grad_norm": 0.9137370586395264, + "learning_rate": 2.9439195979899498e-05, + "loss": 0.20944379806518554, + "step": 122800 + }, + { + "epoch": 41.172543764134346, + "grad_norm": 0.8469370007514954, + "learning_rate": 2.9422445561139027e-05, + "loss": 0.21084047317504884, + "step": 122900 + }, + { + "epoch": 41.20604740765558, + "grad_norm": 0.8777198791503906, + "learning_rate": 2.940569514237856e-05, + "loss": 0.209267520904541, + "step": 123000 + }, + { + "epoch": 41.23955105117682, + "grad_norm": 0.8626389503479004, + "learning_rate": 2.9388944723618088e-05, + "loss": 0.21044559478759767, + "step": 123100 + }, + { + "epoch": 41.27305469469805, + "grad_norm": 0.9588419198989868, + "learning_rate": 2.9372194304857624e-05, + "loss": 0.21222888946533203, + "step": 123200 + }, + { + "epoch": 41.30655833821928, + "grad_norm": 0.86114901304245, + "learning_rate": 2.9355443886097156e-05, + "loss": 0.21097087860107422, + "step": 123300 + }, + { + "epoch": 41.34006198174051, + "grad_norm": 0.887198269367218, + "learning_rate": 2.9338693467336688e-05, + "loss": 0.21297225952148438, + "step": 123400 + }, + { + "epoch": 41.37356562526175, + "grad_norm": 0.7785773873329163, + "learning_rate": 2.9321943048576217e-05, + "loss": 0.2132717514038086, + "step": 123500 + }, + { + "epoch": 41.40706926878298, + "grad_norm": 0.8815355896949768, + "learning_rate": 2.930519262981575e-05, + "loss": 0.2135430908203125, + "step": 123600 + }, + { + "epoch": 41.44057291230421, + "grad_norm": 0.7385589480400085, + "learning_rate": 2.9288442211055278e-05, + "loss": 0.21455587387084962, + "step": 123700 + }, + { + "epoch": 41.47407655582545, + "grad_norm": 0.9357995986938477, + "learning_rate": 2.927169179229481e-05, + "loss": 0.2131095314025879, + "step": 123800 + }, + { + "epoch": 41.50758019934668, + "grad_norm": 0.9078415632247925, + "learning_rate": 2.925494137353434e-05, + "loss": 0.21512672424316406, + "step": 123900 + }, + { + "epoch": 41.54108384286791, + "grad_norm": 0.8247988820075989, + "learning_rate": 2.923819095477387e-05, + "loss": 0.21399457931518553, + "step": 124000 + }, + { + "epoch": 41.57458748638914, + "grad_norm": 0.726129949092865, + "learning_rate": 2.9221608040201004e-05, + "loss": 0.21407983779907228, + "step": 124100 + }, + { + "epoch": 41.60809112991038, + "grad_norm": 0.8694594502449036, + "learning_rate": 2.920485762144054e-05, + "loss": 0.21551137924194336, + "step": 124200 + }, + { + "epoch": 41.64159477343161, + "grad_norm": 0.9320394992828369, + "learning_rate": 2.918810720268007e-05, + "loss": 0.21677978515625, + "step": 124300 + }, + { + "epoch": 41.67509841695284, + "grad_norm": 1.0589549541473389, + "learning_rate": 2.91713567839196e-05, + "loss": 0.21467880249023438, + "step": 124400 + }, + { + "epoch": 41.70860206047408, + "grad_norm": 0.8709360361099243, + "learning_rate": 2.9154606365159133e-05, + "loss": 0.21607656478881837, + "step": 124500 + }, + { + "epoch": 41.74210570399531, + "grad_norm": 0.8040139675140381, + "learning_rate": 2.913785594639866e-05, + "loss": 0.21505617141723632, + "step": 124600 + }, + { + "epoch": 41.77560934751654, + "grad_norm": 0.899761438369751, + "learning_rate": 2.9121105527638194e-05, + "loss": 0.2151774787902832, + "step": 124700 + }, + { + "epoch": 41.80911299103778, + "grad_norm": 0.8534619808197021, + "learning_rate": 2.9104355108877722e-05, + "loss": 0.21662195205688475, + "step": 124800 + }, + { + "epoch": 41.84261663455901, + "grad_norm": 0.96486896276474, + "learning_rate": 2.9087604690117255e-05, + "loss": 0.21604257583618164, + "step": 124900 + }, + { + "epoch": 41.87612027808024, + "grad_norm": 0.8162650465965271, + "learning_rate": 2.9070854271356783e-05, + "loss": 0.2170560836791992, + "step": 125000 + }, + { + "epoch": 41.90962392160147, + "grad_norm": 0.889887809753418, + "learning_rate": 2.9054103852596316e-05, + "loss": 0.21925149917602538, + "step": 125100 + }, + { + "epoch": 41.94312756512271, + "grad_norm": 0.9023459553718567, + "learning_rate": 2.9037353433835844e-05, + "loss": 0.21658233642578126, + "step": 125200 + }, + { + "epoch": 41.97663120864394, + "grad_norm": 0.9475107192993164, + "learning_rate": 2.9020603015075377e-05, + "loss": 0.2174862480163574, + "step": 125300 + }, + { + "epoch": 42.01005109305637, + "grad_norm": 0.8001925945281982, + "learning_rate": 2.9003852596314905e-05, + "loss": 0.21471311569213866, + "step": 125400 + }, + { + "epoch": 42.043554736577605, + "grad_norm": 0.7804350852966309, + "learning_rate": 2.898710217755444e-05, + "loss": 0.2056850814819336, + "step": 125500 + }, + { + "epoch": 42.07705838009883, + "grad_norm": 0.9709755182266235, + "learning_rate": 2.8970351758793973e-05, + "loss": 0.20687313079833985, + "step": 125600 + }, + { + "epoch": 42.11056202362007, + "grad_norm": 0.8425003290176392, + "learning_rate": 2.8953601340033502e-05, + "loss": 0.20829198837280274, + "step": 125700 + }, + { + "epoch": 42.1440656671413, + "grad_norm": 0.7324151396751404, + "learning_rate": 2.8936850921273034e-05, + "loss": 0.20799571990966798, + "step": 125800 + }, + { + "epoch": 42.177569310662534, + "grad_norm": 0.7971581220626831, + "learning_rate": 2.8920100502512567e-05, + "loss": 0.21026283264160156, + "step": 125900 + }, + { + "epoch": 42.21107295418377, + "grad_norm": 0.7958289384841919, + "learning_rate": 2.8903350083752095e-05, + "loss": 0.20917728424072266, + "step": 126000 + }, + { + "epoch": 42.244576597705, + "grad_norm": 0.8632842302322388, + "learning_rate": 2.888676716917923e-05, + "loss": 0.20981687545776367, + "step": 126100 + }, + { + "epoch": 42.278080241226235, + "grad_norm": 0.8120240569114685, + "learning_rate": 2.887001675041876e-05, + "loss": 0.21040897369384765, + "step": 126200 + }, + { + "epoch": 42.31158388474746, + "grad_norm": 0.9877341389656067, + "learning_rate": 2.8853266331658292e-05, + "loss": 0.21044788360595704, + "step": 126300 + }, + { + "epoch": 42.3450875282687, + "grad_norm": 0.803947925567627, + "learning_rate": 2.883651591289782e-05, + "loss": 0.21133209228515626, + "step": 126400 + }, + { + "epoch": 42.378591171789935, + "grad_norm": 0.8692134022712708, + "learning_rate": 2.8819765494137357e-05, + "loss": 0.21098001480102538, + "step": 126500 + }, + { + "epoch": 42.412094815311164, + "grad_norm": 0.703528642654419, + "learning_rate": 2.880301507537689e-05, + "loss": 0.21152076721191407, + "step": 126600 + }, + { + "epoch": 42.4455984588324, + "grad_norm": 0.9700392484664917, + "learning_rate": 2.8786264656616418e-05, + "loss": 0.21170536041259766, + "step": 126700 + }, + { + "epoch": 42.47910210235363, + "grad_norm": 0.7205595970153809, + "learning_rate": 2.876951423785595e-05, + "loss": 0.2123921012878418, + "step": 126800 + }, + { + "epoch": 42.512605745874865, + "grad_norm": 0.8186672925949097, + "learning_rate": 2.875276381909548e-05, + "loss": 0.2122740364074707, + "step": 126900 + }, + { + "epoch": 42.54610938939609, + "grad_norm": 0.9268088340759277, + "learning_rate": 2.873601340033501e-05, + "loss": 0.21358152389526366, + "step": 127000 + }, + { + "epoch": 42.57961303291733, + "grad_norm": 0.762809157371521, + "learning_rate": 2.871926298157454e-05, + "loss": 0.21314903259277343, + "step": 127100 + }, + { + "epoch": 42.613116676438565, + "grad_norm": 0.8699193596839905, + "learning_rate": 2.8702512562814072e-05, + "loss": 0.2129987335205078, + "step": 127200 + }, + { + "epoch": 42.646620319959794, + "grad_norm": 0.698263943195343, + "learning_rate": 2.86857621440536e-05, + "loss": 0.21600809097290039, + "step": 127300 + }, + { + "epoch": 42.68012396348103, + "grad_norm": 0.7782033681869507, + "learning_rate": 2.8669011725293133e-05, + "loss": 0.21448253631591796, + "step": 127400 + }, + { + "epoch": 42.71362760700226, + "grad_norm": 0.8113609552383423, + "learning_rate": 2.8652261306532662e-05, + "loss": 0.2134496307373047, + "step": 127500 + }, + { + "epoch": 42.747131250523495, + "grad_norm": 0.7400202751159668, + "learning_rate": 2.8635510887772194e-05, + "loss": 0.21415563583374023, + "step": 127600 + }, + { + "epoch": 42.78063489404473, + "grad_norm": 1.0038073062896729, + "learning_rate": 2.8618760469011723e-05, + "loss": 0.2144919776916504, + "step": 127700 + }, + { + "epoch": 42.81413853756596, + "grad_norm": 0.7947350144386292, + "learning_rate": 2.860201005025126e-05, + "loss": 0.21546197891235352, + "step": 127800 + }, + { + "epoch": 42.847642181087195, + "grad_norm": 0.7404258847236633, + "learning_rate": 2.858525963149079e-05, + "loss": 0.2151948356628418, + "step": 127900 + }, + { + "epoch": 42.881145824608424, + "grad_norm": 0.8000117540359497, + "learning_rate": 2.856850921273032e-05, + "loss": 0.2174908447265625, + "step": 128000 + }, + { + "epoch": 42.91464946812966, + "grad_norm": 0.8331735730171204, + "learning_rate": 2.8551758793969852e-05, + "loss": 0.2154141616821289, + "step": 128100 + }, + { + "epoch": 42.94815311165089, + "grad_norm": 0.8255071640014648, + "learning_rate": 2.8535175879396984e-05, + "loss": 0.21642459869384767, + "step": 128200 + }, + { + "epoch": 42.981656755172125, + "grad_norm": 0.8828434944152832, + "learning_rate": 2.8518425460636516e-05, + "loss": 0.21653507232666017, + "step": 128300 + }, + { + "epoch": 43.01507663958456, + "grad_norm": 0.8157568573951721, + "learning_rate": 2.8501675041876045e-05, + "loss": 0.21150121688842774, + "step": 128400 + }, + { + "epoch": 43.048580283105785, + "grad_norm": 0.7143152356147766, + "learning_rate": 2.8484924623115578e-05, + "loss": 0.20697792053222655, + "step": 128500 + }, + { + "epoch": 43.08208392662702, + "grad_norm": 0.9034318327903748, + "learning_rate": 2.846817420435511e-05, + "loss": 0.20594911575317382, + "step": 128600 + }, + { + "epoch": 43.11558757014826, + "grad_norm": 0.7974486947059631, + "learning_rate": 2.845142378559464e-05, + "loss": 0.20707765579223633, + "step": 128700 + }, + { + "epoch": 43.149091213669486, + "grad_norm": 0.7226033210754395, + "learning_rate": 2.8434673366834174e-05, + "loss": 0.20583932876586913, + "step": 128800 + }, + { + "epoch": 43.18259485719072, + "grad_norm": 0.8551874160766602, + "learning_rate": 2.8417922948073706e-05, + "loss": 0.2078396797180176, + "step": 128900 + }, + { + "epoch": 43.21609850071195, + "grad_norm": 0.7227718234062195, + "learning_rate": 2.8401172529313235e-05, + "loss": 0.20798839569091798, + "step": 129000 + }, + { + "epoch": 43.24960214423319, + "grad_norm": 0.9496952891349792, + "learning_rate": 2.8384422110552767e-05, + "loss": 0.2099104118347168, + "step": 129100 + }, + { + "epoch": 43.283105787754415, + "grad_norm": 0.9909376502037048, + "learning_rate": 2.8367671691792296e-05, + "loss": 0.20969415664672852, + "step": 129200 + }, + { + "epoch": 43.31660943127565, + "grad_norm": 0.9239180088043213, + "learning_rate": 2.835092127303183e-05, + "loss": 0.20861217498779297, + "step": 129300 + }, + { + "epoch": 43.35011307479689, + "grad_norm": 0.8692393898963928, + "learning_rate": 2.8334170854271357e-05, + "loss": 0.2091372299194336, + "step": 129400 + }, + { + "epoch": 43.383616718318116, + "grad_norm": 0.693246603012085, + "learning_rate": 2.831742043551089e-05, + "loss": 0.20966863632202148, + "step": 129500 + }, + { + "epoch": 43.41712036183935, + "grad_norm": 0.8332297205924988, + "learning_rate": 2.8300670016750418e-05, + "loss": 0.21026342391967773, + "step": 129600 + }, + { + "epoch": 43.45062400536058, + "grad_norm": 0.8729221820831299, + "learning_rate": 2.828391959798995e-05, + "loss": 0.21070770263671876, + "step": 129700 + }, + { + "epoch": 43.48412764888182, + "grad_norm": 0.7649937868118286, + "learning_rate": 2.826716917922948e-05, + "loss": 0.21120260238647462, + "step": 129800 + }, + { + "epoch": 43.517631292403046, + "grad_norm": 0.8937798738479614, + "learning_rate": 2.825041876046901e-05, + "loss": 0.21302244186401367, + "step": 129900 + }, + { + "epoch": 43.55113493592428, + "grad_norm": 1.0248814821243286, + "learning_rate": 2.8233668341708547e-05, + "loss": 0.21207603454589843, + "step": 130000 + }, + { + "epoch": 43.58463857944552, + "grad_norm": 0.9701077938079834, + "learning_rate": 2.8216917922948076e-05, + "loss": 0.2112472915649414, + "step": 130100 + }, + { + "epoch": 43.618142222966746, + "grad_norm": 0.8634024858474731, + "learning_rate": 2.8200167504187608e-05, + "loss": 0.21355249404907226, + "step": 130200 + }, + { + "epoch": 43.65164586648798, + "grad_norm": 0.9003106951713562, + "learning_rate": 2.818358458961474e-05, + "loss": 0.2142485809326172, + "step": 130300 + }, + { + "epoch": 43.68514951000921, + "grad_norm": 0.7895374298095703, + "learning_rate": 2.8166834170854273e-05, + "loss": 0.2131346321105957, + "step": 130400 + }, + { + "epoch": 43.71865315353045, + "grad_norm": 1.0067280530929565, + "learning_rate": 2.81500837520938e-05, + "loss": 0.21282941818237305, + "step": 130500 + }, + { + "epoch": 43.75215679705168, + "grad_norm": 0.7602081894874573, + "learning_rate": 2.8133333333333334e-05, + "loss": 0.2138546371459961, + "step": 130600 + }, + { + "epoch": 43.78566044057291, + "grad_norm": 0.7720736265182495, + "learning_rate": 2.8116582914572863e-05, + "loss": 0.2136884307861328, + "step": 130700 + }, + { + "epoch": 43.81916408409415, + "grad_norm": 0.7715796232223511, + "learning_rate": 2.8099832495812395e-05, + "loss": 0.21329423904418945, + "step": 130800 + }, + { + "epoch": 43.852667727615376, + "grad_norm": 0.8566184043884277, + "learning_rate": 2.8083082077051924e-05, + "loss": 0.21406152725219726, + "step": 130900 + }, + { + "epoch": 43.88617137113661, + "grad_norm": 0.8490840792655945, + "learning_rate": 2.8066331658291456e-05, + "loss": 0.21463991165161134, + "step": 131000 + }, + { + "epoch": 43.91967501465784, + "grad_norm": 0.9666714072227478, + "learning_rate": 2.804958123953099e-05, + "loss": 0.21495559692382812, + "step": 131100 + }, + { + "epoch": 43.95317865817908, + "grad_norm": 1.0371804237365723, + "learning_rate": 2.8032830820770524e-05, + "loss": 0.21566991806030272, + "step": 131200 + }, + { + "epoch": 43.98668230170031, + "grad_norm": 0.910309910774231, + "learning_rate": 2.8016080402010053e-05, + "loss": 0.215529727935791, + "step": 131300 + }, + { + "epoch": 44.02010218611274, + "grad_norm": 0.7464276552200317, + "learning_rate": 2.7999329983249585e-05, + "loss": 0.20866870880126953, + "step": 131400 + }, + { + "epoch": 44.05360582963397, + "grad_norm": 0.7517808079719543, + "learning_rate": 2.7982579564489114e-05, + "loss": 0.20390798568725585, + "step": 131500 + }, + { + "epoch": 44.08710947315521, + "grad_norm": 0.6557915210723877, + "learning_rate": 2.7965829145728646e-05, + "loss": 0.20384593963623046, + "step": 131600 + }, + { + "epoch": 44.12061311667644, + "grad_norm": 0.855191171169281, + "learning_rate": 2.7949078726968175e-05, + "loss": 0.2066969871520996, + "step": 131700 + }, + { + "epoch": 44.154116760197674, + "grad_norm": 0.8590629696846008, + "learning_rate": 2.7932328308207707e-05, + "loss": 0.2062934684753418, + "step": 131800 + }, + { + "epoch": 44.1876204037189, + "grad_norm": 0.9050695896148682, + "learning_rate": 2.7915577889447236e-05, + "loss": 0.20599493026733398, + "step": 131900 + }, + { + "epoch": 44.22112404724014, + "grad_norm": 0.8817638754844666, + "learning_rate": 2.7898827470686768e-05, + "loss": 0.2078232765197754, + "step": 132000 + }, + { + "epoch": 44.25462769076137, + "grad_norm": 0.8479394316673279, + "learning_rate": 2.7882077051926297e-05, + "loss": 0.20759906768798828, + "step": 132100 + }, + { + "epoch": 44.2881313342826, + "grad_norm": 0.8977039456367493, + "learning_rate": 2.786532663316583e-05, + "loss": 0.20864250183105468, + "step": 132200 + }, + { + "epoch": 44.32163497780384, + "grad_norm": 0.7003665566444397, + "learning_rate": 2.7848576214405365e-05, + "loss": 0.20907209396362306, + "step": 132300 + }, + { + "epoch": 44.35513862132507, + "grad_norm": 0.8874910473823547, + "learning_rate": 2.7831825795644893e-05, + "loss": 0.20834226608276368, + "step": 132400 + }, + { + "epoch": 44.388642264846304, + "grad_norm": 0.8135631680488586, + "learning_rate": 2.781524288107203e-05, + "loss": 0.2098270034790039, + "step": 132500 + }, + { + "epoch": 44.42214590836753, + "grad_norm": 1.0045340061187744, + "learning_rate": 2.7798492462311558e-05, + "loss": 0.2112841033935547, + "step": 132600 + }, + { + "epoch": 44.45564955188877, + "grad_norm": 0.8854024410247803, + "learning_rate": 2.778174204355109e-05, + "loss": 0.2096893310546875, + "step": 132700 + }, + { + "epoch": 44.48915319541, + "grad_norm": 0.8551903963088989, + "learning_rate": 2.776499162479062e-05, + "loss": 0.21038183212280273, + "step": 132800 + }, + { + "epoch": 44.52265683893123, + "grad_norm": 0.848574161529541, + "learning_rate": 2.774824120603015e-05, + "loss": 0.21035202026367186, + "step": 132900 + }, + { + "epoch": 44.55616048245247, + "grad_norm": 0.8698804378509521, + "learning_rate": 2.773149078726968e-05, + "loss": 0.21176429748535155, + "step": 133000 + }, + { + "epoch": 44.5896641259737, + "grad_norm": 0.8525173664093018, + "learning_rate": 2.7714740368509212e-05, + "loss": 0.21025493621826172, + "step": 133100 + }, + { + "epoch": 44.623167769494934, + "grad_norm": 1.0027357339859009, + "learning_rate": 2.769798994974874e-05, + "loss": 0.21228431701660155, + "step": 133200 + }, + { + "epoch": 44.65667141301616, + "grad_norm": 0.9768441915512085, + "learning_rate": 2.7681239530988273e-05, + "loss": 0.21132736206054686, + "step": 133300 + }, + { + "epoch": 44.6901750565374, + "grad_norm": 0.9287051558494568, + "learning_rate": 2.766448911222781e-05, + "loss": 0.211924991607666, + "step": 133400 + }, + { + "epoch": 44.723678700058635, + "grad_norm": 1.0014779567718506, + "learning_rate": 2.764773869346734e-05, + "loss": 0.21157003402709962, + "step": 133500 + }, + { + "epoch": 44.75718234357986, + "grad_norm": 0.8901475071907043, + "learning_rate": 2.763098827470687e-05, + "loss": 0.21130624771118164, + "step": 133600 + }, + { + "epoch": 44.7906859871011, + "grad_norm": 0.7723361253738403, + "learning_rate": 2.7614237855946402e-05, + "loss": 0.21280551910400392, + "step": 133700 + }, + { + "epoch": 44.82418963062233, + "grad_norm": 0.8794797658920288, + "learning_rate": 2.759748743718593e-05, + "loss": 0.21236923217773437, + "step": 133800 + }, + { + "epoch": 44.857693274143564, + "grad_norm": 0.8374422192573547, + "learning_rate": 2.7580737018425463e-05, + "loss": 0.21364736557006836, + "step": 133900 + }, + { + "epoch": 44.89119691766479, + "grad_norm": 0.8275327086448669, + "learning_rate": 2.7563986599664992e-05, + "loss": 0.21200048446655273, + "step": 134000 + }, + { + "epoch": 44.92470056118603, + "grad_norm": 0.9097633957862854, + "learning_rate": 2.7547236180904524e-05, + "loss": 0.21340879440307617, + "step": 134100 + }, + { + "epoch": 44.958204204707265, + "grad_norm": 0.9494147300720215, + "learning_rate": 2.7530485762144053e-05, + "loss": 0.2142266273498535, + "step": 134200 + }, + { + "epoch": 44.991707848228494, + "grad_norm": 0.814795970916748, + "learning_rate": 2.7513735343383585e-05, + "loss": 0.21452692031860351, + "step": 134300 + }, + { + "epoch": 45.025127732640925, + "grad_norm": 0.6908448934555054, + "learning_rate": 2.7496984924623114e-05, + "loss": 0.20500320434570313, + "step": 134400 + }, + { + "epoch": 45.05863137616216, + "grad_norm": 0.6426514387130737, + "learning_rate": 2.7480234505862646e-05, + "loss": 0.2033299446105957, + "step": 134500 + }, + { + "epoch": 45.09213501968339, + "grad_norm": 0.8847736716270447, + "learning_rate": 2.7463484087102182e-05, + "loss": 0.20543498992919923, + "step": 134600 + }, + { + "epoch": 45.125638663204626, + "grad_norm": 0.713890552520752, + "learning_rate": 2.744673366834171e-05, + "loss": 0.20500320434570313, + "step": 134700 + }, + { + "epoch": 45.159142306725855, + "grad_norm": 0.7541131973266602, + "learning_rate": 2.7430150753768847e-05, + "loss": 0.2060226631164551, + "step": 134800 + }, + { + "epoch": 45.19264595024709, + "grad_norm": 0.9209812879562378, + "learning_rate": 2.7413400335008375e-05, + "loss": 0.20517513275146484, + "step": 134900 + }, + { + "epoch": 45.22614959376832, + "grad_norm": 0.781428873538971, + "learning_rate": 2.7396649916247908e-05, + "loss": 0.20627330780029296, + "step": 135000 + }, + { + "epoch": 45.259653237289555, + "grad_norm": 0.8748304843902588, + "learning_rate": 2.7379899497487437e-05, + "loss": 0.20791227340698243, + "step": 135100 + }, + { + "epoch": 45.29315688081079, + "grad_norm": 0.7505505681037903, + "learning_rate": 2.736314907872697e-05, + "loss": 0.2061052703857422, + "step": 135200 + }, + { + "epoch": 45.32666052433202, + "grad_norm": 0.8114047646522522, + "learning_rate": 2.7346398659966498e-05, + "loss": 0.2083379364013672, + "step": 135300 + }, + { + "epoch": 45.360164167853256, + "grad_norm": 0.8816334009170532, + "learning_rate": 2.732964824120603e-05, + "loss": 0.2089382553100586, + "step": 135400 + }, + { + "epoch": 45.393667811374485, + "grad_norm": 0.8554006814956665, + "learning_rate": 2.731289782244556e-05, + "loss": 0.20821535110473632, + "step": 135500 + }, + { + "epoch": 45.42717145489572, + "grad_norm": 0.8525182008743286, + "learning_rate": 2.7296147403685098e-05, + "loss": 0.20828678131103515, + "step": 135600 + }, + { + "epoch": 45.46067509841695, + "grad_norm": 0.9644753932952881, + "learning_rate": 2.7279396984924626e-05, + "loss": 0.20957386016845703, + "step": 135700 + }, + { + "epoch": 45.494178741938185, + "grad_norm": 0.857822835445404, + "learning_rate": 2.726264656616416e-05, + "loss": 0.21084308624267578, + "step": 135800 + }, + { + "epoch": 45.52768238545942, + "grad_norm": 0.6781661510467529, + "learning_rate": 2.7245896147403687e-05, + "loss": 0.21013999938964845, + "step": 135900 + }, + { + "epoch": 45.56118602898065, + "grad_norm": 0.87371426820755, + "learning_rate": 2.722914572864322e-05, + "loss": 0.2115696907043457, + "step": 136000 + }, + { + "epoch": 45.594689672501886, + "grad_norm": 1.0570032596588135, + "learning_rate": 2.721239530988275e-05, + "loss": 0.20983007431030273, + "step": 136100 + }, + { + "epoch": 45.628193316023115, + "grad_norm": 0.8911213278770447, + "learning_rate": 2.719564489112228e-05, + "loss": 0.2098233413696289, + "step": 136200 + }, + { + "epoch": 45.66169695954435, + "grad_norm": 0.7911779284477234, + "learning_rate": 2.717889447236181e-05, + "loss": 0.2099312973022461, + "step": 136300 + }, + { + "epoch": 45.69520060306559, + "grad_norm": 0.8585467338562012, + "learning_rate": 2.7162144053601342e-05, + "loss": 0.21018625259399415, + "step": 136400 + }, + { + "epoch": 45.728704246586815, + "grad_norm": 0.8224589824676514, + "learning_rate": 2.714539363484087e-05, + "loss": 0.211662654876709, + "step": 136500 + }, + { + "epoch": 45.76220789010805, + "grad_norm": 0.8850246667861938, + "learning_rate": 2.7128643216080403e-05, + "loss": 0.21219783782958984, + "step": 136600 + }, + { + "epoch": 45.79571153362928, + "grad_norm": 0.9044328927993774, + "learning_rate": 2.711189279731993e-05, + "loss": 0.21055538177490235, + "step": 136700 + }, + { + "epoch": 45.829215177150516, + "grad_norm": 0.8955138325691223, + "learning_rate": 2.7095142378559464e-05, + "loss": 0.21124111175537108, + "step": 136800 + }, + { + "epoch": 45.862718820671745, + "grad_norm": 0.9041482210159302, + "learning_rate": 2.7078559463986603e-05, + "loss": 0.21166906356811524, + "step": 136900 + }, + { + "epoch": 45.89622246419298, + "grad_norm": 0.8111388087272644, + "learning_rate": 2.7061809045226132e-05, + "loss": 0.21167055130004883, + "step": 137000 + }, + { + "epoch": 45.92972610771422, + "grad_norm": 0.9616506695747375, + "learning_rate": 2.7045058626465664e-05, + "loss": 0.21228885650634766, + "step": 137100 + }, + { + "epoch": 45.963229751235446, + "grad_norm": 0.8436776399612427, + "learning_rate": 2.7028308207705193e-05, + "loss": 0.2126219940185547, + "step": 137200 + }, + { + "epoch": 45.99673339475668, + "grad_norm": 0.71140456199646, + "learning_rate": 2.7011557788944725e-05, + "loss": 0.21354110717773436, + "step": 137300 + }, + { + "epoch": 46.03015327916911, + "grad_norm": 0.7948451042175293, + "learning_rate": 2.6994807370184254e-05, + "loss": 0.2044697570800781, + "step": 137400 + }, + { + "epoch": 46.06365692269034, + "grad_norm": 0.8057336807250977, + "learning_rate": 2.6978056951423786e-05, + "loss": 0.20385299682617186, + "step": 137500 + }, + { + "epoch": 46.09716056621158, + "grad_norm": 0.7120649218559265, + "learning_rate": 2.6961306532663315e-05, + "loss": 0.20400421142578126, + "step": 137600 + }, + { + "epoch": 46.13066420973281, + "grad_norm": 0.9549148678779602, + "learning_rate": 2.6944556113902847e-05, + "loss": 0.2034744453430176, + "step": 137700 + }, + { + "epoch": 46.16416785325404, + "grad_norm": 0.8098897337913513, + "learning_rate": 2.6927805695142376e-05, + "loss": 0.203569393157959, + "step": 137800 + }, + { + "epoch": 46.19767149677527, + "grad_norm": 0.7123087644577026, + "learning_rate": 2.6911055276381915e-05, + "loss": 0.20544761657714844, + "step": 137900 + }, + { + "epoch": 46.23117514029651, + "grad_norm": 0.8449687361717224, + "learning_rate": 2.6894304857621444e-05, + "loss": 0.20498695373535156, + "step": 138000 + }, + { + "epoch": 46.26467878381774, + "grad_norm": 0.7853437066078186, + "learning_rate": 2.6877554438860976e-05, + "loss": 0.2059033203125, + "step": 138100 + }, + { + "epoch": 46.29818242733897, + "grad_norm": 0.7418807148933411, + "learning_rate": 2.6860804020100505e-05, + "loss": 0.20638565063476563, + "step": 138200 + }, + { + "epoch": 46.33168607086021, + "grad_norm": 0.9248971343040466, + "learning_rate": 2.6844053601340037e-05, + "loss": 0.2076273727416992, + "step": 138300 + }, + { + "epoch": 46.36518971438144, + "grad_norm": 0.8263251185417175, + "learning_rate": 2.6827303182579566e-05, + "loss": 0.20645214080810548, + "step": 138400 + }, + { + "epoch": 46.39869335790267, + "grad_norm": 0.9032105207443237, + "learning_rate": 2.6810552763819098e-05, + "loss": 0.20705162048339842, + "step": 138500 + }, + { + "epoch": 46.4321970014239, + "grad_norm": 0.7566851377487183, + "learning_rate": 2.6793802345058627e-05, + "loss": 0.20758819580078125, + "step": 138600 + }, + { + "epoch": 46.46570064494514, + "grad_norm": 0.7938912510871887, + "learning_rate": 2.677705192629816e-05, + "loss": 0.20770130157470704, + "step": 138700 + }, + { + "epoch": 46.49920428846637, + "grad_norm": 0.8320357799530029, + "learning_rate": 2.6760301507537688e-05, + "loss": 0.20806819915771485, + "step": 138800 + }, + { + "epoch": 46.5327079319876, + "grad_norm": 0.9987215995788574, + "learning_rate": 2.674355108877722e-05, + "loss": 0.20871660232543945, + "step": 138900 + }, + { + "epoch": 46.56621157550884, + "grad_norm": 0.8866457939147949, + "learning_rate": 2.672696817420436e-05, + "loss": 0.20802412033081055, + "step": 139000 + }, + { + "epoch": 46.59971521903007, + "grad_norm": 0.7644064426422119, + "learning_rate": 2.6710217755443888e-05, + "loss": 0.2100166893005371, + "step": 139100 + }, + { + "epoch": 46.6332188625513, + "grad_norm": 0.832198977470398, + "learning_rate": 2.669346733668342e-05, + "loss": 0.2086174964904785, + "step": 139200 + }, + { + "epoch": 46.66672250607254, + "grad_norm": 0.7455396056175232, + "learning_rate": 2.667671691792295e-05, + "loss": 0.21050701141357422, + "step": 139300 + }, + { + "epoch": 46.70022614959377, + "grad_norm": 0.7941868901252747, + "learning_rate": 2.665996649916248e-05, + "loss": 0.21018735885620118, + "step": 139400 + }, + { + "epoch": 46.733729793115, + "grad_norm": 0.745232105255127, + "learning_rate": 2.664321608040201e-05, + "loss": 0.2106583023071289, + "step": 139500 + }, + { + "epoch": 46.76723343663623, + "grad_norm": 0.8534348011016846, + "learning_rate": 2.6626465661641543e-05, + "loss": 0.21023065567016602, + "step": 139600 + }, + { + "epoch": 46.80073708015747, + "grad_norm": 0.8639134764671326, + "learning_rate": 2.660971524288107e-05, + "loss": 0.20966962814331055, + "step": 139700 + }, + { + "epoch": 46.8342407236787, + "grad_norm": 0.9052923917770386, + "learning_rate": 2.6592964824120604e-05, + "loss": 0.2114642906188965, + "step": 139800 + }, + { + "epoch": 46.86774436719993, + "grad_norm": 0.8590245246887207, + "learning_rate": 2.6576214405360132e-05, + "loss": 0.2110831069946289, + "step": 139900 + }, + { + "epoch": 46.90124801072117, + "grad_norm": 0.8708141446113586, + "learning_rate": 2.6559463986599665e-05, + "loss": 0.21110519409179687, + "step": 140000 + }, + { + "epoch": 46.9347516542424, + "grad_norm": 0.9694708585739136, + "learning_rate": 2.6542713567839193e-05, + "loss": 0.21246437072753907, + "step": 140100 + }, + { + "epoch": 46.96825529776363, + "grad_norm": 0.8531249761581421, + "learning_rate": 2.6525963149078732e-05, + "loss": 0.2127097511291504, + "step": 140200 + }, + { + "epoch": 47.001675182176065, + "grad_norm": 0.7149065136909485, + "learning_rate": 2.650921273031826e-05, + "loss": 0.21077686309814453, + "step": 140300 + }, + { + "epoch": 47.035178825697294, + "grad_norm": 0.906190812587738, + "learning_rate": 2.6492462311557793e-05, + "loss": 0.20198272705078124, + "step": 140400 + }, + { + "epoch": 47.06868246921853, + "grad_norm": 0.8794195652008057, + "learning_rate": 2.6475711892797322e-05, + "loss": 0.20144824981689452, + "step": 140500 + }, + { + "epoch": 47.10218611273976, + "grad_norm": 0.7231687307357788, + "learning_rate": 2.6458961474036854e-05, + "loss": 0.20203954696655274, + "step": 140600 + }, + { + "epoch": 47.135689756260994, + "grad_norm": 0.8035680651664734, + "learning_rate": 2.6442211055276383e-05, + "loss": 0.20453298568725586, + "step": 140700 + }, + { + "epoch": 47.16919339978222, + "grad_norm": 0.7751315832138062, + "learning_rate": 2.6425460636515916e-05, + "loss": 0.20380630493164062, + "step": 140800 + }, + { + "epoch": 47.20269704330346, + "grad_norm": 0.8336166739463806, + "learning_rate": 2.6408710217755444e-05, + "loss": 0.2044701385498047, + "step": 140900 + }, + { + "epoch": 47.236200686824695, + "grad_norm": 0.92495197057724, + "learning_rate": 2.6391959798994977e-05, + "loss": 0.20544666290283203, + "step": 141000 + }, + { + "epoch": 47.269704330345924, + "grad_norm": 0.8691511750221252, + "learning_rate": 2.637537688442211e-05, + "loss": 0.20497919082641602, + "step": 141100 + }, + { + "epoch": 47.30320797386716, + "grad_norm": 0.7744715213775635, + "learning_rate": 2.6358626465661645e-05, + "loss": 0.20545125961303712, + "step": 141200 + }, + { + "epoch": 47.33671161738839, + "grad_norm": 0.8087801337242126, + "learning_rate": 2.6341876046901177e-05, + "loss": 0.20726716995239258, + "step": 141300 + }, + { + "epoch": 47.370215260909625, + "grad_norm": 0.6278528571128845, + "learning_rate": 2.6325125628140706e-05, + "loss": 0.20632375717163087, + "step": 141400 + }, + { + "epoch": 47.40371890443085, + "grad_norm": 0.7197872996330261, + "learning_rate": 2.6308375209380238e-05, + "loss": 0.20561176300048828, + "step": 141500 + }, + { + "epoch": 47.43722254795209, + "grad_norm": 0.8030456900596619, + "learning_rate": 2.6291624790619767e-05, + "loss": 0.20726533889770507, + "step": 141600 + }, + { + "epoch": 47.470726191473325, + "grad_norm": 0.8122235536575317, + "learning_rate": 2.62748743718593e-05, + "loss": 0.20543954849243165, + "step": 141700 + }, + { + "epoch": 47.504229834994554, + "grad_norm": 0.8430666923522949, + "learning_rate": 2.6258123953098828e-05, + "loss": 0.20687795639038087, + "step": 141800 + }, + { + "epoch": 47.53773347851579, + "grad_norm": 0.7796192765235901, + "learning_rate": 2.624137353433836e-05, + "loss": 0.20932218551635742, + "step": 141900 + }, + { + "epoch": 47.57123712203702, + "grad_norm": 0.7568249702453613, + "learning_rate": 2.622462311557789e-05, + "loss": 0.20753023147583008, + "step": 142000 + }, + { + "epoch": 47.604740765558255, + "grad_norm": 0.7766709923744202, + "learning_rate": 2.620787269681742e-05, + "loss": 0.20817523956298828, + "step": 142100 + }, + { + "epoch": 47.63824440907949, + "grad_norm": 0.8407247066497803, + "learning_rate": 2.619112227805695e-05, + "loss": 0.20790090560913085, + "step": 142200 + }, + { + "epoch": 47.67174805260072, + "grad_norm": 1.0693186521530151, + "learning_rate": 2.6174371859296482e-05, + "loss": 0.20879848480224608, + "step": 142300 + }, + { + "epoch": 47.705251696121955, + "grad_norm": 0.9089698791503906, + "learning_rate": 2.615762144053601e-05, + "loss": 0.20962982177734374, + "step": 142400 + }, + { + "epoch": 47.738755339643184, + "grad_norm": 0.9101313948631287, + "learning_rate": 2.614087102177555e-05, + "loss": 0.20881969451904298, + "step": 142500 + }, + { + "epoch": 47.77225898316442, + "grad_norm": 0.9239957332611084, + "learning_rate": 2.612412060301508e-05, + "loss": 0.21106016159057617, + "step": 142600 + }, + { + "epoch": 47.80576262668565, + "grad_norm": 0.7095087170600891, + "learning_rate": 2.610737018425461e-05, + "loss": 0.21043779373168944, + "step": 142700 + }, + { + "epoch": 47.839266270206885, + "grad_norm": 0.8761176466941833, + "learning_rate": 2.609061976549414e-05, + "loss": 0.20853693008422852, + "step": 142800 + }, + { + "epoch": 47.87276991372812, + "grad_norm": 0.9387518763542175, + "learning_rate": 2.6073869346733672e-05, + "loss": 0.21088685989379882, + "step": 142900 + }, + { + "epoch": 47.90627355724935, + "grad_norm": 0.8915501832962036, + "learning_rate": 2.60571189279732e-05, + "loss": 0.21008544921875, + "step": 143000 + }, + { + "epoch": 47.939777200770585, + "grad_norm": 0.9699543714523315, + "learning_rate": 2.6040368509212733e-05, + "loss": 0.21000476837158202, + "step": 143100 + }, + { + "epoch": 47.973280844291814, + "grad_norm": 0.7812904119491577, + "learning_rate": 2.6023785594639865e-05, + "loss": 0.21052337646484376, + "step": 143200 + }, + { + "epoch": 48.006700728704246, + "grad_norm": 0.822690486907959, + "learning_rate": 2.6007035175879398e-05, + "loss": 0.20833581924438477, + "step": 143300 + }, + { + "epoch": 48.04020437222548, + "grad_norm": 0.6735044121742249, + "learning_rate": 2.5990284757118926e-05, + "loss": 0.20092033386230468, + "step": 143400 + }, + { + "epoch": 48.07370801574671, + "grad_norm": 0.7303795218467712, + "learning_rate": 2.5973534338358462e-05, + "loss": 0.2011802864074707, + "step": 143500 + }, + { + "epoch": 48.107211659267946, + "grad_norm": 0.7877155542373657, + "learning_rate": 2.5956783919597994e-05, + "loss": 0.2021241569519043, + "step": 143600 + }, + { + "epoch": 48.140715302789175, + "grad_norm": 0.7610930800437927, + "learning_rate": 2.5940033500837523e-05, + "loss": 0.20223419189453126, + "step": 143700 + }, + { + "epoch": 48.17421894631041, + "grad_norm": 0.81033855676651, + "learning_rate": 2.5923283082077055e-05, + "loss": 0.20270132064819335, + "step": 143800 + }, + { + "epoch": 48.20772258983165, + "grad_norm": 0.7211432456970215, + "learning_rate": 2.5906532663316584e-05, + "loss": 0.2033340072631836, + "step": 143900 + }, + { + "epoch": 48.241226233352876, + "grad_norm": 0.7816910147666931, + "learning_rate": 2.5889782244556116e-05, + "loss": 0.20389623641967775, + "step": 144000 + }, + { + "epoch": 48.27472987687411, + "grad_norm": 0.8680933713912964, + "learning_rate": 2.5873031825795645e-05, + "loss": 0.20449954986572266, + "step": 144100 + }, + { + "epoch": 48.30823352039534, + "grad_norm": 0.6703556776046753, + "learning_rate": 2.5856281407035177e-05, + "loss": 0.20437568664550781, + "step": 144200 + }, + { + "epoch": 48.34173716391658, + "grad_norm": 0.755338191986084, + "learning_rate": 2.5839530988274706e-05, + "loss": 0.20576271057128906, + "step": 144300 + }, + { + "epoch": 48.375240807437805, + "grad_norm": 0.7581430673599243, + "learning_rate": 2.582278056951424e-05, + "loss": 0.2058708953857422, + "step": 144400 + }, + { + "epoch": 48.40874445095904, + "grad_norm": 0.7973390817642212, + "learning_rate": 2.5806030150753767e-05, + "loss": 0.20591938018798828, + "step": 144500 + }, + { + "epoch": 48.44224809448028, + "grad_norm": 0.8226273655891418, + "learning_rate": 2.57892797319933e-05, + "loss": 0.20543519973754884, + "step": 144600 + }, + { + "epoch": 48.475751738001506, + "grad_norm": 0.9298210740089417, + "learning_rate": 2.5772529313232828e-05, + "loss": 0.2074728012084961, + "step": 144700 + }, + { + "epoch": 48.50925538152274, + "grad_norm": 0.7703186273574829, + "learning_rate": 2.5755778894472364e-05, + "loss": 0.2061468505859375, + "step": 144800 + }, + { + "epoch": 48.54275902504397, + "grad_norm": 0.7027441263198853, + "learning_rate": 2.5739028475711896e-05, + "loss": 0.2068248176574707, + "step": 144900 + }, + { + "epoch": 48.57626266856521, + "grad_norm": 0.866961658000946, + "learning_rate": 2.5722278056951425e-05, + "loss": 0.20709081649780273, + "step": 145000 + }, + { + "epoch": 48.60976631208644, + "grad_norm": 0.7900598645210266, + "learning_rate": 2.5705527638190957e-05, + "loss": 0.20745479583740234, + "step": 145100 + }, + { + "epoch": 48.64326995560767, + "grad_norm": 0.7642288208007812, + "learning_rate": 2.568877721943049e-05, + "loss": 0.20698997497558594, + "step": 145200 + }, + { + "epoch": 48.67677359912891, + "grad_norm": 0.8306117653846741, + "learning_rate": 2.5672026800670018e-05, + "loss": 0.20851272583007813, + "step": 145300 + }, + { + "epoch": 48.710277242650136, + "grad_norm": 0.9393877387046814, + "learning_rate": 2.565527638190955e-05, + "loss": 0.2079641914367676, + "step": 145400 + }, + { + "epoch": 48.74378088617137, + "grad_norm": 0.7118200659751892, + "learning_rate": 2.5638693467336683e-05, + "loss": 0.20779979705810547, + "step": 145500 + }, + { + "epoch": 48.7772845296926, + "grad_norm": 0.8508455157279968, + "learning_rate": 2.5621943048576215e-05, + "loss": 0.20885522842407225, + "step": 145600 + }, + { + "epoch": 48.81078817321384, + "grad_norm": 0.7956013083457947, + "learning_rate": 2.5605192629815744e-05, + "loss": 0.2095408821105957, + "step": 145700 + }, + { + "epoch": 48.84429181673507, + "grad_norm": 0.9105645418167114, + "learning_rate": 2.558844221105528e-05, + "loss": 0.20915800094604492, + "step": 145800 + }, + { + "epoch": 48.8777954602563, + "grad_norm": 0.8507822155952454, + "learning_rate": 2.5571691792294812e-05, + "loss": 0.20863231658935547, + "step": 145900 + }, + { + "epoch": 48.91129910377754, + "grad_norm": 0.9350414872169495, + "learning_rate": 2.555494137353434e-05, + "loss": 0.2097511100769043, + "step": 146000 + }, + { + "epoch": 48.944802747298766, + "grad_norm": 0.6584986448287964, + "learning_rate": 2.5538190954773873e-05, + "loss": 0.20917884826660157, + "step": 146100 + }, + { + "epoch": 48.97830639082, + "grad_norm": 0.8874914646148682, + "learning_rate": 2.55214405360134e-05, + "loss": 0.20966741561889649, + "step": 146200 + }, + { + "epoch": 49.011726275232434, + "grad_norm": 0.6621425747871399, + "learning_rate": 2.5504690117252934e-05, + "loss": 0.20701923370361328, + "step": 146300 + }, + { + "epoch": 49.04522991875366, + "grad_norm": 0.772162914276123, + "learning_rate": 2.5487939698492463e-05, + "loss": 0.19997344970703124, + "step": 146400 + }, + { + "epoch": 49.0787335622749, + "grad_norm": 0.7397682666778564, + "learning_rate": 2.5471189279731995e-05, + "loss": 0.19966798782348633, + "step": 146500 + }, + { + "epoch": 49.11223720579613, + "grad_norm": 0.7998943328857422, + "learning_rate": 2.5454438860971524e-05, + "loss": 0.20070135116577148, + "step": 146600 + }, + { + "epoch": 49.14574084931736, + "grad_norm": 0.8297356367111206, + "learning_rate": 2.5437688442211056e-05, + "loss": 0.2032426643371582, + "step": 146700 + }, + { + "epoch": 49.1792444928386, + "grad_norm": 0.6718747615814209, + "learning_rate": 2.5420938023450585e-05, + "loss": 0.20162422180175782, + "step": 146800 + }, + { + "epoch": 49.21274813635983, + "grad_norm": 0.8085470795631409, + "learning_rate": 2.5404187604690117e-05, + "loss": 0.20480926513671874, + "step": 146900 + }, + { + "epoch": 49.246251779881064, + "grad_norm": 0.6637224555015564, + "learning_rate": 2.5387437185929646e-05, + "loss": 0.20419147491455078, + "step": 147000 + }, + { + "epoch": 49.27975542340229, + "grad_norm": 0.8804967999458313, + "learning_rate": 2.537068676716918e-05, + "loss": 0.20260902404785155, + "step": 147100 + }, + { + "epoch": 49.31325906692353, + "grad_norm": 0.6562800407409668, + "learning_rate": 2.5353936348408713e-05, + "loss": 0.2042051887512207, + "step": 147200 + }, + { + "epoch": 49.346762710444764, + "grad_norm": 0.802295446395874, + "learning_rate": 2.5337185929648242e-05, + "loss": 0.20388504028320312, + "step": 147300 + }, + { + "epoch": 49.38026635396599, + "grad_norm": 0.6702427268028259, + "learning_rate": 2.5320435510887775e-05, + "loss": 0.20359308242797852, + "step": 147400 + }, + { + "epoch": 49.41376999748723, + "grad_norm": 0.6546157002449036, + "learning_rate": 2.5303685092127303e-05, + "loss": 0.20544279098510743, + "step": 147500 + }, + { + "epoch": 49.44727364100846, + "grad_norm": 0.7745968103408813, + "learning_rate": 2.528710217755444e-05, + "loss": 0.20460813522338867, + "step": 147600 + }, + { + "epoch": 49.480777284529694, + "grad_norm": 0.754804790019989, + "learning_rate": 2.527035175879397e-05, + "loss": 0.20541131973266602, + "step": 147700 + }, + { + "epoch": 49.51428092805092, + "grad_norm": 0.8245925307273865, + "learning_rate": 2.52536013400335e-05, + "loss": 0.20514223098754883, + "step": 147800 + }, + { + "epoch": 49.54778457157216, + "grad_norm": 0.7658609747886658, + "learning_rate": 2.5236850921273032e-05, + "loss": 0.20672239303588869, + "step": 147900 + }, + { + "epoch": 49.581288215093394, + "grad_norm": 0.8386098742485046, + "learning_rate": 2.522010050251256e-05, + "loss": 0.20576807022094726, + "step": 148000 + }, + { + "epoch": 49.61479185861462, + "grad_norm": 0.9193150997161865, + "learning_rate": 2.5203350083752097e-05, + "loss": 0.20691360473632814, + "step": 148100 + }, + { + "epoch": 49.64829550213586, + "grad_norm": 0.8064738512039185, + "learning_rate": 2.518659966499163e-05, + "loss": 0.20630212783813476, + "step": 148200 + }, + { + "epoch": 49.68179914565709, + "grad_norm": 0.6325901746749878, + "learning_rate": 2.5169849246231158e-05, + "loss": 0.20667299270629882, + "step": 148300 + }, + { + "epoch": 49.715302789178324, + "grad_norm": 0.796997606754303, + "learning_rate": 2.515309882747069e-05, + "loss": 0.20724594116210937, + "step": 148400 + }, + { + "epoch": 49.74880643269955, + "grad_norm": 0.8888092041015625, + "learning_rate": 2.513634840871022e-05, + "loss": 0.20756359100341798, + "step": 148500 + }, + { + "epoch": 49.78231007622079, + "grad_norm": 0.8092156052589417, + "learning_rate": 2.511959798994975e-05, + "loss": 0.2068187713623047, + "step": 148600 + }, + { + "epoch": 49.815813719742025, + "grad_norm": 0.9051980972290039, + "learning_rate": 2.510284757118928e-05, + "loss": 0.20732791900634764, + "step": 148700 + }, + { + "epoch": 49.84931736326325, + "grad_norm": 0.9662907719612122, + "learning_rate": 2.5086097152428812e-05, + "loss": 0.2081096076965332, + "step": 148800 + }, + { + "epoch": 49.88282100678449, + "grad_norm": 0.9831855297088623, + "learning_rate": 2.506934673366834e-05, + "loss": 0.20788869857788086, + "step": 148900 + }, + { + "epoch": 49.91632465030572, + "grad_norm": 0.6909393668174744, + "learning_rate": 2.5052596314907873e-05, + "loss": 0.20930927276611327, + "step": 149000 + }, + { + "epoch": 49.949828293826954, + "grad_norm": 0.7016172409057617, + "learning_rate": 2.5035845896147402e-05, + "loss": 0.20851097106933594, + "step": 149100 + }, + { + "epoch": 49.98333193734819, + "grad_norm": 0.9753764867782593, + "learning_rate": 2.5019095477386934e-05, + "loss": 0.20876035690307618, + "step": 149200 + }, + { + "epoch": 50.016751821760614, + "grad_norm": 0.814017117023468, + "learning_rate": 2.500234505862647e-05, + "loss": 0.20314416885375977, + "step": 149300 + }, + { + "epoch": 50.05025546528185, + "grad_norm": 0.7156041860580444, + "learning_rate": 2.4985594639866e-05, + "loss": 0.19888938903808595, + "step": 149400 + }, + { + "epoch": 50.08375910880308, + "grad_norm": 0.7967144250869751, + "learning_rate": 2.4968844221105528e-05, + "loss": 0.2009027862548828, + "step": 149500 + }, + { + "epoch": 50.117262752324315, + "grad_norm": 0.8211435079574585, + "learning_rate": 2.495209380234506e-05, + "loss": 0.20014671325683595, + "step": 149600 + }, + { + "epoch": 50.15076639584555, + "grad_norm": 0.6646608710289001, + "learning_rate": 2.4935510887772196e-05, + "loss": 0.20111976623535155, + "step": 149700 + }, + { + "epoch": 50.18427003936678, + "grad_norm": 0.7369064092636108, + "learning_rate": 2.4918760469011724e-05, + "loss": 0.20281072616577148, + "step": 149800 + }, + { + "epoch": 50.217773682888016, + "grad_norm": 0.5978965163230896, + "learning_rate": 2.4902010050251257e-05, + "loss": 0.20169940948486328, + "step": 149900 + }, + { + "epoch": 50.251277326409244, + "grad_norm": 0.8313732743263245, + "learning_rate": 2.4885259631490785e-05, + "loss": 0.2015657615661621, + "step": 150000 + }, + { + "epoch": 50.28478096993048, + "grad_norm": 0.9016907811164856, + "learning_rate": 2.486850921273032e-05, + "loss": 0.2032327651977539, + "step": 150100 + }, + { + "epoch": 50.318284613451716, + "grad_norm": 0.7199917435646057, + "learning_rate": 2.485175879396985e-05, + "loss": 0.20292411804199217, + "step": 150200 + }, + { + "epoch": 50.351788256972945, + "grad_norm": 0.8585846424102783, + "learning_rate": 2.4835008375209382e-05, + "loss": 0.20314014434814454, + "step": 150300 + }, + { + "epoch": 50.38529190049418, + "grad_norm": 0.7034669518470764, + "learning_rate": 2.481825795644891e-05, + "loss": 0.20416894912719727, + "step": 150400 + }, + { + "epoch": 50.41879554401541, + "grad_norm": 0.865682065486908, + "learning_rate": 2.4801507537688443e-05, + "loss": 0.20476892471313476, + "step": 150500 + }, + { + "epoch": 50.452299187536646, + "grad_norm": 0.7300936579704285, + "learning_rate": 2.4784757118927972e-05, + "loss": 0.20488790512084962, + "step": 150600 + }, + { + "epoch": 50.485802831057875, + "grad_norm": 0.8905784487724304, + "learning_rate": 2.4768006700167508e-05, + "loss": 0.20429906845092774, + "step": 150700 + }, + { + "epoch": 50.51930647457911, + "grad_norm": 0.759925365447998, + "learning_rate": 2.4751256281407036e-05, + "loss": 0.2061992645263672, + "step": 150800 + }, + { + "epoch": 50.552810118100346, + "grad_norm": 0.7266499996185303, + "learning_rate": 2.473450586264657e-05, + "loss": 0.20576707839965822, + "step": 150900 + }, + { + "epoch": 50.586313761621575, + "grad_norm": 0.6730079650878906, + "learning_rate": 2.4717755443886097e-05, + "loss": 0.20497604370117187, + "step": 151000 + }, + { + "epoch": 50.61981740514281, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.470100502512563e-05, + "loss": 0.20579778671264648, + "step": 151100 + }, + { + "epoch": 50.65332104866404, + "grad_norm": 0.7999610304832458, + "learning_rate": 2.468425460636516e-05, + "loss": 0.20637252807617187, + "step": 151200 + }, + { + "epoch": 50.686824692185276, + "grad_norm": 0.7081186771392822, + "learning_rate": 2.4667504187604694e-05, + "loss": 0.20630395889282227, + "step": 151300 + }, + { + "epoch": 50.720328335706505, + "grad_norm": 0.8061164021492004, + "learning_rate": 2.4650753768844223e-05, + "loss": 0.20621145248413086, + "step": 151400 + }, + { + "epoch": 50.75383197922774, + "grad_norm": 0.826841413974762, + "learning_rate": 2.4634003350083755e-05, + "loss": 0.20574779510498048, + "step": 151500 + }, + { + "epoch": 50.78733562274898, + "grad_norm": 0.7742196321487427, + "learning_rate": 2.4617252931323284e-05, + "loss": 0.205941162109375, + "step": 151600 + }, + { + "epoch": 50.820839266270205, + "grad_norm": 0.8660677075386047, + "learning_rate": 2.4600502512562816e-05, + "loss": 0.20769458770751953, + "step": 151700 + }, + { + "epoch": 50.85434290979144, + "grad_norm": 0.7156419157981873, + "learning_rate": 2.4583752093802345e-05, + "loss": 0.20709629058837892, + "step": 151800 + }, + { + "epoch": 50.88784655331267, + "grad_norm": 0.812447190284729, + "learning_rate": 2.456716917922948e-05, + "loss": 0.20599342346191407, + "step": 151900 + }, + { + "epoch": 50.921350196833906, + "grad_norm": 0.8019922375679016, + "learning_rate": 2.4550418760469013e-05, + "loss": 0.20727943420410155, + "step": 152000 + }, + { + "epoch": 50.95485384035514, + "grad_norm": 0.7810946702957153, + "learning_rate": 2.4533668341708542e-05, + "loss": 0.2080386734008789, + "step": 152100 + }, + { + "epoch": 50.98835748387637, + "grad_norm": 0.7739458084106445, + "learning_rate": 2.4516917922948074e-05, + "loss": 0.2072319793701172, + "step": 152200 + }, + { + "epoch": 51.0217773682888, + "grad_norm": 0.7210680246353149, + "learning_rate": 2.4500167504187606e-05, + "loss": 0.20264469146728514, + "step": 152300 + }, + { + "epoch": 51.05528101181003, + "grad_norm": 0.7153304219245911, + "learning_rate": 2.448341708542714e-05, + "loss": 0.19857017517089845, + "step": 152400 + }, + { + "epoch": 51.08878465533127, + "grad_norm": 0.7581055760383606, + "learning_rate": 2.4466666666666667e-05, + "loss": 0.19956087112426757, + "step": 152500 + }, + { + "epoch": 51.1222882988525, + "grad_norm": 0.7437317967414856, + "learning_rate": 2.44499162479062e-05, + "loss": 0.19829078674316405, + "step": 152600 + }, + { + "epoch": 51.15579194237373, + "grad_norm": 0.6868230104446411, + "learning_rate": 2.443316582914573e-05, + "loss": 0.19977245330810547, + "step": 152700 + }, + { + "epoch": 51.18929558589497, + "grad_norm": 0.7176596522331238, + "learning_rate": 2.441641541038526e-05, + "loss": 0.20137237548828124, + "step": 152800 + }, + { + "epoch": 51.2227992294162, + "grad_norm": 0.7465003132820129, + "learning_rate": 2.439966499162479e-05, + "loss": 0.20151824951171876, + "step": 152900 + }, + { + "epoch": 51.25630287293743, + "grad_norm": 0.8134509325027466, + "learning_rate": 2.4382914572864325e-05, + "loss": 0.20129066467285156, + "step": 153000 + }, + { + "epoch": 51.28980651645867, + "grad_norm": 0.7882896065711975, + "learning_rate": 2.4366164154103854e-05, + "loss": 0.20372648239135743, + "step": 153100 + }, + { + "epoch": 51.3233101599799, + "grad_norm": 0.6261149048805237, + "learning_rate": 2.4349413735343386e-05, + "loss": 0.20317134857177735, + "step": 153200 + }, + { + "epoch": 51.35681380350113, + "grad_norm": 0.7279029488563538, + "learning_rate": 2.4332663316582915e-05, + "loss": 0.20203876495361328, + "step": 153300 + }, + { + "epoch": 51.39031744702236, + "grad_norm": 0.7463719248771667, + "learning_rate": 2.4315912897822447e-05, + "loss": 0.2032138252258301, + "step": 153400 + }, + { + "epoch": 51.4238210905436, + "grad_norm": 0.7583816051483154, + "learning_rate": 2.4299162479061976e-05, + "loss": 0.20314373016357423, + "step": 153500 + }, + { + "epoch": 51.45732473406483, + "grad_norm": 0.7088111042976379, + "learning_rate": 2.428241206030151e-05, + "loss": 0.20380254745483398, + "step": 153600 + }, + { + "epoch": 51.49082837758606, + "grad_norm": 0.6820314526557922, + "learning_rate": 2.426566164154104e-05, + "loss": 0.20396411895751954, + "step": 153700 + }, + { + "epoch": 51.5243320211073, + "grad_norm": 0.6890659332275391, + "learning_rate": 2.4248911222780573e-05, + "loss": 0.20465932846069335, + "step": 153800 + }, + { + "epoch": 51.55783566462853, + "grad_norm": 0.7410996556282043, + "learning_rate": 2.4232328308207705e-05, + "loss": 0.20433155059814453, + "step": 153900 + }, + { + "epoch": 51.59133930814976, + "grad_norm": 0.6642614006996155, + "learning_rate": 2.4215577889447237e-05, + "loss": 0.20583141326904297, + "step": 154000 + }, + { + "epoch": 51.62484295167099, + "grad_norm": 0.8036423921585083, + "learning_rate": 2.419882747068677e-05, + "loss": 0.20297210693359374, + "step": 154100 + }, + { + "epoch": 51.65834659519223, + "grad_norm": 0.7510450482368469, + "learning_rate": 2.4182077051926298e-05, + "loss": 0.20401430130004883, + "step": 154200 + }, + { + "epoch": 51.69185023871346, + "grad_norm": 0.7840591073036194, + "learning_rate": 2.416532663316583e-05, + "loss": 0.205728702545166, + "step": 154300 + }, + { + "epoch": 51.72535388223469, + "grad_norm": 0.8357808589935303, + "learning_rate": 2.414857621440536e-05, + "loss": 0.20580055236816405, + "step": 154400 + }, + { + "epoch": 51.75885752575593, + "grad_norm": 0.7890837788581848, + "learning_rate": 2.413182579564489e-05, + "loss": 0.2051936149597168, + "step": 154500 + }, + { + "epoch": 51.79236116927716, + "grad_norm": 1.031099557876587, + "learning_rate": 2.4115075376884424e-05, + "loss": 0.20656421661376953, + "step": 154600 + }, + { + "epoch": 51.82586481279839, + "grad_norm": 0.7498375773429871, + "learning_rate": 2.4098324958123956e-05, + "loss": 0.2050635528564453, + "step": 154700 + }, + { + "epoch": 51.85936845631962, + "grad_norm": 0.760242760181427, + "learning_rate": 2.4081574539363485e-05, + "loss": 0.20564306259155274, + "step": 154800 + }, + { + "epoch": 51.89287209984086, + "grad_norm": 0.7774176597595215, + "learning_rate": 2.4064824120603017e-05, + "loss": 0.20756494522094726, + "step": 154900 + }, + { + "epoch": 51.926375743362094, + "grad_norm": 0.7169613242149353, + "learning_rate": 2.4048073701842546e-05, + "loss": 0.2062942886352539, + "step": 155000 + }, + { + "epoch": 51.95987938688332, + "grad_norm": 0.8178589344024658, + "learning_rate": 2.4031323283082078e-05, + "loss": 0.20722549438476562, + "step": 155100 + }, + { + "epoch": 51.99338303040456, + "grad_norm": 0.9282923936843872, + "learning_rate": 2.401457286432161e-05, + "loss": 0.20599929809570314, + "step": 155200 + }, + { + "epoch": 52.02680291481698, + "grad_norm": 0.718063235282898, + "learning_rate": 2.3997822445561142e-05, + "loss": 0.19876413345336913, + "step": 155300 + }, + { + "epoch": 52.06030655833822, + "grad_norm": 0.8059532642364502, + "learning_rate": 2.398107202680067e-05, + "loss": 0.19822462081909178, + "step": 155400 + }, + { + "epoch": 52.093810201859455, + "grad_norm": 0.7145259380340576, + "learning_rate": 2.3964321608040203e-05, + "loss": 0.19868303298950196, + "step": 155500 + }, + { + "epoch": 52.127313845380684, + "grad_norm": 0.8659557700157166, + "learning_rate": 2.3947571189279732e-05, + "loss": 0.19922651290893556, + "step": 155600 + }, + { + "epoch": 52.16081748890192, + "grad_norm": 0.6749393939971924, + "learning_rate": 2.3930820770519264e-05, + "loss": 0.1997986602783203, + "step": 155700 + }, + { + "epoch": 52.19432113242315, + "grad_norm": 0.6439624428749084, + "learning_rate": 2.3914070351758793e-05, + "loss": 0.20102750778198242, + "step": 155800 + }, + { + "epoch": 52.227824775944384, + "grad_norm": 0.7515970468521118, + "learning_rate": 2.389748743718593e-05, + "loss": 0.20047502517700194, + "step": 155900 + }, + { + "epoch": 52.26132841946562, + "grad_norm": 0.806867241859436, + "learning_rate": 2.388073701842546e-05, + "loss": 0.19967298507690429, + "step": 156000 + }, + { + "epoch": 52.29483206298685, + "grad_norm": 0.6517553925514221, + "learning_rate": 2.3863986599664994e-05, + "loss": 0.20189517974853516, + "step": 156100 + }, + { + "epoch": 52.328335706508085, + "grad_norm": 0.7536884546279907, + "learning_rate": 2.3847236180904522e-05, + "loss": 0.20110305786132812, + "step": 156200 + }, + { + "epoch": 52.361839350029314, + "grad_norm": 0.6968570947647095, + "learning_rate": 2.3830485762144055e-05, + "loss": 0.20244617462158204, + "step": 156300 + }, + { + "epoch": 52.39534299355055, + "grad_norm": 0.7550085783004761, + "learning_rate": 2.3813735343383587e-05, + "loss": 0.20247106552124022, + "step": 156400 + }, + { + "epoch": 52.42884663707178, + "grad_norm": 0.720716118812561, + "learning_rate": 2.3796984924623116e-05, + "loss": 0.20291017532348632, + "step": 156500 + }, + { + "epoch": 52.462350280593014, + "grad_norm": 0.8645543456077576, + "learning_rate": 2.3780234505862648e-05, + "loss": 0.20293344497680665, + "step": 156600 + }, + { + "epoch": 52.49585392411425, + "grad_norm": 0.8600931167602539, + "learning_rate": 2.3763484087102177e-05, + "loss": 0.20278577804565429, + "step": 156700 + }, + { + "epoch": 52.52935756763548, + "grad_norm": 0.7974618673324585, + "learning_rate": 2.374673366834171e-05, + "loss": 0.202381591796875, + "step": 156800 + }, + { + "epoch": 52.562861211156715, + "grad_norm": 0.7992094159126282, + "learning_rate": 2.372998324958124e-05, + "loss": 0.20381240844726561, + "step": 156900 + }, + { + "epoch": 52.596364854677944, + "grad_norm": 0.8903921842575073, + "learning_rate": 2.3713232830820773e-05, + "loss": 0.20466848373413085, + "step": 157000 + }, + { + "epoch": 52.62986849819918, + "grad_norm": 0.7660692930221558, + "learning_rate": 2.3696482412060302e-05, + "loss": 0.20477258682250976, + "step": 157100 + }, + { + "epoch": 52.663372141720416, + "grad_norm": 0.9394494891166687, + "learning_rate": 2.3679731993299834e-05, + "loss": 0.20499584197998047, + "step": 157200 + }, + { + "epoch": 52.696875785241645, + "grad_norm": 0.7494113445281982, + "learning_rate": 2.3662981574539363e-05, + "loss": 0.20393524169921876, + "step": 157300 + }, + { + "epoch": 52.73037942876288, + "grad_norm": 0.8550491333007812, + "learning_rate": 2.3646231155778895e-05, + "loss": 0.2046040725708008, + "step": 157400 + }, + { + "epoch": 52.76388307228411, + "grad_norm": 0.7414348721504211, + "learning_rate": 2.3629480737018428e-05, + "loss": 0.2042390251159668, + "step": 157500 + }, + { + "epoch": 52.797386715805345, + "grad_norm": 0.7701572775840759, + "learning_rate": 2.361273031825796e-05, + "loss": 0.20498817443847656, + "step": 157600 + }, + { + "epoch": 52.830890359326574, + "grad_norm": 0.8651624917984009, + "learning_rate": 2.359597989949749e-05, + "loss": 0.2049662399291992, + "step": 157700 + }, + { + "epoch": 52.86439400284781, + "grad_norm": 0.7625434398651123, + "learning_rate": 2.357922948073702e-05, + "loss": 0.20496458053588867, + "step": 157800 + }, + { + "epoch": 52.897897646369046, + "grad_norm": 0.7538461685180664, + "learning_rate": 2.356247906197655e-05, + "loss": 0.20603256225585936, + "step": 157900 + }, + { + "epoch": 52.931401289890275, + "grad_norm": 0.8014910221099854, + "learning_rate": 2.3545728643216082e-05, + "loss": 0.20654550552368164, + "step": 158000 + }, + { + "epoch": 52.96490493341151, + "grad_norm": 0.7098953723907471, + "learning_rate": 2.3529145728643218e-05, + "loss": 0.2058616065979004, + "step": 158100 + }, + { + "epoch": 52.99840857693274, + "grad_norm": 0.7502704858779907, + "learning_rate": 2.3512395309882747e-05, + "loss": 0.20542961120605469, + "step": 158200 + }, + { + "epoch": 53.03182846134517, + "grad_norm": 0.7823647260665894, + "learning_rate": 2.349564489112228e-05, + "loss": 0.19869186401367187, + "step": 158300 + }, + { + "epoch": 53.06533210486641, + "grad_norm": 0.6451433300971985, + "learning_rate": 2.3478894472361808e-05, + "loss": 0.19836278915405273, + "step": 158400 + }, + { + "epoch": 53.098835748387636, + "grad_norm": 0.778315544128418, + "learning_rate": 2.346214405360134e-05, + "loss": 0.196907901763916, + "step": 158500 + }, + { + "epoch": 53.13233939190887, + "grad_norm": 0.7905980944633484, + "learning_rate": 2.3445393634840872e-05, + "loss": 0.19891220092773437, + "step": 158600 + }, + { + "epoch": 53.1658430354301, + "grad_norm": 0.7197417616844177, + "learning_rate": 2.3428643216080404e-05, + "loss": 0.19840576171875, + "step": 158700 + }, + { + "epoch": 53.199346678951336, + "grad_norm": 0.8555814623832703, + "learning_rate": 2.3411892797319933e-05, + "loss": 0.20008617401123047, + "step": 158800 + }, + { + "epoch": 53.23285032247257, + "grad_norm": 0.7590495944023132, + "learning_rate": 2.3395142378559465e-05, + "loss": 0.20077667236328126, + "step": 158900 + }, + { + "epoch": 53.2663539659938, + "grad_norm": 0.7683301568031311, + "learning_rate": 2.3378391959798994e-05, + "loss": 0.19980268478393554, + "step": 159000 + }, + { + "epoch": 53.29985760951504, + "grad_norm": 0.7807407379150391, + "learning_rate": 2.3361641541038526e-05, + "loss": 0.20026128768920898, + "step": 159100 + }, + { + "epoch": 53.333361253036266, + "grad_norm": 0.8405656218528748, + "learning_rate": 2.334489112227806e-05, + "loss": 0.20058374404907225, + "step": 159200 + }, + { + "epoch": 53.3668648965575, + "grad_norm": 0.9434088468551636, + "learning_rate": 2.332814070351759e-05, + "loss": 0.2012481689453125, + "step": 159300 + }, + { + "epoch": 53.40036854007873, + "grad_norm": 0.7459748387336731, + "learning_rate": 2.331139028475712e-05, + "loss": 0.20088954925537109, + "step": 159400 + }, + { + "epoch": 53.433872183599966, + "grad_norm": 0.7078500390052795, + "learning_rate": 2.3294639865996652e-05, + "loss": 0.20286613464355469, + "step": 159500 + }, + { + "epoch": 53.4673758271212, + "grad_norm": 0.8187021017074585, + "learning_rate": 2.327788944723618e-05, + "loss": 0.2021192741394043, + "step": 159600 + }, + { + "epoch": 53.50087947064243, + "grad_norm": 0.8571094274520874, + "learning_rate": 2.3261139028475713e-05, + "loss": 0.20223554611206054, + "step": 159700 + }, + { + "epoch": 53.53438311416367, + "grad_norm": 0.7480899691581726, + "learning_rate": 2.3244388609715245e-05, + "loss": 0.20176963806152343, + "step": 159800 + }, + { + "epoch": 53.567886757684896, + "grad_norm": 0.6709027886390686, + "learning_rate": 2.3227638190954777e-05, + "loss": 0.20310573577880858, + "step": 159900 + }, + { + "epoch": 53.60139040120613, + "grad_norm": 0.8324502110481262, + "learning_rate": 2.3210887772194306e-05, + "loss": 0.20389171600341796, + "step": 160000 + }, + { + "epoch": 53.63489404472736, + "grad_norm": 0.7991625666618347, + "learning_rate": 2.3194304857621442e-05, + "loss": 0.20335477828979492, + "step": 160100 + }, + { + "epoch": 53.6683976882486, + "grad_norm": 0.8041797876358032, + "learning_rate": 2.3177554438860974e-05, + "loss": 0.20338481903076172, + "step": 160200 + }, + { + "epoch": 53.70190133176983, + "grad_norm": 0.7331723570823669, + "learning_rate": 2.3160804020100503e-05, + "loss": 0.20225767135620118, + "step": 160300 + }, + { + "epoch": 53.73540497529106, + "grad_norm": 0.8455171585083008, + "learning_rate": 2.3144053601340035e-05, + "loss": 0.20394590377807617, + "step": 160400 + }, + { + "epoch": 53.7689086188123, + "grad_norm": 0.7466434836387634, + "learning_rate": 2.3127303182579564e-05, + "loss": 0.20405231475830077, + "step": 160500 + }, + { + "epoch": 53.802412262333526, + "grad_norm": 0.7956470847129822, + "learning_rate": 2.3110552763819096e-05, + "loss": 0.20502872467041017, + "step": 160600 + }, + { + "epoch": 53.83591590585476, + "grad_norm": 0.8183136582374573, + "learning_rate": 2.3093802345058625e-05, + "loss": 0.20336063385009764, + "step": 160700 + }, + { + "epoch": 53.869419549376, + "grad_norm": 0.6803155541419983, + "learning_rate": 2.307705192629816e-05, + "loss": 0.20551418304443358, + "step": 160800 + }, + { + "epoch": 53.90292319289723, + "grad_norm": 0.7090324759483337, + "learning_rate": 2.306030150753769e-05, + "loss": 0.20483921051025392, + "step": 160900 + }, + { + "epoch": 53.93642683641846, + "grad_norm": 0.6998985409736633, + "learning_rate": 2.304355108877722e-05, + "loss": 0.20418329238891603, + "step": 161000 + }, + { + "epoch": 53.96993047993969, + "grad_norm": 0.7103771567344666, + "learning_rate": 2.302680067001675e-05, + "loss": 0.20509437561035157, + "step": 161100 + }, + { + "epoch": 54.00335036435212, + "grad_norm": 0.9205202460289001, + "learning_rate": 2.3010050251256283e-05, + "loss": 0.20359134674072266, + "step": 161200 + }, + { + "epoch": 54.03685400787336, + "grad_norm": 0.7976627349853516, + "learning_rate": 2.299329983249581e-05, + "loss": 0.19689498901367186, + "step": 161300 + }, + { + "epoch": 54.07035765139459, + "grad_norm": 0.821431040763855, + "learning_rate": 2.2976549413735344e-05, + "loss": 0.1979433059692383, + "step": 161400 + }, + { + "epoch": 54.10386129491582, + "grad_norm": 0.7001577019691467, + "learning_rate": 2.2959798994974876e-05, + "loss": 0.1971571159362793, + "step": 161500 + }, + { + "epoch": 54.13736493843705, + "grad_norm": 0.8949475884437561, + "learning_rate": 2.2943048576214408e-05, + "loss": 0.19859142303466798, + "step": 161600 + }, + { + "epoch": 54.17086858195829, + "grad_norm": 0.7298758029937744, + "learning_rate": 2.2926298157453937e-05, + "loss": 0.19952430725097656, + "step": 161700 + }, + { + "epoch": 54.204372225479524, + "grad_norm": 0.8920609951019287, + "learning_rate": 2.290954773869347e-05, + "loss": 0.1987653160095215, + "step": 161800 + }, + { + "epoch": 54.23787586900075, + "grad_norm": 0.7720832824707031, + "learning_rate": 2.2892797319932998e-05, + "loss": 0.19959186553955077, + "step": 161900 + }, + { + "epoch": 54.27137951252199, + "grad_norm": 0.7590644359588623, + "learning_rate": 2.287604690117253e-05, + "loss": 0.19991098403930663, + "step": 162000 + }, + { + "epoch": 54.30488315604322, + "grad_norm": 0.7114115357398987, + "learning_rate": 2.2859296482412062e-05, + "loss": 0.20001384735107422, + "step": 162100 + }, + { + "epoch": 54.338386799564454, + "grad_norm": 0.6103782057762146, + "learning_rate": 2.28427135678392e-05, + "loss": 0.2000261116027832, + "step": 162200 + }, + { + "epoch": 54.37189044308568, + "grad_norm": 0.678782045841217, + "learning_rate": 2.2825963149078727e-05, + "loss": 0.2014828109741211, + "step": 162300 + }, + { + "epoch": 54.40539408660692, + "grad_norm": 0.8127717971801758, + "learning_rate": 2.280921273031826e-05, + "loss": 0.1989847755432129, + "step": 162400 + }, + { + "epoch": 54.438897730128154, + "grad_norm": 0.8343021273612976, + "learning_rate": 2.279246231155779e-05, + "loss": 0.20117862701416014, + "step": 162500 + }, + { + "epoch": 54.47240137364938, + "grad_norm": 0.7219998240470886, + "learning_rate": 2.277571189279732e-05, + "loss": 0.20171173095703124, + "step": 162600 + }, + { + "epoch": 54.50590501717062, + "grad_norm": 0.817757785320282, + "learning_rate": 2.2758961474036853e-05, + "loss": 0.20216232299804687, + "step": 162700 + }, + { + "epoch": 54.53940866069185, + "grad_norm": 0.8951203227043152, + "learning_rate": 2.274221105527638e-05, + "loss": 0.20124095916748047, + "step": 162800 + }, + { + "epoch": 54.572912304213084, + "grad_norm": 0.8889951109886169, + "learning_rate": 2.2725460636515914e-05, + "loss": 0.20379587173461913, + "step": 162900 + }, + { + "epoch": 54.60641594773432, + "grad_norm": 0.8064408898353577, + "learning_rate": 2.2708710217755442e-05, + "loss": 0.20114097595214844, + "step": 163000 + }, + { + "epoch": 54.63991959125555, + "grad_norm": 0.6613183617591858, + "learning_rate": 2.2691959798994978e-05, + "loss": 0.20306098937988282, + "step": 163100 + }, + { + "epoch": 54.673423234776784, + "grad_norm": 0.8730353713035583, + "learning_rate": 2.2675209380234507e-05, + "loss": 0.20401838302612305, + "step": 163200 + }, + { + "epoch": 54.70692687829801, + "grad_norm": 0.7803497314453125, + "learning_rate": 2.265845896147404e-05, + "loss": 0.20256214141845702, + "step": 163300 + }, + { + "epoch": 54.74043052181925, + "grad_norm": 0.8791249394416809, + "learning_rate": 2.2641708542713568e-05, + "loss": 0.20302362442016603, + "step": 163400 + }, + { + "epoch": 54.77393416534048, + "grad_norm": 0.8422548770904541, + "learning_rate": 2.26249581239531e-05, + "loss": 0.2037299919128418, + "step": 163500 + }, + { + "epoch": 54.807437808861714, + "grad_norm": 0.6493898630142212, + "learning_rate": 2.260820770519263e-05, + "loss": 0.20337121963500976, + "step": 163600 + }, + { + "epoch": 54.84094145238295, + "grad_norm": 0.8213750720024109, + "learning_rate": 2.259145728643216e-05, + "loss": 0.20318853378295898, + "step": 163700 + }, + { + "epoch": 54.87444509590418, + "grad_norm": 0.9080546498298645, + "learning_rate": 2.2574706867671693e-05, + "loss": 0.20395517349243164, + "step": 163800 + }, + { + "epoch": 54.907948739425414, + "grad_norm": 0.9570611715316772, + "learning_rate": 2.2557956448911226e-05, + "loss": 0.20360021591186522, + "step": 163900 + }, + { + "epoch": 54.94145238294664, + "grad_norm": 0.848283588886261, + "learning_rate": 2.2541206030150754e-05, + "loss": 0.20453887939453125, + "step": 164000 + }, + { + "epoch": 54.97495602646788, + "grad_norm": 0.8141411542892456, + "learning_rate": 2.2524455611390287e-05, + "loss": 0.20472782135009765, + "step": 164100 + }, + { + "epoch": 55.00837591088031, + "grad_norm": 0.6006379723548889, + "learning_rate": 2.2507872696817423e-05, + "loss": 0.2019051742553711, + "step": 164200 + }, + { + "epoch": 55.04187955440154, + "grad_norm": 0.6700722575187683, + "learning_rate": 2.249112227805695e-05, + "loss": 0.1957373046875, + "step": 164300 + }, + { + "epoch": 55.075383197922775, + "grad_norm": 0.7176284193992615, + "learning_rate": 2.2474371859296484e-05, + "loss": 0.1963091278076172, + "step": 164400 + }, + { + "epoch": 55.108886841444004, + "grad_norm": 0.6696990132331848, + "learning_rate": 2.2457621440536016e-05, + "loss": 0.19629579544067383, + "step": 164500 + }, + { + "epoch": 55.14239048496524, + "grad_norm": 0.7618410587310791, + "learning_rate": 2.2440871021775545e-05, + "loss": 0.19794061660766601, + "step": 164600 + }, + { + "epoch": 55.175894128486476, + "grad_norm": 0.6654366850852966, + "learning_rate": 2.2424120603015077e-05, + "loss": 0.1991598892211914, + "step": 164700 + }, + { + "epoch": 55.209397772007705, + "grad_norm": 0.9601466059684753, + "learning_rate": 2.240737018425461e-05, + "loss": 0.19887115478515624, + "step": 164800 + }, + { + "epoch": 55.24290141552894, + "grad_norm": 0.766276478767395, + "learning_rate": 2.2390619765494138e-05, + "loss": 0.19863889694213868, + "step": 164900 + }, + { + "epoch": 55.27640505905017, + "grad_norm": 0.7112438678741455, + "learning_rate": 2.237386934673367e-05, + "loss": 0.19905502319335938, + "step": 165000 + }, + { + "epoch": 55.309908702571406, + "grad_norm": 0.6443644165992737, + "learning_rate": 2.23571189279732e-05, + "loss": 0.19937538146972655, + "step": 165100 + }, + { + "epoch": 55.343412346092634, + "grad_norm": 0.8128257393836975, + "learning_rate": 2.234036850921273e-05, + "loss": 0.19976985931396485, + "step": 165200 + }, + { + "epoch": 55.37691598961387, + "grad_norm": 0.7452270984649658, + "learning_rate": 2.232361809045226e-05, + "loss": 0.19971412658691406, + "step": 165300 + }, + { + "epoch": 55.410419633135106, + "grad_norm": 0.7263997197151184, + "learning_rate": 2.2306867671691795e-05, + "loss": 0.19973045349121094, + "step": 165400 + }, + { + "epoch": 55.443923276656335, + "grad_norm": 0.7190716862678528, + "learning_rate": 2.2290117252931324e-05, + "loss": 0.20105569839477538, + "step": 165500 + }, + { + "epoch": 55.47742692017757, + "grad_norm": 0.7603322863578796, + "learning_rate": 2.2273366834170857e-05, + "loss": 0.20152530670166016, + "step": 165600 + }, + { + "epoch": 55.5109305636988, + "grad_norm": 0.6346855759620667, + "learning_rate": 2.2256616415410385e-05, + "loss": 0.20098255157470704, + "step": 165700 + }, + { + "epoch": 55.544434207220036, + "grad_norm": 0.6980137228965759, + "learning_rate": 2.2239865996649918e-05, + "loss": 0.200362548828125, + "step": 165800 + }, + { + "epoch": 55.57793785074127, + "grad_norm": 0.7294763922691345, + "learning_rate": 2.2223115577889446e-05, + "loss": 0.20156070709228516, + "step": 165900 + }, + { + "epoch": 55.6114414942625, + "grad_norm": 0.7770695090293884, + "learning_rate": 2.2206365159128982e-05, + "loss": 0.20071981430053712, + "step": 166000 + }, + { + "epoch": 55.644945137783736, + "grad_norm": 0.6916683316230774, + "learning_rate": 2.218961474036851e-05, + "loss": 0.2019366455078125, + "step": 166100 + }, + { + "epoch": 55.678448781304965, + "grad_norm": 0.6621333360671997, + "learning_rate": 2.2172864321608043e-05, + "loss": 0.2023235321044922, + "step": 166200 + }, + { + "epoch": 55.7119524248262, + "grad_norm": 0.742199718952179, + "learning_rate": 2.2156281407035176e-05, + "loss": 0.2024928092956543, + "step": 166300 + }, + { + "epoch": 55.74545606834743, + "grad_norm": 0.6829848289489746, + "learning_rate": 2.2139530988274708e-05, + "loss": 0.20235004425048828, + "step": 166400 + }, + { + "epoch": 55.778959711868666, + "grad_norm": 0.6780540943145752, + "learning_rate": 2.212278056951424e-05, + "loss": 0.2021579360961914, + "step": 166500 + }, + { + "epoch": 55.8124633553899, + "grad_norm": 0.7976480722427368, + "learning_rate": 2.210603015075377e-05, + "loss": 0.20198610305786133, + "step": 166600 + }, + { + "epoch": 55.84596699891113, + "grad_norm": 0.7261124849319458, + "learning_rate": 2.20892797319933e-05, + "loss": 0.20343488693237305, + "step": 166700 + }, + { + "epoch": 55.879470642432366, + "grad_norm": 0.7780104279518127, + "learning_rate": 2.207252931323283e-05, + "loss": 0.20361764907836913, + "step": 166800 + }, + { + "epoch": 55.912974285953595, + "grad_norm": 0.6498653292655945, + "learning_rate": 2.2055778894472362e-05, + "loss": 0.20432092666625976, + "step": 166900 + }, + { + "epoch": 55.94647792947483, + "grad_norm": 0.8899915814399719, + "learning_rate": 2.2039028475711894e-05, + "loss": 0.2044738006591797, + "step": 167000 + }, + { + "epoch": 55.97998157299606, + "grad_norm": 0.703768789768219, + "learning_rate": 2.2022278056951426e-05, + "loss": 0.2027983283996582, + "step": 167100 + }, + { + "epoch": 56.01340145740849, + "grad_norm": 0.6999773979187012, + "learning_rate": 2.2005527638190955e-05, + "loss": 0.19977279663085937, + "step": 167200 + }, + { + "epoch": 56.04690510092973, + "grad_norm": 0.7234398126602173, + "learning_rate": 2.1988777219430487e-05, + "loss": 0.19637002944946289, + "step": 167300 + }, + { + "epoch": 56.080408744450956, + "grad_norm": 0.7196521162986755, + "learning_rate": 2.1972026800670016e-05, + "loss": 0.1961227035522461, + "step": 167400 + }, + { + "epoch": 56.11391238797219, + "grad_norm": 0.7114014625549316, + "learning_rate": 2.195527638190955e-05, + "loss": 0.19647451400756835, + "step": 167500 + }, + { + "epoch": 56.14741603149343, + "grad_norm": 0.7853075861930847, + "learning_rate": 2.1938525963149077e-05, + "loss": 0.19717487335205078, + "step": 167600 + }, + { + "epoch": 56.18091967501466, + "grad_norm": 0.6808475852012634, + "learning_rate": 2.1921775544388613e-05, + "loss": 0.19807977676391603, + "step": 167700 + }, + { + "epoch": 56.21442331853589, + "grad_norm": 0.6541131734848022, + "learning_rate": 2.1905025125628142e-05, + "loss": 0.19757047653198243, + "step": 167800 + }, + { + "epoch": 56.24792696205712, + "grad_norm": 0.7412530183792114, + "learning_rate": 2.1888274706867674e-05, + "loss": 0.19785118103027344, + "step": 167900 + }, + { + "epoch": 56.28143060557836, + "grad_norm": 0.7527230978012085, + "learning_rate": 2.1871524288107203e-05, + "loss": 0.19891765594482422, + "step": 168000 + }, + { + "epoch": 56.314934249099586, + "grad_norm": 0.7702918648719788, + "learning_rate": 2.1854773869346735e-05, + "loss": 0.19912639617919922, + "step": 168100 + }, + { + "epoch": 56.34843789262082, + "grad_norm": 0.9410870671272278, + "learning_rate": 2.1838023450586264e-05, + "loss": 0.19807853698730468, + "step": 168200 + }, + { + "epoch": 56.38194153614206, + "grad_norm": 0.7551661133766174, + "learning_rate": 2.18212730318258e-05, + "loss": 0.19915082931518555, + "step": 168300 + }, + { + "epoch": 56.41544517966329, + "grad_norm": 0.8068090081214905, + "learning_rate": 2.1804522613065328e-05, + "loss": 0.19918592453002928, + "step": 168400 + }, + { + "epoch": 56.44894882318452, + "grad_norm": 0.8415470123291016, + "learning_rate": 2.1787939698492464e-05, + "loss": 0.19998703002929688, + "step": 168500 + }, + { + "epoch": 56.48245246670575, + "grad_norm": 0.6690595149993896, + "learning_rate": 2.1771189279731993e-05, + "loss": 0.2002570152282715, + "step": 168600 + }, + { + "epoch": 56.51595611022699, + "grad_norm": 0.8166069984436035, + "learning_rate": 2.1754438860971525e-05, + "loss": 0.20179470062255858, + "step": 168700 + }, + { + "epoch": 56.54945975374822, + "grad_norm": 0.7660237550735474, + "learning_rate": 2.1737688442211057e-05, + "loss": 0.20062505722045898, + "step": 168800 + }, + { + "epoch": 56.58296339726945, + "grad_norm": 0.8243525624275208, + "learning_rate": 2.1720938023450586e-05, + "loss": 0.2011745071411133, + "step": 168900 + }, + { + "epoch": 56.61646704079069, + "grad_norm": 0.7057405114173889, + "learning_rate": 2.170418760469012e-05, + "loss": 0.2007113838195801, + "step": 169000 + }, + { + "epoch": 56.64997068431192, + "grad_norm": 0.8495818376541138, + "learning_rate": 2.1687437185929647e-05, + "loss": 0.20225597381591798, + "step": 169100 + }, + { + "epoch": 56.68347432783315, + "grad_norm": 0.6715584397315979, + "learning_rate": 2.167068676716918e-05, + "loss": 0.20023557662963867, + "step": 169200 + }, + { + "epoch": 56.71697797135438, + "grad_norm": 0.6438612937927246, + "learning_rate": 2.1653936348408708e-05, + "loss": 0.2012915802001953, + "step": 169300 + }, + { + "epoch": 56.75048161487562, + "grad_norm": 0.854141116142273, + "learning_rate": 2.1637185929648244e-05, + "loss": 0.20242010116577147, + "step": 169400 + }, + { + "epoch": 56.783985258396854, + "grad_norm": 0.7206624150276184, + "learning_rate": 2.1620435510887773e-05, + "loss": 0.20245513916015626, + "step": 169500 + }, + { + "epoch": 56.81748890191808, + "grad_norm": 0.6744206547737122, + "learning_rate": 2.1603685092127305e-05, + "loss": 0.20179567337036133, + "step": 169600 + }, + { + "epoch": 56.85099254543932, + "grad_norm": 0.7552564740180969, + "learning_rate": 2.1586934673366834e-05, + "loss": 0.20230600357055664, + "step": 169700 + }, + { + "epoch": 56.88449618896055, + "grad_norm": 0.8486445546150208, + "learning_rate": 2.1570184254606366e-05, + "loss": 0.20117643356323242, + "step": 169800 + }, + { + "epoch": 56.91799983248178, + "grad_norm": 0.5880848169326782, + "learning_rate": 2.1553433835845895e-05, + "loss": 0.20292966842651367, + "step": 169900 + }, + { + "epoch": 56.95150347600301, + "grad_norm": 0.7727257013320923, + "learning_rate": 2.153668341708543e-05, + "loss": 0.2035549736022949, + "step": 170000 + }, + { + "epoch": 56.98500711952425, + "grad_norm": 0.7095633745193481, + "learning_rate": 2.151993299832496e-05, + "loss": 0.20257196426391602, + "step": 170100 + }, + { + "epoch": 57.01842700393668, + "grad_norm": 0.5395858883857727, + "learning_rate": 2.150318257956449e-05, + "loss": 0.19870391845703125, + "step": 170200 + }, + { + "epoch": 57.05193064745791, + "grad_norm": 0.6598409414291382, + "learning_rate": 2.148643216080402e-05, + "loss": 0.1953832244873047, + "step": 170300 + }, + { + "epoch": 57.085434290979144, + "grad_norm": 0.9595073461532593, + "learning_rate": 2.1469681742043552e-05, + "loss": 0.19685894012451172, + "step": 170400 + }, + { + "epoch": 57.11893793450038, + "grad_norm": 0.5701305866241455, + "learning_rate": 2.1453098827470688e-05, + "loss": 0.19607532501220704, + "step": 170500 + }, + { + "epoch": 57.15244157802161, + "grad_norm": 0.6835476160049438, + "learning_rate": 2.143634840871022e-05, + "loss": 0.1967610549926758, + "step": 170600 + }, + { + "epoch": 57.185945221542845, + "grad_norm": 0.5928249955177307, + "learning_rate": 2.141959798994975e-05, + "loss": 0.19592588424682617, + "step": 170700 + }, + { + "epoch": 57.219448865064074, + "grad_norm": 0.7820493578910828, + "learning_rate": 2.140284757118928e-05, + "loss": 0.19711441040039063, + "step": 170800 + }, + { + "epoch": 57.25295250858531, + "grad_norm": 0.7720481753349304, + "learning_rate": 2.138609715242881e-05, + "loss": 0.19725584030151366, + "step": 170900 + }, + { + "epoch": 57.28645615210654, + "grad_norm": 0.7418736219406128, + "learning_rate": 2.1369346733668343e-05, + "loss": 0.19777252197265624, + "step": 171000 + }, + { + "epoch": 57.319959795627774, + "grad_norm": 0.7071073055267334, + "learning_rate": 2.1352596314907875e-05, + "loss": 0.19808469772338866, + "step": 171100 + }, + { + "epoch": 57.35346343914901, + "grad_norm": 0.7375087738037109, + "learning_rate": 2.1335845896147404e-05, + "loss": 0.19767127990722655, + "step": 171200 + }, + { + "epoch": 57.38696708267024, + "grad_norm": 0.8487064838409424, + "learning_rate": 2.1319095477386936e-05, + "loss": 0.19986190795898437, + "step": 171300 + }, + { + "epoch": 57.420470726191475, + "grad_norm": 0.8072951436042786, + "learning_rate": 2.1302345058626465e-05, + "loss": 0.19746374130249023, + "step": 171400 + }, + { + "epoch": 57.453974369712704, + "grad_norm": 0.8079342842102051, + "learning_rate": 2.1285594639865997e-05, + "loss": 0.19960382461547851, + "step": 171500 + }, + { + "epoch": 57.48747801323394, + "grad_norm": 0.8104588389396667, + "learning_rate": 2.126884422110553e-05, + "loss": 0.20039827346801758, + "step": 171600 + }, + { + "epoch": 57.520981656755175, + "grad_norm": 0.753643274307251, + "learning_rate": 2.125209380234506e-05, + "loss": 0.1997998046875, + "step": 171700 + }, + { + "epoch": 57.554485300276404, + "grad_norm": 0.8228442668914795, + "learning_rate": 2.123534338358459e-05, + "loss": 0.19931909561157227, + "step": 171800 + }, + { + "epoch": 57.58798894379764, + "grad_norm": 0.8214404582977295, + "learning_rate": 2.1218592964824122e-05, + "loss": 0.19911916732788085, + "step": 171900 + }, + { + "epoch": 57.62149258731887, + "grad_norm": 0.6019760370254517, + "learning_rate": 2.120184254606365e-05, + "loss": 0.2016813850402832, + "step": 172000 + }, + { + "epoch": 57.654996230840105, + "grad_norm": 0.6880699396133423, + "learning_rate": 2.1185092127303183e-05, + "loss": 0.19929651260375977, + "step": 172100 + }, + { + "epoch": 57.688499874361334, + "grad_norm": 0.69806969165802, + "learning_rate": 2.1168341708542712e-05, + "loss": 0.2015073585510254, + "step": 172200 + }, + { + "epoch": 57.72200351788257, + "grad_norm": 0.6724705100059509, + "learning_rate": 2.1151591289782248e-05, + "loss": 0.20101812362670898, + "step": 172300 + }, + { + "epoch": 57.755507161403806, + "grad_norm": 0.8854671716690063, + "learning_rate": 2.1134840871021777e-05, + "loss": 0.20211099624633788, + "step": 172400 + }, + { + "epoch": 57.789010804925034, + "grad_norm": 0.7592790722846985, + "learning_rate": 2.111809045226131e-05, + "loss": 0.20073314666748046, + "step": 172500 + }, + { + "epoch": 57.82251444844627, + "grad_norm": 0.7253840565681458, + "learning_rate": 2.1101340033500838e-05, + "loss": 0.2017323112487793, + "step": 172600 + }, + { + "epoch": 57.8560180919675, + "grad_norm": 0.7471290230751038, + "learning_rate": 2.1084757118927977e-05, + "loss": 0.20244625091552734, + "step": 172700 + }, + { + "epoch": 57.889521735488735, + "grad_norm": 0.8345232009887695, + "learning_rate": 2.1068006700167506e-05, + "loss": 0.20169891357421876, + "step": 172800 + }, + { + "epoch": 57.923025379009964, + "grad_norm": 0.8078505396842957, + "learning_rate": 2.1051256281407038e-05, + "loss": 0.20322864532470702, + "step": 172900 + }, + { + "epoch": 57.9565290225312, + "grad_norm": 0.8274567127227783, + "learning_rate": 2.1034505862646567e-05, + "loss": 0.20089473724365234, + "step": 173000 + }, + { + "epoch": 57.990032666052436, + "grad_norm": 0.6914857029914856, + "learning_rate": 2.10177554438861e-05, + "loss": 0.20304906845092774, + "step": 173100 + }, + { + "epoch": 58.02345255046486, + "grad_norm": 0.6851274371147156, + "learning_rate": 2.1001005025125628e-05, + "loss": 0.1973126220703125, + "step": 173200 + }, + { + "epoch": 58.056956193986096, + "grad_norm": 0.5594986081123352, + "learning_rate": 2.098425460636516e-05, + "loss": 0.19482255935668946, + "step": 173300 + }, + { + "epoch": 58.09045983750733, + "grad_norm": 0.6892759203910828, + "learning_rate": 2.0967504187604692e-05, + "loss": 0.19560087203979493, + "step": 173400 + }, + { + "epoch": 58.12396348102856, + "grad_norm": 0.6023077368736267, + "learning_rate": 2.095075376884422e-05, + "loss": 0.1957664108276367, + "step": 173500 + }, + { + "epoch": 58.1574671245498, + "grad_norm": 0.6524220108985901, + "learning_rate": 2.0934003350083753e-05, + "loss": 0.19625062942504884, + "step": 173600 + }, + { + "epoch": 58.190970768071026, + "grad_norm": 0.9801384806632996, + "learning_rate": 2.0917252931323282e-05, + "loss": 0.1955522346496582, + "step": 173700 + }, + { + "epoch": 58.22447441159226, + "grad_norm": 0.8744773864746094, + "learning_rate": 2.0900502512562814e-05, + "loss": 0.19638490676879883, + "step": 173800 + }, + { + "epoch": 58.25797805511349, + "grad_norm": 0.6583356261253357, + "learning_rate": 2.0883752093802346e-05, + "loss": 0.1966208267211914, + "step": 173900 + }, + { + "epoch": 58.291481698634726, + "grad_norm": 0.6736335754394531, + "learning_rate": 2.086700167504188e-05, + "loss": 0.1969454765319824, + "step": 174000 + }, + { + "epoch": 58.32498534215596, + "grad_norm": 0.9140983819961548, + "learning_rate": 2.0850251256281408e-05, + "loss": 0.19811725616455078, + "step": 174100 + }, + { + "epoch": 58.35848898567719, + "grad_norm": 0.825357973575592, + "learning_rate": 2.083350083752094e-05, + "loss": 0.19800840377807616, + "step": 174200 + }, + { + "epoch": 58.39199262919843, + "grad_norm": 0.8800440430641174, + "learning_rate": 2.081675041876047e-05, + "loss": 0.1982166862487793, + "step": 174300 + }, + { + "epoch": 58.425496272719656, + "grad_norm": 0.7681903839111328, + "learning_rate": 2.08e-05, + "loss": 0.199152889251709, + "step": 174400 + }, + { + "epoch": 58.45899991624089, + "grad_norm": 0.7516371607780457, + "learning_rate": 2.0783249581239533e-05, + "loss": 0.1978353500366211, + "step": 174500 + }, + { + "epoch": 58.49250355976213, + "grad_norm": 0.7671756148338318, + "learning_rate": 2.0766499162479065e-05, + "loss": 0.19854022979736327, + "step": 174600 + }, + { + "epoch": 58.526007203283356, + "grad_norm": 0.6201814413070679, + "learning_rate": 2.0749916247906198e-05, + "loss": 0.19920494079589843, + "step": 174700 + }, + { + "epoch": 58.55951084680459, + "grad_norm": 0.8798500299453735, + "learning_rate": 2.073316582914573e-05, + "loss": 0.20001602172851562, + "step": 174800 + }, + { + "epoch": 58.59301449032582, + "grad_norm": 0.5957375168800354, + "learning_rate": 2.071641541038526e-05, + "loss": 0.1991959571838379, + "step": 174900 + }, + { + "epoch": 58.62651813384706, + "grad_norm": 0.84260493516922, + "learning_rate": 2.069966499162479e-05, + "loss": 0.20048974990844726, + "step": 175000 + }, + { + "epoch": 58.660021777368286, + "grad_norm": 0.6994961500167847, + "learning_rate": 2.0682914572864323e-05, + "loss": 0.19937900543212891, + "step": 175100 + }, + { + "epoch": 58.69352542088952, + "grad_norm": 0.7235148549079895, + "learning_rate": 2.0666164154103852e-05, + "loss": 0.20066232681274415, + "step": 175200 + }, + { + "epoch": 58.72702906441076, + "grad_norm": 0.7542918920516968, + "learning_rate": 2.0649413735343384e-05, + "loss": 0.20042539596557618, + "step": 175300 + }, + { + "epoch": 58.760532707931986, + "grad_norm": 0.6566546559333801, + "learning_rate": 2.0632663316582916e-05, + "loss": 0.20085683822631836, + "step": 175400 + }, + { + "epoch": 58.79403635145322, + "grad_norm": 0.7434055209159851, + "learning_rate": 2.0615912897822445e-05, + "loss": 0.20140844345092773, + "step": 175500 + }, + { + "epoch": 58.82753999497445, + "grad_norm": 0.6652776002883911, + "learning_rate": 2.0599162479061977e-05, + "loss": 0.2017723274230957, + "step": 175600 + }, + { + "epoch": 58.86104363849569, + "grad_norm": 0.7438784837722778, + "learning_rate": 2.058241206030151e-05, + "loss": 0.20224170684814452, + "step": 175700 + }, + { + "epoch": 58.894547282016916, + "grad_norm": 0.842480480670929, + "learning_rate": 2.056566164154104e-05, + "loss": 0.2010243797302246, + "step": 175800 + }, + { + "epoch": 58.92805092553815, + "grad_norm": 0.777508020401001, + "learning_rate": 2.054891122278057e-05, + "loss": 0.20120513916015625, + "step": 175900 + }, + { + "epoch": 58.96155456905939, + "grad_norm": 0.7863830327987671, + "learning_rate": 2.05321608040201e-05, + "loss": 0.20216922760009765, + "step": 176000 + }, + { + "epoch": 58.995058212580616, + "grad_norm": 0.720203161239624, + "learning_rate": 2.051541038525963e-05, + "loss": 0.20130184173583984, + "step": 176100 + }, + { + "epoch": 59.02847809699305, + "grad_norm": 0.7132588028907776, + "learning_rate": 2.0498659966499164e-05, + "loss": 0.1958163070678711, + "step": 176200 + }, + { + "epoch": 59.061981740514284, + "grad_norm": 0.6386404037475586, + "learning_rate": 2.0481909547738696e-05, + "loss": 0.19423696517944336, + "step": 176300 + }, + { + "epoch": 59.09548538403551, + "grad_norm": 0.5817972421646118, + "learning_rate": 2.0465159128978225e-05, + "loss": 0.19470659255981446, + "step": 176400 + }, + { + "epoch": 59.12898902755675, + "grad_norm": 0.5699682831764221, + "learning_rate": 2.0448408710217757e-05, + "loss": 0.19486974716186523, + "step": 176500 + }, + { + "epoch": 59.16249267107798, + "grad_norm": 0.6849201321601868, + "learning_rate": 2.0431658291457286e-05, + "loss": 0.19612747192382812, + "step": 176600 + }, + { + "epoch": 59.19599631459921, + "grad_norm": 0.7165812253952026, + "learning_rate": 2.0414907872696818e-05, + "loss": 0.19578189849853517, + "step": 176700 + }, + { + "epoch": 59.22949995812044, + "grad_norm": 0.7262609004974365, + "learning_rate": 2.0398324958123954e-05, + "loss": 0.19529666900634765, + "step": 176800 + }, + { + "epoch": 59.26300360164168, + "grad_norm": 0.7515226006507874, + "learning_rate": 2.0381574539363486e-05, + "loss": 0.1967916488647461, + "step": 176900 + }, + { + "epoch": 59.296507245162914, + "grad_norm": 0.675984799861908, + "learning_rate": 2.0364824120603015e-05, + "loss": 0.19698150634765624, + "step": 177000 + }, + { + "epoch": 59.33001088868414, + "grad_norm": 0.9520745277404785, + "learning_rate": 2.0348073701842547e-05, + "loss": 0.19764524459838867, + "step": 177100 + }, + { + "epoch": 59.36351453220538, + "grad_norm": 0.6780461072921753, + "learning_rate": 2.033132328308208e-05, + "loss": 0.19658233642578124, + "step": 177200 + }, + { + "epoch": 59.39701817572661, + "grad_norm": 0.6440721750259399, + "learning_rate": 2.031457286432161e-05, + "loss": 0.19660577774047852, + "step": 177300 + }, + { + "epoch": 59.43052181924784, + "grad_norm": 0.7188435196876526, + "learning_rate": 2.029782244556114e-05, + "loss": 0.19726680755615233, + "step": 177400 + }, + { + "epoch": 59.46402546276908, + "grad_norm": 0.680558979511261, + "learning_rate": 2.028107202680067e-05, + "loss": 0.19743047714233397, + "step": 177500 + }, + { + "epoch": 59.49752910629031, + "grad_norm": 0.7961515188217163, + "learning_rate": 2.02643216080402e-05, + "loss": 0.19772005081176758, + "step": 177600 + }, + { + "epoch": 59.531032749811544, + "grad_norm": 0.6180649995803833, + "learning_rate": 2.024757118927973e-05, + "loss": 0.1990138053894043, + "step": 177700 + }, + { + "epoch": 59.56453639333277, + "grad_norm": 0.7766602039337158, + "learning_rate": 2.0230820770519263e-05, + "loss": 0.19866539001464845, + "step": 177800 + }, + { + "epoch": 59.59804003685401, + "grad_norm": 0.7700449824333191, + "learning_rate": 2.0214070351758795e-05, + "loss": 0.198470516204834, + "step": 177900 + }, + { + "epoch": 59.63154368037524, + "grad_norm": 0.7601004838943481, + "learning_rate": 2.0197319932998327e-05, + "loss": 0.20065229415893554, + "step": 178000 + }, + { + "epoch": 59.665047323896474, + "grad_norm": 0.8511313796043396, + "learning_rate": 2.0180569514237856e-05, + "loss": 0.20094491958618163, + "step": 178100 + }, + { + "epoch": 59.69855096741771, + "grad_norm": 0.6393927931785583, + "learning_rate": 2.0163819095477388e-05, + "loss": 0.19916282653808592, + "step": 178200 + }, + { + "epoch": 59.73205461093894, + "grad_norm": 0.8600590229034424, + "learning_rate": 2.0147068676716917e-05, + "loss": 0.19939659118652345, + "step": 178300 + }, + { + "epoch": 59.765558254460174, + "grad_norm": 0.642556369304657, + "learning_rate": 2.013031825795645e-05, + "loss": 0.2003472137451172, + "step": 178400 + }, + { + "epoch": 59.7990618979814, + "grad_norm": 0.7224367260932922, + "learning_rate": 2.011356783919598e-05, + "loss": 0.19969842910766603, + "step": 178500 + }, + { + "epoch": 59.83256554150264, + "grad_norm": 0.7427322268486023, + "learning_rate": 2.0096817420435514e-05, + "loss": 0.19960586547851564, + "step": 178600 + }, + { + "epoch": 59.866069185023875, + "grad_norm": 0.7013212442398071, + "learning_rate": 2.0080067001675042e-05, + "loss": 0.2002570915222168, + "step": 178700 + }, + { + "epoch": 59.899572828545104, + "grad_norm": 0.852935791015625, + "learning_rate": 2.0063484087102178e-05, + "loss": 0.2009134292602539, + "step": 178800 + }, + { + "epoch": 59.93307647206634, + "grad_norm": 0.875970184803009, + "learning_rate": 2.004673366834171e-05, + "loss": 0.20090538024902344, + "step": 178900 + }, + { + "epoch": 59.96658011558757, + "grad_norm": 0.7883792519569397, + "learning_rate": 2.0029983249581243e-05, + "loss": 0.20025901794433593, + "step": 179000 + }, + { + "epoch": 60.0, + "grad_norm": 0.8162919878959656, + "learning_rate": 2.001323283082077e-05, + "loss": 0.2026140022277832, + "step": 179100 + }, + { + "epoch": 60.033503643521236, + "grad_norm": 0.6830130219459534, + "learning_rate": 1.9996482412060304e-05, + "loss": 0.19378650665283204, + "step": 179200 + }, + { + "epoch": 60.067007287042465, + "grad_norm": 0.6668891906738281, + "learning_rate": 1.9979731993299833e-05, + "loss": 0.19362451553344726, + "step": 179300 + }, + { + "epoch": 60.1005109305637, + "grad_norm": 0.7308112382888794, + "learning_rate": 1.9962981574539365e-05, + "loss": 0.19429069519042969, + "step": 179400 + }, + { + "epoch": 60.13401457408493, + "grad_norm": 0.7730607390403748, + "learning_rate": 1.9946231155778897e-05, + "loss": 0.19423646926879884, + "step": 179500 + }, + { + "epoch": 60.167518217606165, + "grad_norm": 0.624254047870636, + "learning_rate": 1.9929480737018426e-05, + "loss": 0.19518238067626953, + "step": 179600 + }, + { + "epoch": 60.201021861127394, + "grad_norm": 0.917464017868042, + "learning_rate": 1.9912730318257958e-05, + "loss": 0.1952109718322754, + "step": 179700 + }, + { + "epoch": 60.23452550464863, + "grad_norm": 0.7360493540763855, + "learning_rate": 1.9895979899497487e-05, + "loss": 0.19446746826171876, + "step": 179800 + }, + { + "epoch": 60.268029148169866, + "grad_norm": 0.7760195732116699, + "learning_rate": 1.987922948073702e-05, + "loss": 0.1961222457885742, + "step": 179900 + }, + { + "epoch": 60.301532791691095, + "grad_norm": 0.7055202126502991, + "learning_rate": 1.9862479061976548e-05, + "loss": 0.19603208541870118, + "step": 180000 + }, + { + "epoch": 60.33503643521233, + "grad_norm": 0.7124981880187988, + "learning_rate": 1.9845728643216083e-05, + "loss": 0.19644119262695312, + "step": 180100 + }, + { + "epoch": 60.36854007873356, + "grad_norm": 0.6831589341163635, + "learning_rate": 1.9828978224455612e-05, + "loss": 0.19591159820556642, + "step": 180200 + }, + { + "epoch": 60.402043722254795, + "grad_norm": 0.6932199001312256, + "learning_rate": 1.9812227805695144e-05, + "loss": 0.19705738067626954, + "step": 180300 + }, + { + "epoch": 60.43554736577603, + "grad_norm": 0.6487602591514587, + "learning_rate": 1.9795477386934673e-05, + "loss": 0.19764183044433595, + "step": 180400 + }, + { + "epoch": 60.46905100929726, + "grad_norm": 0.760643720626831, + "learning_rate": 1.9778726968174205e-05, + "loss": 0.19725812911987306, + "step": 180500 + }, + { + "epoch": 60.502554652818496, + "grad_norm": 0.8425685167312622, + "learning_rate": 1.9761976549413734e-05, + "loss": 0.19825616836547852, + "step": 180600 + }, + { + "epoch": 60.536058296339725, + "grad_norm": 0.7290912866592407, + "learning_rate": 1.9745226130653267e-05, + "loss": 0.19793628692626952, + "step": 180700 + }, + { + "epoch": 60.56956193986096, + "grad_norm": 0.7724213004112244, + "learning_rate": 1.9728643216080402e-05, + "loss": 0.19957996368408204, + "step": 180800 + }, + { + "epoch": 60.60306558338219, + "grad_norm": 0.8002983927726746, + "learning_rate": 1.9711892797319935e-05, + "loss": 0.19841293334960938, + "step": 180900 + }, + { + "epoch": 60.636569226903426, + "grad_norm": 0.8721250295639038, + "learning_rate": 1.9695142378559463e-05, + "loss": 0.1982705307006836, + "step": 181000 + }, + { + "epoch": 60.67007287042466, + "grad_norm": 0.9120819568634033, + "learning_rate": 1.9678391959798996e-05, + "loss": 0.19878549575805665, + "step": 181100 + }, + { + "epoch": 60.70357651394589, + "grad_norm": 0.7080308198928833, + "learning_rate": 1.9661641541038528e-05, + "loss": 0.19935232162475586, + "step": 181200 + }, + { + "epoch": 60.737080157467126, + "grad_norm": 0.7024886012077332, + "learning_rate": 1.964489112227806e-05, + "loss": 0.19872413635253905, + "step": 181300 + }, + { + "epoch": 60.770583800988355, + "grad_norm": 0.6947377324104309, + "learning_rate": 1.962814070351759e-05, + "loss": 0.19973325729370117, + "step": 181400 + }, + { + "epoch": 60.80408744450959, + "grad_norm": 0.7923586964607239, + "learning_rate": 1.961139028475712e-05, + "loss": 0.1994416046142578, + "step": 181500 + }, + { + "epoch": 60.83759108803083, + "grad_norm": 0.7876746654510498, + "learning_rate": 1.959463986599665e-05, + "loss": 0.20001832962036134, + "step": 181600 + }, + { + "epoch": 60.871094731552056, + "grad_norm": 0.6669028401374817, + "learning_rate": 1.9577889447236182e-05, + "loss": 0.19931718826293945, + "step": 181700 + }, + { + "epoch": 60.90459837507329, + "grad_norm": 0.8376245498657227, + "learning_rate": 1.9561139028475714e-05, + "loss": 0.19980306625366212, + "step": 181800 + }, + { + "epoch": 60.93810201859452, + "grad_norm": 0.8353832960128784, + "learning_rate": 1.9544388609715243e-05, + "loss": 0.19981901168823243, + "step": 181900 + }, + { + "epoch": 60.971605662115756, + "grad_norm": 0.7106568217277527, + "learning_rate": 1.9527638190954775e-05, + "loss": 0.19973602294921874, + "step": 182000 + }, + { + "epoch": 61.00502554652819, + "grad_norm": 0.6675083637237549, + "learning_rate": 1.9510887772194304e-05, + "loss": 0.20030658721923827, + "step": 182100 + }, + { + "epoch": 61.03852919004942, + "grad_norm": 0.6827961206436157, + "learning_rate": 1.9494137353433836e-05, + "loss": 0.19295509338378905, + "step": 182200 + }, + { + "epoch": 61.07203283357065, + "grad_norm": 0.8352850675582886, + "learning_rate": 1.9477386934673365e-05, + "loss": 0.19397199630737305, + "step": 182300 + }, + { + "epoch": 61.10553647709188, + "grad_norm": 0.6060226559638977, + "learning_rate": 1.94606365159129e-05, + "loss": 0.19397262573242188, + "step": 182400 + }, + { + "epoch": 61.13904012061312, + "grad_norm": 0.6782211065292358, + "learning_rate": 1.944388609715243e-05, + "loss": 0.1942317581176758, + "step": 182500 + }, + { + "epoch": 61.172543764134346, + "grad_norm": 0.6505800485610962, + "learning_rate": 1.9427135678391962e-05, + "loss": 0.19382064819335937, + "step": 182600 + }, + { + "epoch": 61.20604740765558, + "grad_norm": 0.6470309495925903, + "learning_rate": 1.941038525963149e-05, + "loss": 0.19352495193481445, + "step": 182700 + }, + { + "epoch": 61.23955105117682, + "grad_norm": 0.7394313216209412, + "learning_rate": 1.9393634840871023e-05, + "loss": 0.19527189254760743, + "step": 182800 + }, + { + "epoch": 61.27305469469805, + "grad_norm": 0.6375427842140198, + "learning_rate": 1.937705192629816e-05, + "loss": 0.19507966995239256, + "step": 182900 + }, + { + "epoch": 61.30655833821928, + "grad_norm": 0.7445289492607117, + "learning_rate": 1.936030150753769e-05, + "loss": 0.19499330520629882, + "step": 183000 + }, + { + "epoch": 61.34006198174051, + "grad_norm": 0.6758365631103516, + "learning_rate": 1.934355108877722e-05, + "loss": 0.19620643615722655, + "step": 183100 + }, + { + "epoch": 61.37356562526175, + "grad_norm": 0.682247519493103, + "learning_rate": 1.9326800670016752e-05, + "loss": 0.19641605377197266, + "step": 183200 + }, + { + "epoch": 61.40706926878298, + "grad_norm": 0.6681833267211914, + "learning_rate": 1.931005025125628e-05, + "loss": 0.1975366973876953, + "step": 183300 + }, + { + "epoch": 61.44057291230421, + "grad_norm": 0.6850043535232544, + "learning_rate": 1.9293299832495813e-05, + "loss": 0.1968943405151367, + "step": 183400 + }, + { + "epoch": 61.47407655582545, + "grad_norm": 0.769083559513092, + "learning_rate": 1.9276549413735345e-05, + "loss": 0.19727476119995116, + "step": 183500 + }, + { + "epoch": 61.50758019934668, + "grad_norm": 0.5792109370231628, + "learning_rate": 1.9259798994974878e-05, + "loss": 0.19699573516845703, + "step": 183600 + }, + { + "epoch": 61.54108384286791, + "grad_norm": 0.7564917206764221, + "learning_rate": 1.9243048576214406e-05, + "loss": 0.19748397827148437, + "step": 183700 + }, + { + "epoch": 61.57458748638914, + "grad_norm": 0.6447178721427917, + "learning_rate": 1.922629815745394e-05, + "loss": 0.1989639663696289, + "step": 183800 + }, + { + "epoch": 61.60809112991038, + "grad_norm": 0.5742529034614563, + "learning_rate": 1.9209547738693467e-05, + "loss": 0.19746633529663085, + "step": 183900 + }, + { + "epoch": 61.64159477343161, + "grad_norm": 0.7394194006919861, + "learning_rate": 1.9192797319933e-05, + "loss": 0.19821161270141602, + "step": 184000 + }, + { + "epoch": 61.67509841695284, + "grad_norm": 0.6600359678268433, + "learning_rate": 1.9176046901172532e-05, + "loss": 0.1982976722717285, + "step": 184100 + }, + { + "epoch": 61.70860206047408, + "grad_norm": 0.5898655652999878, + "learning_rate": 1.915929648241206e-05, + "loss": 0.19801706314086914, + "step": 184200 + }, + { + "epoch": 61.74210570399531, + "grad_norm": 0.7864146828651428, + "learning_rate": 1.9142546063651593e-05, + "loss": 0.19834369659423828, + "step": 184300 + }, + { + "epoch": 61.77560934751654, + "grad_norm": 0.783885657787323, + "learning_rate": 1.912579564489112e-05, + "loss": 0.19943191528320312, + "step": 184400 + }, + { + "epoch": 61.80911299103778, + "grad_norm": 0.7565669417381287, + "learning_rate": 1.9109045226130654e-05, + "loss": 0.19939350128173827, + "step": 184500 + }, + { + "epoch": 61.84261663455901, + "grad_norm": 0.663527250289917, + "learning_rate": 1.9092294807370183e-05, + "loss": 0.1986519241333008, + "step": 184600 + }, + { + "epoch": 61.87612027808024, + "grad_norm": 0.7392609715461731, + "learning_rate": 1.9075544388609718e-05, + "loss": 0.19995809555053712, + "step": 184700 + }, + { + "epoch": 61.90962392160147, + "grad_norm": 0.7164571285247803, + "learning_rate": 1.9058793969849247e-05, + "loss": 0.1989099884033203, + "step": 184800 + }, + { + "epoch": 61.94312756512271, + "grad_norm": 0.7456199526786804, + "learning_rate": 1.904204355108878e-05, + "loss": 0.19987648010253906, + "step": 184900 + }, + { + "epoch": 61.97663120864394, + "grad_norm": 0.6419495344161987, + "learning_rate": 1.9025460636515912e-05, + "loss": 0.1988045310974121, + "step": 185000 + }, + { + "epoch": 62.01005109305637, + "grad_norm": 0.6616671085357666, + "learning_rate": 1.9008710217755447e-05, + "loss": 0.19750312805175782, + "step": 185100 + }, + { + "epoch": 62.043554736577605, + "grad_norm": 0.667393147945404, + "learning_rate": 1.8991959798994976e-05, + "loss": 0.19275453567504883, + "step": 185200 + }, + { + "epoch": 62.07705838009883, + "grad_norm": 0.75070720911026, + "learning_rate": 1.897520938023451e-05, + "loss": 0.19383440017700196, + "step": 185300 + }, + { + "epoch": 62.11056202362007, + "grad_norm": 0.6957711577415466, + "learning_rate": 1.8958458961474037e-05, + "loss": 0.19298004150390624, + "step": 185400 + }, + { + "epoch": 62.1440656671413, + "grad_norm": 0.7118070721626282, + "learning_rate": 1.894170854271357e-05, + "loss": 0.19372062683105468, + "step": 185500 + }, + { + "epoch": 62.177569310662534, + "grad_norm": 0.6568797826766968, + "learning_rate": 1.8924958123953098e-05, + "loss": 0.19365182876586914, + "step": 185600 + }, + { + "epoch": 62.21107295418377, + "grad_norm": 0.6880303621292114, + "learning_rate": 1.890820770519263e-05, + "loss": 0.1950899887084961, + "step": 185700 + }, + { + "epoch": 62.244576597705, + "grad_norm": 0.6604440808296204, + "learning_rate": 1.8891457286432163e-05, + "loss": 0.19547990798950196, + "step": 185800 + }, + { + "epoch": 62.278080241226235, + "grad_norm": 0.7336467504501343, + "learning_rate": 1.887470686767169e-05, + "loss": 0.19477594375610352, + "step": 185900 + }, + { + "epoch": 62.31158388474746, + "grad_norm": 0.6443986296653748, + "learning_rate": 1.8857956448911224e-05, + "loss": 0.19533748626708985, + "step": 186000 + }, + { + "epoch": 62.3450875282687, + "grad_norm": 0.617526650428772, + "learning_rate": 1.8841206030150753e-05, + "loss": 0.19593568801879882, + "step": 186100 + }, + { + "epoch": 62.378591171789935, + "grad_norm": 0.6622116565704346, + "learning_rate": 1.8824455611390285e-05, + "loss": 0.19563573837280274, + "step": 186200 + }, + { + "epoch": 62.412094815311164, + "grad_norm": 0.6662573218345642, + "learning_rate": 1.8807705192629817e-05, + "loss": 0.19559219360351562, + "step": 186300 + }, + { + "epoch": 62.4455984588324, + "grad_norm": 0.7779511213302612, + "learning_rate": 1.879095477386935e-05, + "loss": 0.19570056915283204, + "step": 186400 + }, + { + "epoch": 62.47910210235363, + "grad_norm": 0.6488950848579407, + "learning_rate": 1.8774204355108878e-05, + "loss": 0.19671340942382812, + "step": 186500 + }, + { + "epoch": 62.512605745874865, + "grad_norm": 0.6302568316459656, + "learning_rate": 1.875745393634841e-05, + "loss": 0.19646032333374022, + "step": 186600 + }, + { + "epoch": 62.54610938939609, + "grad_norm": 0.6451594829559326, + "learning_rate": 1.874070351758794e-05, + "loss": 0.19605607986450196, + "step": 186700 + }, + { + "epoch": 62.57961303291733, + "grad_norm": 0.7226560711860657, + "learning_rate": 1.872395309882747e-05, + "loss": 0.19651512145996095, + "step": 186800 + }, + { + "epoch": 62.613116676438565, + "grad_norm": 0.7879689335823059, + "learning_rate": 1.8707202680067e-05, + "loss": 0.1969459342956543, + "step": 186900 + }, + { + "epoch": 62.646620319959794, + "grad_norm": 0.859521746635437, + "learning_rate": 1.869061976549414e-05, + "loss": 0.19710365295410157, + "step": 187000 + }, + { + "epoch": 62.68012396348103, + "grad_norm": 0.7182042002677917, + "learning_rate": 1.8673869346733668e-05, + "loss": 0.1975703239440918, + "step": 187100 + }, + { + "epoch": 62.71362760700226, + "grad_norm": 0.7117863893508911, + "learning_rate": 1.86571189279732e-05, + "loss": 0.19800674438476562, + "step": 187200 + }, + { + "epoch": 62.747131250523495, + "grad_norm": 0.8124322295188904, + "learning_rate": 1.864036850921273e-05, + "loss": 0.1976396369934082, + "step": 187300 + }, + { + "epoch": 62.78063489404473, + "grad_norm": 0.8003492951393127, + "learning_rate": 1.8623618090452265e-05, + "loss": 0.19788177490234374, + "step": 187400 + }, + { + "epoch": 62.81413853756596, + "grad_norm": 0.7933449149131775, + "learning_rate": 1.8606867671691794e-05, + "loss": 0.19794113159179688, + "step": 187500 + }, + { + "epoch": 62.847642181087195, + "grad_norm": 0.743191123008728, + "learning_rate": 1.8590117252931326e-05, + "loss": 0.19989189147949218, + "step": 187600 + }, + { + "epoch": 62.881145824608424, + "grad_norm": 0.662010669708252, + "learning_rate": 1.8573366834170855e-05, + "loss": 0.19854124069213866, + "step": 187700 + }, + { + "epoch": 62.91464946812966, + "grad_norm": 0.8278148174285889, + "learning_rate": 1.8556616415410387e-05, + "loss": 0.19968727111816406, + "step": 187800 + }, + { + "epoch": 62.94815311165089, + "grad_norm": 0.804415762424469, + "learning_rate": 1.8539865996649916e-05, + "loss": 0.19895530700683595, + "step": 187900 + }, + { + "epoch": 62.981656755172125, + "grad_norm": 0.7077623605728149, + "learning_rate": 1.8523115577889448e-05, + "loss": 0.19983070373535156, + "step": 188000 + }, + { + "epoch": 63.01507663958456, + "grad_norm": 0.5905118584632874, + "learning_rate": 1.850636515912898e-05, + "loss": 0.1953744888305664, + "step": 188100 + }, + { + "epoch": 63.048580283105785, + "grad_norm": 0.5887221693992615, + "learning_rate": 1.848961474036851e-05, + "loss": 0.19252130508422852, + "step": 188200 + }, + { + "epoch": 63.08208392662702, + "grad_norm": 0.6429964900016785, + "learning_rate": 1.847286432160804e-05, + "loss": 0.1936810302734375, + "step": 188300 + }, + { + "epoch": 63.11558757014826, + "grad_norm": 0.6943151354789734, + "learning_rate": 1.845611390284757e-05, + "loss": 0.1928156280517578, + "step": 188400 + }, + { + "epoch": 63.149091213669486, + "grad_norm": 0.7247923016548157, + "learning_rate": 1.8439363484087102e-05, + "loss": 0.19320756912231446, + "step": 188500 + }, + { + "epoch": 63.18259485719072, + "grad_norm": 0.6283583641052246, + "learning_rate": 1.842261306532663e-05, + "loss": 0.19241600036621093, + "step": 188600 + }, + { + "epoch": 63.21609850071195, + "grad_norm": 0.6737943291664124, + "learning_rate": 1.8405862646566167e-05, + "loss": 0.1937045669555664, + "step": 188700 + }, + { + "epoch": 63.24960214423319, + "grad_norm": 0.6524550914764404, + "learning_rate": 1.8389112227805695e-05, + "loss": 0.1929795265197754, + "step": 188800 + }, + { + "epoch": 63.283105787754415, + "grad_norm": 0.7188290953636169, + "learning_rate": 1.8372361809045228e-05, + "loss": 0.19419048309326173, + "step": 188900 + }, + { + "epoch": 63.31660943127565, + "grad_norm": 0.6564083099365234, + "learning_rate": 1.835577889447236e-05, + "loss": 0.1945943069458008, + "step": 189000 + }, + { + "epoch": 63.35011307479689, + "grad_norm": 0.9156805276870728, + "learning_rate": 1.8339028475711896e-05, + "loss": 0.1947199821472168, + "step": 189100 + }, + { + "epoch": 63.383616718318116, + "grad_norm": 0.6628890633583069, + "learning_rate": 1.8322278056951425e-05, + "loss": 0.19428998947143555, + "step": 189200 + }, + { + "epoch": 63.41712036183935, + "grad_norm": 0.5167578458786011, + "learning_rate": 1.8305527638190957e-05, + "loss": 0.19555074691772462, + "step": 189300 + }, + { + "epoch": 63.45062400536058, + "grad_norm": 0.8341636657714844, + "learning_rate": 1.8288777219430486e-05, + "loss": 0.1958403205871582, + "step": 189400 + }, + { + "epoch": 63.48412764888182, + "grad_norm": 0.7699781656265259, + "learning_rate": 1.8272026800670018e-05, + "loss": 0.1960818099975586, + "step": 189500 + }, + { + "epoch": 63.517631292403046, + "grad_norm": 0.7461984753608704, + "learning_rate": 1.8255276381909547e-05, + "loss": 0.1969795799255371, + "step": 189600 + }, + { + "epoch": 63.55113493592428, + "grad_norm": 0.8196810483932495, + "learning_rate": 1.8238525963149082e-05, + "loss": 0.1966191864013672, + "step": 189700 + }, + { + "epoch": 63.58463857944552, + "grad_norm": 0.7453595399856567, + "learning_rate": 1.822177554438861e-05, + "loss": 0.19745317459106446, + "step": 189800 + }, + { + "epoch": 63.618142222966746, + "grad_norm": 0.638787031173706, + "learning_rate": 1.8205025125628143e-05, + "loss": 0.19748239517211913, + "step": 189900 + }, + { + "epoch": 63.65164586648798, + "grad_norm": 0.8472653031349182, + "learning_rate": 1.8188274706867672e-05, + "loss": 0.19711460113525392, + "step": 190000 + }, + { + "epoch": 63.68514951000921, + "grad_norm": 0.6634200215339661, + "learning_rate": 1.8171524288107204e-05, + "loss": 0.19727699279785157, + "step": 190100 + }, + { + "epoch": 63.71865315353045, + "grad_norm": 0.7622882127761841, + "learning_rate": 1.8154773869346733e-05, + "loss": 0.19806449890136718, + "step": 190200 + }, + { + "epoch": 63.75215679705168, + "grad_norm": 0.6492070555686951, + "learning_rate": 1.8138023450586265e-05, + "loss": 0.19782337188720703, + "step": 190300 + }, + { + "epoch": 63.78566044057291, + "grad_norm": 0.7956305146217346, + "learning_rate": 1.8121273031825798e-05, + "loss": 0.19663129806518553, + "step": 190400 + }, + { + "epoch": 63.81916408409415, + "grad_norm": 0.5923272967338562, + "learning_rate": 1.8104522613065326e-05, + "loss": 0.19800495147705077, + "step": 190500 + }, + { + "epoch": 63.852667727615376, + "grad_norm": 0.6325972676277161, + "learning_rate": 1.808777219430486e-05, + "loss": 0.19802473068237306, + "step": 190600 + }, + { + "epoch": 63.88617137113661, + "grad_norm": 0.7037030458450317, + "learning_rate": 1.8071021775544387e-05, + "loss": 0.19737031936645508, + "step": 190700 + }, + { + "epoch": 63.91967501465784, + "grad_norm": 0.6459951996803284, + "learning_rate": 1.805427135678392e-05, + "loss": 0.19749345779418945, + "step": 190800 + }, + { + "epoch": 63.95317865817908, + "grad_norm": 0.7572121024131775, + "learning_rate": 1.8037520938023452e-05, + "loss": 0.199870548248291, + "step": 190900 + }, + { + "epoch": 63.98668230170031, + "grad_norm": 0.6550577878952026, + "learning_rate": 1.8020938023450588e-05, + "loss": 0.19845205307006836, + "step": 191000 + }, + { + "epoch": 64.02010218611274, + "grad_norm": 0.5528762340545654, + "learning_rate": 1.8004187604690117e-05, + "loss": 0.19315372467041014, + "step": 191100 + }, + { + "epoch": 64.05360582963397, + "grad_norm": 0.7415011525154114, + "learning_rate": 1.798743718592965e-05, + "loss": 0.1906199836730957, + "step": 191200 + }, + { + "epoch": 64.08710947315521, + "grad_norm": 0.5133525729179382, + "learning_rate": 1.797068676716918e-05, + "loss": 0.19169828414916992, + "step": 191300 + }, + { + "epoch": 64.12061311667644, + "grad_norm": 0.7105311155319214, + "learning_rate": 1.7953936348408713e-05, + "loss": 0.19295671463012695, + "step": 191400 + }, + { + "epoch": 64.15411676019767, + "grad_norm": 0.6510593295097351, + "learning_rate": 1.7937185929648242e-05, + "loss": 0.19301687240600585, + "step": 191500 + }, + { + "epoch": 64.18762040371891, + "grad_norm": 0.737304151058197, + "learning_rate": 1.7920435510887774e-05, + "loss": 0.19341800689697267, + "step": 191600 + }, + { + "epoch": 64.22112404724014, + "grad_norm": 0.7213296890258789, + "learning_rate": 1.7903685092127303e-05, + "loss": 0.19339723587036134, + "step": 191700 + }, + { + "epoch": 64.25462769076137, + "grad_norm": 0.6387230157852173, + "learning_rate": 1.7886934673366835e-05, + "loss": 0.19426511764526366, + "step": 191800 + }, + { + "epoch": 64.2881313342826, + "grad_norm": 0.5896677374839783, + "learning_rate": 1.7870184254606364e-05, + "loss": 0.19313657760620118, + "step": 191900 + }, + { + "epoch": 64.32163497780384, + "grad_norm": 0.6253547668457031, + "learning_rate": 1.78534338358459e-05, + "loss": 0.19436355590820312, + "step": 192000 + }, + { + "epoch": 64.35513862132507, + "grad_norm": 0.6272561550140381, + "learning_rate": 1.783668341708543e-05, + "loss": 0.1950385284423828, + "step": 192100 + }, + { + "epoch": 64.3886422648463, + "grad_norm": 0.6820735335350037, + "learning_rate": 1.781993299832496e-05, + "loss": 0.19447114944458008, + "step": 192200 + }, + { + "epoch": 64.42214590836754, + "grad_norm": 0.8564963340759277, + "learning_rate": 1.780318257956449e-05, + "loss": 0.19415367126464844, + "step": 192300 + }, + { + "epoch": 64.45564955188877, + "grad_norm": 0.6703295111656189, + "learning_rate": 1.7786432160804022e-05, + "loss": 0.19531801223754883, + "step": 192400 + }, + { + "epoch": 64.48915319541, + "grad_norm": 0.7819051146507263, + "learning_rate": 1.776968174204355e-05, + "loss": 0.19491588592529296, + "step": 192500 + }, + { + "epoch": 64.52265683893124, + "grad_norm": 0.5364665985107422, + "learning_rate": 1.7752931323283083e-05, + "loss": 0.1953544235229492, + "step": 192600 + }, + { + "epoch": 64.55616048245247, + "grad_norm": 0.5155049562454224, + "learning_rate": 1.7736180904522615e-05, + "loss": 0.19612747192382812, + "step": 192700 + }, + { + "epoch": 64.5896641259737, + "grad_norm": 0.809084951877594, + "learning_rate": 1.7719430485762144e-05, + "loss": 0.1966937255859375, + "step": 192800 + }, + { + "epoch": 64.62316776949493, + "grad_norm": 0.7905207276344299, + "learning_rate": 1.7702680067001676e-05, + "loss": 0.19525121688842773, + "step": 192900 + }, + { + "epoch": 64.65667141301617, + "grad_norm": 0.7242773771286011, + "learning_rate": 1.7686097152428812e-05, + "loss": 0.19637462615966797, + "step": 193000 + }, + { + "epoch": 64.6901750565374, + "grad_norm": 0.696966826915741, + "learning_rate": 1.7669346733668344e-05, + "loss": 0.19756622314453126, + "step": 193100 + }, + { + "epoch": 64.72367870005863, + "grad_norm": 0.6258018612861633, + "learning_rate": 1.7652596314907873e-05, + "loss": 0.19659183502197267, + "step": 193200 + }, + { + "epoch": 64.75718234357987, + "grad_norm": 0.6579128503799438, + "learning_rate": 1.7635845896147405e-05, + "loss": 0.19634262084960938, + "step": 193300 + }, + { + "epoch": 64.7906859871011, + "grad_norm": 0.6634902954101562, + "learning_rate": 1.7619095477386934e-05, + "loss": 0.19719581604003905, + "step": 193400 + }, + { + "epoch": 64.82418963062233, + "grad_norm": 0.7709892988204956, + "learning_rate": 1.7602345058626466e-05, + "loss": 0.19753650665283204, + "step": 193500 + }, + { + "epoch": 64.85769327414356, + "grad_norm": 0.7069748044013977, + "learning_rate": 1.7585594639866e-05, + "loss": 0.19717281341552734, + "step": 193600 + }, + { + "epoch": 64.8911969176648, + "grad_norm": 0.756540060043335, + "learning_rate": 1.756884422110553e-05, + "loss": 0.19797266006469727, + "step": 193700 + }, + { + "epoch": 64.92470056118603, + "grad_norm": 0.8358628749847412, + "learning_rate": 1.755209380234506e-05, + "loss": 0.19739683151245116, + "step": 193800 + }, + { + "epoch": 64.95820420470726, + "grad_norm": 0.7340553998947144, + "learning_rate": 1.753534338358459e-05, + "loss": 0.19825174331665038, + "step": 193900 + }, + { + "epoch": 64.9917078482285, + "grad_norm": 0.7182520627975464, + "learning_rate": 1.751859296482412e-05, + "loss": 0.1992794418334961, + "step": 194000 + }, + { + "epoch": 65.02512773264093, + "grad_norm": 0.7197110652923584, + "learning_rate": 1.7501842546063653e-05, + "loss": 0.19224626541137696, + "step": 194100 + }, + { + "epoch": 65.05863137616215, + "grad_norm": 0.704738199710846, + "learning_rate": 1.7485092127303185e-05, + "loss": 0.1910837173461914, + "step": 194200 + }, + { + "epoch": 65.0921350196834, + "grad_norm": 0.7330573201179504, + "learning_rate": 1.7468341708542714e-05, + "loss": 0.1925986099243164, + "step": 194300 + }, + { + "epoch": 65.12563866320463, + "grad_norm": 0.6279468536376953, + "learning_rate": 1.7451591289782246e-05, + "loss": 0.19241338729858398, + "step": 194400 + }, + { + "epoch": 65.15914230672585, + "grad_norm": 0.7558215856552124, + "learning_rate": 1.7434840871021778e-05, + "loss": 0.19235986709594727, + "step": 194500 + }, + { + "epoch": 65.19264595024708, + "grad_norm": 0.7638766765594482, + "learning_rate": 1.7418090452261307e-05, + "loss": 0.19314172744750976, + "step": 194600 + }, + { + "epoch": 65.22614959376833, + "grad_norm": 0.8271517753601074, + "learning_rate": 1.740134003350084e-05, + "loss": 0.19355636596679687, + "step": 194700 + }, + { + "epoch": 65.25965323728956, + "grad_norm": 0.6696556806564331, + "learning_rate": 1.7384589614740368e-05, + "loss": 0.19400758743286134, + "step": 194800 + }, + { + "epoch": 65.29315688081078, + "grad_norm": 0.6253610849380493, + "learning_rate": 1.73678391959799e-05, + "loss": 0.1946131706237793, + "step": 194900 + }, + { + "epoch": 65.32666052433203, + "grad_norm": 0.7860012054443359, + "learning_rate": 1.7351088777219432e-05, + "loss": 0.19406192779541015, + "step": 195000 + }, + { + "epoch": 65.36016416785326, + "grad_norm": 0.6729128360748291, + "learning_rate": 1.7334505862646565e-05, + "loss": 0.19439397811889647, + "step": 195100 + }, + { + "epoch": 65.39366781137448, + "grad_norm": 0.5755062699317932, + "learning_rate": 1.7317755443886097e-05, + "loss": 0.1932700538635254, + "step": 195200 + }, + { + "epoch": 65.42717145489571, + "grad_norm": 0.726636528968811, + "learning_rate": 1.730100502512563e-05, + "loss": 0.19444786071777342, + "step": 195300 + }, + { + "epoch": 65.46067509841696, + "grad_norm": 0.699719250202179, + "learning_rate": 1.728425460636516e-05, + "loss": 0.19458566665649413, + "step": 195400 + }, + { + "epoch": 65.49417874193819, + "grad_norm": 0.5866639614105225, + "learning_rate": 1.726750418760469e-05, + "loss": 0.19407997131347657, + "step": 195500 + }, + { + "epoch": 65.52768238545941, + "grad_norm": 0.6109085083007812, + "learning_rate": 1.7250753768844223e-05, + "loss": 0.19484548568725585, + "step": 195600 + }, + { + "epoch": 65.56118602898066, + "grad_norm": 0.6569064855575562, + "learning_rate": 1.723400335008375e-05, + "loss": 0.19527423858642579, + "step": 195700 + }, + { + "epoch": 65.59468967250189, + "grad_norm": 0.7762038707733154, + "learning_rate": 1.7217252931323284e-05, + "loss": 0.19620054244995117, + "step": 195800 + }, + { + "epoch": 65.62819331602311, + "grad_norm": 0.7439081072807312, + "learning_rate": 1.7200502512562816e-05, + "loss": 0.19575105667114256, + "step": 195900 + }, + { + "epoch": 65.66169695954434, + "grad_norm": 0.6967695951461792, + "learning_rate": 1.7183752093802348e-05, + "loss": 0.19645559310913085, + "step": 196000 + }, + { + "epoch": 65.69520060306559, + "grad_norm": 0.7349697351455688, + "learning_rate": 1.7167001675041877e-05, + "loss": 0.19642463684082032, + "step": 196100 + }, + { + "epoch": 65.72870424658682, + "grad_norm": 0.6738443970680237, + "learning_rate": 1.715025125628141e-05, + "loss": 0.19574283599853515, + "step": 196200 + }, + { + "epoch": 65.76220789010804, + "grad_norm": 0.6993250250816345, + "learning_rate": 1.7133500837520938e-05, + "loss": 0.19748226165771485, + "step": 196300 + }, + { + "epoch": 65.79571153362929, + "grad_norm": 0.7072445750236511, + "learning_rate": 1.711675041876047e-05, + "loss": 0.19640846252441407, + "step": 196400 + }, + { + "epoch": 65.82921517715052, + "grad_norm": 0.7074381709098816, + "learning_rate": 1.7100000000000002e-05, + "loss": 0.19640003204345702, + "step": 196500 + }, + { + "epoch": 65.86271882067174, + "grad_norm": 0.6643349528312683, + "learning_rate": 1.708324958123953e-05, + "loss": 0.1962619400024414, + "step": 196600 + }, + { + "epoch": 65.89622246419299, + "grad_norm": 0.6393887400627136, + "learning_rate": 1.7066499162479063e-05, + "loss": 0.19662002563476563, + "step": 196700 + }, + { + "epoch": 65.92972610771422, + "grad_norm": 0.6912117600440979, + "learning_rate": 1.7049748743718592e-05, + "loss": 0.19711755752563476, + "step": 196800 + }, + { + "epoch": 65.96322975123545, + "grad_norm": 0.6061841249465942, + "learning_rate": 1.7032998324958124e-05, + "loss": 0.19713987350463869, + "step": 196900 + }, + { + "epoch": 65.99673339475667, + "grad_norm": 0.8009989857673645, + "learning_rate": 1.7016247906197653e-05, + "loss": 0.19686588287353515, + "step": 197000 + }, + { + "epoch": 66.03015327916911, + "grad_norm": 0.5211619734764099, + "learning_rate": 1.6999497487437185e-05, + "loss": 0.19180856704711913, + "step": 197100 + }, + { + "epoch": 66.06365692269034, + "grad_norm": 0.8374447822570801, + "learning_rate": 1.698291457286432e-05, + "loss": 0.1912846565246582, + "step": 197200 + }, + { + "epoch": 66.09716056621157, + "grad_norm": 0.5720506310462952, + "learning_rate": 1.6966164154103854e-05, + "loss": 0.1917406463623047, + "step": 197300 + }, + { + "epoch": 66.13066420973281, + "grad_norm": 0.6164358258247375, + "learning_rate": 1.6949413735343382e-05, + "loss": 0.19152711868286132, + "step": 197400 + }, + { + "epoch": 66.16416785325404, + "grad_norm": 0.6611140370368958, + "learning_rate": 1.6932663316582915e-05, + "loss": 0.1916365623474121, + "step": 197500 + }, + { + "epoch": 66.19767149677527, + "grad_norm": 0.8065768480300903, + "learning_rate": 1.6915912897822447e-05, + "loss": 0.19188701629638671, + "step": 197600 + }, + { + "epoch": 66.23117514029651, + "grad_norm": 0.832007646560669, + "learning_rate": 1.689916247906198e-05, + "loss": 0.19254329681396484, + "step": 197700 + }, + { + "epoch": 66.26467878381774, + "grad_norm": 0.6256246566772461, + "learning_rate": 1.6882412060301508e-05, + "loss": 0.19245880126953124, + "step": 197800 + }, + { + "epoch": 66.29818242733897, + "grad_norm": 0.6906976103782654, + "learning_rate": 1.686566164154104e-05, + "loss": 0.19253412246704102, + "step": 197900 + }, + { + "epoch": 66.3316860708602, + "grad_norm": 0.8333529233932495, + "learning_rate": 1.684891122278057e-05, + "loss": 0.19308279037475587, + "step": 198000 + }, + { + "epoch": 66.36518971438144, + "grad_norm": 0.6668996810913086, + "learning_rate": 1.68321608040201e-05, + "loss": 0.19387590408325195, + "step": 198100 + }, + { + "epoch": 66.39869335790267, + "grad_norm": 0.6531146764755249, + "learning_rate": 1.6815410385259633e-05, + "loss": 0.19346897125244142, + "step": 198200 + }, + { + "epoch": 66.4321970014239, + "grad_norm": 0.5391746163368225, + "learning_rate": 1.6798659966499165e-05, + "loss": 0.19385696411132813, + "step": 198300 + }, + { + "epoch": 66.46570064494514, + "grad_norm": 0.7026568055152893, + "learning_rate": 1.6781909547738694e-05, + "loss": 0.19465816497802735, + "step": 198400 + }, + { + "epoch": 66.49920428846637, + "grad_norm": 0.7220622301101685, + "learning_rate": 1.6765159128978226e-05, + "loss": 0.19388059616088868, + "step": 198500 + }, + { + "epoch": 66.5327079319876, + "grad_norm": 0.6891744136810303, + "learning_rate": 1.6748408710217755e-05, + "loss": 0.1932676887512207, + "step": 198600 + }, + { + "epoch": 66.56621157550883, + "grad_norm": 0.5302000045776367, + "learning_rate": 1.6731658291457288e-05, + "loss": 0.19477445602416993, + "step": 198700 + }, + { + "epoch": 66.59971521903007, + "grad_norm": 0.7118658423423767, + "learning_rate": 1.671490787269682e-05, + "loss": 0.1960425567626953, + "step": 198800 + }, + { + "epoch": 66.6332188625513, + "grad_norm": 0.6674960255622864, + "learning_rate": 1.669815745393635e-05, + "loss": 0.19594356536865234, + "step": 198900 + }, + { + "epoch": 66.66672250607253, + "grad_norm": 0.7001693844795227, + "learning_rate": 1.668140703517588e-05, + "loss": 0.1959066581726074, + "step": 199000 + }, + { + "epoch": 66.70022614959377, + "grad_norm": 0.7504046559333801, + "learning_rate": 1.666465661641541e-05, + "loss": 0.19596036911010742, + "step": 199100 + }, + { + "epoch": 66.733729793115, + "grad_norm": 0.540820837020874, + "learning_rate": 1.6647906197654942e-05, + "loss": 0.19496715545654297, + "step": 199200 + }, + { + "epoch": 66.76723343663623, + "grad_norm": 0.659315288066864, + "learning_rate": 1.6631323283082078e-05, + "loss": 0.19592731475830077, + "step": 199300 + }, + { + "epoch": 66.80073708015746, + "grad_norm": 0.6407586336135864, + "learning_rate": 1.661457286432161e-05, + "loss": 0.1966596221923828, + "step": 199400 + }, + { + "epoch": 66.8342407236787, + "grad_norm": 0.8105034828186035, + "learning_rate": 1.659782244556114e-05, + "loss": 0.19701980590820312, + "step": 199500 + }, + { + "epoch": 66.86774436719993, + "grad_norm": 0.693172812461853, + "learning_rate": 1.658107202680067e-05, + "loss": 0.19503232955932617, + "step": 199600 + }, + { + "epoch": 66.90124801072116, + "grad_norm": 0.7639322876930237, + "learning_rate": 1.65643216080402e-05, + "loss": 0.1977808380126953, + "step": 199700 + }, + { + "epoch": 66.9347516542424, + "grad_norm": 0.7706619501113892, + "learning_rate": 1.6547571189279735e-05, + "loss": 0.19528146743774413, + "step": 199800 + }, + { + "epoch": 66.96825529776363, + "grad_norm": 0.8017984628677368, + "learning_rate": 1.6530820770519264e-05, + "loss": 0.19607614517211913, + "step": 199900 + }, + { + "epoch": 67.00167518217606, + "grad_norm": 0.6076714992523193, + "learning_rate": 1.6514070351758796e-05, + "loss": 0.196212100982666, + "step": 200000 + }, + { + "epoch": 67.0351788256973, + "grad_norm": 0.7155037522315979, + "learning_rate": 1.6497319932998325e-05, + "loss": 0.19083133697509766, + "step": 200100 + }, + { + "epoch": 67.06868246921853, + "grad_norm": 0.6289516687393188, + "learning_rate": 1.6480569514237857e-05, + "loss": 0.19047863006591798, + "step": 200200 + }, + { + "epoch": 67.10218611273976, + "grad_norm": 0.6958616375923157, + "learning_rate": 1.6463819095477386e-05, + "loss": 0.1900768280029297, + "step": 200300 + }, + { + "epoch": 67.13568975626099, + "grad_norm": 0.5616253018379211, + "learning_rate": 1.644706867671692e-05, + "loss": 0.19233095169067382, + "step": 200400 + }, + { + "epoch": 67.16919339978223, + "grad_norm": 0.6665573120117188, + "learning_rate": 1.643031825795645e-05, + "loss": 0.1919367218017578, + "step": 200500 + }, + { + "epoch": 67.20269704330346, + "grad_norm": 0.6951255798339844, + "learning_rate": 1.6413567839195983e-05, + "loss": 0.19197673797607423, + "step": 200600 + }, + { + "epoch": 67.23620068682469, + "grad_norm": 0.6771343946456909, + "learning_rate": 1.639681742043551e-05, + "loss": 0.1921021270751953, + "step": 200700 + }, + { + "epoch": 67.26970433034593, + "grad_norm": 0.6687894463539124, + "learning_rate": 1.6380067001675044e-05, + "loss": 0.19192752838134766, + "step": 200800 + }, + { + "epoch": 67.30320797386716, + "grad_norm": 0.7397539019584656, + "learning_rate": 1.6363316582914573e-05, + "loss": 0.1915091323852539, + "step": 200900 + }, + { + "epoch": 67.33671161738839, + "grad_norm": 0.6094964742660522, + "learning_rate": 1.6346566164154105e-05, + "loss": 0.1940443992614746, + "step": 201000 + }, + { + "epoch": 67.37021526090962, + "grad_norm": 0.5608842372894287, + "learning_rate": 1.6329815745393637e-05, + "loss": 0.19360294342041015, + "step": 201100 + }, + { + "epoch": 67.40371890443086, + "grad_norm": 0.6738369464874268, + "learning_rate": 1.6313065326633166e-05, + "loss": 0.19352413177490235, + "step": 201200 + }, + { + "epoch": 67.43722254795209, + "grad_norm": 0.7028993964195251, + "learning_rate": 1.6296482412060302e-05, + "loss": 0.1933650016784668, + "step": 201300 + }, + { + "epoch": 67.47072619147332, + "grad_norm": 0.5576817989349365, + "learning_rate": 1.627973199329983e-05, + "loss": 0.19390420913696288, + "step": 201400 + }, + { + "epoch": 67.50422983499456, + "grad_norm": 0.6411824226379395, + "learning_rate": 1.6262981574539366e-05, + "loss": 0.1935529899597168, + "step": 201500 + }, + { + "epoch": 67.53773347851579, + "grad_norm": 0.6373094916343689, + "learning_rate": 1.6246231155778895e-05, + "loss": 0.19391347885131835, + "step": 201600 + }, + { + "epoch": 67.57123712203702, + "grad_norm": 0.6556655168533325, + "learning_rate": 1.6229480737018427e-05, + "loss": 0.19495166778564454, + "step": 201700 + }, + { + "epoch": 67.60474076555825, + "grad_norm": 0.6322004199028015, + "learning_rate": 1.6212730318257956e-05, + "loss": 0.1953642463684082, + "step": 201800 + }, + { + "epoch": 67.63824440907949, + "grad_norm": 0.6095288395881653, + "learning_rate": 1.619597989949749e-05, + "loss": 0.19500333786010743, + "step": 201900 + }, + { + "epoch": 67.67174805260072, + "grad_norm": 0.5999951362609863, + "learning_rate": 1.6179229480737017e-05, + "loss": 0.19503114700317384, + "step": 202000 + }, + { + "epoch": 67.70525169612195, + "grad_norm": 0.7297765016555786, + "learning_rate": 1.6162479061976553e-05, + "loss": 0.19440362930297853, + "step": 202100 + }, + { + "epoch": 67.73875533964319, + "grad_norm": 0.7177837491035461, + "learning_rate": 1.614572864321608e-05, + "loss": 0.19499702453613282, + "step": 202200 + }, + { + "epoch": 67.77225898316442, + "grad_norm": 0.8244702219963074, + "learning_rate": 1.6128978224455614e-05, + "loss": 0.19555707931518554, + "step": 202300 + }, + { + "epoch": 67.80576262668565, + "grad_norm": 0.6373338103294373, + "learning_rate": 1.6112227805695143e-05, + "loss": 0.195418758392334, + "step": 202400 + }, + { + "epoch": 67.83926627020689, + "grad_norm": 0.6217545866966248, + "learning_rate": 1.6095477386934675e-05, + "loss": 0.19555667877197266, + "step": 202500 + }, + { + "epoch": 67.87276991372812, + "grad_norm": 0.6853159070014954, + "learning_rate": 1.6078726968174204e-05, + "loss": 0.19608963012695313, + "step": 202600 + }, + { + "epoch": 67.90627355724935, + "grad_norm": 0.6794860363006592, + "learning_rate": 1.6061976549413736e-05, + "loss": 0.19546913146972655, + "step": 202700 + }, + { + "epoch": 67.93977720077058, + "grad_norm": 0.6505772471427917, + "learning_rate": 1.6045226130653268e-05, + "loss": 0.19603317260742187, + "step": 202800 + }, + { + "epoch": 67.97328084429182, + "grad_norm": 0.6339512467384338, + "learning_rate": 1.60284757118928e-05, + "loss": 0.19620756149291993, + "step": 202900 + }, + { + "epoch": 68.00670072870425, + "grad_norm": 0.602581799030304, + "learning_rate": 1.601172529313233e-05, + "loss": 0.19463903427124024, + "step": 203000 + }, + { + "epoch": 68.04020437222547, + "grad_norm": 0.5730949640274048, + "learning_rate": 1.599497487437186e-05, + "loss": 0.19001585006713867, + "step": 203100 + }, + { + "epoch": 68.07370801574672, + "grad_norm": 0.5395110845565796, + "learning_rate": 1.597822445561139e-05, + "loss": 0.19011409759521483, + "step": 203200 + }, + { + "epoch": 68.10721165926795, + "grad_norm": 0.5770024657249451, + "learning_rate": 1.5961474036850922e-05, + "loss": 0.1901267433166504, + "step": 203300 + }, + { + "epoch": 68.14071530278918, + "grad_norm": 0.7738876342773438, + "learning_rate": 1.5944891122278058e-05, + "loss": 0.1905143928527832, + "step": 203400 + }, + { + "epoch": 68.17421894631042, + "grad_norm": 0.7363227605819702, + "learning_rate": 1.5928140703517587e-05, + "loss": 0.19049446105957032, + "step": 203500 + }, + { + "epoch": 68.20772258983165, + "grad_norm": 0.7116740345954895, + "learning_rate": 1.591139028475712e-05, + "loss": 0.19107500076293946, + "step": 203600 + }, + { + "epoch": 68.24122623335288, + "grad_norm": 0.715164840221405, + "learning_rate": 1.5894639865996648e-05, + "loss": 0.19192060470581054, + "step": 203700 + }, + { + "epoch": 68.2747298768741, + "grad_norm": 0.7426648736000061, + "learning_rate": 1.5877889447236184e-05, + "loss": 0.19199298858642577, + "step": 203800 + }, + { + "epoch": 68.30823352039535, + "grad_norm": 0.6598964929580688, + "learning_rate": 1.5861139028475713e-05, + "loss": 0.19214748382568358, + "step": 203900 + }, + { + "epoch": 68.34173716391658, + "grad_norm": 0.7202093601226807, + "learning_rate": 1.5844388609715245e-05, + "loss": 0.191875, + "step": 204000 + }, + { + "epoch": 68.3752408074378, + "grad_norm": 0.7151044607162476, + "learning_rate": 1.5827638190954774e-05, + "loss": 0.1921199607849121, + "step": 204100 + }, + { + "epoch": 68.40874445095905, + "grad_norm": 0.6264718174934387, + "learning_rate": 1.5810887772194306e-05, + "loss": 0.1933818244934082, + "step": 204200 + }, + { + "epoch": 68.44224809448028, + "grad_norm": 0.6225735545158386, + "learning_rate": 1.5794137353433835e-05, + "loss": 0.19361408233642577, + "step": 204300 + }, + { + "epoch": 68.4757517380015, + "grad_norm": 0.7502007484436035, + "learning_rate": 1.577738693467337e-05, + "loss": 0.1928209114074707, + "step": 204400 + }, + { + "epoch": 68.50925538152273, + "grad_norm": 0.6535805463790894, + "learning_rate": 1.57606365159129e-05, + "loss": 0.1925800323486328, + "step": 204500 + }, + { + "epoch": 68.54275902504398, + "grad_norm": 0.6184046864509583, + "learning_rate": 1.574388609715243e-05, + "loss": 0.1938844680786133, + "step": 204600 + }, + { + "epoch": 68.5762626685652, + "grad_norm": 0.642119824886322, + "learning_rate": 1.572713567839196e-05, + "loss": 0.1933103942871094, + "step": 204700 + }, + { + "epoch": 68.60976631208644, + "grad_norm": 0.6790170669555664, + "learning_rate": 1.5710385259631492e-05, + "loss": 0.1948932647705078, + "step": 204800 + }, + { + "epoch": 68.64326995560768, + "grad_norm": 0.647903323173523, + "learning_rate": 1.569363484087102e-05, + "loss": 0.1952429962158203, + "step": 204900 + }, + { + "epoch": 68.67677359912891, + "grad_norm": 0.77556312084198, + "learning_rate": 1.5676884422110553e-05, + "loss": 0.19408275604248046, + "step": 205000 + }, + { + "epoch": 68.71027724265014, + "grad_norm": 0.6710578203201294, + "learning_rate": 1.5660134003350085e-05, + "loss": 0.1949919319152832, + "step": 205100 + }, + { + "epoch": 68.74378088617136, + "grad_norm": 0.6515961289405823, + "learning_rate": 1.5643383584589614e-05, + "loss": 0.19462379455566406, + "step": 205200 + }, + { + "epoch": 68.77728452969261, + "grad_norm": 0.7134996652603149, + "learning_rate": 1.5626633165829147e-05, + "loss": 0.19480768203735352, + "step": 205300 + }, + { + "epoch": 68.81078817321384, + "grad_norm": 0.5678537487983704, + "learning_rate": 1.5610050251256282e-05, + "loss": 0.1956866455078125, + "step": 205400 + }, + { + "epoch": 68.84429181673507, + "grad_norm": 0.627916157245636, + "learning_rate": 1.5593299832495815e-05, + "loss": 0.19494726181030272, + "step": 205500 + }, + { + "epoch": 68.87779546025631, + "grad_norm": 0.5940144062042236, + "learning_rate": 1.5576549413735343e-05, + "loss": 0.19554563522338866, + "step": 205600 + }, + { + "epoch": 68.91129910377754, + "grad_norm": 0.7416447401046753, + "learning_rate": 1.5559798994974876e-05, + "loss": 0.19647571563720703, + "step": 205700 + }, + { + "epoch": 68.94480274729877, + "grad_norm": 0.6104159355163574, + "learning_rate": 1.5543048576214404e-05, + "loss": 0.19543346405029297, + "step": 205800 + }, + { + "epoch": 68.97830639082, + "grad_norm": 0.7064023613929749, + "learning_rate": 1.5526298157453937e-05, + "loss": 0.19565975189208984, + "step": 205900 + }, + { + "epoch": 69.01172627523243, + "grad_norm": 0.6279042363166809, + "learning_rate": 1.5509547738693466e-05, + "loss": 0.1939265251159668, + "step": 206000 + }, + { + "epoch": 69.04522991875366, + "grad_norm": 0.6966283917427063, + "learning_rate": 1.5492797319933e-05, + "loss": 0.18873752593994142, + "step": 206100 + }, + { + "epoch": 69.07873356227489, + "grad_norm": 0.598598062992096, + "learning_rate": 1.547604690117253e-05, + "loss": 0.19044071197509765, + "step": 206200 + }, + { + "epoch": 69.11223720579613, + "grad_norm": 0.6215249300003052, + "learning_rate": 1.5459296482412062e-05, + "loss": 0.18954809188842772, + "step": 206300 + }, + { + "epoch": 69.14574084931736, + "grad_norm": 0.6590831279754639, + "learning_rate": 1.544254606365159e-05, + "loss": 0.1906461524963379, + "step": 206400 + }, + { + "epoch": 69.17924449283859, + "grad_norm": 0.5938999056816101, + "learning_rate": 1.5425795644891123e-05, + "loss": 0.1904694175720215, + "step": 206500 + }, + { + "epoch": 69.21274813635983, + "grad_norm": 0.5933434367179871, + "learning_rate": 1.5409045226130652e-05, + "loss": 0.19135387420654296, + "step": 206600 + }, + { + "epoch": 69.24625177988106, + "grad_norm": 0.7321082353591919, + "learning_rate": 1.5392294807370188e-05, + "loss": 0.19140138626098632, + "step": 206700 + }, + { + "epoch": 69.27975542340229, + "grad_norm": 0.7632362842559814, + "learning_rate": 1.5375544388609716e-05, + "loss": 0.19026206970214843, + "step": 206800 + }, + { + "epoch": 69.31325906692352, + "grad_norm": 0.5204057097434998, + "learning_rate": 1.535879396984925e-05, + "loss": 0.19211410522460937, + "step": 206900 + }, + { + "epoch": 69.34676271044476, + "grad_norm": 0.5607998967170715, + "learning_rate": 1.5342043551088777e-05, + "loss": 0.19179800033569336, + "step": 207000 + }, + { + "epoch": 69.380266353966, + "grad_norm": 0.6838735342025757, + "learning_rate": 1.532529313232831e-05, + "loss": 0.1921243476867676, + "step": 207100 + }, + { + "epoch": 69.41376999748722, + "grad_norm": 0.7290564179420471, + "learning_rate": 1.530854271356784e-05, + "loss": 0.1927803611755371, + "step": 207200 + }, + { + "epoch": 69.44727364100847, + "grad_norm": 0.678501307964325, + "learning_rate": 1.529179229480737e-05, + "loss": 0.19337810516357423, + "step": 207300 + }, + { + "epoch": 69.4807772845297, + "grad_norm": 0.6822425723075867, + "learning_rate": 1.5275041876046903e-05, + "loss": 0.1925121307373047, + "step": 207400 + }, + { + "epoch": 69.51428092805092, + "grad_norm": 0.5909448266029358, + "learning_rate": 1.5258458961474037e-05, + "loss": 0.1932221221923828, + "step": 207500 + }, + { + "epoch": 69.54778457157215, + "grad_norm": 0.5861632823944092, + "learning_rate": 1.5241708542713568e-05, + "loss": 0.19226568222045898, + "step": 207600 + }, + { + "epoch": 69.5812882150934, + "grad_norm": 0.6072438359260559, + "learning_rate": 1.5224958123953102e-05, + "loss": 0.19327423095703125, + "step": 207700 + }, + { + "epoch": 69.61479185861462, + "grad_norm": 0.7752787470817566, + "learning_rate": 1.5208207705192632e-05, + "loss": 0.19411521911621094, + "step": 207800 + }, + { + "epoch": 69.64829550213585, + "grad_norm": 0.604340672492981, + "learning_rate": 1.5191457286432163e-05, + "loss": 0.19500984191894533, + "step": 207900 + }, + { + "epoch": 69.6817991456571, + "grad_norm": 0.5669907331466675, + "learning_rate": 1.5174706867671693e-05, + "loss": 0.19465980529785157, + "step": 208000 + }, + { + "epoch": 69.71530278917832, + "grad_norm": 0.624899685382843, + "learning_rate": 1.5157956448911224e-05, + "loss": 0.1940926742553711, + "step": 208100 + }, + { + "epoch": 69.74880643269955, + "grad_norm": 0.7137749195098877, + "learning_rate": 1.5141206030150754e-05, + "loss": 0.19328271865844726, + "step": 208200 + }, + { + "epoch": 69.7823100762208, + "grad_norm": 0.7387290000915527, + "learning_rate": 1.5124455611390285e-05, + "loss": 0.1953897285461426, + "step": 208300 + }, + { + "epoch": 69.81581371974202, + "grad_norm": 0.5705156326293945, + "learning_rate": 1.5107705192629817e-05, + "loss": 0.194132022857666, + "step": 208400 + }, + { + "epoch": 69.84931736326325, + "grad_norm": 0.6383335590362549, + "learning_rate": 1.5090954773869347e-05, + "loss": 0.1951007652282715, + "step": 208500 + }, + { + "epoch": 69.88282100678448, + "grad_norm": 0.6704970002174377, + "learning_rate": 1.5074204355108878e-05, + "loss": 0.19534845352172853, + "step": 208600 + }, + { + "epoch": 69.91632465030573, + "grad_norm": 0.5984908938407898, + "learning_rate": 1.5057453936348408e-05, + "loss": 0.19434907913208008, + "step": 208700 + }, + { + "epoch": 69.94982829382695, + "grad_norm": 0.6464018821716309, + "learning_rate": 1.5040703517587939e-05, + "loss": 0.19456119537353517, + "step": 208800 + }, + { + "epoch": 69.98333193734818, + "grad_norm": 0.7534891366958618, + "learning_rate": 1.502395309882747e-05, + "loss": 0.1956119155883789, + "step": 208900 + }, + { + "epoch": 70.01675182176062, + "grad_norm": 0.7756277918815613, + "learning_rate": 1.5007202680067003e-05, + "loss": 0.19219749450683593, + "step": 209000 + }, + { + "epoch": 70.05025546528185, + "grad_norm": 0.6661693453788757, + "learning_rate": 1.4990452261306534e-05, + "loss": 0.1881481170654297, + "step": 209100 + }, + { + "epoch": 70.08375910880308, + "grad_norm": 0.6152818202972412, + "learning_rate": 1.4973701842546064e-05, + "loss": 0.18986621856689453, + "step": 209200 + }, + { + "epoch": 70.11726275232432, + "grad_norm": 0.5430614352226257, + "learning_rate": 1.4956951423785595e-05, + "loss": 0.1886882209777832, + "step": 209300 + }, + { + "epoch": 70.15076639584555, + "grad_norm": 0.6443721652030945, + "learning_rate": 1.4940201005025125e-05, + "loss": 0.19037208557128907, + "step": 209400 + }, + { + "epoch": 70.18427003936678, + "grad_norm": 0.6034039855003357, + "learning_rate": 1.4923450586264656e-05, + "loss": 0.18961322784423829, + "step": 209500 + }, + { + "epoch": 70.21777368288801, + "grad_norm": 0.6922727227210999, + "learning_rate": 1.4906867671691794e-05, + "loss": 0.19092901229858397, + "step": 209600 + }, + { + "epoch": 70.25127732640925, + "grad_norm": 0.7775962352752686, + "learning_rate": 1.4890117252931324e-05, + "loss": 0.1911904525756836, + "step": 209700 + }, + { + "epoch": 70.28478096993048, + "grad_norm": 0.6121329665184021, + "learning_rate": 1.4873366834170855e-05, + "loss": 0.19077373504638673, + "step": 209800 + }, + { + "epoch": 70.31828461345171, + "grad_norm": 0.6311072707176208, + "learning_rate": 1.4856616415410385e-05, + "loss": 0.19276874542236327, + "step": 209900 + }, + { + "epoch": 70.35178825697295, + "grad_norm": 0.6190215349197388, + "learning_rate": 1.4839865996649919e-05, + "loss": 0.1920265007019043, + "step": 210000 + }, + { + "epoch": 70.38529190049418, + "grad_norm": 0.7317872047424316, + "learning_rate": 1.482311557788945e-05, + "loss": 0.1915855026245117, + "step": 210100 + }, + { + "epoch": 70.41879554401541, + "grad_norm": 0.5770769715309143, + "learning_rate": 1.480636515912898e-05, + "loss": 0.19160455703735352, + "step": 210200 + }, + { + "epoch": 70.45229918753664, + "grad_norm": 0.4898484945297241, + "learning_rate": 1.478961474036851e-05, + "loss": 0.19282726287841798, + "step": 210300 + }, + { + "epoch": 70.48580283105788, + "grad_norm": 0.7757408618927002, + "learning_rate": 1.4772864321608041e-05, + "loss": 0.19382453918457032, + "step": 210400 + }, + { + "epoch": 70.51930647457911, + "grad_norm": 0.7815673351287842, + "learning_rate": 1.4756113902847572e-05, + "loss": 0.19315202713012694, + "step": 210500 + }, + { + "epoch": 70.55281011810034, + "grad_norm": 0.6631892323493958, + "learning_rate": 1.4739363484087104e-05, + "loss": 0.1935376739501953, + "step": 210600 + }, + { + "epoch": 70.58631376162158, + "grad_norm": 0.6759666204452515, + "learning_rate": 1.4722613065326634e-05, + "loss": 0.19363182067871093, + "step": 210700 + }, + { + "epoch": 70.61981740514281, + "grad_norm": 0.7577219605445862, + "learning_rate": 1.4705862646566165e-05, + "loss": 0.19298139572143555, + "step": 210800 + }, + { + "epoch": 70.65332104866404, + "grad_norm": 0.5035127997398376, + "learning_rate": 1.4689112227805695e-05, + "loss": 0.19403892517089844, + "step": 210900 + }, + { + "epoch": 70.68682469218527, + "grad_norm": 0.6267746090888977, + "learning_rate": 1.4672361809045226e-05, + "loss": 0.19389795303344726, + "step": 211000 + }, + { + "epoch": 70.72032833570651, + "grad_norm": 0.7773340344429016, + "learning_rate": 1.4655611390284756e-05, + "loss": 0.19378913879394533, + "step": 211100 + }, + { + "epoch": 70.75383197922774, + "grad_norm": 0.6656227111816406, + "learning_rate": 1.4638860971524287e-05, + "loss": 0.19349145889282227, + "step": 211200 + }, + { + "epoch": 70.78733562274897, + "grad_norm": 0.5681379437446594, + "learning_rate": 1.462211055276382e-05, + "loss": 0.19408063888549804, + "step": 211300 + }, + { + "epoch": 70.82083926627021, + "grad_norm": 0.7380396127700806, + "learning_rate": 1.4605360134003351e-05, + "loss": 0.19320615768432617, + "step": 211400 + }, + { + "epoch": 70.85434290979144, + "grad_norm": 0.5551620721817017, + "learning_rate": 1.4588609715242882e-05, + "loss": 0.19429174423217774, + "step": 211500 + }, + { + "epoch": 70.88784655331267, + "grad_norm": 0.6880864500999451, + "learning_rate": 1.4572026800670016e-05, + "loss": 0.19458511352539062, + "step": 211600 + }, + { + "epoch": 70.9213501968339, + "grad_norm": 0.6348493099212646, + "learning_rate": 1.455527638190955e-05, + "loss": 0.19401802062988283, + "step": 211700 + }, + { + "epoch": 70.95485384035514, + "grad_norm": 0.8191368579864502, + "learning_rate": 1.453852596314908e-05, + "loss": 0.19446285247802733, + "step": 211800 + }, + { + "epoch": 70.98835748387637, + "grad_norm": 0.7762120366096497, + "learning_rate": 1.4521775544388611e-05, + "loss": 0.19511171340942382, + "step": 211900 + }, + { + "epoch": 71.0217773682888, + "grad_norm": 0.5584473609924316, + "learning_rate": 1.4505025125628141e-05, + "loss": 0.19062902450561522, + "step": 212000 + }, + { + "epoch": 71.05528101181004, + "grad_norm": 0.5374318957328796, + "learning_rate": 1.4488274706867672e-05, + "loss": 0.18799392700195314, + "step": 212100 + }, + { + "epoch": 71.08878465533127, + "grad_norm": 0.5808698534965515, + "learning_rate": 1.4471524288107202e-05, + "loss": 0.18921010971069335, + "step": 212200 + }, + { + "epoch": 71.1222882988525, + "grad_norm": 0.5353220701217651, + "learning_rate": 1.4454773869346735e-05, + "loss": 0.18873760223388672, + "step": 212300 + }, + { + "epoch": 71.15579194237374, + "grad_norm": 0.8585773706436157, + "learning_rate": 1.4438023450586265e-05, + "loss": 0.1902440071105957, + "step": 212400 + }, + { + "epoch": 71.18929558589497, + "grad_norm": 0.5950562357902527, + "learning_rate": 1.4421273031825797e-05, + "loss": 0.19001707077026367, + "step": 212500 + }, + { + "epoch": 71.2227992294162, + "grad_norm": 0.61844801902771, + "learning_rate": 1.4404522613065328e-05, + "loss": 0.1902621269226074, + "step": 212600 + }, + { + "epoch": 71.25630287293743, + "grad_norm": 0.6289156079292297, + "learning_rate": 1.4387772194304858e-05, + "loss": 0.19079328536987306, + "step": 212700 + }, + { + "epoch": 71.28980651645867, + "grad_norm": 0.5846434235572815, + "learning_rate": 1.4371021775544389e-05, + "loss": 0.19066036224365235, + "step": 212800 + }, + { + "epoch": 71.3233101599799, + "grad_norm": 0.5743843913078308, + "learning_rate": 1.4354271356783921e-05, + "loss": 0.19171554565429688, + "step": 212900 + }, + { + "epoch": 71.35681380350113, + "grad_norm": 0.7006944417953491, + "learning_rate": 1.4337520938023452e-05, + "loss": 0.19167909622192383, + "step": 213000 + }, + { + "epoch": 71.39031744702237, + "grad_norm": 0.8413968086242676, + "learning_rate": 1.4320770519262982e-05, + "loss": 0.19105392456054687, + "step": 213100 + }, + { + "epoch": 71.4238210905436, + "grad_norm": 0.5824098587036133, + "learning_rate": 1.4304020100502513e-05, + "loss": 0.1920245933532715, + "step": 213200 + }, + { + "epoch": 71.45732473406483, + "grad_norm": 0.6288939714431763, + "learning_rate": 1.4287269681742043e-05, + "loss": 0.19186897277832032, + "step": 213300 + }, + { + "epoch": 71.49082837758607, + "grad_norm": 0.691856324672699, + "learning_rate": 1.4270519262981574e-05, + "loss": 0.19312944412231445, + "step": 213400 + }, + { + "epoch": 71.5243320211073, + "grad_norm": 0.7578767538070679, + "learning_rate": 1.4253768844221108e-05, + "loss": 0.19235544204711913, + "step": 213500 + }, + { + "epoch": 71.55783566462853, + "grad_norm": 0.6085563898086548, + "learning_rate": 1.4237185929648242e-05, + "loss": 0.1931236457824707, + "step": 213600 + }, + { + "epoch": 71.59133930814976, + "grad_norm": 0.6119518876075745, + "learning_rate": 1.4220435510887772e-05, + "loss": 0.1938382339477539, + "step": 213700 + }, + { + "epoch": 71.624842951671, + "grad_norm": 0.6922339797019958, + "learning_rate": 1.4203685092127303e-05, + "loss": 0.19215814590454103, + "step": 213800 + }, + { + "epoch": 71.65834659519223, + "grad_norm": 0.7278738021850586, + "learning_rate": 1.4186934673366837e-05, + "loss": 0.19262287139892578, + "step": 213900 + }, + { + "epoch": 71.69185023871346, + "grad_norm": 0.6596753597259521, + "learning_rate": 1.4170184254606367e-05, + "loss": 0.19238534927368164, + "step": 214000 + }, + { + "epoch": 71.7253538822347, + "grad_norm": 0.6864719986915588, + "learning_rate": 1.4153433835845898e-05, + "loss": 0.1925214958190918, + "step": 214100 + }, + { + "epoch": 71.75885752575593, + "grad_norm": 0.6517135500907898, + "learning_rate": 1.4136683417085428e-05, + "loss": 0.1944540786743164, + "step": 214200 + }, + { + "epoch": 71.79236116927716, + "grad_norm": 0.7503974437713623, + "learning_rate": 1.4119932998324959e-05, + "loss": 0.1933121109008789, + "step": 214300 + }, + { + "epoch": 71.82586481279839, + "grad_norm": 0.60938960313797, + "learning_rate": 1.410318257956449e-05, + "loss": 0.19333812713623047, + "step": 214400 + }, + { + "epoch": 71.85936845631963, + "grad_norm": 0.659631073474884, + "learning_rate": 1.408643216080402e-05, + "loss": 0.19322057723999023, + "step": 214500 + }, + { + "epoch": 71.89287209984086, + "grad_norm": 0.6466450095176697, + "learning_rate": 1.4069681742043552e-05, + "loss": 0.19311923980712892, + "step": 214600 + }, + { + "epoch": 71.92637574336209, + "grad_norm": 0.6093922853469849, + "learning_rate": 1.4052931323283083e-05, + "loss": 0.19498254776000976, + "step": 214700 + }, + { + "epoch": 71.95987938688333, + "grad_norm": 0.7445212602615356, + "learning_rate": 1.4036180904522613e-05, + "loss": 0.19384960174560548, + "step": 214800 + }, + { + "epoch": 71.99338303040456, + "grad_norm": 0.5651571750640869, + "learning_rate": 1.4019430485762144e-05, + "loss": 0.193801212310791, + "step": 214900 + }, + { + "epoch": 72.02680291481698, + "grad_norm": 0.6022223234176636, + "learning_rate": 1.4002680067001674e-05, + "loss": 0.18981178283691405, + "step": 215000 + }, + { + "epoch": 72.06030655833823, + "grad_norm": 0.6050201058387756, + "learning_rate": 1.3985929648241206e-05, + "loss": 0.18904420852661133, + "step": 215100 + }, + { + "epoch": 72.09381020185945, + "grad_norm": 0.6156114935874939, + "learning_rate": 1.3969179229480739e-05, + "loss": 0.18817174911499024, + "step": 215200 + }, + { + "epoch": 72.12731384538068, + "grad_norm": 0.5546871423721313, + "learning_rate": 1.3952428810720269e-05, + "loss": 0.1889004898071289, + "step": 215300 + }, + { + "epoch": 72.16081748890191, + "grad_norm": 0.6833284497261047, + "learning_rate": 1.39356783919598e-05, + "loss": 0.18958877563476562, + "step": 215400 + }, + { + "epoch": 72.19432113242316, + "grad_norm": 0.6149327754974365, + "learning_rate": 1.391892797319933e-05, + "loss": 0.1900411605834961, + "step": 215500 + }, + { + "epoch": 72.22782477594438, + "grad_norm": 0.7087824940681458, + "learning_rate": 1.3902345058626468e-05, + "loss": 0.1900062370300293, + "step": 215600 + }, + { + "epoch": 72.26132841946561, + "grad_norm": 0.7365740537643433, + "learning_rate": 1.3885594639865998e-05, + "loss": 0.18973686218261718, + "step": 215700 + }, + { + "epoch": 72.29483206298686, + "grad_norm": 0.6139353513717651, + "learning_rate": 1.3868844221105529e-05, + "loss": 0.19053438186645508, + "step": 215800 + }, + { + "epoch": 72.32833570650808, + "grad_norm": 0.5968282222747803, + "learning_rate": 1.385209380234506e-05, + "loss": 0.19114097595214843, + "step": 215900 + }, + { + "epoch": 72.36183935002931, + "grad_norm": 0.6676009893417358, + "learning_rate": 1.383534338358459e-05, + "loss": 0.1919625473022461, + "step": 216000 + }, + { + "epoch": 72.39534299355054, + "grad_norm": 0.7123656272888184, + "learning_rate": 1.381859296482412e-05, + "loss": 0.19244312286376952, + "step": 216100 + }, + { + "epoch": 72.42884663707179, + "grad_norm": 0.6703692078590393, + "learning_rate": 1.3801842546063654e-05, + "loss": 0.1909078025817871, + "step": 216200 + }, + { + "epoch": 72.46235028059301, + "grad_norm": 0.7729817032814026, + "learning_rate": 1.3785092127303185e-05, + "loss": 0.192000789642334, + "step": 216300 + }, + { + "epoch": 72.49585392411424, + "grad_norm": 0.7377496361732483, + "learning_rate": 1.3768341708542715e-05, + "loss": 0.19194664001464845, + "step": 216400 + }, + { + "epoch": 72.52935756763549, + "grad_norm": 0.7420958876609802, + "learning_rate": 1.3751591289782246e-05, + "loss": 0.19183109283447267, + "step": 216500 + }, + { + "epoch": 72.56286121115672, + "grad_norm": 0.5992802381515503, + "learning_rate": 1.3734840871021776e-05, + "loss": 0.19208011627197266, + "step": 216600 + }, + { + "epoch": 72.59636485467794, + "grad_norm": 0.7813421487808228, + "learning_rate": 1.3718090452261307e-05, + "loss": 0.19179468154907225, + "step": 216700 + }, + { + "epoch": 72.62986849819917, + "grad_norm": 0.6775956153869629, + "learning_rate": 1.3701340033500837e-05, + "loss": 0.19274057388305665, + "step": 216800 + }, + { + "epoch": 72.66337214172042, + "grad_norm": 0.7122693657875061, + "learning_rate": 1.368458961474037e-05, + "loss": 0.1917710304260254, + "step": 216900 + }, + { + "epoch": 72.69687578524164, + "grad_norm": 0.7028974890708923, + "learning_rate": 1.36678391959799e-05, + "loss": 0.1918616485595703, + "step": 217000 + }, + { + "epoch": 72.73037942876287, + "grad_norm": 0.6234395503997803, + "learning_rate": 1.365108877721943e-05, + "loss": 0.192793025970459, + "step": 217100 + }, + { + "epoch": 72.76388307228412, + "grad_norm": 0.7795095443725586, + "learning_rate": 1.3634338358458961e-05, + "loss": 0.19276504516601561, + "step": 217200 + }, + { + "epoch": 72.79738671580535, + "grad_norm": 0.5714548230171204, + "learning_rate": 1.3617587939698492e-05, + "loss": 0.19352224349975586, + "step": 217300 + }, + { + "epoch": 72.83089035932657, + "grad_norm": 0.6443431973457336, + "learning_rate": 1.3600837520938022e-05, + "loss": 0.19274961471557617, + "step": 217400 + }, + { + "epoch": 72.8643940028478, + "grad_norm": 0.732292890548706, + "learning_rate": 1.3584087102177556e-05, + "loss": 0.19329883575439452, + "step": 217500 + }, + { + "epoch": 72.89789764636905, + "grad_norm": 0.6586911082267761, + "learning_rate": 1.3567336683417087e-05, + "loss": 0.19275350570678712, + "step": 217600 + }, + { + "epoch": 72.93140128989027, + "grad_norm": 0.4131799638271332, + "learning_rate": 1.355075376884422e-05, + "loss": 0.19394960403442382, + "step": 217700 + }, + { + "epoch": 72.9649049334115, + "grad_norm": 0.720600426197052, + "learning_rate": 1.3534003350083751e-05, + "loss": 0.19370002746582032, + "step": 217800 + }, + { + "epoch": 72.99840857693275, + "grad_norm": 0.7249190211296082, + "learning_rate": 1.3517252931323285e-05, + "loss": 0.19390350341796875, + "step": 217900 + }, + { + "epoch": 73.03182846134517, + "grad_norm": 0.7347325086593628, + "learning_rate": 1.3500502512562816e-05, + "loss": 0.18822053909301759, + "step": 218000 + }, + { + "epoch": 73.0653321048664, + "grad_norm": 0.6100323796272278, + "learning_rate": 1.3483752093802346e-05, + "loss": 0.1878873062133789, + "step": 218100 + }, + { + "epoch": 73.09883574838764, + "grad_norm": 0.6328092217445374, + "learning_rate": 1.3467001675041877e-05, + "loss": 0.18838220596313476, + "step": 218200 + }, + { + "epoch": 73.13233939190887, + "grad_norm": 0.6140354871749878, + "learning_rate": 1.3450251256281407e-05, + "loss": 0.18931222915649415, + "step": 218300 + }, + { + "epoch": 73.1658430354301, + "grad_norm": 0.6713184118270874, + "learning_rate": 1.3433500837520938e-05, + "loss": 0.18979503631591796, + "step": 218400 + }, + { + "epoch": 73.19934667895133, + "grad_norm": 0.5946479439735413, + "learning_rate": 1.3416750418760472e-05, + "loss": 0.19020790100097656, + "step": 218500 + }, + { + "epoch": 73.23285032247257, + "grad_norm": 0.635026216506958, + "learning_rate": 1.3400000000000002e-05, + "loss": 0.19073740005493164, + "step": 218600 + }, + { + "epoch": 73.2663539659938, + "grad_norm": 0.8429803252220154, + "learning_rate": 1.3383249581239533e-05, + "loss": 0.19040184020996093, + "step": 218700 + }, + { + "epoch": 73.29985760951503, + "grad_norm": 0.6116558909416199, + "learning_rate": 1.3366499162479063e-05, + "loss": 0.1910529327392578, + "step": 218800 + }, + { + "epoch": 73.33336125303627, + "grad_norm": 0.6104078888893127, + "learning_rate": 1.3349748743718594e-05, + "loss": 0.19013742446899415, + "step": 218900 + }, + { + "epoch": 73.3668648965575, + "grad_norm": 0.6935064196586609, + "learning_rate": 1.3332998324958124e-05, + "loss": 0.19089607238769532, + "step": 219000 + }, + { + "epoch": 73.40036854007873, + "grad_norm": 0.6205075979232788, + "learning_rate": 1.3316247906197656e-05, + "loss": 0.18985008239746093, + "step": 219100 + }, + { + "epoch": 73.43387218359997, + "grad_norm": 0.6838747262954712, + "learning_rate": 1.3299497487437187e-05, + "loss": 0.19136251449584962, + "step": 219200 + }, + { + "epoch": 73.4673758271212, + "grad_norm": 0.5892935395240784, + "learning_rate": 1.3282747068676717e-05, + "loss": 0.19115791320800782, + "step": 219300 + }, + { + "epoch": 73.50087947064243, + "grad_norm": 0.6625847220420837, + "learning_rate": 1.3265996649916248e-05, + "loss": 0.1914684295654297, + "step": 219400 + }, + { + "epoch": 73.53438311416366, + "grad_norm": 0.5886939764022827, + "learning_rate": 1.3249246231155778e-05, + "loss": 0.19140581130981446, + "step": 219500 + }, + { + "epoch": 73.5678867576849, + "grad_norm": 0.6432992219924927, + "learning_rate": 1.3232495812395309e-05, + "loss": 0.19217498779296874, + "step": 219600 + }, + { + "epoch": 73.60139040120613, + "grad_norm": 0.537247896194458, + "learning_rate": 1.3215912897822447e-05, + "loss": 0.1916472816467285, + "step": 219700 + }, + { + "epoch": 73.63489404472736, + "grad_norm": 0.7746627330780029, + "learning_rate": 1.3199162479061977e-05, + "loss": 0.1921250343322754, + "step": 219800 + }, + { + "epoch": 73.6683976882486, + "grad_norm": 0.6342955827713013, + "learning_rate": 1.3182412060301508e-05, + "loss": 0.19181474685668945, + "step": 219900 + }, + { + "epoch": 73.70190133176983, + "grad_norm": 0.6556417346000671, + "learning_rate": 1.3165661641541038e-05, + "loss": 0.1932265853881836, + "step": 220000 + }, + { + "epoch": 73.73540497529106, + "grad_norm": 0.627204179763794, + "learning_rate": 1.3148911222780569e-05, + "loss": 0.19127828598022462, + "step": 220100 + }, + { + "epoch": 73.76890861881229, + "grad_norm": 0.5481722950935364, + "learning_rate": 1.3132160804020103e-05, + "loss": 0.19317052841186524, + "step": 220200 + }, + { + "epoch": 73.80241226233353, + "grad_norm": 0.6881102323532104, + "learning_rate": 1.3115410385259633e-05, + "loss": 0.1921912384033203, + "step": 220300 + }, + { + "epoch": 73.83591590585476, + "grad_norm": 0.5679818987846375, + "learning_rate": 1.3098659966499164e-05, + "loss": 0.19210420608520506, + "step": 220400 + }, + { + "epoch": 73.86941954937599, + "grad_norm": 0.6412058472633362, + "learning_rate": 1.3081909547738694e-05, + "loss": 0.19206573486328124, + "step": 220500 + }, + { + "epoch": 73.90292319289723, + "grad_norm": 0.586617648601532, + "learning_rate": 1.3065159128978225e-05, + "loss": 0.19283601760864258, + "step": 220600 + }, + { + "epoch": 73.93642683641846, + "grad_norm": 0.6339001655578613, + "learning_rate": 1.3048408710217755e-05, + "loss": 0.19282327651977538, + "step": 220700 + }, + { + "epoch": 73.96993047993969, + "grad_norm": 0.5810698866844177, + "learning_rate": 1.3031658291457289e-05, + "loss": 0.19248931884765624, + "step": 220800 + }, + { + "epoch": 74.00335036435213, + "grad_norm": 0.5315734148025513, + "learning_rate": 1.301490787269682e-05, + "loss": 0.19272197723388673, + "step": 220900 + }, + { + "epoch": 74.03685400787336, + "grad_norm": 0.5988895893096924, + "learning_rate": 1.299815745393635e-05, + "loss": 0.18879865646362304, + "step": 221000 + }, + { + "epoch": 74.07035765139459, + "grad_norm": 0.6475368142127991, + "learning_rate": 1.298140703517588e-05, + "loss": 0.18721097946166992, + "step": 221100 + }, + { + "epoch": 74.10386129491582, + "grad_norm": 0.5875990986824036, + "learning_rate": 1.2964656616415411e-05, + "loss": 0.18884235382080078, + "step": 221200 + }, + { + "epoch": 74.13736493843706, + "grad_norm": 0.7056507468223572, + "learning_rate": 1.2947906197654942e-05, + "loss": 0.1880255889892578, + "step": 221300 + }, + { + "epoch": 74.17086858195829, + "grad_norm": 0.7191376090049744, + "learning_rate": 1.2931155778894474e-05, + "loss": 0.18832271575927734, + "step": 221400 + }, + { + "epoch": 74.20437222547952, + "grad_norm": 0.6161214113235474, + "learning_rate": 1.2914405360134004e-05, + "loss": 0.1886260414123535, + "step": 221500 + }, + { + "epoch": 74.23787586900076, + "grad_norm": 0.6850497126579285, + "learning_rate": 1.2897654941373535e-05, + "loss": 0.18944147109985351, + "step": 221600 + }, + { + "epoch": 74.27137951252199, + "grad_norm": 0.7031293511390686, + "learning_rate": 1.2880904522613065e-05, + "loss": 0.18980978012084962, + "step": 221700 + }, + { + "epoch": 74.30488315604322, + "grad_norm": 0.7116613388061523, + "learning_rate": 1.2864321608040203e-05, + "loss": 0.19084714889526366, + "step": 221800 + }, + { + "epoch": 74.33838679956445, + "grad_norm": 0.6668044328689575, + "learning_rate": 1.2847571189279734e-05, + "loss": 0.1889169120788574, + "step": 221900 + }, + { + "epoch": 74.37189044308569, + "grad_norm": 0.7630614638328552, + "learning_rate": 1.2830820770519264e-05, + "loss": 0.1901887321472168, + "step": 222000 + }, + { + "epoch": 74.40539408660692, + "grad_norm": 0.6210822463035583, + "learning_rate": 1.2814070351758795e-05, + "loss": 0.18958797454833984, + "step": 222100 + }, + { + "epoch": 74.43889773012815, + "grad_norm": 0.674400806427002, + "learning_rate": 1.2797319932998325e-05, + "loss": 0.19211307525634766, + "step": 222200 + }, + { + "epoch": 74.47240137364939, + "grad_norm": 0.5624780058860779, + "learning_rate": 1.2780569514237856e-05, + "loss": 0.19077470779418945, + "step": 222300 + }, + { + "epoch": 74.50590501717062, + "grad_norm": 0.6902910470962524, + "learning_rate": 1.2763819095477386e-05, + "loss": 0.19062641143798828, + "step": 222400 + }, + { + "epoch": 74.53940866069185, + "grad_norm": 0.6203210353851318, + "learning_rate": 1.274706867671692e-05, + "loss": 0.19215831756591797, + "step": 222500 + }, + { + "epoch": 74.57291230421308, + "grad_norm": 0.6973204016685486, + "learning_rate": 1.273031825795645e-05, + "loss": 0.19094465255737306, + "step": 222600 + }, + { + "epoch": 74.60641594773432, + "grad_norm": 0.5848397016525269, + "learning_rate": 1.2713567839195981e-05, + "loss": 0.1918341827392578, + "step": 222700 + }, + { + "epoch": 74.63991959125555, + "grad_norm": 0.5930863618850708, + "learning_rate": 1.2696817420435512e-05, + "loss": 0.19197944641113282, + "step": 222800 + }, + { + "epoch": 74.67342323477678, + "grad_norm": 0.6419515609741211, + "learning_rate": 1.2680067001675042e-05, + "loss": 0.19171865463256835, + "step": 222900 + }, + { + "epoch": 74.70692687829802, + "grad_norm": 0.6278107762336731, + "learning_rate": 1.2663316582914573e-05, + "loss": 0.19249353408813477, + "step": 223000 + }, + { + "epoch": 74.74043052181925, + "grad_norm": 0.5512995719909668, + "learning_rate": 1.2646566164154105e-05, + "loss": 0.19145532608032226, + "step": 223100 + }, + { + "epoch": 74.77393416534048, + "grad_norm": 0.6217749714851379, + "learning_rate": 1.2629815745393635e-05, + "loss": 0.19141609191894532, + "step": 223200 + }, + { + "epoch": 74.8074378088617, + "grad_norm": 0.672197699546814, + "learning_rate": 1.2613065326633166e-05, + "loss": 0.19206232070922852, + "step": 223300 + }, + { + "epoch": 74.84094145238295, + "grad_norm": 0.6256102919578552, + "learning_rate": 1.2596314907872698e-05, + "loss": 0.19332118988037109, + "step": 223400 + }, + { + "epoch": 74.87444509590418, + "grad_norm": 0.5120044350624084, + "learning_rate": 1.2579564489112229e-05, + "loss": 0.19207197189331054, + "step": 223500 + }, + { + "epoch": 74.90794873942541, + "grad_norm": 0.6199808120727539, + "learning_rate": 1.2562814070351759e-05, + "loss": 0.19157859802246094, + "step": 223600 + }, + { + "epoch": 74.94145238294665, + "grad_norm": 0.7454675436019897, + "learning_rate": 1.2546063651591291e-05, + "loss": 0.19300016403198242, + "step": 223700 + }, + { + "epoch": 74.97495602646788, + "grad_norm": 0.5340383052825928, + "learning_rate": 1.2529313232830822e-05, + "loss": 0.1914585304260254, + "step": 223800 + }, + { + "epoch": 75.0083759108803, + "grad_norm": 0.529868483543396, + "learning_rate": 1.2512730318257956e-05, + "loss": 0.19096315383911133, + "step": 223900 + }, + { + "epoch": 75.04187955440155, + "grad_norm": 0.5163419246673584, + "learning_rate": 1.2495979899497488e-05, + "loss": 0.18681686401367187, + "step": 224000 + }, + { + "epoch": 75.07538319792278, + "grad_norm": 0.6350462436676025, + "learning_rate": 1.2479229480737019e-05, + "loss": 0.1882038688659668, + "step": 224100 + }, + { + "epoch": 75.108886841444, + "grad_norm": 0.5319573283195496, + "learning_rate": 1.246247906197655e-05, + "loss": 0.18803632736206055, + "step": 224200 + }, + { + "epoch": 75.14239048496523, + "grad_norm": 0.5288993120193481, + "learning_rate": 1.2445728643216081e-05, + "loss": 0.18808624267578125, + "step": 224300 + }, + { + "epoch": 75.17589412848648, + "grad_norm": 0.6789448261260986, + "learning_rate": 1.2428978224455612e-05, + "loss": 0.18842166900634766, + "step": 224400 + }, + { + "epoch": 75.2093977720077, + "grad_norm": 0.661927342414856, + "learning_rate": 1.2412227805695142e-05, + "loss": 0.18897750854492187, + "step": 224500 + }, + { + "epoch": 75.24290141552893, + "grad_norm": 0.5049561262130737, + "learning_rate": 1.2395477386934675e-05, + "loss": 0.18828922271728515, + "step": 224600 + }, + { + "epoch": 75.27640505905018, + "grad_norm": 0.5841866135597229, + "learning_rate": 1.2378726968174205e-05, + "loss": 0.18943553924560547, + "step": 224700 + }, + { + "epoch": 75.3099087025714, + "grad_norm": 0.6885756254196167, + "learning_rate": 1.2361976549413736e-05, + "loss": 0.18894081115722655, + "step": 224800 + }, + { + "epoch": 75.34341234609263, + "grad_norm": 0.7039951086044312, + "learning_rate": 1.2345226130653268e-05, + "loss": 0.18984657287597656, + "step": 224900 + }, + { + "epoch": 75.37691598961388, + "grad_norm": 0.6714735627174377, + "learning_rate": 1.2328475711892798e-05, + "loss": 0.19007621765136717, + "step": 225000 + }, + { + "epoch": 75.4104196331351, + "grad_norm": 0.637840986251831, + "learning_rate": 1.2311725293132329e-05, + "loss": 0.18986061096191406, + "step": 225100 + }, + { + "epoch": 75.44392327665634, + "grad_norm": 0.5885179042816162, + "learning_rate": 1.2294974874371861e-05, + "loss": 0.18973173141479494, + "step": 225200 + }, + { + "epoch": 75.47742692017756, + "grad_norm": 0.6655402779579163, + "learning_rate": 1.2278224455611392e-05, + "loss": 0.19028383255004883, + "step": 225300 + }, + { + "epoch": 75.5109305636988, + "grad_norm": 0.6711523532867432, + "learning_rate": 1.2261474036850922e-05, + "loss": 0.19036417007446288, + "step": 225400 + }, + { + "epoch": 75.54443420722004, + "grad_norm": 0.7367367744445801, + "learning_rate": 1.2244723618090453e-05, + "loss": 0.1918941307067871, + "step": 225500 + }, + { + "epoch": 75.57793785074126, + "grad_norm": 0.8443908095359802, + "learning_rate": 1.2227973199329983e-05, + "loss": 0.19089139938354494, + "step": 225600 + }, + { + "epoch": 75.61144149426251, + "grad_norm": 0.5808036923408508, + "learning_rate": 1.2211222780569514e-05, + "loss": 0.19058563232421874, + "step": 225700 + }, + { + "epoch": 75.64494513778374, + "grad_norm": 0.5212644934654236, + "learning_rate": 1.2194472361809046e-05, + "loss": 0.19121980667114258, + "step": 225800 + }, + { + "epoch": 75.67844878130497, + "grad_norm": 0.7097404599189758, + "learning_rate": 1.2177889447236182e-05, + "loss": 0.1912353515625, + "step": 225900 + }, + { + "epoch": 75.7119524248262, + "grad_norm": 0.6513300538063049, + "learning_rate": 1.2161139028475712e-05, + "loss": 0.19171392440795898, + "step": 226000 + }, + { + "epoch": 75.74545606834744, + "grad_norm": 0.6188165545463562, + "learning_rate": 1.2144388609715243e-05, + "loss": 0.19226541519165039, + "step": 226100 + }, + { + "epoch": 75.77895971186867, + "grad_norm": 0.6310757994651794, + "learning_rate": 1.2127638190954775e-05, + "loss": 0.1912686538696289, + "step": 226200 + }, + { + "epoch": 75.8124633553899, + "grad_norm": 0.6972214579582214, + "learning_rate": 1.2110887772194306e-05, + "loss": 0.19245899200439454, + "step": 226300 + }, + { + "epoch": 75.84596699891114, + "grad_norm": 0.6156506538391113, + "learning_rate": 1.2094137353433836e-05, + "loss": 0.1912640380859375, + "step": 226400 + }, + { + "epoch": 75.87947064243237, + "grad_norm": 0.627688467502594, + "learning_rate": 1.2077386934673367e-05, + "loss": 0.19346479415893555, + "step": 226500 + }, + { + "epoch": 75.9129742859536, + "grad_norm": 0.620262622833252, + "learning_rate": 1.2060636515912899e-05, + "loss": 0.19184036254882814, + "step": 226600 + }, + { + "epoch": 75.94647792947482, + "grad_norm": 0.6578592658042908, + "learning_rate": 1.204388609715243e-05, + "loss": 0.1920124626159668, + "step": 226700 + }, + { + "epoch": 75.97998157299607, + "grad_norm": 0.4712987542152405, + "learning_rate": 1.202713567839196e-05, + "loss": 0.19146875381469727, + "step": 226800 + }, + { + "epoch": 76.01340145740849, + "grad_norm": 0.5716565251350403, + "learning_rate": 1.2010385259631492e-05, + "loss": 0.19078388214111328, + "step": 226900 + }, + { + "epoch": 76.04690510092972, + "grad_norm": 0.7094972133636475, + "learning_rate": 1.1993634840871023e-05, + "loss": 0.18728803634643554, + "step": 227000 + }, + { + "epoch": 76.08040874445096, + "grad_norm": 0.6303561329841614, + "learning_rate": 1.1976884422110553e-05, + "loss": 0.18724044799804687, + "step": 227100 + }, + { + "epoch": 76.11391238797219, + "grad_norm": 0.7359886765480042, + "learning_rate": 1.1960134003350085e-05, + "loss": 0.1879755973815918, + "step": 227200 + }, + { + "epoch": 76.14741603149342, + "grad_norm": 0.857787013053894, + "learning_rate": 1.1943383584589616e-05, + "loss": 0.18758907318115234, + "step": 227300 + }, + { + "epoch": 76.18091967501466, + "grad_norm": 0.607428252696991, + "learning_rate": 1.1926633165829146e-05, + "loss": 0.18798053741455079, + "step": 227400 + }, + { + "epoch": 76.21442331853589, + "grad_norm": 0.8037320375442505, + "learning_rate": 1.1909882747068679e-05, + "loss": 0.1890050506591797, + "step": 227500 + }, + { + "epoch": 76.24792696205712, + "grad_norm": 0.6359191536903381, + "learning_rate": 1.1893132328308209e-05, + "loss": 0.18898937225341797, + "step": 227600 + }, + { + "epoch": 76.28143060557835, + "grad_norm": 0.6721845269203186, + "learning_rate": 1.187638190954774e-05, + "loss": 0.1883324432373047, + "step": 227700 + }, + { + "epoch": 76.3149342490996, + "grad_norm": 0.6467797756195068, + "learning_rate": 1.185963149078727e-05, + "loss": 0.1888943099975586, + "step": 227800 + }, + { + "epoch": 76.34843789262082, + "grad_norm": 0.7214395999908447, + "learning_rate": 1.1843048576214406e-05, + "loss": 0.1892184829711914, + "step": 227900 + }, + { + "epoch": 76.38194153614205, + "grad_norm": 0.6020253896713257, + "learning_rate": 1.1826298157453937e-05, + "loss": 0.1896377372741699, + "step": 228000 + }, + { + "epoch": 76.4154451796633, + "grad_norm": 0.6029198169708252, + "learning_rate": 1.1809547738693467e-05, + "loss": 0.18889514923095704, + "step": 228100 + }, + { + "epoch": 76.44894882318452, + "grad_norm": 0.7419018745422363, + "learning_rate": 1.1792797319933e-05, + "loss": 0.18998069763183595, + "step": 228200 + }, + { + "epoch": 76.48245246670575, + "grad_norm": 0.6079985499382019, + "learning_rate": 1.177604690117253e-05, + "loss": 0.19057266235351564, + "step": 228300 + }, + { + "epoch": 76.51595611022698, + "grad_norm": 0.6738330125808716, + "learning_rate": 1.175929648241206e-05, + "loss": 0.19021852493286132, + "step": 228400 + }, + { + "epoch": 76.54945975374822, + "grad_norm": 0.6184301376342773, + "learning_rate": 1.1742546063651593e-05, + "loss": 0.19030994415283203, + "step": 228500 + }, + { + "epoch": 76.58296339726945, + "grad_norm": 0.6210246682167053, + "learning_rate": 1.1725795644891123e-05, + "loss": 0.18975492477416991, + "step": 228600 + }, + { + "epoch": 76.61646704079068, + "grad_norm": 0.6398160457611084, + "learning_rate": 1.1709045226130654e-05, + "loss": 0.19056596755981445, + "step": 228700 + }, + { + "epoch": 76.64997068431192, + "grad_norm": 0.5791774392127991, + "learning_rate": 1.1692294807370186e-05, + "loss": 0.19000568389892578, + "step": 228800 + }, + { + "epoch": 76.68347432783315, + "grad_norm": 0.6452813744544983, + "learning_rate": 1.1675544388609716e-05, + "loss": 0.19119565963745117, + "step": 228900 + }, + { + "epoch": 76.71697797135438, + "grad_norm": 0.5637299418449402, + "learning_rate": 1.1658793969849247e-05, + "loss": 0.1906993293762207, + "step": 229000 + }, + { + "epoch": 76.75048161487561, + "grad_norm": 0.6561068892478943, + "learning_rate": 1.1642043551088777e-05, + "loss": 0.1915520668029785, + "step": 229100 + }, + { + "epoch": 76.78398525839685, + "grad_norm": 0.6777018904685974, + "learning_rate": 1.162529313232831e-05, + "loss": 0.19029684066772462, + "step": 229200 + }, + { + "epoch": 76.81748890191808, + "grad_norm": 0.4779558479785919, + "learning_rate": 1.160854271356784e-05, + "loss": 0.19119384765625, + "step": 229300 + }, + { + "epoch": 76.85099254543931, + "grad_norm": 0.5411806106567383, + "learning_rate": 1.159179229480737e-05, + "loss": 0.19078275680541992, + "step": 229400 + }, + { + "epoch": 76.88449618896055, + "grad_norm": 0.623041033744812, + "learning_rate": 1.1575041876046903e-05, + "loss": 0.19250349044799805, + "step": 229500 + }, + { + "epoch": 76.91799983248178, + "grad_norm": 0.5169858336448669, + "learning_rate": 1.1558291457286433e-05, + "loss": 0.19133710861206055, + "step": 229600 + }, + { + "epoch": 76.95150347600301, + "grad_norm": 0.5985132455825806, + "learning_rate": 1.1541541038525964e-05, + "loss": 0.19112289428710938, + "step": 229700 + }, + { + "epoch": 76.98500711952425, + "grad_norm": 0.6158753633499146, + "learning_rate": 1.1524790619765494e-05, + "loss": 0.1921292495727539, + "step": 229800 + }, + { + "epoch": 77.01842700393668, + "grad_norm": 0.5963013172149658, + "learning_rate": 1.1508040201005025e-05, + "loss": 0.18872583389282227, + "step": 229900 + }, + { + "epoch": 77.05193064745791, + "grad_norm": 0.5578435659408569, + "learning_rate": 1.149145728643216e-05, + "loss": 0.1861967658996582, + "step": 230000 + }, + { + "epoch": 77.08543429097914, + "grad_norm": 0.5361016988754272, + "learning_rate": 1.1474706867671691e-05, + "loss": 0.18753931045532227, + "step": 230100 + }, + { + "epoch": 77.11893793450038, + "grad_norm": 0.7023466229438782, + "learning_rate": 1.1457956448911223e-05, + "loss": 0.18739143371582032, + "step": 230200 + }, + { + "epoch": 77.15244157802161, + "grad_norm": 0.5231741666793823, + "learning_rate": 1.1441206030150754e-05, + "loss": 0.1882183074951172, + "step": 230300 + }, + { + "epoch": 77.18594522154284, + "grad_norm": 0.7267812490463257, + "learning_rate": 1.1424455611390284e-05, + "loss": 0.18830036163330077, + "step": 230400 + }, + { + "epoch": 77.21944886506408, + "grad_norm": 0.5698330998420715, + "learning_rate": 1.1407705192629817e-05, + "loss": 0.18730653762817384, + "step": 230500 + }, + { + "epoch": 77.25295250858531, + "grad_norm": 0.6907638907432556, + "learning_rate": 1.1390954773869347e-05, + "loss": 0.18742834091186522, + "step": 230600 + }, + { + "epoch": 77.28645615210654, + "grad_norm": 0.5616415739059448, + "learning_rate": 1.1374204355108878e-05, + "loss": 0.1885102844238281, + "step": 230700 + }, + { + "epoch": 77.31995979562778, + "grad_norm": 0.6362226009368896, + "learning_rate": 1.135745393634841e-05, + "loss": 0.18842847824096678, + "step": 230800 + }, + { + "epoch": 77.35346343914901, + "grad_norm": 0.5648617744445801, + "learning_rate": 1.134070351758794e-05, + "loss": 0.18916454315185546, + "step": 230900 + }, + { + "epoch": 77.38696708267024, + "grad_norm": 0.7212550044059753, + "learning_rate": 1.1323953098827471e-05, + "loss": 0.1888494873046875, + "step": 231000 + }, + { + "epoch": 77.42047072619147, + "grad_norm": 0.8556243777275085, + "learning_rate": 1.1307202680067003e-05, + "loss": 0.18897062301635742, + "step": 231100 + }, + { + "epoch": 77.45397436971271, + "grad_norm": 0.8663336634635925, + "learning_rate": 1.1290452261306534e-05, + "loss": 0.18911514282226563, + "step": 231200 + }, + { + "epoch": 77.48747801323394, + "grad_norm": 0.555095911026001, + "learning_rate": 1.1273701842546064e-05, + "loss": 0.19008974075317384, + "step": 231300 + }, + { + "epoch": 77.52098165675517, + "grad_norm": 0.5795916318893433, + "learning_rate": 1.1256951423785596e-05, + "loss": 0.19058879852294922, + "step": 231400 + }, + { + "epoch": 77.55448530027641, + "grad_norm": 0.6374692916870117, + "learning_rate": 1.1240201005025127e-05, + "loss": 0.19093334197998046, + "step": 231500 + }, + { + "epoch": 77.58798894379764, + "grad_norm": 0.5286735892295837, + "learning_rate": 1.1223450586264657e-05, + "loss": 0.18953340530395507, + "step": 231600 + }, + { + "epoch": 77.62149258731887, + "grad_norm": 0.7152593731880188, + "learning_rate": 1.120670016750419e-05, + "loss": 0.18968648910522462, + "step": 231700 + }, + { + "epoch": 77.6549962308401, + "grad_norm": 0.6775063276290894, + "learning_rate": 1.118994974874372e-05, + "loss": 0.19057016372680663, + "step": 231800 + }, + { + "epoch": 77.68849987436134, + "grad_norm": 0.5843816995620728, + "learning_rate": 1.117319932998325e-05, + "loss": 0.18996496200561525, + "step": 231900 + }, + { + "epoch": 77.72200351788257, + "grad_norm": 0.6201971769332886, + "learning_rate": 1.1156616415410385e-05, + "loss": 0.1909531021118164, + "step": 232000 + }, + { + "epoch": 77.7555071614038, + "grad_norm": 0.6630064249038696, + "learning_rate": 1.1139865996649915e-05, + "loss": 0.18996026992797851, + "step": 232100 + }, + { + "epoch": 77.78901080492504, + "grad_norm": 0.6778659224510193, + "learning_rate": 1.1123115577889448e-05, + "loss": 0.19063941955566407, + "step": 232200 + }, + { + "epoch": 77.82251444844627, + "grad_norm": 0.6163811087608337, + "learning_rate": 1.1106365159128978e-05, + "loss": 0.19099504470825196, + "step": 232300 + }, + { + "epoch": 77.8560180919675, + "grad_norm": 0.5668363571166992, + "learning_rate": 1.1089614740368509e-05, + "loss": 0.1901922607421875, + "step": 232400 + }, + { + "epoch": 77.88952173548873, + "grad_norm": 0.5424449443817139, + "learning_rate": 1.1072864321608041e-05, + "loss": 0.19019113540649413, + "step": 232500 + }, + { + "epoch": 77.92302537900997, + "grad_norm": 0.5976355671882629, + "learning_rate": 1.1056113902847571e-05, + "loss": 0.19223594665527344, + "step": 232600 + }, + { + "epoch": 77.9565290225312, + "grad_norm": 0.586529016494751, + "learning_rate": 1.1039363484087102e-05, + "loss": 0.19147846221923828, + "step": 232700 + }, + { + "epoch": 77.99003266605243, + "grad_norm": 0.478441447019577, + "learning_rate": 1.1022613065326634e-05, + "loss": 0.19069934844970704, + "step": 232800 + }, + { + "epoch": 78.02345255046487, + "grad_norm": 0.595913290977478, + "learning_rate": 1.1005862646566165e-05, + "loss": 0.188853759765625, + "step": 232900 + }, + { + "epoch": 78.0569561939861, + "grad_norm": 0.7776252031326294, + "learning_rate": 1.0989112227805695e-05, + "loss": 0.18635259628295897, + "step": 233000 + }, + { + "epoch": 78.09045983750732, + "grad_norm": 0.5748878717422485, + "learning_rate": 1.0972361809045227e-05, + "loss": 0.18685552597045899, + "step": 233100 + }, + { + "epoch": 78.12396348102857, + "grad_norm": 0.5180676579475403, + "learning_rate": 1.0955611390284758e-05, + "loss": 0.1877056121826172, + "step": 233200 + }, + { + "epoch": 78.1574671245498, + "grad_norm": 0.673117458820343, + "learning_rate": 1.0938860971524288e-05, + "loss": 0.18688018798828124, + "step": 233300 + }, + { + "epoch": 78.19097076807103, + "grad_norm": 0.6519831418991089, + "learning_rate": 1.092211055276382e-05, + "loss": 0.18750722885131835, + "step": 233400 + }, + { + "epoch": 78.22447441159225, + "grad_norm": 0.5309635400772095, + "learning_rate": 1.0905360134003351e-05, + "loss": 0.18738748550415038, + "step": 233500 + }, + { + "epoch": 78.2579780551135, + "grad_norm": 0.6039297580718994, + "learning_rate": 1.0888609715242882e-05, + "loss": 0.18785961151123046, + "step": 233600 + }, + { + "epoch": 78.29148169863473, + "grad_norm": 0.4987012445926666, + "learning_rate": 1.0871859296482414e-05, + "loss": 0.18820880889892577, + "step": 233700 + }, + { + "epoch": 78.32498534215595, + "grad_norm": 0.6190744638442993, + "learning_rate": 1.0855108877721944e-05, + "loss": 0.18877883911132812, + "step": 233800 + }, + { + "epoch": 78.3584889856772, + "grad_norm": 0.6907918453216553, + "learning_rate": 1.0838358458961475e-05, + "loss": 0.18849582672119142, + "step": 233900 + }, + { + "epoch": 78.39199262919843, + "grad_norm": 0.5600749850273132, + "learning_rate": 1.0821608040201005e-05, + "loss": 0.18884668350219727, + "step": 234000 + }, + { + "epoch": 78.42549627271966, + "grad_norm": 0.6390280723571777, + "learning_rate": 1.0805025125628141e-05, + "loss": 0.1880735397338867, + "step": 234100 + }, + { + "epoch": 78.45899991624088, + "grad_norm": 0.6333056688308716, + "learning_rate": 1.0788274706867672e-05, + "loss": 0.18834163665771483, + "step": 234200 + }, + { + "epoch": 78.49250355976213, + "grad_norm": 0.5011644959449768, + "learning_rate": 1.0771524288107202e-05, + "loss": 0.18952463150024415, + "step": 234300 + }, + { + "epoch": 78.52600720328336, + "grad_norm": 0.7219404578208923, + "learning_rate": 1.0754773869346735e-05, + "loss": 0.18985385894775392, + "step": 234400 + }, + { + "epoch": 78.55951084680459, + "grad_norm": 0.6397419571876526, + "learning_rate": 1.0738023450586265e-05, + "loss": 0.18919252395629882, + "step": 234500 + }, + { + "epoch": 78.59301449032583, + "grad_norm": 0.6841224431991577, + "learning_rate": 1.0721273031825796e-05, + "loss": 0.18944778442382812, + "step": 234600 + }, + { + "epoch": 78.62651813384706, + "grad_norm": 0.7453842163085938, + "learning_rate": 1.0704522613065328e-05, + "loss": 0.19007984161376953, + "step": 234700 + }, + { + "epoch": 78.66002177736829, + "grad_norm": 0.5905109643936157, + "learning_rate": 1.0687772194304858e-05, + "loss": 0.18957454681396485, + "step": 234800 + }, + { + "epoch": 78.69352542088953, + "grad_norm": 0.6769446134567261, + "learning_rate": 1.0671021775544389e-05, + "loss": 0.19039548873901369, + "step": 234900 + }, + { + "epoch": 78.72702906441076, + "grad_norm": 0.5825620293617249, + "learning_rate": 1.065427135678392e-05, + "loss": 0.1897379684448242, + "step": 235000 + }, + { + "epoch": 78.76053270793199, + "grad_norm": 0.6064398288726807, + "learning_rate": 1.0637520938023452e-05, + "loss": 0.18956695556640624, + "step": 235100 + }, + { + "epoch": 78.79403635145322, + "grad_norm": 0.5826224088668823, + "learning_rate": 1.0620770519262982e-05, + "loss": 0.19094810485839844, + "step": 235200 + }, + { + "epoch": 78.82753999497446, + "grad_norm": 0.6187439560890198, + "learning_rate": 1.0604020100502513e-05, + "loss": 0.190173397064209, + "step": 235300 + }, + { + "epoch": 78.86104363849569, + "grad_norm": 0.7878564596176147, + "learning_rate": 1.0587269681742045e-05, + "loss": 0.19098638534545898, + "step": 235400 + }, + { + "epoch": 78.89454728201692, + "grad_norm": 0.7218932509422302, + "learning_rate": 1.0570519262981575e-05, + "loss": 0.19098539352416993, + "step": 235500 + }, + { + "epoch": 78.92805092553816, + "grad_norm": 0.5134685635566711, + "learning_rate": 1.0553768844221106e-05, + "loss": 0.19038022994995119, + "step": 235600 + }, + { + "epoch": 78.96155456905939, + "grad_norm": 0.641615092754364, + "learning_rate": 1.0537018425460638e-05, + "loss": 0.1914260482788086, + "step": 235700 + }, + { + "epoch": 78.99505821258062, + "grad_norm": 0.6211548447608948, + "learning_rate": 1.0520268006700169e-05, + "loss": 0.1908476448059082, + "step": 235800 + }, + { + "epoch": 79.02847809699304, + "grad_norm": 0.5376355648040771, + "learning_rate": 1.0503517587939699e-05, + "loss": 0.18590696334838866, + "step": 235900 + }, + { + "epoch": 79.06198174051428, + "grad_norm": 0.5554808974266052, + "learning_rate": 1.0486767169179231e-05, + "loss": 0.18621206283569336, + "step": 236000 + }, + { + "epoch": 79.09548538403551, + "grad_norm": 0.6652063727378845, + "learning_rate": 1.0470184254606365e-05, + "loss": 0.18646297454833985, + "step": 236100 + }, + { + "epoch": 79.12898902755674, + "grad_norm": 0.6671931147575378, + "learning_rate": 1.0453433835845896e-05, + "loss": 0.18682302474975587, + "step": 236200 + }, + { + "epoch": 79.16249267107798, + "grad_norm": 0.6100969910621643, + "learning_rate": 1.0436683417085426e-05, + "loss": 0.18717609405517577, + "step": 236300 + }, + { + "epoch": 79.19599631459921, + "grad_norm": 0.7126432061195374, + "learning_rate": 1.0419932998324959e-05, + "loss": 0.18632455825805663, + "step": 236400 + }, + { + "epoch": 79.22949995812044, + "grad_norm": 0.5226724147796631, + "learning_rate": 1.040318257956449e-05, + "loss": 0.18794141769409178, + "step": 236500 + }, + { + "epoch": 79.26300360164169, + "grad_norm": 0.5243064165115356, + "learning_rate": 1.038643216080402e-05, + "loss": 0.18816068649291992, + "step": 236600 + }, + { + "epoch": 79.29650724516291, + "grad_norm": 0.607912003993988, + "learning_rate": 1.0369681742043552e-05, + "loss": 0.18687108993530274, + "step": 236700 + }, + { + "epoch": 79.33001088868414, + "grad_norm": 0.5773678421974182, + "learning_rate": 1.0352931323283082e-05, + "loss": 0.18846334457397462, + "step": 236800 + }, + { + "epoch": 79.36351453220537, + "grad_norm": 0.6360297203063965, + "learning_rate": 1.0336180904522613e-05, + "loss": 0.18933845520019532, + "step": 236900 + }, + { + "epoch": 79.39701817572661, + "grad_norm": 0.6809837222099304, + "learning_rate": 1.0319430485762145e-05, + "loss": 0.18878520965576173, + "step": 237000 + }, + { + "epoch": 79.43052181924784, + "grad_norm": 0.6212404370307922, + "learning_rate": 1.0302680067001676e-05, + "loss": 0.18835649490356446, + "step": 237100 + }, + { + "epoch": 79.46402546276907, + "grad_norm": 0.5026853680610657, + "learning_rate": 1.0285929648241206e-05, + "loss": 0.18797584533691405, + "step": 237200 + }, + { + "epoch": 79.49752910629032, + "grad_norm": 0.5610924959182739, + "learning_rate": 1.0269179229480738e-05, + "loss": 0.18864788055419923, + "step": 237300 + }, + { + "epoch": 79.53103274981154, + "grad_norm": 0.5812443494796753, + "learning_rate": 1.0252428810720269e-05, + "loss": 0.18857982635498047, + "step": 237400 + }, + { + "epoch": 79.56453639333277, + "grad_norm": 0.5942834615707397, + "learning_rate": 1.02356783919598e-05, + "loss": 0.18995513916015624, + "step": 237500 + }, + { + "epoch": 79.598040036854, + "grad_norm": 0.780934751033783, + "learning_rate": 1.021892797319933e-05, + "loss": 0.1898634147644043, + "step": 237600 + }, + { + "epoch": 79.63154368037524, + "grad_norm": 0.6805693507194519, + "learning_rate": 1.0202177554438862e-05, + "loss": 0.18985597610473634, + "step": 237700 + }, + { + "epoch": 79.66504732389647, + "grad_norm": 0.6133860349655151, + "learning_rate": 1.0185427135678393e-05, + "loss": 0.18866056442260742, + "step": 237800 + }, + { + "epoch": 79.6985509674177, + "grad_norm": 0.509017825126648, + "learning_rate": 1.0168676716917923e-05, + "loss": 0.1894827651977539, + "step": 237900 + }, + { + "epoch": 79.73205461093895, + "grad_norm": 0.7108103036880493, + "learning_rate": 1.0151926298157455e-05, + "loss": 0.18957220077514647, + "step": 238000 + }, + { + "epoch": 79.76555825446017, + "grad_norm": 0.5843678712844849, + "learning_rate": 1.013534338358459e-05, + "loss": 0.1894863700866699, + "step": 238100 + }, + { + "epoch": 79.7990618979814, + "grad_norm": 0.5689200758934021, + "learning_rate": 1.011859296482412e-05, + "loss": 0.189605712890625, + "step": 238200 + }, + { + "epoch": 79.83256554150263, + "grad_norm": 0.5582265257835388, + "learning_rate": 1.010184254606365e-05, + "loss": 0.1899770736694336, + "step": 238300 + }, + { + "epoch": 79.86606918502387, + "grad_norm": 0.7666222453117371, + "learning_rate": 1.0085092127303183e-05, + "loss": 0.19003982543945314, + "step": 238400 + }, + { + "epoch": 79.8995728285451, + "grad_norm": 0.5454803109169006, + "learning_rate": 1.0068341708542713e-05, + "loss": 0.1902810287475586, + "step": 238500 + }, + { + "epoch": 79.93307647206633, + "grad_norm": 0.7217103838920593, + "learning_rate": 1.0051591289782244e-05, + "loss": 0.19129709243774415, + "step": 238600 + }, + { + "epoch": 79.96658011558758, + "grad_norm": 0.5859233140945435, + "learning_rate": 1.0034840871021776e-05, + "loss": 0.19089550018310547, + "step": 238700 + }, + { + "epoch": 80.0, + "grad_norm": 0.7871226072311401, + "learning_rate": 1.0018090452261307e-05, + "loss": 0.19010568618774415, + "step": 238800 + }, + { + "epoch": 80.03350364352123, + "grad_norm": 0.6410444974899292, + "learning_rate": 1.0001340033500837e-05, + "loss": 0.18579286575317383, + "step": 238900 + }, + { + "epoch": 80.06700728704247, + "grad_norm": 0.49249953031539917, + "learning_rate": 9.98458961474037e-06, + "loss": 0.18595710754394532, + "step": 239000 + }, + { + "epoch": 80.1005109305637, + "grad_norm": 0.4707689583301544, + "learning_rate": 9.9678391959799e-06, + "loss": 0.1854451370239258, + "step": 239100 + }, + { + "epoch": 80.13401457408493, + "grad_norm": 0.6049455404281616, + "learning_rate": 9.95108877721943e-06, + "loss": 0.18605972290039063, + "step": 239200 + }, + { + "epoch": 80.16751821760616, + "grad_norm": 0.5813843011856079, + "learning_rate": 9.934338358458963e-06, + "loss": 0.18595891952514648, + "step": 239300 + }, + { + "epoch": 80.2010218611274, + "grad_norm": 0.6518586277961731, + "learning_rate": 9.917587939698493e-06, + "loss": 0.18725431442260743, + "step": 239400 + }, + { + "epoch": 80.23452550464863, + "grad_norm": 0.7379871010780334, + "learning_rate": 9.900837520938024e-06, + "loss": 0.18730653762817384, + "step": 239500 + }, + { + "epoch": 80.26802914816986, + "grad_norm": 0.7457312941551208, + "learning_rate": 9.884087102177556e-06, + "loss": 0.18689844131469727, + "step": 239600 + }, + { + "epoch": 80.3015327916911, + "grad_norm": 0.8484863638877869, + "learning_rate": 9.867336683417086e-06, + "loss": 0.18761758804321288, + "step": 239700 + }, + { + "epoch": 80.33503643521233, + "grad_norm": 0.6102080941200256, + "learning_rate": 9.850586264656617e-06, + "loss": 0.18688488006591797, + "step": 239800 + }, + { + "epoch": 80.36854007873356, + "grad_norm": 0.6622928380966187, + "learning_rate": 9.833835845896149e-06, + "loss": 0.18741252899169922, + "step": 239900 + }, + { + "epoch": 80.40204372225479, + "grad_norm": 0.5935907959938049, + "learning_rate": 9.81708542713568e-06, + "loss": 0.1878078269958496, + "step": 240000 + }, + { + "epoch": 80.43554736577603, + "grad_norm": 0.6074280142784119, + "learning_rate": 9.800502512562816e-06, + "loss": 0.18737226486206054, + "step": 240100 + }, + { + "epoch": 80.46905100929726, + "grad_norm": 0.6889368295669556, + "learning_rate": 9.783752093802346e-06, + "loss": 0.18822650909423827, + "step": 240200 + }, + { + "epoch": 80.50255465281849, + "grad_norm": 0.5317627787590027, + "learning_rate": 9.767001675041877e-06, + "loss": 0.1878480339050293, + "step": 240300 + }, + { + "epoch": 80.53605829633973, + "grad_norm": 0.5207783579826355, + "learning_rate": 9.750251256281407e-06, + "loss": 0.1882781219482422, + "step": 240400 + }, + { + "epoch": 80.56956193986096, + "grad_norm": 0.6113369464874268, + "learning_rate": 9.733500837520938e-06, + "loss": 0.1896601676940918, + "step": 240500 + }, + { + "epoch": 80.60306558338219, + "grad_norm": 0.6112746000289917, + "learning_rate": 9.716750418760468e-06, + "loss": 0.18931255340576172, + "step": 240600 + }, + { + "epoch": 80.63656922690343, + "grad_norm": 0.5978585481643677, + "learning_rate": 9.7e-06, + "loss": 0.18961137771606446, + "step": 240700 + }, + { + "epoch": 80.67007287042466, + "grad_norm": 0.5999939441680908, + "learning_rate": 9.68324958123953e-06, + "loss": 0.1893038558959961, + "step": 240800 + }, + { + "epoch": 80.70357651394589, + "grad_norm": 0.7477551698684692, + "learning_rate": 9.666499162479061e-06, + "loss": 0.19065048217773437, + "step": 240900 + }, + { + "epoch": 80.73708015746712, + "grad_norm": 0.49969878792762756, + "learning_rate": 9.649748743718594e-06, + "loss": 0.18887239456176758, + "step": 241000 + }, + { + "epoch": 80.77058380098836, + "grad_norm": 0.6229384541511536, + "learning_rate": 9.632998324958124e-06, + "loss": 0.18931352615356445, + "step": 241100 + }, + { + "epoch": 80.80408744450959, + "grad_norm": 0.5331135988235474, + "learning_rate": 9.616247906197655e-06, + "loss": 0.18917076110839845, + "step": 241200 + }, + { + "epoch": 80.83759108803082, + "grad_norm": 0.5475077629089355, + "learning_rate": 9.599497487437187e-06, + "loss": 0.18999635696411132, + "step": 241300 + }, + { + "epoch": 80.87109473155206, + "grad_norm": 0.6110318303108215, + "learning_rate": 9.582747068676717e-06, + "loss": 0.18988681793212892, + "step": 241400 + }, + { + "epoch": 80.90459837507329, + "grad_norm": 0.6834789514541626, + "learning_rate": 9.565996649916248e-06, + "loss": 0.18972234725952147, + "step": 241500 + }, + { + "epoch": 80.93810201859452, + "grad_norm": 0.5601489543914795, + "learning_rate": 9.54924623115578e-06, + "loss": 0.1901242446899414, + "step": 241600 + }, + { + "epoch": 80.97160566211575, + "grad_norm": 0.5707966685295105, + "learning_rate": 9.53249581239531e-06, + "loss": 0.19092308044433592, + "step": 241700 + }, + { + "epoch": 81.00502554652819, + "grad_norm": 0.6027684211730957, + "learning_rate": 9.515745393634841e-06, + "loss": 0.18986186981201172, + "step": 241800 + }, + { + "epoch": 81.03852919004942, + "grad_norm": 0.43851712346076965, + "learning_rate": 9.498994974874373e-06, + "loss": 0.1864785385131836, + "step": 241900 + }, + { + "epoch": 81.07203283357065, + "grad_norm": 0.5600922107696533, + "learning_rate": 9.482244556113904e-06, + "loss": 0.18667762756347656, + "step": 242000 + }, + { + "epoch": 81.10553647709189, + "grad_norm": 0.639335036277771, + "learning_rate": 9.46566164154104e-06, + "loss": 0.18642004013061522, + "step": 242100 + }, + { + "epoch": 81.13904012061312, + "grad_norm": 0.6750245690345764, + "learning_rate": 9.44891122278057e-06, + "loss": 0.18629102706909179, + "step": 242200 + }, + { + "epoch": 81.17254376413435, + "grad_norm": 0.5700585842132568, + "learning_rate": 9.4321608040201e-06, + "loss": 0.18613723754882813, + "step": 242300 + }, + { + "epoch": 81.20604740765559, + "grad_norm": 0.6852511167526245, + "learning_rate": 9.415410385259631e-06, + "loss": 0.18597820281982422, + "step": 242400 + }, + { + "epoch": 81.23955105117682, + "grad_norm": 0.5194628834724426, + "learning_rate": 9.398659966499162e-06, + "loss": 0.18753597259521484, + "step": 242500 + }, + { + "epoch": 81.27305469469805, + "grad_norm": 0.6448808312416077, + "learning_rate": 9.381909547738694e-06, + "loss": 0.18645841598510743, + "step": 242600 + }, + { + "epoch": 81.30655833821928, + "grad_norm": 0.4830906391143799, + "learning_rate": 9.365159128978224e-06, + "loss": 0.18598066329956053, + "step": 242700 + }, + { + "epoch": 81.34006198174052, + "grad_norm": 0.5368765592575073, + "learning_rate": 9.348408710217755e-06, + "loss": 0.18756242752075195, + "step": 242800 + }, + { + "epoch": 81.37356562526175, + "grad_norm": 0.7084921598434448, + "learning_rate": 9.331658291457287e-06, + "loss": 0.18713598251342772, + "step": 242900 + }, + { + "epoch": 81.40706926878298, + "grad_norm": 0.5406467318534851, + "learning_rate": 9.314907872696818e-06, + "loss": 0.18767911911010743, + "step": 243000 + }, + { + "epoch": 81.44057291230422, + "grad_norm": 0.6811279654502869, + "learning_rate": 9.298157453936348e-06, + "loss": 0.18792261123657228, + "step": 243100 + }, + { + "epoch": 81.47407655582545, + "grad_norm": 0.6793702244758606, + "learning_rate": 9.281407035175879e-06, + "loss": 0.18808685302734374, + "step": 243200 + }, + { + "epoch": 81.50758019934668, + "grad_norm": 0.5923267006874084, + "learning_rate": 9.264656616415411e-06, + "loss": 0.1878205108642578, + "step": 243300 + }, + { + "epoch": 81.5410838428679, + "grad_norm": 0.5069772005081177, + "learning_rate": 9.247906197654941e-06, + "loss": 0.18798334121704102, + "step": 243400 + }, + { + "epoch": 81.57458748638915, + "grad_norm": 0.6971927881240845, + "learning_rate": 9.231155778894472e-06, + "loss": 0.18779460906982423, + "step": 243500 + }, + { + "epoch": 81.60809112991038, + "grad_norm": 0.4844462275505066, + "learning_rate": 9.214405360134004e-06, + "loss": 0.1885888671875, + "step": 243600 + }, + { + "epoch": 81.6415947734316, + "grad_norm": 0.6287949085235596, + "learning_rate": 9.197654941373535e-06, + "loss": 0.18853179931640626, + "step": 243700 + }, + { + "epoch": 81.67509841695285, + "grad_norm": 0.5208948254585266, + "learning_rate": 9.180904522613065e-06, + "loss": 0.18876758575439453, + "step": 243800 + }, + { + "epoch": 81.70860206047408, + "grad_norm": 0.559596598148346, + "learning_rate": 9.164154103852597e-06, + "loss": 0.18983572006225585, + "step": 243900 + }, + { + "epoch": 81.7421057039953, + "grad_norm": 0.6286110877990723, + "learning_rate": 9.147403685092128e-06, + "loss": 0.18990949630737305, + "step": 244000 + }, + { + "epoch": 81.77560934751654, + "grad_norm": 0.6826990246772766, + "learning_rate": 9.130820770519264e-06, + "loss": 0.18897735595703125, + "step": 244100 + }, + { + "epoch": 81.80911299103778, + "grad_norm": 0.6137732267379761, + "learning_rate": 9.114070351758794e-06, + "loss": 0.1890528106689453, + "step": 244200 + }, + { + "epoch": 81.84261663455901, + "grad_norm": 0.6284852027893066, + "learning_rate": 9.097319932998327e-06, + "loss": 0.18912405014038086, + "step": 244300 + }, + { + "epoch": 81.87612027808024, + "grad_norm": 0.5774878859519958, + "learning_rate": 9.080569514237857e-06, + "loss": 0.18894084930419922, + "step": 244400 + }, + { + "epoch": 81.90962392160148, + "grad_norm": 0.6259322166442871, + "learning_rate": 9.063819095477388e-06, + "loss": 0.1898725700378418, + "step": 244500 + }, + { + "epoch": 81.94312756512271, + "grad_norm": 0.5645041465759277, + "learning_rate": 9.047068676716918e-06, + "loss": 0.18911539077758788, + "step": 244600 + }, + { + "epoch": 81.97663120864394, + "grad_norm": 0.5545311570167542, + "learning_rate": 9.030318257956449e-06, + "loss": 0.18874195098876953, + "step": 244700 + }, + { + "epoch": 82.01005109305638, + "grad_norm": 0.5122572779655457, + "learning_rate": 9.01356783919598e-06, + "loss": 0.1884039306640625, + "step": 244800 + }, + { + "epoch": 82.0435547365776, + "grad_norm": 0.5515125393867493, + "learning_rate": 8.996817420435511e-06, + "loss": 0.18567270278930664, + "step": 244900 + }, + { + "epoch": 82.07705838009883, + "grad_norm": 0.6537274122238159, + "learning_rate": 8.980067001675042e-06, + "loss": 0.18508878707885743, + "step": 245000 + }, + { + "epoch": 82.11056202362006, + "grad_norm": 0.5276825428009033, + "learning_rate": 8.963316582914572e-06, + "loss": 0.18604862213134765, + "step": 245100 + }, + { + "epoch": 82.1440656671413, + "grad_norm": 0.5946404933929443, + "learning_rate": 8.946566164154105e-06, + "loss": 0.18516014099121095, + "step": 245200 + }, + { + "epoch": 82.17756931066253, + "grad_norm": 0.5449401140213013, + "learning_rate": 8.929815745393635e-06, + "loss": 0.18614362716674804, + "step": 245300 + }, + { + "epoch": 82.21107295418376, + "grad_norm": 0.5503102540969849, + "learning_rate": 8.913065326633166e-06, + "loss": 0.18611763000488282, + "step": 245400 + }, + { + "epoch": 82.244576597705, + "grad_norm": 0.6990886330604553, + "learning_rate": 8.896314907872698e-06, + "loss": 0.1872243881225586, + "step": 245500 + }, + { + "epoch": 82.27808024122623, + "grad_norm": 0.5072383880615234, + "learning_rate": 8.879564489112228e-06, + "loss": 0.1860810661315918, + "step": 245600 + }, + { + "epoch": 82.31158388474746, + "grad_norm": 0.5636463165283203, + "learning_rate": 8.862814070351759e-06, + "loss": 0.18700706481933593, + "step": 245700 + }, + { + "epoch": 82.34508752826869, + "grad_norm": 0.5329198837280273, + "learning_rate": 8.84606365159129e-06, + "loss": 0.18637537002563476, + "step": 245800 + }, + { + "epoch": 82.37859117178994, + "grad_norm": 0.7562859654426575, + "learning_rate": 8.829313232830822e-06, + "loss": 0.1869906997680664, + "step": 245900 + }, + { + "epoch": 82.41209481531116, + "grad_norm": 0.642741322517395, + "learning_rate": 8.812562814070352e-06, + "loss": 0.18656137466430664, + "step": 246000 + }, + { + "epoch": 82.4455984588324, + "grad_norm": 0.62885582447052, + "learning_rate": 8.795979899497488e-06, + "loss": 0.18802295684814452, + "step": 246100 + }, + { + "epoch": 82.47910210235364, + "grad_norm": 0.5594859719276428, + "learning_rate": 8.779229480737019e-06, + "loss": 0.18712615966796875, + "step": 246200 + }, + { + "epoch": 82.51260574587486, + "grad_norm": 0.6333134174346924, + "learning_rate": 8.76247906197655e-06, + "loss": 0.18846635818481444, + "step": 246300 + }, + { + "epoch": 82.5461093893961, + "grad_norm": 0.6623076796531677, + "learning_rate": 8.745728643216081e-06, + "loss": 0.1880592155456543, + "step": 246400 + }, + { + "epoch": 82.57961303291734, + "grad_norm": 0.5541040301322937, + "learning_rate": 8.728978224455612e-06, + "loss": 0.1872352409362793, + "step": 246500 + }, + { + "epoch": 82.61311667643857, + "grad_norm": 0.5087713599205017, + "learning_rate": 8.712227805695142e-06, + "loss": 0.1888579559326172, + "step": 246600 + }, + { + "epoch": 82.6466203199598, + "grad_norm": 0.5055890679359436, + "learning_rate": 8.695477386934673e-06, + "loss": 0.18866750717163086, + "step": 246700 + }, + { + "epoch": 82.68012396348102, + "grad_norm": 0.4937209188938141, + "learning_rate": 8.678726968174205e-06, + "loss": 0.18850959777832033, + "step": 246800 + }, + { + "epoch": 82.71362760700227, + "grad_norm": 0.6762095093727112, + "learning_rate": 8.661976549413736e-06, + "loss": 0.1879727554321289, + "step": 246900 + }, + { + "epoch": 82.7471312505235, + "grad_norm": 0.6171196699142456, + "learning_rate": 8.645226130653266e-06, + "loss": 0.18954423904418946, + "step": 247000 + }, + { + "epoch": 82.78063489404472, + "grad_norm": 0.6400672197341919, + "learning_rate": 8.628475711892797e-06, + "loss": 0.18838544845581054, + "step": 247100 + }, + { + "epoch": 82.81413853756597, + "grad_norm": 0.5874627828598022, + "learning_rate": 8.611725293132329e-06, + "loss": 0.18863496780395508, + "step": 247200 + }, + { + "epoch": 82.8476421810872, + "grad_norm": 0.6051297187805176, + "learning_rate": 8.59497487437186e-06, + "loss": 0.1890684509277344, + "step": 247300 + }, + { + "epoch": 82.88114582460842, + "grad_norm": 0.6647644639015198, + "learning_rate": 8.57822445561139e-06, + "loss": 0.18968358993530274, + "step": 247400 + }, + { + "epoch": 82.91464946812965, + "grad_norm": 0.6016401648521423, + "learning_rate": 8.561474036850922e-06, + "loss": 0.18822206497192384, + "step": 247500 + }, + { + "epoch": 82.9481531116509, + "grad_norm": 0.5627951622009277, + "learning_rate": 8.544723618090453e-06, + "loss": 0.18971824645996094, + "step": 247600 + }, + { + "epoch": 82.98165675517212, + "grad_norm": 0.6368587613105774, + "learning_rate": 8.527973199329983e-06, + "loss": 0.18886089324951172, + "step": 247700 + }, + { + "epoch": 83.01507663958455, + "grad_norm": 0.5568286180496216, + "learning_rate": 8.511222780569515e-06, + "loss": 0.18792394638061524, + "step": 247800 + }, + { + "epoch": 83.04858028310579, + "grad_norm": 0.750466525554657, + "learning_rate": 8.494472361809046e-06, + "loss": 0.18552347183227538, + "step": 247900 + }, + { + "epoch": 83.08208392662702, + "grad_norm": 0.5758387446403503, + "learning_rate": 8.477721943048576e-06, + "loss": 0.18548595428466796, + "step": 248000 + }, + { + "epoch": 83.11558757014825, + "grad_norm": 0.6715633273124695, + "learning_rate": 8.461139028475712e-06, + "loss": 0.1856230354309082, + "step": 248100 + }, + { + "epoch": 83.1490912136695, + "grad_norm": 0.6111332178115845, + "learning_rate": 8.444388609715244e-06, + "loss": 0.1855340576171875, + "step": 248200 + }, + { + "epoch": 83.18259485719072, + "grad_norm": 0.5966615676879883, + "learning_rate": 8.427638190954775e-06, + "loss": 0.18604198455810547, + "step": 248300 + }, + { + "epoch": 83.21609850071195, + "grad_norm": 0.612937331199646, + "learning_rate": 8.410887772194305e-06, + "loss": 0.18526275634765624, + "step": 248400 + }, + { + "epoch": 83.24960214423318, + "grad_norm": 0.6167147159576416, + "learning_rate": 8.394137353433838e-06, + "loss": 0.18677328109741212, + "step": 248500 + }, + { + "epoch": 83.28310578775442, + "grad_norm": 0.5629482865333557, + "learning_rate": 8.377386934673368e-06, + "loss": 0.18594594955444335, + "step": 248600 + }, + { + "epoch": 83.31660943127565, + "grad_norm": 0.5856372714042664, + "learning_rate": 8.360636515912899e-06, + "loss": 0.18747835159301757, + "step": 248700 + }, + { + "epoch": 83.35011307479688, + "grad_norm": 0.6533538103103638, + "learning_rate": 8.34388609715243e-06, + "loss": 0.18700716018676758, + "step": 248800 + }, + { + "epoch": 83.38361671831812, + "grad_norm": 0.5694628953933716, + "learning_rate": 8.32713567839196e-06, + "loss": 0.1867087936401367, + "step": 248900 + }, + { + "epoch": 83.41712036183935, + "grad_norm": 0.7100234031677246, + "learning_rate": 8.31038525963149e-06, + "loss": 0.18678861618041992, + "step": 249000 + }, + { + "epoch": 83.45062400536058, + "grad_norm": 0.528014063835144, + "learning_rate": 8.29363484087102e-06, + "loss": 0.18693504333496094, + "step": 249100 + }, + { + "epoch": 83.48412764888181, + "grad_norm": 0.6683924198150635, + "learning_rate": 8.276884422110553e-06, + "loss": 0.18630191802978516, + "step": 249200 + }, + { + "epoch": 83.51763129240305, + "grad_norm": 0.6140015125274658, + "learning_rate": 8.260134003350083e-06, + "loss": 0.18822259902954103, + "step": 249300 + }, + { + "epoch": 83.55113493592428, + "grad_norm": 0.6404419541358948, + "learning_rate": 8.243383584589614e-06, + "loss": 0.18734935760498048, + "step": 249400 + }, + { + "epoch": 83.58463857944551, + "grad_norm": 0.5253821611404419, + "learning_rate": 8.226633165829146e-06, + "loss": 0.18713035583496093, + "step": 249500 + }, + { + "epoch": 83.61814222296675, + "grad_norm": 0.592951774597168, + "learning_rate": 8.209882747068677e-06, + "loss": 0.1879220962524414, + "step": 249600 + }, + { + "epoch": 83.65164586648798, + "grad_norm": 0.6963580846786499, + "learning_rate": 8.193132328308207e-06, + "loss": 0.18711292266845703, + "step": 249700 + }, + { + "epoch": 83.68514951000921, + "grad_norm": 0.5152623653411865, + "learning_rate": 8.17638190954774e-06, + "loss": 0.18781234741210937, + "step": 249800 + }, + { + "epoch": 83.71865315353044, + "grad_norm": 0.6002013087272644, + "learning_rate": 8.15963149078727e-06, + "loss": 0.18788719177246094, + "step": 249900 + }, + { + "epoch": 83.75215679705168, + "grad_norm": 0.7012782692909241, + "learning_rate": 8.1428810720268e-06, + "loss": 0.1878870391845703, + "step": 250000 + }, + { + "epoch": 83.78566044057291, + "grad_norm": 0.5836089849472046, + "learning_rate": 8.126130653266333e-06, + "loss": 0.18869754791259766, + "step": 250100 + }, + { + "epoch": 83.81916408409414, + "grad_norm": 0.5142480134963989, + "learning_rate": 8.109547738693469e-06, + "loss": 0.18811010360717773, + "step": 250200 + }, + { + "epoch": 83.85266772761538, + "grad_norm": 0.5308085083961487, + "learning_rate": 8.092797319932999e-06, + "loss": 0.18894163131713868, + "step": 250300 + }, + { + "epoch": 83.88617137113661, + "grad_norm": 0.5777791142463684, + "learning_rate": 8.07604690117253e-06, + "loss": 0.18823001861572267, + "step": 250400 + }, + { + "epoch": 83.91967501465784, + "grad_norm": 0.5273643732070923, + "learning_rate": 8.059296482412062e-06, + "loss": 0.18896015167236327, + "step": 250500 + }, + { + "epoch": 83.95317865817908, + "grad_norm": 0.5124455094337463, + "learning_rate": 8.042546063651592e-06, + "loss": 0.18926893234252928, + "step": 250600 + }, + { + "epoch": 83.98668230170031, + "grad_norm": 0.6289759278297424, + "learning_rate": 8.025795644891123e-06, + "loss": 0.18870933532714843, + "step": 250700 + }, + { + "epoch": 84.02010218611274, + "grad_norm": 0.6009929776191711, + "learning_rate": 8.009045226130653e-06, + "loss": 0.1856600570678711, + "step": 250800 + }, + { + "epoch": 84.05360582963397, + "grad_norm": 0.6856387257575989, + "learning_rate": 7.992294807370186e-06, + "loss": 0.18487995147705077, + "step": 250900 + }, + { + "epoch": 84.08710947315521, + "grad_norm": 0.5233118534088135, + "learning_rate": 7.975544388609716e-06, + "loss": 0.18613203048706053, + "step": 251000 + }, + { + "epoch": 84.12061311667644, + "grad_norm": 0.6100374460220337, + "learning_rate": 7.958793969849247e-06, + "loss": 0.18532003402709962, + "step": 251100 + }, + { + "epoch": 84.15411676019767, + "grad_norm": 0.5868030786514282, + "learning_rate": 7.942043551088777e-06, + "loss": 0.18455961227416992, + "step": 251200 + }, + { + "epoch": 84.18762040371891, + "grad_norm": 0.6049501299858093, + "learning_rate": 7.925293132328308e-06, + "loss": 0.1862618064880371, + "step": 251300 + }, + { + "epoch": 84.22112404724014, + "grad_norm": 0.6399788856506348, + "learning_rate": 7.90854271356784e-06, + "loss": 0.18547624588012696, + "step": 251400 + }, + { + "epoch": 84.25462769076137, + "grad_norm": 0.6293793320655823, + "learning_rate": 7.89179229480737e-06, + "loss": 0.18608217239379882, + "step": 251500 + }, + { + "epoch": 84.2881313342826, + "grad_norm": 0.5287208557128906, + "learning_rate": 7.875041876046901e-06, + "loss": 0.18579626083374023, + "step": 251600 + }, + { + "epoch": 84.32163497780384, + "grad_norm": 0.5985024571418762, + "learning_rate": 7.858291457286431e-06, + "loss": 0.18519624710083007, + "step": 251700 + }, + { + "epoch": 84.35513862132507, + "grad_norm": 0.594869077205658, + "learning_rate": 7.841541038525964e-06, + "loss": 0.18641794204711915, + "step": 251800 + }, + { + "epoch": 84.3886422648463, + "grad_norm": 0.6310123801231384, + "learning_rate": 7.824790619765494e-06, + "loss": 0.18554765701293946, + "step": 251900 + }, + { + "epoch": 84.42214590836754, + "grad_norm": 0.6834468841552734, + "learning_rate": 7.808040201005025e-06, + "loss": 0.18662025451660155, + "step": 252000 + }, + { + "epoch": 84.45564955188877, + "grad_norm": 0.5541797280311584, + "learning_rate": 7.791289782244557e-06, + "loss": 0.18684375762939454, + "step": 252100 + }, + { + "epoch": 84.48915319541, + "grad_norm": 0.6487085223197937, + "learning_rate": 7.774706867671693e-06, + "loss": 0.18705474853515625, + "step": 252200 + }, + { + "epoch": 84.52265683893124, + "grad_norm": 0.4895366430282593, + "learning_rate": 7.757956448911223e-06, + "loss": 0.18700340270996094, + "step": 252300 + }, + { + "epoch": 84.55616048245247, + "grad_norm": 0.5531443357467651, + "learning_rate": 7.741206030150754e-06, + "loss": 0.18807411193847656, + "step": 252400 + }, + { + "epoch": 84.5896641259737, + "grad_norm": 0.5510408878326416, + "learning_rate": 7.724455611390286e-06, + "loss": 0.18698272705078126, + "step": 252500 + }, + { + "epoch": 84.62316776949493, + "grad_norm": 0.6708593964576721, + "learning_rate": 7.707705192629817e-06, + "loss": 0.1877949905395508, + "step": 252600 + }, + { + "epoch": 84.65667141301617, + "grad_norm": 0.5115278363227844, + "learning_rate": 7.690954773869347e-06, + "loss": 0.1879779052734375, + "step": 252700 + }, + { + "epoch": 84.6901750565374, + "grad_norm": 0.6127870082855225, + "learning_rate": 7.67420435510888e-06, + "loss": 0.18695253372192383, + "step": 252800 + }, + { + "epoch": 84.72367870005863, + "grad_norm": 0.7335399389266968, + "learning_rate": 7.65745393634841e-06, + "loss": 0.18774644851684572, + "step": 252900 + }, + { + "epoch": 84.75718234357987, + "grad_norm": 0.5237014293670654, + "learning_rate": 7.64070351758794e-06, + "loss": 0.1880354881286621, + "step": 253000 + }, + { + "epoch": 84.7906859871011, + "grad_norm": 0.5270113348960876, + "learning_rate": 7.623953098827472e-06, + "loss": 0.18749366760253905, + "step": 253100 + }, + { + "epoch": 84.82418963062233, + "grad_norm": 0.6281821727752686, + "learning_rate": 7.607202680067002e-06, + "loss": 0.1876792335510254, + "step": 253200 + }, + { + "epoch": 84.85769327414356, + "grad_norm": 0.5125153064727783, + "learning_rate": 7.590452261306533e-06, + "loss": 0.18819995880126952, + "step": 253300 + }, + { + "epoch": 84.8911969176648, + "grad_norm": 0.5630070567131042, + "learning_rate": 7.573701842546065e-06, + "loss": 0.18900468826293945, + "step": 253400 + }, + { + "epoch": 84.92470056118603, + "grad_norm": 0.551005482673645, + "learning_rate": 7.556951423785595e-06, + "loss": 0.188682861328125, + "step": 253500 + }, + { + "epoch": 84.95820420470726, + "grad_norm": 0.5519696474075317, + "learning_rate": 7.540201005025126e-06, + "loss": 0.18850210189819336, + "step": 253600 + }, + { + "epoch": 84.9917078482285, + "grad_norm": 0.64322829246521, + "learning_rate": 7.523450586264657e-06, + "loss": 0.18925397872924804, + "step": 253700 + }, + { + "epoch": 85.02512773264093, + "grad_norm": 0.569341778755188, + "learning_rate": 7.506700167504188e-06, + "loss": 0.18594614028930664, + "step": 253800 + }, + { + "epoch": 85.05863137616215, + "grad_norm": 0.5993043184280396, + "learning_rate": 7.489949748743718e-06, + "loss": 0.18460994720458984, + "step": 253900 + }, + { + "epoch": 85.0921350196834, + "grad_norm": 0.4627517759799957, + "learning_rate": 7.4731993299832505e-06, + "loss": 0.18417888641357422, + "step": 254000 + }, + { + "epoch": 85.12563866320463, + "grad_norm": 0.5186675190925598, + "learning_rate": 7.456448911222781e-06, + "loss": 0.18561904907226562, + "step": 254100 + }, + { + "epoch": 85.15914230672585, + "grad_norm": 0.6953118443489075, + "learning_rate": 7.439865996649917e-06, + "loss": 0.18514400482177734, + "step": 254200 + }, + { + "epoch": 85.19264595024708, + "grad_norm": 0.507422685623169, + "learning_rate": 7.4231155778894475e-06, + "loss": 0.18599794387817384, + "step": 254300 + }, + { + "epoch": 85.22614959376833, + "grad_norm": 0.5243151783943176, + "learning_rate": 7.40636515912898e-06, + "loss": 0.18585119247436524, + "step": 254400 + }, + { + "epoch": 85.25965323728956, + "grad_norm": 0.5282275676727295, + "learning_rate": 7.38961474036851e-06, + "loss": 0.18537141799926757, + "step": 254500 + }, + { + "epoch": 85.29315688081078, + "grad_norm": 0.8133143782615662, + "learning_rate": 7.372864321608041e-06, + "loss": 0.18567739486694335, + "step": 254600 + }, + { + "epoch": 85.32666052433203, + "grad_norm": 0.5648775100708008, + "learning_rate": 7.356113902847571e-06, + "loss": 0.1864516830444336, + "step": 254700 + }, + { + "epoch": 85.36016416785326, + "grad_norm": 0.6094685792922974, + "learning_rate": 7.339363484087103e-06, + "loss": 0.1870036506652832, + "step": 254800 + }, + { + "epoch": 85.39366781137448, + "grad_norm": 0.5950913429260254, + "learning_rate": 7.322613065326633e-06, + "loss": 0.18513656616210938, + "step": 254900 + }, + { + "epoch": 85.42717145489571, + "grad_norm": 0.5510959029197693, + "learning_rate": 7.305862646566164e-06, + "loss": 0.18647272109985352, + "step": 255000 + }, + { + "epoch": 85.46067509841696, + "grad_norm": 0.7267409563064575, + "learning_rate": 7.289112227805696e-06, + "loss": 0.1857898712158203, + "step": 255100 + }, + { + "epoch": 85.49417874193819, + "grad_norm": 0.45163479447364807, + "learning_rate": 7.272361809045226e-06, + "loss": 0.18607278823852538, + "step": 255200 + }, + { + "epoch": 85.52768238545941, + "grad_norm": 0.4602172374725342, + "learning_rate": 7.255611390284757e-06, + "loss": 0.18727361679077148, + "step": 255300 + }, + { + "epoch": 85.56118602898066, + "grad_norm": 0.635420024394989, + "learning_rate": 7.238860971524289e-06, + "loss": 0.18634784698486329, + "step": 255400 + }, + { + "epoch": 85.59468967250189, + "grad_norm": 0.7202033996582031, + "learning_rate": 7.22211055276382e-06, + "loss": 0.18726907730102538, + "step": 255500 + }, + { + "epoch": 85.62819331602311, + "grad_norm": 0.5407751798629761, + "learning_rate": 7.20536013400335e-06, + "loss": 0.18667268753051758, + "step": 255600 + }, + { + "epoch": 85.66169695954434, + "grad_norm": 0.5636637806892395, + "learning_rate": 7.188609715242882e-06, + "loss": 0.18750267028808593, + "step": 255700 + }, + { + "epoch": 85.69520060306559, + "grad_norm": 0.4898567199707031, + "learning_rate": 7.171859296482413e-06, + "loss": 0.1871859359741211, + "step": 255800 + }, + { + "epoch": 85.72870424658682, + "grad_norm": 0.5712749361991882, + "learning_rate": 7.155108877721943e-06, + "loss": 0.18638862609863283, + "step": 255900 + }, + { + "epoch": 85.76220789010804, + "grad_norm": 0.46651607751846313, + "learning_rate": 7.138358458961475e-06, + "loss": 0.18812761306762696, + "step": 256000 + }, + { + "epoch": 85.79571153362929, + "grad_norm": 0.5160844326019287, + "learning_rate": 7.121608040201005e-06, + "loss": 0.18870893478393555, + "step": 256100 + }, + { + "epoch": 85.82921517715052, + "grad_norm": 0.5459625124931335, + "learning_rate": 7.105025125628141e-06, + "loss": 0.18762758255004883, + "step": 256200 + }, + { + "epoch": 85.86271882067174, + "grad_norm": 0.5653469562530518, + "learning_rate": 7.088274706867672e-06, + "loss": 0.18779273986816405, + "step": 256300 + }, + { + "epoch": 85.89622246419299, + "grad_norm": 0.6370869278907776, + "learning_rate": 7.071524288107204e-06, + "loss": 0.18751178741455077, + "step": 256400 + }, + { + "epoch": 85.92972610771422, + "grad_norm": 0.5533131957054138, + "learning_rate": 7.054773869346734e-06, + "loss": 0.1884653663635254, + "step": 256500 + }, + { + "epoch": 85.96322975123545, + "grad_norm": 0.6711784601211548, + "learning_rate": 7.038023450586265e-06, + "loss": 0.18683214187622071, + "step": 256600 + }, + { + "epoch": 85.99673339475667, + "grad_norm": 0.5515606999397278, + "learning_rate": 7.021273031825796e-06, + "loss": 0.1888846969604492, + "step": 256700 + }, + { + "epoch": 86.03015327916911, + "grad_norm": 0.5068252086639404, + "learning_rate": 7.004522613065327e-06, + "loss": 0.18496566772460937, + "step": 256800 + }, + { + "epoch": 86.06365692269034, + "grad_norm": 0.47771593928337097, + "learning_rate": 6.987772194304857e-06, + "loss": 0.184095401763916, + "step": 256900 + }, + { + "epoch": 86.09716056621157, + "grad_norm": 0.47911855578422546, + "learning_rate": 6.9710217755443895e-06, + "loss": 0.18482202529907227, + "step": 257000 + }, + { + "epoch": 86.13066420973281, + "grad_norm": 0.5584221482276917, + "learning_rate": 6.95427135678392e-06, + "loss": 0.18487674713134766, + "step": 257100 + }, + { + "epoch": 86.16416785325404, + "grad_norm": 0.47040486335754395, + "learning_rate": 6.9375209380234505e-06, + "loss": 0.18475263595581054, + "step": 257200 + }, + { + "epoch": 86.19767149677527, + "grad_norm": 0.6007068753242493, + "learning_rate": 6.920770519262981e-06, + "loss": 0.18603864669799805, + "step": 257300 + }, + { + "epoch": 86.23117514029651, + "grad_norm": 0.6026456356048584, + "learning_rate": 6.904020100502513e-06, + "loss": 0.18502817153930665, + "step": 257400 + }, + { + "epoch": 86.26467878381774, + "grad_norm": 0.4999913275241852, + "learning_rate": 6.887269681742044e-06, + "loss": 0.1868625259399414, + "step": 257500 + }, + { + "epoch": 86.29818242733897, + "grad_norm": 0.5064532160758972, + "learning_rate": 6.870519262981574e-06, + "loss": 0.18557401657104491, + "step": 257600 + }, + { + "epoch": 86.3316860708602, + "grad_norm": 0.47061556577682495, + "learning_rate": 6.8537688442211065e-06, + "loss": 0.1852064323425293, + "step": 257700 + }, + { + "epoch": 86.36518971438144, + "grad_norm": 0.5401563048362732, + "learning_rate": 6.837018425460637e-06, + "loss": 0.18540374755859376, + "step": 257800 + }, + { + "epoch": 86.39869335790267, + "grad_norm": 0.46041640639305115, + "learning_rate": 6.8202680067001675e-06, + "loss": 0.18596946716308593, + "step": 257900 + }, + { + "epoch": 86.4321970014239, + "grad_norm": 0.597866415977478, + "learning_rate": 6.803517587939699e-06, + "loss": 0.18595813751220702, + "step": 258000 + }, + { + "epoch": 86.46570064494514, + "grad_norm": 0.6081616878509521, + "learning_rate": 6.786767169179229e-06, + "loss": 0.18565729141235351, + "step": 258100 + }, + { + "epoch": 86.49920428846637, + "grad_norm": 0.5523788332939148, + "learning_rate": 6.770184254606365e-06, + "loss": 0.187158260345459, + "step": 258200 + }, + { + "epoch": 86.5327079319876, + "grad_norm": 0.5216212272644043, + "learning_rate": 6.753433835845896e-06, + "loss": 0.1858182144165039, + "step": 258300 + }, + { + "epoch": 86.56621157550883, + "grad_norm": 0.5936647057533264, + "learning_rate": 6.736683417085428e-06, + "loss": 0.1869313621520996, + "step": 258400 + }, + { + "epoch": 86.59971521903007, + "grad_norm": 0.6182869672775269, + "learning_rate": 6.7199329983249586e-06, + "loss": 0.18541063308715822, + "step": 258500 + }, + { + "epoch": 86.6332188625513, + "grad_norm": 0.5022922158241272, + "learning_rate": 6.703182579564489e-06, + "loss": 0.18641475677490235, + "step": 258600 + }, + { + "epoch": 86.66672250607253, + "grad_norm": 0.5892537832260132, + "learning_rate": 6.686432160804021e-06, + "loss": 0.1863780975341797, + "step": 258700 + }, + { + "epoch": 86.70022614959377, + "grad_norm": 0.6023449301719666, + "learning_rate": 6.669681742043552e-06, + "loss": 0.18697059631347657, + "step": 258800 + }, + { + "epoch": 86.733729793115, + "grad_norm": 0.4677959680557251, + "learning_rate": 6.652931323283082e-06, + "loss": 0.1872576904296875, + "step": 258900 + }, + { + "epoch": 86.76723343663623, + "grad_norm": 0.5693555474281311, + "learning_rate": 6.636180904522614e-06, + "loss": 0.18713676452636718, + "step": 259000 + }, + { + "epoch": 86.80073708015746, + "grad_norm": 0.6497491598129272, + "learning_rate": 6.619430485762144e-06, + "loss": 0.1870942497253418, + "step": 259100 + }, + { + "epoch": 86.8342407236787, + "grad_norm": 0.548832356929779, + "learning_rate": 6.602680067001675e-06, + "loss": 0.18688385009765626, + "step": 259200 + }, + { + "epoch": 86.86774436719993, + "grad_norm": 0.596001923084259, + "learning_rate": 6.585929648241207e-06, + "loss": 0.1876131248474121, + "step": 259300 + }, + { + "epoch": 86.90124801072116, + "grad_norm": 0.4879089891910553, + "learning_rate": 6.5691792294807374e-06, + "loss": 0.18763301849365235, + "step": 259400 + }, + { + "epoch": 86.9347516542424, + "grad_norm": 0.637677013874054, + "learning_rate": 6.552428810720268e-06, + "loss": 0.18786365509033204, + "step": 259500 + }, + { + "epoch": 86.96825529776363, + "grad_norm": 0.6771053671836853, + "learning_rate": 6.5356783919598e-06, + "loss": 0.18699560165405274, + "step": 259600 + }, + { + "epoch": 87.00167518217606, + "grad_norm": 0.4932768940925598, + "learning_rate": 6.518927973199331e-06, + "loss": 0.18727890014648438, + "step": 259700 + }, + { + "epoch": 87.0351788256973, + "grad_norm": 0.5554237961769104, + "learning_rate": 6.502177554438861e-06, + "loss": 0.18363922119140624, + "step": 259800 + }, + { + "epoch": 87.06868246921853, + "grad_norm": 0.49361878633499146, + "learning_rate": 6.485427135678392e-06, + "loss": 0.18403356552124023, + "step": 259900 + }, + { + "epoch": 87.10218611273976, + "grad_norm": 0.5164247155189514, + "learning_rate": 6.468676716917924e-06, + "loss": 0.1847250556945801, + "step": 260000 + }, + { + "epoch": 87.13568975626099, + "grad_norm": 0.6231299638748169, + "learning_rate": 6.4519262981574544e-06, + "loss": 0.18410905838012695, + "step": 260100 + }, + { + "epoch": 87.16919339978223, + "grad_norm": 0.510552167892456, + "learning_rate": 6.4353433835845895e-06, + "loss": 0.18483367919921875, + "step": 260200 + }, + { + "epoch": 87.20269704330346, + "grad_norm": 0.5737383961677551, + "learning_rate": 6.41859296482412e-06, + "loss": 0.18470308303833008, + "step": 260300 + }, + { + "epoch": 87.23620068682469, + "grad_norm": 0.5129623413085938, + "learning_rate": 6.401842546063652e-06, + "loss": 0.18547887802124025, + "step": 260400 + }, + { + "epoch": 87.26970433034593, + "grad_norm": 0.6173266172409058, + "learning_rate": 6.385092127303183e-06, + "loss": 0.18598060607910155, + "step": 260500 + }, + { + "epoch": 87.30320797386716, + "grad_norm": 0.544044554233551, + "learning_rate": 6.368341708542713e-06, + "loss": 0.18537967681884765, + "step": 260600 + }, + { + "epoch": 87.33671161738839, + "grad_norm": 0.5292858481407166, + "learning_rate": 6.3515912897822455e-06, + "loss": 0.18521123886108398, + "step": 260700 + }, + { + "epoch": 87.37021526090962, + "grad_norm": 0.594588041305542, + "learning_rate": 6.334840871021776e-06, + "loss": 0.18591339111328126, + "step": 260800 + }, + { + "epoch": 87.40371890443086, + "grad_norm": 0.5692018270492554, + "learning_rate": 6.3180904522613065e-06, + "loss": 0.1846309471130371, + "step": 260900 + }, + { + "epoch": 87.43722254795209, + "grad_norm": 0.6212311387062073, + "learning_rate": 6.301340033500838e-06, + "loss": 0.18584171295166016, + "step": 261000 + }, + { + "epoch": 87.47072619147332, + "grad_norm": 0.6049195528030396, + "learning_rate": 6.284589614740368e-06, + "loss": 0.1861904716491699, + "step": 261100 + }, + { + "epoch": 87.50422983499456, + "grad_norm": 0.5650988221168518, + "learning_rate": 6.2678391959799e-06, + "loss": 0.18642744064331054, + "step": 261200 + }, + { + "epoch": 87.53773347851579, + "grad_norm": 0.6198245286941528, + "learning_rate": 6.251088777219431e-06, + "loss": 0.1867201805114746, + "step": 261300 + }, + { + "epoch": 87.57123712203702, + "grad_norm": 0.6500935554504395, + "learning_rate": 6.234338358458962e-06, + "loss": 0.1860578727722168, + "step": 261400 + }, + { + "epoch": 87.60474076555825, + "grad_norm": 0.5311732888221741, + "learning_rate": 6.217587939698493e-06, + "loss": 0.18565948486328124, + "step": 261500 + }, + { + "epoch": 87.63824440907949, + "grad_norm": 0.736834704875946, + "learning_rate": 6.2008375209380235e-06, + "loss": 0.18650445938110352, + "step": 261600 + }, + { + "epoch": 87.67174805260072, + "grad_norm": 0.567558228969574, + "learning_rate": 6.184087102177555e-06, + "loss": 0.18658845901489257, + "step": 261700 + }, + { + "epoch": 87.70525169612195, + "grad_norm": 0.4581720232963562, + "learning_rate": 6.167336683417086e-06, + "loss": 0.18680118560791015, + "step": 261800 + }, + { + "epoch": 87.73875533964319, + "grad_norm": 0.6665058135986328, + "learning_rate": 6.150586264656617e-06, + "loss": 0.18713037490844728, + "step": 261900 + }, + { + "epoch": 87.77225898316442, + "grad_norm": 0.5811572670936584, + "learning_rate": 6.133835845896148e-06, + "loss": 0.1872100830078125, + "step": 262000 + }, + { + "epoch": 87.80576262668565, + "grad_norm": 0.5392748117446899, + "learning_rate": 6.117085427135679e-06, + "loss": 0.18684432983398438, + "step": 262100 + }, + { + "epoch": 87.83926627020689, + "grad_norm": 0.5572375655174255, + "learning_rate": 6.100502512562814e-06, + "loss": 0.18601211547851562, + "step": 262200 + }, + { + "epoch": 87.87276991372812, + "grad_norm": 0.6901904940605164, + "learning_rate": 6.083752093802345e-06, + "loss": 0.18694435119628905, + "step": 262300 + }, + { + "epoch": 87.90627355724935, + "grad_norm": 0.5973819494247437, + "learning_rate": 6.067001675041876e-06, + "loss": 0.18795061111450195, + "step": 262400 + }, + { + "epoch": 87.93977720077058, + "grad_norm": 0.5847058296203613, + "learning_rate": 6.050251256281407e-06, + "loss": 0.1869793701171875, + "step": 262500 + }, + { + "epoch": 87.97328084429182, + "grad_norm": 0.5993967056274414, + "learning_rate": 6.033500837520938e-06, + "loss": 0.1878180694580078, + "step": 262600 + }, + { + "epoch": 88.00670072870425, + "grad_norm": 0.532988429069519, + "learning_rate": 6.01675041876047e-06, + "loss": 0.18654600143432618, + "step": 262700 + }, + { + "epoch": 88.04020437222547, + "grad_norm": 0.5655828714370728, + "learning_rate": 6e-06, + "loss": 0.18439163208007814, + "step": 262800 + }, + { + "epoch": 88.07370801574672, + "grad_norm": 0.5616503357887268, + "learning_rate": 5.9832495812395315e-06, + "loss": 0.1837614631652832, + "step": 262900 + }, + { + "epoch": 88.10721165926795, + "grad_norm": 0.4429595470428467, + "learning_rate": 5.966499162479063e-06, + "loss": 0.18412097930908203, + "step": 263000 + }, + { + "epoch": 88.14071530278918, + "grad_norm": 0.4846174120903015, + "learning_rate": 5.949748743718593e-06, + "loss": 0.18443714141845702, + "step": 263100 + }, + { + "epoch": 88.17421894631042, + "grad_norm": 0.5053496956825256, + "learning_rate": 5.932998324958124e-06, + "loss": 0.1849221420288086, + "step": 263200 + }, + { + "epoch": 88.20772258983165, + "grad_norm": 0.5732136368751526, + "learning_rate": 5.916247906197655e-06, + "loss": 0.18445537567138673, + "step": 263300 + }, + { + "epoch": 88.24122623335288, + "grad_norm": 0.671688437461853, + "learning_rate": 5.899497487437186e-06, + "loss": 0.18499351501464845, + "step": 263400 + }, + { + "epoch": 88.2747298768741, + "grad_norm": 0.5794471502304077, + "learning_rate": 5.882747068676717e-06, + "loss": 0.18498233795166016, + "step": 263500 + }, + { + "epoch": 88.30823352039535, + "grad_norm": 0.5552869439125061, + "learning_rate": 5.865996649916248e-06, + "loss": 0.18548328399658204, + "step": 263600 + }, + { + "epoch": 88.34173716391658, + "grad_norm": 0.5315948724746704, + "learning_rate": 5.849246231155779e-06, + "loss": 0.18444686889648437, + "step": 263700 + }, + { + "epoch": 88.3752408074378, + "grad_norm": 0.6291096210479736, + "learning_rate": 5.83249581239531e-06, + "loss": 0.18497331619262694, + "step": 263800 + }, + { + "epoch": 88.40874445095905, + "grad_norm": 0.6358299851417542, + "learning_rate": 5.815745393634841e-06, + "loss": 0.1851169967651367, + "step": 263900 + }, + { + "epoch": 88.44224809448028, + "grad_norm": 0.5641636848449707, + "learning_rate": 5.798994974874372e-06, + "loss": 0.18581708908081054, + "step": 264000 + }, + { + "epoch": 88.4757517380015, + "grad_norm": 0.646516740322113, + "learning_rate": 5.782244556113904e-06, + "loss": 0.18616880416870119, + "step": 264100 + }, + { + "epoch": 88.50925538152273, + "grad_norm": 0.5487529635429382, + "learning_rate": 5.765494137353434e-06, + "loss": 0.18532644271850585, + "step": 264200 + }, + { + "epoch": 88.54275902504398, + "grad_norm": 0.5325868129730225, + "learning_rate": 5.748911222780569e-06, + "loss": 0.1863404655456543, + "step": 264300 + }, + { + "epoch": 88.5762626685652, + "grad_norm": 0.5119947195053101, + "learning_rate": 5.7321608040201006e-06, + "loss": 0.1858821678161621, + "step": 264400 + }, + { + "epoch": 88.60976631208644, + "grad_norm": 0.5027479529380798, + "learning_rate": 5.715410385259632e-06, + "loss": 0.18715795516967773, + "step": 264500 + }, + { + "epoch": 88.64326995560768, + "grad_norm": 0.6127695441246033, + "learning_rate": 5.6986599664991625e-06, + "loss": 0.1849302864074707, + "step": 264600 + }, + { + "epoch": 88.67677359912891, + "grad_norm": 0.5115147233009338, + "learning_rate": 5.681909547738694e-06, + "loss": 0.18587541580200195, + "step": 264700 + }, + { + "epoch": 88.71027724265014, + "grad_norm": 0.5533451437950134, + "learning_rate": 5.665159128978225e-06, + "loss": 0.1865237045288086, + "step": 264800 + }, + { + "epoch": 88.74378088617136, + "grad_norm": 0.7907216548919678, + "learning_rate": 5.648408710217756e-06, + "loss": 0.18539291381835937, + "step": 264900 + }, + { + "epoch": 88.77728452969261, + "grad_norm": 0.6062288284301758, + "learning_rate": 5.631658291457287e-06, + "loss": 0.18620302200317382, + "step": 265000 + }, + { + "epoch": 88.81078817321384, + "grad_norm": 0.5403768420219421, + "learning_rate": 5.6149078726968176e-06, + "loss": 0.18627490997314453, + "step": 265100 + }, + { + "epoch": 88.84429181673507, + "grad_norm": 0.47379136085510254, + "learning_rate": 5.598157453936349e-06, + "loss": 0.18624238967895507, + "step": 265200 + }, + { + "epoch": 88.87779546025631, + "grad_norm": 0.6376839280128479, + "learning_rate": 5.5814070351758794e-06, + "loss": 0.18673583984375, + "step": 265300 + }, + { + "epoch": 88.91129910377754, + "grad_norm": 0.5186110138893127, + "learning_rate": 5.564656616415411e-06, + "loss": 0.18633831024169922, + "step": 265400 + }, + { + "epoch": 88.94480274729877, + "grad_norm": 0.5298460721969604, + "learning_rate": 5.547906197654941e-06, + "loss": 0.18666128158569337, + "step": 265500 + }, + { + "epoch": 88.97830639082, + "grad_norm": 0.6699676513671875, + "learning_rate": 5.531155778894473e-06, + "loss": 0.18743110656738282, + "step": 265600 + }, + { + "epoch": 89.01172627523243, + "grad_norm": 0.7564083933830261, + "learning_rate": 5.514405360134003e-06, + "loss": 0.18580760955810546, + "step": 265700 + }, + { + "epoch": 89.04522991875366, + "grad_norm": 0.4524352252483368, + "learning_rate": 5.4976549413735346e-06, + "loss": 0.18369712829589843, + "step": 265800 + }, + { + "epoch": 89.07873356227489, + "grad_norm": 0.5215601325035095, + "learning_rate": 5.480904522613066e-06, + "loss": 0.18392160415649414, + "step": 265900 + }, + { + "epoch": 89.11223720579613, + "grad_norm": 0.5558773875236511, + "learning_rate": 5.4641541038525964e-06, + "loss": 0.18470701217651367, + "step": 266000 + }, + { + "epoch": 89.14574084931736, + "grad_norm": 0.5827058553695679, + "learning_rate": 5.447403685092128e-06, + "loss": 0.18471426010131836, + "step": 266100 + }, + { + "epoch": 89.17924449283859, + "grad_norm": 0.6175124645233154, + "learning_rate": 5.430653266331658e-06, + "loss": 0.18419244766235351, + "step": 266200 + }, + { + "epoch": 89.21274813635983, + "grad_norm": 0.5262554883956909, + "learning_rate": 5.41390284757119e-06, + "loss": 0.18310293197631836, + "step": 266300 + }, + { + "epoch": 89.24625177988106, + "grad_norm": 0.5767905712127686, + "learning_rate": 5.397319932998325e-06, + "loss": 0.1847786521911621, + "step": 266400 + }, + { + "epoch": 89.27975542340229, + "grad_norm": 0.45258834958076477, + "learning_rate": 5.380569514237856e-06, + "loss": 0.18412622451782226, + "step": 266500 + }, + { + "epoch": 89.31325906692352, + "grad_norm": 0.546626091003418, + "learning_rate": 5.363819095477387e-06, + "loss": 0.1842401695251465, + "step": 266600 + }, + { + "epoch": 89.34676271044476, + "grad_norm": 0.48357829451560974, + "learning_rate": 5.347068676716918e-06, + "loss": 0.18534393310546876, + "step": 266700 + }, + { + "epoch": 89.380266353966, + "grad_norm": 0.5069622993469238, + "learning_rate": 5.330318257956449e-06, + "loss": 0.18502262115478516, + "step": 266800 + }, + { + "epoch": 89.41376999748722, + "grad_norm": 0.6336747407913208, + "learning_rate": 5.31356783919598e-06, + "loss": 0.18472951889038086, + "step": 266900 + }, + { + "epoch": 89.44727364100847, + "grad_norm": 0.5919739603996277, + "learning_rate": 5.296817420435511e-06, + "loss": 0.185218505859375, + "step": 267000 + }, + { + "epoch": 89.4807772845297, + "grad_norm": 0.48863354325294495, + "learning_rate": 5.280067001675043e-06, + "loss": 0.18563102722167968, + "step": 267100 + }, + { + "epoch": 89.51428092805092, + "grad_norm": 0.6356630921363831, + "learning_rate": 5.263316582914573e-06, + "loss": 0.18483596801757812, + "step": 267200 + }, + { + "epoch": 89.54778457157215, + "grad_norm": 0.6572123765945435, + "learning_rate": 5.2465661641541045e-06, + "loss": 0.18614835739135743, + "step": 267300 + }, + { + "epoch": 89.5812882150934, + "grad_norm": 0.4905427396297455, + "learning_rate": 5.229815745393636e-06, + "loss": 0.18502700805664063, + "step": 267400 + }, + { + "epoch": 89.61479185861462, + "grad_norm": 0.53782057762146, + "learning_rate": 5.213065326633166e-06, + "loss": 0.1857935905456543, + "step": 267500 + }, + { + "epoch": 89.64829550213585, + "grad_norm": 0.6450851559638977, + "learning_rate": 5.196314907872697e-06, + "loss": 0.18643198013305665, + "step": 267600 + }, + { + "epoch": 89.6817991456571, + "grad_norm": 0.6173422336578369, + "learning_rate": 5.179564489112227e-06, + "loss": 0.1862980079650879, + "step": 267700 + }, + { + "epoch": 89.71530278917832, + "grad_norm": 0.564839243888855, + "learning_rate": 5.162814070351759e-06, + "loss": 0.1857726287841797, + "step": 267800 + }, + { + "epoch": 89.74880643269955, + "grad_norm": 0.5647773742675781, + "learning_rate": 5.14606365159129e-06, + "loss": 0.18673162460327147, + "step": 267900 + }, + { + "epoch": 89.7823100762208, + "grad_norm": 0.5144478678703308, + "learning_rate": 5.129313232830821e-06, + "loss": 0.18588918685913086, + "step": 268000 + }, + { + "epoch": 89.81581371974202, + "grad_norm": 0.47654643654823303, + "learning_rate": 5.112562814070352e-06, + "loss": 0.1857970428466797, + "step": 268100 + }, + { + "epoch": 89.84931736326325, + "grad_norm": 0.6091083288192749, + "learning_rate": 5.095812395309883e-06, + "loss": 0.18509552001953125, + "step": 268200 + }, + { + "epoch": 89.88282100678448, + "grad_norm": 0.5405870676040649, + "learning_rate": 5.079061976549414e-06, + "loss": 0.18604494094848634, + "step": 268300 + }, + { + "epoch": 89.91632465030573, + "grad_norm": 0.5205516815185547, + "learning_rate": 5.06247906197655e-06, + "loss": 0.1859523582458496, + "step": 268400 + }, + { + "epoch": 89.94982829382695, + "grad_norm": 0.5739098787307739, + "learning_rate": 5.04572864321608e-06, + "loss": 0.1862436866760254, + "step": 268500 + }, + { + "epoch": 89.98333193734818, + "grad_norm": 0.6661388278007507, + "learning_rate": 5.028978224455612e-06, + "loss": 0.18580772399902343, + "step": 268600 + }, + { + "epoch": 90.01675182176062, + "grad_norm": 0.5268995761871338, + "learning_rate": 5.012227805695142e-06, + "loss": 0.18514154434204103, + "step": 268700 + }, + { + "epoch": 90.05025546528185, + "grad_norm": 0.752692461013794, + "learning_rate": 4.9954773869346735e-06, + "loss": 0.18381275177001954, + "step": 268800 + }, + { + "epoch": 90.08375910880308, + "grad_norm": 0.6190829873085022, + "learning_rate": 4.978726968174205e-06, + "loss": 0.1839034652709961, + "step": 268900 + }, + { + "epoch": 90.11726275232432, + "grad_norm": 0.5042902827262878, + "learning_rate": 4.961976549413735e-06, + "loss": 0.18465267181396483, + "step": 269000 + }, + { + "epoch": 90.15076639584555, + "grad_norm": 0.5969473719596863, + "learning_rate": 4.945226130653267e-06, + "loss": 0.18303195953369142, + "step": 269100 + }, + { + "epoch": 90.18427003936678, + "grad_norm": 0.6725231409072876, + "learning_rate": 4.928475711892797e-06, + "loss": 0.18475696563720703, + "step": 269200 + }, + { + "epoch": 90.21777368288801, + "grad_norm": 0.456318736076355, + "learning_rate": 4.911725293132329e-06, + "loss": 0.18457313537597655, + "step": 269300 + }, + { + "epoch": 90.25127732640925, + "grad_norm": 0.5855475068092346, + "learning_rate": 4.89497487437186e-06, + "loss": 0.18437076568603517, + "step": 269400 + }, + { + "epoch": 90.28478096993048, + "grad_norm": 0.529436469078064, + "learning_rate": 4.8782244556113905e-06, + "loss": 0.18375736236572265, + "step": 269500 + }, + { + "epoch": 90.31828461345171, + "grad_norm": 0.5961082577705383, + "learning_rate": 4.861474036850922e-06, + "loss": 0.18455684661865235, + "step": 269600 + }, + { + "epoch": 90.35178825697295, + "grad_norm": 0.5185309052467346, + "learning_rate": 4.844723618090452e-06, + "loss": 0.1851878547668457, + "step": 269700 + }, + { + "epoch": 90.38529190049418, + "grad_norm": 0.40312084555625916, + "learning_rate": 4.827973199329983e-06, + "loss": 0.18382146835327148, + "step": 269800 + }, + { + "epoch": 90.41879554401541, + "grad_norm": 0.5168654322624207, + "learning_rate": 4.811222780569514e-06, + "loss": 0.18515111923217772, + "step": 269900 + }, + { + "epoch": 90.45229918753664, + "grad_norm": 0.5459558963775635, + "learning_rate": 4.794472361809046e-06, + "loss": 0.18459436416625977, + "step": 270000 + }, + { + "epoch": 90.48580283105788, + "grad_norm": 0.5190539956092834, + "learning_rate": 4.777721943048576e-06, + "loss": 0.1858159065246582, + "step": 270100 + }, + { + "epoch": 90.51930647457911, + "grad_norm": 0.4919435381889343, + "learning_rate": 4.7609715242881075e-06, + "loss": 0.18439708709716796, + "step": 270200 + }, + { + "epoch": 90.55281011810034, + "grad_norm": 0.4750555157661438, + "learning_rate": 4.744221105527638e-06, + "loss": 0.1842019462585449, + "step": 270300 + }, + { + "epoch": 90.58631376162158, + "grad_norm": 0.6852492690086365, + "learning_rate": 4.727638190954775e-06, + "loss": 0.18526426315307618, + "step": 270400 + }, + { + "epoch": 90.61981740514281, + "grad_norm": 0.6319891810417175, + "learning_rate": 4.710887772194305e-06, + "loss": 0.1851023864746094, + "step": 270500 + }, + { + "epoch": 90.65332104866404, + "grad_norm": 0.49747490882873535, + "learning_rate": 4.694137353433836e-06, + "loss": 0.18547800064086914, + "step": 270600 + }, + { + "epoch": 90.68682469218527, + "grad_norm": 0.4589165151119232, + "learning_rate": 4.677386934673366e-06, + "loss": 0.1850799560546875, + "step": 270700 + }, + { + "epoch": 90.72032833570651, + "grad_norm": 0.647290050983429, + "learning_rate": 4.660636515912898e-06, + "loss": 0.18597793579101562, + "step": 270800 + }, + { + "epoch": 90.75383197922774, + "grad_norm": 0.6682136058807373, + "learning_rate": 4.643886097152429e-06, + "loss": 0.1855238914489746, + "step": 270900 + }, + { + "epoch": 90.78733562274897, + "grad_norm": 0.5782601237297058, + "learning_rate": 4.62713567839196e-06, + "loss": 0.18538637161254884, + "step": 271000 + }, + { + "epoch": 90.82083926627021, + "grad_norm": 0.5579448938369751, + "learning_rate": 4.610385259631491e-06, + "loss": 0.1856587600708008, + "step": 271100 + }, + { + "epoch": 90.85434290979144, + "grad_norm": 0.5620039105415344, + "learning_rate": 4.593634840871022e-06, + "loss": 0.18588842391967775, + "step": 271200 + }, + { + "epoch": 90.88784655331267, + "grad_norm": 0.6530576348304749, + "learning_rate": 4.576884422110553e-06, + "loss": 0.18567676544189454, + "step": 271300 + }, + { + "epoch": 90.9213501968339, + "grad_norm": 0.6144570708274841, + "learning_rate": 4.560134003350084e-06, + "loss": 0.18605300903320313, + "step": 271400 + }, + { + "epoch": 90.95485384035514, + "grad_norm": 0.5530267357826233, + "learning_rate": 4.5433835845896156e-06, + "loss": 0.18595090866088868, + "step": 271500 + }, + { + "epoch": 90.98835748387637, + "grad_norm": 0.5598485469818115, + "learning_rate": 4.526633165829146e-06, + "loss": 0.1865631675720215, + "step": 271600 + }, + { + "epoch": 91.0217773682888, + "grad_norm": 0.4829404652118683, + "learning_rate": 4.5098827470686774e-06, + "loss": 0.18459095001220704, + "step": 271700 + }, + { + "epoch": 91.05528101181004, + "grad_norm": 0.7115753889083862, + "learning_rate": 4.493132328308208e-06, + "loss": 0.1838077163696289, + "step": 271800 + }, + { + "epoch": 91.08878465533127, + "grad_norm": 0.557543158531189, + "learning_rate": 4.4763819095477385e-06, + "loss": 0.1847819519042969, + "step": 271900 + }, + { + "epoch": 91.1222882988525, + "grad_norm": 0.5555517077445984, + "learning_rate": 4.45963149078727e-06, + "loss": 0.18323816299438478, + "step": 272000 + }, + { + "epoch": 91.15579194237374, + "grad_norm": 0.5963297486305237, + "learning_rate": 4.4428810720268e-06, + "loss": 0.1839584732055664, + "step": 272100 + }, + { + "epoch": 91.18929558589497, + "grad_norm": 0.58128821849823, + "learning_rate": 4.426130653266332e-06, + "loss": 0.1841065788269043, + "step": 272200 + }, + { + "epoch": 91.2227992294162, + "grad_norm": 0.4545518457889557, + "learning_rate": 4.409380234505863e-06, + "loss": 0.1835637855529785, + "step": 272300 + }, + { + "epoch": 91.25630287293743, + "grad_norm": 0.5214167237281799, + "learning_rate": 4.392629815745394e-06, + "loss": 0.18443021774291993, + "step": 272400 + }, + { + "epoch": 91.28980651645867, + "grad_norm": 0.46389076113700867, + "learning_rate": 4.3760469011725295e-06, + "loss": 0.18393590927124023, + "step": 272500 + }, + { + "epoch": 91.3233101599799, + "grad_norm": 0.6274188160896301, + "learning_rate": 4.359296482412061e-06, + "loss": 0.18395915985107422, + "step": 272600 + }, + { + "epoch": 91.35681380350113, + "grad_norm": 0.5550768971443176, + "learning_rate": 4.342546063651591e-06, + "loss": 0.18435438156127928, + "step": 272700 + }, + { + "epoch": 91.39031744702237, + "grad_norm": 0.5795305967330933, + "learning_rate": 4.325795644891122e-06, + "loss": 0.18411699295043946, + "step": 272800 + }, + { + "epoch": 91.4238210905436, + "grad_norm": 0.5524510145187378, + "learning_rate": 4.309045226130653e-06, + "loss": 0.18482681274414062, + "step": 272900 + }, + { + "epoch": 91.45732473406483, + "grad_norm": 0.4713156521320343, + "learning_rate": 4.292294807370185e-06, + "loss": 0.18384735107421876, + "step": 273000 + }, + { + "epoch": 91.49082837758607, + "grad_norm": 0.5844002366065979, + "learning_rate": 4.275544388609715e-06, + "loss": 0.1849127197265625, + "step": 273100 + }, + { + "epoch": 91.5243320211073, + "grad_norm": 0.5675417184829712, + "learning_rate": 4.2587939698492465e-06, + "loss": 0.18468017578125, + "step": 273200 + }, + { + "epoch": 91.55783566462853, + "grad_norm": 0.5666652917861938, + "learning_rate": 4.242043551088777e-06, + "loss": 0.18494237899780275, + "step": 273300 + }, + { + "epoch": 91.59133930814976, + "grad_norm": 0.46655622124671936, + "learning_rate": 4.225293132328308e-06, + "loss": 0.18492658615112303, + "step": 273400 + }, + { + "epoch": 91.624842951671, + "grad_norm": 0.5972129106521606, + "learning_rate": 4.20854271356784e-06, + "loss": 0.1859132766723633, + "step": 273500 + }, + { + "epoch": 91.65834659519223, + "grad_norm": 0.5144099593162537, + "learning_rate": 4.19179229480737e-06, + "loss": 0.1850869369506836, + "step": 273600 + }, + { + "epoch": 91.69185023871346, + "grad_norm": 0.46821364760398865, + "learning_rate": 4.175041876046902e-06, + "loss": 0.1852436828613281, + "step": 273700 + }, + { + "epoch": 91.7253538822347, + "grad_norm": 0.6473614573478699, + "learning_rate": 4.158291457286433e-06, + "loss": 0.1850813102722168, + "step": 273800 + }, + { + "epoch": 91.75885752575593, + "grad_norm": 0.7392449378967285, + "learning_rate": 4.1415410385259635e-06, + "loss": 0.18418787002563478, + "step": 273900 + }, + { + "epoch": 91.79236116927716, + "grad_norm": 0.5982920527458191, + "learning_rate": 4.124790619765494e-06, + "loss": 0.18475706100463868, + "step": 274000 + }, + { + "epoch": 91.82586481279839, + "grad_norm": 0.5010756254196167, + "learning_rate": 4.108040201005025e-06, + "loss": 0.18550140380859376, + "step": 274100 + }, + { + "epoch": 91.85936845631963, + "grad_norm": 0.42886313796043396, + "learning_rate": 4.091289782244556e-06, + "loss": 0.1851121711730957, + "step": 274200 + }, + { + "epoch": 91.89287209984086, + "grad_norm": 0.6056686043739319, + "learning_rate": 4.074539363484087e-06, + "loss": 0.18567405700683592, + "step": 274300 + }, + { + "epoch": 91.92637574336209, + "grad_norm": 0.6657816171646118, + "learning_rate": 4.057788944723618e-06, + "loss": 0.185372314453125, + "step": 274400 + }, + { + "epoch": 91.95987938688333, + "grad_norm": 0.7955371737480164, + "learning_rate": 4.041038525963149e-06, + "loss": 0.18559362411499022, + "step": 274500 + }, + { + "epoch": 91.99338303040456, + "grad_norm": 0.5486671924591064, + "learning_rate": 4.024455611390285e-06, + "loss": 0.18554763793945311, + "step": 274600 + }, + { + "epoch": 92.02680291481698, + "grad_norm": 0.4851992130279541, + "learning_rate": 4.007705192629816e-06, + "loss": 0.1837984085083008, + "step": 274700 + }, + { + "epoch": 92.06030655833823, + "grad_norm": 0.6564006805419922, + "learning_rate": 3.990954773869347e-06, + "loss": 0.1828889274597168, + "step": 274800 + }, + { + "epoch": 92.09381020185945, + "grad_norm": 0.4906276762485504, + "learning_rate": 3.974204355108877e-06, + "loss": 0.18224969863891602, + "step": 274900 + }, + { + "epoch": 92.12731384538068, + "grad_norm": 0.47474029660224915, + "learning_rate": 3.957453936348409e-06, + "loss": 0.18334747314453126, + "step": 275000 + }, + { + "epoch": 92.16081748890191, + "grad_norm": 0.5322253704071045, + "learning_rate": 3.940703517587939e-06, + "loss": 0.18336933135986327, + "step": 275100 + }, + { + "epoch": 92.19432113242316, + "grad_norm": 0.6422849297523499, + "learning_rate": 3.923953098827471e-06, + "loss": 0.18472524642944335, + "step": 275200 + }, + { + "epoch": 92.22782477594438, + "grad_norm": 0.555906355381012, + "learning_rate": 3.907202680067002e-06, + "loss": 0.18407018661499022, + "step": 275300 + }, + { + "epoch": 92.26132841946561, + "grad_norm": 0.5680630207061768, + "learning_rate": 3.8904522613065325e-06, + "loss": 0.18363739013671876, + "step": 275400 + }, + { + "epoch": 92.29483206298686, + "grad_norm": 0.5128674507141113, + "learning_rate": 3.873701842546064e-06, + "loss": 0.18399686813354493, + "step": 275500 + }, + { + "epoch": 92.32833570650808, + "grad_norm": 0.6279745697975159, + "learning_rate": 3.856951423785595e-06, + "loss": 0.18378208160400392, + "step": 275600 + }, + { + "epoch": 92.36183935002931, + "grad_norm": 0.601681113243103, + "learning_rate": 3.840201005025126e-06, + "loss": 0.18319509506225587, + "step": 275700 + }, + { + "epoch": 92.39534299355054, + "grad_norm": 0.5092858672142029, + "learning_rate": 3.823450586264657e-06, + "loss": 0.18382539749145507, + "step": 275800 + }, + { + "epoch": 92.42884663707179, + "grad_norm": 0.5969312191009521, + "learning_rate": 3.8067001675041877e-06, + "loss": 0.1847224235534668, + "step": 275900 + }, + { + "epoch": 92.46235028059301, + "grad_norm": 0.49249494075775146, + "learning_rate": 3.7899497487437186e-06, + "loss": 0.18417783737182616, + "step": 276000 + }, + { + "epoch": 92.49585392411424, + "grad_norm": 0.5279737710952759, + "learning_rate": 3.77319932998325e-06, + "loss": 0.18486669540405273, + "step": 276100 + }, + { + "epoch": 92.52935756763549, + "grad_norm": 0.5199563503265381, + "learning_rate": 3.7564489112227805e-06, + "loss": 0.18549766540527343, + "step": 276200 + }, + { + "epoch": 92.56286121115672, + "grad_norm": 0.5814909934997559, + "learning_rate": 3.739698492462312e-06, + "loss": 0.18439958572387696, + "step": 276300 + }, + { + "epoch": 92.59636485467794, + "grad_norm": 0.5165287852287292, + "learning_rate": 3.7229480737018428e-06, + "loss": 0.18408321380615233, + "step": 276400 + }, + { + "epoch": 92.62986849819917, + "grad_norm": 0.47519955039024353, + "learning_rate": 3.7061976549413733e-06, + "loss": 0.18507766723632812, + "step": 276500 + }, + { + "epoch": 92.66337214172042, + "grad_norm": 0.5444027185440063, + "learning_rate": 3.6894472361809047e-06, + "loss": 0.1847231101989746, + "step": 276600 + }, + { + "epoch": 92.69687578524164, + "grad_norm": 0.46999087929725647, + "learning_rate": 3.6728643216080406e-06, + "loss": 0.18614614486694336, + "step": 276700 + }, + { + "epoch": 92.73037942876287, + "grad_norm": 0.8311703205108643, + "learning_rate": 3.6561139028475715e-06, + "loss": 0.18451465606689454, + "step": 276800 + }, + { + "epoch": 92.76388307228412, + "grad_norm": 0.5036934614181519, + "learning_rate": 3.639363484087102e-06, + "loss": 0.18498050689697265, + "step": 276900 + }, + { + "epoch": 92.79738671580535, + "grad_norm": 0.7324947714805603, + "learning_rate": 3.6226130653266334e-06, + "loss": 0.184973087310791, + "step": 277000 + }, + { + "epoch": 92.83089035932657, + "grad_norm": 0.4393749535083771, + "learning_rate": 3.6058626465661647e-06, + "loss": 0.1858364486694336, + "step": 277100 + }, + { + "epoch": 92.8643940028478, + "grad_norm": 0.6435522437095642, + "learning_rate": 3.5891122278056953e-06, + "loss": 0.18547016143798828, + "step": 277200 + }, + { + "epoch": 92.89789764636905, + "grad_norm": 0.4739900529384613, + "learning_rate": 3.572361809045226e-06, + "loss": 0.18432489395141602, + "step": 277300 + }, + { + "epoch": 92.93140128989027, + "grad_norm": 0.5389711856842041, + "learning_rate": 3.555611390284757e-06, + "loss": 0.18447877883911132, + "step": 277400 + }, + { + "epoch": 92.9649049334115, + "grad_norm": 0.5507364869117737, + "learning_rate": 3.538860971524288e-06, + "loss": 0.18475034713745117, + "step": 277500 + }, + { + "epoch": 92.99840857693275, + "grad_norm": 0.6159628629684448, + "learning_rate": 3.5221105527638194e-06, + "loss": 0.18557378768920899, + "step": 277600 + }, + { + "epoch": 93.03182846134517, + "grad_norm": 0.555902361869812, + "learning_rate": 3.50536013400335e-06, + "loss": 0.18302148818969727, + "step": 277700 + }, + { + "epoch": 93.0653321048664, + "grad_norm": 0.6510830521583557, + "learning_rate": 3.4886097152428813e-06, + "loss": 0.18316720962524413, + "step": 277800 + }, + { + "epoch": 93.09883574838764, + "grad_norm": 0.5541417598724365, + "learning_rate": 3.4718592964824123e-06, + "loss": 0.18269014358520508, + "step": 277900 + }, + { + "epoch": 93.13233939190887, + "grad_norm": 0.5546096563339233, + "learning_rate": 3.455108877721943e-06, + "loss": 0.18281387329101562, + "step": 278000 + }, + { + "epoch": 93.1658430354301, + "grad_norm": 0.5906556248664856, + "learning_rate": 3.438358458961474e-06, + "loss": 0.18238527297973633, + "step": 278100 + }, + { + "epoch": 93.19934667895133, + "grad_norm": 0.5291375517845154, + "learning_rate": 3.4216080402010055e-06, + "loss": 0.18321968078613282, + "step": 278200 + }, + { + "epoch": 93.23285032247257, + "grad_norm": 0.49932029843330383, + "learning_rate": 3.404857621440536e-06, + "loss": 0.18250431060791017, + "step": 278300 + }, + { + "epoch": 93.2663539659938, + "grad_norm": 0.5344804525375366, + "learning_rate": 3.3881072026800674e-06, + "loss": 0.18370258331298828, + "step": 278400 + }, + { + "epoch": 93.29985760951503, + "grad_norm": 0.547133207321167, + "learning_rate": 3.371356783919598e-06, + "loss": 0.18311479568481445, + "step": 278500 + }, + { + "epoch": 93.33336125303627, + "grad_norm": 0.6846116185188293, + "learning_rate": 3.354606365159129e-06, + "loss": 0.18370712280273438, + "step": 278600 + }, + { + "epoch": 93.3668648965575, + "grad_norm": 0.5736503005027771, + "learning_rate": 3.33785594639866e-06, + "loss": 0.18427995681762696, + "step": 278700 + }, + { + "epoch": 93.40036854007873, + "grad_norm": 0.5363325476646423, + "learning_rate": 3.321273031825796e-06, + "loss": 0.18477426528930663, + "step": 278800 + }, + { + "epoch": 93.43387218359997, + "grad_norm": 0.5641268491744995, + "learning_rate": 3.3045226130653266e-06, + "loss": 0.18418367385864257, + "step": 278900 + }, + { + "epoch": 93.4673758271212, + "grad_norm": 0.5597323179244995, + "learning_rate": 3.2877721943048576e-06, + "loss": 0.18357982635498046, + "step": 279000 + }, + { + "epoch": 93.50087947064243, + "grad_norm": 0.5814647078514099, + "learning_rate": 3.271021775544389e-06, + "loss": 0.18340383529663085, + "step": 279100 + }, + { + "epoch": 93.53438311416366, + "grad_norm": 0.6923455595970154, + "learning_rate": 3.2542713567839194e-06, + "loss": 0.18384368896484374, + "step": 279200 + }, + { + "epoch": 93.5678867576849, + "grad_norm": 0.5960889458656311, + "learning_rate": 3.237520938023451e-06, + "loss": 0.18405187606811524, + "step": 279300 + }, + { + "epoch": 93.60139040120613, + "grad_norm": 0.4457511305809021, + "learning_rate": 3.2207705192629817e-06, + "loss": 0.1838911247253418, + "step": 279400 + }, + { + "epoch": 93.63489404472736, + "grad_norm": 0.5525141954421997, + "learning_rate": 3.2040201005025127e-06, + "loss": 0.18411317825317383, + "step": 279500 + }, + { + "epoch": 93.6683976882486, + "grad_norm": 0.4308946430683136, + "learning_rate": 3.1872696817420436e-06, + "loss": 0.18421003341674805, + "step": 279600 + }, + { + "epoch": 93.70190133176983, + "grad_norm": 0.4606753885746002, + "learning_rate": 3.170519262981575e-06, + "loss": 0.1856534194946289, + "step": 279700 + }, + { + "epoch": 93.73540497529106, + "grad_norm": 0.5044844150543213, + "learning_rate": 3.1537688442211055e-06, + "loss": 0.1849703598022461, + "step": 279800 + }, + { + "epoch": 93.76890861881229, + "grad_norm": 0.5462206602096558, + "learning_rate": 3.137018425460637e-06, + "loss": 0.18439491271972655, + "step": 279900 + }, + { + "epoch": 93.80241226233353, + "grad_norm": 0.6235095262527466, + "learning_rate": 3.120268006700168e-06, + "loss": 0.18433120727539062, + "step": 280000 + }, + { + "epoch": 93.83591590585476, + "grad_norm": 0.49713248014450073, + "learning_rate": 3.1035175879396987e-06, + "loss": 0.18527395248413087, + "step": 280100 + }, + { + "epoch": 93.86941954937599, + "grad_norm": 0.43499988317489624, + "learning_rate": 3.0867671691792297e-06, + "loss": 0.1845208740234375, + "step": 280200 + }, + { + "epoch": 93.90292319289723, + "grad_norm": 0.5285036563873291, + "learning_rate": 3.0700167504187606e-06, + "loss": 0.1845704460144043, + "step": 280300 + }, + { + "epoch": 93.93642683641846, + "grad_norm": 0.7002624869346619, + "learning_rate": 3.0532663316582916e-06, + "loss": 0.18544256210327148, + "step": 280400 + }, + { + "epoch": 93.96993047993969, + "grad_norm": 0.5086694955825806, + "learning_rate": 3.0365159128978225e-06, + "loss": 0.18481266021728515, + "step": 280500 + }, + { + "epoch": 94.00335036435213, + "grad_norm": 0.541530966758728, + "learning_rate": 3.019765494137354e-06, + "loss": 0.18497087478637694, + "step": 280600 + }, + { + "epoch": 94.03685400787336, + "grad_norm": 0.5113808512687683, + "learning_rate": 3.0030150753768844e-06, + "loss": 0.1830722427368164, + "step": 280700 + }, + { + "epoch": 94.07035765139459, + "grad_norm": 0.578902542591095, + "learning_rate": 2.9864321608040203e-06, + "loss": 0.1829450798034668, + "step": 280800 + }, + { + "epoch": 94.10386129491582, + "grad_norm": 0.47617286443710327, + "learning_rate": 2.9696817420435512e-06, + "loss": 0.18288434982299806, + "step": 280900 + }, + { + "epoch": 94.13736493843706, + "grad_norm": 0.5248568654060364, + "learning_rate": 2.952931323283082e-06, + "loss": 0.18265800476074218, + "step": 281000 + }, + { + "epoch": 94.17086858195829, + "grad_norm": 0.5427269339561462, + "learning_rate": 2.936180904522613e-06, + "loss": 0.1820301628112793, + "step": 281100 + }, + { + "epoch": 94.20437222547952, + "grad_norm": 0.5137001276016235, + "learning_rate": 2.919430485762144e-06, + "loss": 0.18303417205810546, + "step": 281200 + }, + { + "epoch": 94.23787586900076, + "grad_norm": 0.5321929454803467, + "learning_rate": 2.902680067001675e-06, + "loss": 0.1835261344909668, + "step": 281300 + }, + { + "epoch": 94.27137951252199, + "grad_norm": 0.4833122491836548, + "learning_rate": 2.8859296482412063e-06, + "loss": 0.18361148834228516, + "step": 281400 + }, + { + "epoch": 94.30488315604322, + "grad_norm": 0.6427774429321289, + "learning_rate": 2.8691792294807373e-06, + "loss": 0.18336435317993163, + "step": 281500 + }, + { + "epoch": 94.33838679956445, + "grad_norm": 0.45124322175979614, + "learning_rate": 2.8524288107202682e-06, + "loss": 0.1830876350402832, + "step": 281600 + }, + { + "epoch": 94.37189044308569, + "grad_norm": 0.5530322194099426, + "learning_rate": 2.835678391959799e-06, + "loss": 0.18310989379882814, + "step": 281700 + }, + { + "epoch": 94.40539408660692, + "grad_norm": 0.4179496169090271, + "learning_rate": 2.81892797319933e-06, + "loss": 0.18375337600708008, + "step": 281800 + }, + { + "epoch": 94.43889773012815, + "grad_norm": 0.5519108772277832, + "learning_rate": 2.802177554438861e-06, + "loss": 0.1845833969116211, + "step": 281900 + }, + { + "epoch": 94.47240137364939, + "grad_norm": 0.5219084620475769, + "learning_rate": 2.785427135678392e-06, + "loss": 0.18406974792480468, + "step": 282000 + }, + { + "epoch": 94.50590501717062, + "grad_norm": 0.6132789850234985, + "learning_rate": 2.7686767169179233e-06, + "loss": 0.18442945480346679, + "step": 282100 + }, + { + "epoch": 94.53940866069185, + "grad_norm": 0.5181702971458435, + "learning_rate": 2.7519262981574543e-06, + "loss": 0.1834421730041504, + "step": 282200 + }, + { + "epoch": 94.57291230421308, + "grad_norm": 0.549511194229126, + "learning_rate": 2.735175879396985e-06, + "loss": 0.18456022262573243, + "step": 282300 + }, + { + "epoch": 94.60641594773432, + "grad_norm": 0.5756514072418213, + "learning_rate": 2.7184254606365157e-06, + "loss": 0.1831919479370117, + "step": 282400 + }, + { + "epoch": 94.63991959125555, + "grad_norm": 0.5692307949066162, + "learning_rate": 2.701675041876047e-06, + "loss": 0.18358297348022462, + "step": 282500 + }, + { + "epoch": 94.67342323477678, + "grad_norm": 0.6947788596153259, + "learning_rate": 2.684924623115578e-06, + "loss": 0.1838298225402832, + "step": 282600 + }, + { + "epoch": 94.70692687829802, + "grad_norm": 0.5112714767456055, + "learning_rate": 2.668174204355109e-06, + "loss": 0.18363580703735352, + "step": 282700 + }, + { + "epoch": 94.74043052181925, + "grad_norm": 0.6610069274902344, + "learning_rate": 2.6515912897822445e-06, + "loss": 0.184285888671875, + "step": 282800 + }, + { + "epoch": 94.77393416534048, + "grad_norm": 0.5555760860443115, + "learning_rate": 2.634840871021776e-06, + "loss": 0.18415529251098633, + "step": 282900 + }, + { + "epoch": 94.8074378088617, + "grad_norm": 0.6111050844192505, + "learning_rate": 2.6180904522613068e-06, + "loss": 0.18409820556640624, + "step": 283000 + }, + { + "epoch": 94.84094145238295, + "grad_norm": 0.5163633227348328, + "learning_rate": 2.6013400335008377e-06, + "loss": 0.18490222930908204, + "step": 283100 + }, + { + "epoch": 94.87444509590418, + "grad_norm": 0.5600749254226685, + "learning_rate": 2.5845896147403686e-06, + "loss": 0.18375289916992188, + "step": 283200 + }, + { + "epoch": 94.90794873942541, + "grad_norm": 0.49500954151153564, + "learning_rate": 2.5678391959798996e-06, + "loss": 0.18480894088745117, + "step": 283300 + }, + { + "epoch": 94.94145238294665, + "grad_norm": 0.5733513236045837, + "learning_rate": 2.5510887772194305e-06, + "loss": 0.1837126922607422, + "step": 283400 + }, + { + "epoch": 94.97495602646788, + "grad_norm": 0.549117386341095, + "learning_rate": 2.5343383584589615e-06, + "loss": 0.18447158813476563, + "step": 283500 + }, + { + "epoch": 95.0083759108803, + "grad_norm": 0.4763764441013336, + "learning_rate": 2.517587939698493e-06, + "loss": 0.18384462356567383, + "step": 283600 + }, + { + "epoch": 95.04187955440155, + "grad_norm": 0.5236153602600098, + "learning_rate": 2.5008375209380238e-06, + "loss": 0.18261993408203125, + "step": 283700 + }, + { + "epoch": 95.07538319792278, + "grad_norm": 0.4592667818069458, + "learning_rate": 2.4840871021775543e-06, + "loss": 0.18320878982543945, + "step": 283800 + }, + { + "epoch": 95.108886841444, + "grad_norm": 0.506898820400238, + "learning_rate": 2.4673366834170852e-06, + "loss": 0.18264638900756835, + "step": 283900 + }, + { + "epoch": 95.14239048496523, + "grad_norm": 0.619023859500885, + "learning_rate": 2.4505862646566166e-06, + "loss": 0.18314945220947265, + "step": 284000 + }, + { + "epoch": 95.17589412848648, + "grad_norm": 0.48291823267936707, + "learning_rate": 2.4338358458961475e-06, + "loss": 0.18282480239868165, + "step": 284100 + }, + { + "epoch": 95.2093977720077, + "grad_norm": 0.48036035895347595, + "learning_rate": 2.4170854271356785e-06, + "loss": 0.1841721534729004, + "step": 284200 + }, + { + "epoch": 95.24290141552893, + "grad_norm": 0.5450857877731323, + "learning_rate": 2.40033500837521e-06, + "loss": 0.18397005081176757, + "step": 284300 + }, + { + "epoch": 95.27640505905018, + "grad_norm": 0.47729921340942383, + "learning_rate": 2.3835845896147403e-06, + "loss": 0.18345026016235352, + "step": 284400 + }, + { + "epoch": 95.3099087025714, + "grad_norm": 0.6052916646003723, + "learning_rate": 2.3668341708542713e-06, + "loss": 0.1844022560119629, + "step": 284500 + }, + { + "epoch": 95.34341234609263, + "grad_norm": 0.5513006448745728, + "learning_rate": 2.3500837520938022e-06, + "loss": 0.1827683639526367, + "step": 284600 + }, + { + "epoch": 95.37691598961388, + "grad_norm": 0.48488298058509827, + "learning_rate": 2.3333333333333336e-06, + "loss": 0.1831340026855469, + "step": 284700 + }, + { + "epoch": 95.4104196331351, + "grad_norm": 0.5309977531433105, + "learning_rate": 2.316750418760469e-06, + "loss": 0.18309810638427734, + "step": 284800 + }, + { + "epoch": 95.44392327665634, + "grad_norm": 0.43957263231277466, + "learning_rate": 2.3e-06, + "loss": 0.1831692123413086, + "step": 284900 + }, + { + "epoch": 95.47742692017756, + "grad_norm": 0.5356688499450684, + "learning_rate": 2.283249581239531e-06, + "loss": 0.18342973709106444, + "step": 285000 + }, + { + "epoch": 95.5109305636988, + "grad_norm": 0.5657954812049866, + "learning_rate": 2.2664991624790623e-06, + "loss": 0.18340103149414064, + "step": 285100 + }, + { + "epoch": 95.54443420722004, + "grad_norm": 0.5092414617538452, + "learning_rate": 2.2497487437185932e-06, + "loss": 0.18338417053222655, + "step": 285200 + }, + { + "epoch": 95.57793785074126, + "grad_norm": 0.4153210520744324, + "learning_rate": 2.232998324958124e-06, + "loss": 0.1836545181274414, + "step": 285300 + }, + { + "epoch": 95.61144149426251, + "grad_norm": 0.5015280842781067, + "learning_rate": 2.2162479061976547e-06, + "loss": 0.1827981948852539, + "step": 285400 + }, + { + "epoch": 95.64494513778374, + "grad_norm": 0.7179563641548157, + "learning_rate": 2.199497487437186e-06, + "loss": 0.18311439514160155, + "step": 285500 + }, + { + "epoch": 95.67844878130497, + "grad_norm": 0.5288705825805664, + "learning_rate": 2.182747068676717e-06, + "loss": 0.18439481735229493, + "step": 285600 + }, + { + "epoch": 95.7119524248262, + "grad_norm": 0.5110313296318054, + "learning_rate": 2.165996649916248e-06, + "loss": 0.18332534790039062, + "step": 285700 + }, + { + "epoch": 95.74545606834744, + "grad_norm": 0.5360533595085144, + "learning_rate": 2.1492462311557793e-06, + "loss": 0.18395133972167968, + "step": 285800 + }, + { + "epoch": 95.77895971186867, + "grad_norm": 0.534217894077301, + "learning_rate": 2.13249581239531e-06, + "loss": 0.18385652542114259, + "step": 285900 + }, + { + "epoch": 95.8124633553899, + "grad_norm": 0.6536206007003784, + "learning_rate": 2.1157453936348408e-06, + "loss": 0.18364360809326172, + "step": 286000 + }, + { + "epoch": 95.84596699891114, + "grad_norm": 0.5675894618034363, + "learning_rate": 2.0989949748743717e-06, + "loss": 0.18334434509277345, + "step": 286100 + }, + { + "epoch": 95.87947064243237, + "grad_norm": 0.5131775736808777, + "learning_rate": 2.082244556113903e-06, + "loss": 0.18401821136474608, + "step": 286200 + }, + { + "epoch": 95.9129742859536, + "grad_norm": 0.4480537176132202, + "learning_rate": 2.065494137353434e-06, + "loss": 0.18490314483642578, + "step": 286300 + }, + { + "epoch": 95.94647792947482, + "grad_norm": 0.566072404384613, + "learning_rate": 2.048743718592965e-06, + "loss": 0.18334156036376953, + "step": 286400 + }, + { + "epoch": 95.97998157299607, + "grad_norm": 0.5423669815063477, + "learning_rate": 2.031993299832496e-06, + "loss": 0.18419130325317382, + "step": 286500 + }, + { + "epoch": 96.01340145740849, + "grad_norm": 0.5609968900680542, + "learning_rate": 2.015242881072027e-06, + "loss": 0.18358615875244141, + "step": 286600 + }, + { + "epoch": 96.04690510092972, + "grad_norm": 0.4528324604034424, + "learning_rate": 1.9984924623115578e-06, + "loss": 0.18235225677490235, + "step": 286700 + }, + { + "epoch": 96.08040874445096, + "grad_norm": 0.4424758851528168, + "learning_rate": 1.9817420435510887e-06, + "loss": 0.18314834594726562, + "step": 286800 + }, + { + "epoch": 96.11391238797219, + "grad_norm": 0.5286248922348022, + "learning_rate": 1.965159128978224e-06, + "loss": 0.18267539978027345, + "step": 286900 + }, + { + "epoch": 96.14741603149342, + "grad_norm": 0.44464874267578125, + "learning_rate": 1.9484087102177555e-06, + "loss": 0.18318920135498046, + "step": 287000 + }, + { + "epoch": 96.18091967501466, + "grad_norm": 0.5130648016929626, + "learning_rate": 1.9316582914572865e-06, + "loss": 0.18308115005493164, + "step": 287100 + }, + { + "epoch": 96.21442331853589, + "grad_norm": 0.8183990120887756, + "learning_rate": 1.9149078726968174e-06, + "loss": 0.1834044075012207, + "step": 287200 + }, + { + "epoch": 96.24792696205712, + "grad_norm": 0.5199669599533081, + "learning_rate": 1.8981574539363486e-06, + "loss": 0.18283458709716796, + "step": 287300 + }, + { + "epoch": 96.28143060557835, + "grad_norm": 0.4842471778392792, + "learning_rate": 1.8814070351758795e-06, + "loss": 0.18268014907836913, + "step": 287400 + }, + { + "epoch": 96.3149342490996, + "grad_norm": 0.6083213686943054, + "learning_rate": 1.8646566164154105e-06, + "loss": 0.18216041564941407, + "step": 287500 + }, + { + "epoch": 96.34843789262082, + "grad_norm": 0.46411433815956116, + "learning_rate": 1.8479061976549414e-06, + "loss": 0.18271490097045898, + "step": 287600 + }, + { + "epoch": 96.38194153614205, + "grad_norm": 0.5906765460968018, + "learning_rate": 1.8311557788944725e-06, + "loss": 0.18355520248413085, + "step": 287700 + }, + { + "epoch": 96.4154451796633, + "grad_norm": 0.6398022174835205, + "learning_rate": 1.8144053601340035e-06, + "loss": 0.18388975143432618, + "step": 287800 + }, + { + "epoch": 96.44894882318452, + "grad_norm": 0.5343595147132874, + "learning_rate": 1.7976549413735344e-06, + "loss": 0.1829561996459961, + "step": 287900 + }, + { + "epoch": 96.48245246670575, + "grad_norm": 0.5307978987693787, + "learning_rate": 1.7809045226130656e-06, + "loss": 0.1831664276123047, + "step": 288000 + }, + { + "epoch": 96.51595611022698, + "grad_norm": 0.42967861890792847, + "learning_rate": 1.7641541038525965e-06, + "loss": 0.18227174758911133, + "step": 288100 + }, + { + "epoch": 96.54945975374822, + "grad_norm": 0.5349688529968262, + "learning_rate": 1.7474036850921274e-06, + "loss": 0.1833807945251465, + "step": 288200 + }, + { + "epoch": 96.58296339726945, + "grad_norm": 0.5560780167579651, + "learning_rate": 1.7306532663316582e-06, + "loss": 0.1837186622619629, + "step": 288300 + }, + { + "epoch": 96.61646704079068, + "grad_norm": 0.6274934411048889, + "learning_rate": 1.7139028475711895e-06, + "loss": 0.18322343826293946, + "step": 288400 + }, + { + "epoch": 96.64997068431192, + "grad_norm": 0.4825371503829956, + "learning_rate": 1.6971524288107205e-06, + "loss": 0.18326036453247072, + "step": 288500 + }, + { + "epoch": 96.68347432783315, + "grad_norm": 0.6797924041748047, + "learning_rate": 1.6804020100502512e-06, + "loss": 0.18284734725952148, + "step": 288600 + }, + { + "epoch": 96.71697797135438, + "grad_norm": 0.5788692235946655, + "learning_rate": 1.6636515912897821e-06, + "loss": 0.1840299606323242, + "step": 288700 + }, + { + "epoch": 96.75048161487561, + "grad_norm": 0.49273577332496643, + "learning_rate": 1.6469011725293135e-06, + "loss": 0.18266069412231445, + "step": 288800 + }, + { + "epoch": 96.78398525839685, + "grad_norm": 0.5252591967582703, + "learning_rate": 1.630318257956449e-06, + "loss": 0.1839330291748047, + "step": 288900 + }, + { + "epoch": 96.81748890191808, + "grad_norm": 0.6281270980834961, + "learning_rate": 1.61356783919598e-06, + "loss": 0.18259082794189452, + "step": 289000 + }, + { + "epoch": 96.85099254543931, + "grad_norm": 0.589600682258606, + "learning_rate": 1.5968174204355109e-06, + "loss": 0.18413593292236327, + "step": 289100 + }, + { + "epoch": 96.88449618896055, + "grad_norm": 0.52843177318573, + "learning_rate": 1.580067001675042e-06, + "loss": 0.18312227249145507, + "step": 289200 + }, + { + "epoch": 96.91799983248178, + "grad_norm": 0.5499556660652161, + "learning_rate": 1.563316582914573e-06, + "loss": 0.18327688217163085, + "step": 289300 + }, + { + "epoch": 96.95150347600301, + "grad_norm": 0.5910999178886414, + "learning_rate": 1.5465661641541041e-06, + "loss": 0.18362533569335937, + "step": 289400 + }, + { + "epoch": 96.98500711952425, + "grad_norm": 0.47498592734336853, + "learning_rate": 1.5298157453936348e-06, + "loss": 0.18386016845703124, + "step": 289500 + }, + { + "epoch": 97.01842700393668, + "grad_norm": 0.5408181548118591, + "learning_rate": 1.513065326633166e-06, + "loss": 0.18346582412719725, + "step": 289600 + }, + { + "epoch": 97.05193064745791, + "grad_norm": 0.6393353939056396, + "learning_rate": 1.496314907872697e-06, + "loss": 0.18178239822387696, + "step": 289700 + }, + { + "epoch": 97.08543429097914, + "grad_norm": 0.568048894405365, + "learning_rate": 1.4795644891122279e-06, + "loss": 0.1829755973815918, + "step": 289800 + }, + { + "epoch": 97.11893793450038, + "grad_norm": 0.4984806776046753, + "learning_rate": 1.4628140703517588e-06, + "loss": 0.1820225715637207, + "step": 289900 + }, + { + "epoch": 97.15244157802161, + "grad_norm": 0.4840709865093231, + "learning_rate": 1.44606365159129e-06, + "loss": 0.18249683380126952, + "step": 290000 + }, + { + "epoch": 97.18594522154284, + "grad_norm": 0.5016071200370789, + "learning_rate": 1.4293132328308207e-06, + "loss": 0.18231712341308592, + "step": 290100 + }, + { + "epoch": 97.21944886506408, + "grad_norm": 0.6901659965515137, + "learning_rate": 1.4125628140703518e-06, + "loss": 0.18322145462036132, + "step": 290200 + }, + { + "epoch": 97.25295250858531, + "grad_norm": 0.4563469886779785, + "learning_rate": 1.3958123953098828e-06, + "loss": 0.18245380401611327, + "step": 290300 + }, + { + "epoch": 97.28645615210654, + "grad_norm": 0.6341580152511597, + "learning_rate": 1.3790619765494137e-06, + "loss": 0.18248394012451172, + "step": 290400 + }, + { + "epoch": 97.31995979562778, + "grad_norm": 0.681046187877655, + "learning_rate": 1.3623115577889449e-06, + "loss": 0.18289484024047853, + "step": 290500 + }, + { + "epoch": 97.35346343914901, + "grad_norm": 0.5641540884971619, + "learning_rate": 1.3455611390284758e-06, + "loss": 0.18241430282592774, + "step": 290600 + }, + { + "epoch": 97.38696708267024, + "grad_norm": 0.46917444467544556, + "learning_rate": 1.3288107202680067e-06, + "loss": 0.18300029754638672, + "step": 290700 + }, + { + "epoch": 97.42047072619147, + "grad_norm": 0.5886017084121704, + "learning_rate": 1.3120603015075377e-06, + "loss": 0.18347707748413086, + "step": 290800 + }, + { + "epoch": 97.45397436971271, + "grad_norm": 0.5818371772766113, + "learning_rate": 1.2954773869346736e-06, + "loss": 0.1830360221862793, + "step": 290900 + }, + { + "epoch": 97.48747801323394, + "grad_norm": 0.5439379215240479, + "learning_rate": 1.2787269681742043e-06, + "loss": 0.18396745681762694, + "step": 291000 + }, + { + "epoch": 97.52098165675517, + "grad_norm": 0.5070674419403076, + "learning_rate": 1.2619765494137355e-06, + "loss": 0.1832095718383789, + "step": 291100 + }, + { + "epoch": 97.55448530027641, + "grad_norm": 0.4415448307991028, + "learning_rate": 1.2452261306532664e-06, + "loss": 0.18289644241333008, + "step": 291200 + }, + { + "epoch": 97.58798894379764, + "grad_norm": 0.4324808418750763, + "learning_rate": 1.2284757118927973e-06, + "loss": 0.18389009475708007, + "step": 291300 + }, + { + "epoch": 97.62149258731887, + "grad_norm": 0.653737485408783, + "learning_rate": 1.2117252931323283e-06, + "loss": 0.1822391700744629, + "step": 291400 + }, + { + "epoch": 97.6549962308401, + "grad_norm": 0.5741151571273804, + "learning_rate": 1.1949748743718594e-06, + "loss": 0.18301633834838868, + "step": 291500 + }, + { + "epoch": 97.68849987436134, + "grad_norm": 0.526233971118927, + "learning_rate": 1.1782244556113904e-06, + "loss": 0.18326601028442382, + "step": 291600 + }, + { + "epoch": 97.72200351788257, + "grad_norm": 0.4789596498012543, + "learning_rate": 1.1614740368509213e-06, + "loss": 0.18228565216064452, + "step": 291700 + }, + { + "epoch": 97.7555071614038, + "grad_norm": 0.711111307144165, + "learning_rate": 1.1447236180904523e-06, + "loss": 0.18288152694702148, + "step": 291800 + }, + { + "epoch": 97.78901080492504, + "grad_norm": 0.5140437483787537, + "learning_rate": 1.1279731993299832e-06, + "loss": 0.18254825592041016, + "step": 291900 + }, + { + "epoch": 97.82251444844627, + "grad_norm": 0.47034555673599243, + "learning_rate": 1.1112227805695143e-06, + "loss": 0.18244110107421874, + "step": 292000 + }, + { + "epoch": 97.8560180919675, + "grad_norm": 0.5814681053161621, + "learning_rate": 1.0944723618090453e-06, + "loss": 0.1832912254333496, + "step": 292100 + }, + { + "epoch": 97.88952173548873, + "grad_norm": 0.5516090393066406, + "learning_rate": 1.0777219430485762e-06, + "loss": 0.18352859497070312, + "step": 292200 + }, + { + "epoch": 97.92302537900997, + "grad_norm": 0.5123777985572815, + "learning_rate": 1.0609715242881072e-06, + "loss": 0.18379606246948244, + "step": 292300 + }, + { + "epoch": 97.9565290225312, + "grad_norm": 0.6835401654243469, + "learning_rate": 1.0442211055276383e-06, + "loss": 0.18410768508911132, + "step": 292400 + }, + { + "epoch": 97.99003266605243, + "grad_norm": 0.5012428760528564, + "learning_rate": 1.0274706867671693e-06, + "loss": 0.18317014694213868, + "step": 292500 + }, + { + "epoch": 98.02345255046487, + "grad_norm": 0.4708642065525055, + "learning_rate": 1.0107202680067002e-06, + "loss": 0.18331142425537109, + "step": 292600 + }, + { + "epoch": 98.0569561939861, + "grad_norm": 0.5567511320114136, + "learning_rate": 9.939698492462311e-07, + "loss": 0.18246702194213868, + "step": 292700 + }, + { + "epoch": 98.09045983750732, + "grad_norm": 0.7058369517326355, + "learning_rate": 9.772194304857623e-07, + "loss": 0.18259771347045897, + "step": 292800 + }, + { + "epoch": 98.12396348102857, + "grad_norm": 0.6134818196296692, + "learning_rate": 9.604690117252932e-07, + "loss": 0.1822067070007324, + "step": 292900 + }, + { + "epoch": 98.1574671245498, + "grad_norm": 0.4781286418437958, + "learning_rate": 9.438860971524289e-07, + "loss": 0.18297542572021486, + "step": 293000 + }, + { + "epoch": 98.19097076807103, + "grad_norm": 0.49279746413230896, + "learning_rate": 9.271356783919598e-07, + "loss": 0.18277181625366212, + "step": 293100 + }, + { + "epoch": 98.22447441159225, + "grad_norm": 0.5490056276321411, + "learning_rate": 9.103852596314908e-07, + "loss": 0.1828497314453125, + "step": 293200 + }, + { + "epoch": 98.2579780551135, + "grad_norm": 0.6629262566566467, + "learning_rate": 8.936348408710217e-07, + "loss": 0.1831769371032715, + "step": 293300 + }, + { + "epoch": 98.29148169863473, + "grad_norm": 0.6081374883651733, + "learning_rate": 8.768844221105528e-07, + "loss": 0.18234825134277344, + "step": 293400 + }, + { + "epoch": 98.32498534215595, + "grad_norm": 0.5573914051055908, + "learning_rate": 8.601340033500838e-07, + "loss": 0.18284347534179687, + "step": 293500 + }, + { + "epoch": 98.3584889856772, + "grad_norm": 0.4881286025047302, + "learning_rate": 8.433835845896148e-07, + "loss": 0.18250568389892577, + "step": 293600 + }, + { + "epoch": 98.39199262919843, + "grad_norm": 0.5479198694229126, + "learning_rate": 8.266331658291458e-07, + "loss": 0.1822296905517578, + "step": 293700 + }, + { + "epoch": 98.42549627271966, + "grad_norm": 0.48754844069480896, + "learning_rate": 8.098827470686768e-07, + "loss": 0.1824342918395996, + "step": 293800 + }, + { + "epoch": 98.45899991624088, + "grad_norm": 0.5909836292266846, + "learning_rate": 7.931323283082078e-07, + "loss": 0.18264894485473632, + "step": 293900 + }, + { + "epoch": 98.49250355976213, + "grad_norm": 0.6499689817428589, + "learning_rate": 7.763819095477387e-07, + "loss": 0.1826353645324707, + "step": 294000 + }, + { + "epoch": 98.52600720328336, + "grad_norm": 0.5792352557182312, + "learning_rate": 7.596314907872698e-07, + "loss": 0.18250282287597655, + "step": 294100 + }, + { + "epoch": 98.55951084680459, + "grad_norm": 0.6496483087539673, + "learning_rate": 7.428810720268007e-07, + "loss": 0.18278635025024415, + "step": 294200 + }, + { + "epoch": 98.59301449032583, + "grad_norm": 0.5034297704696655, + "learning_rate": 7.261306532663317e-07, + "loss": 0.18362100601196288, + "step": 294300 + }, + { + "epoch": 98.62651813384706, + "grad_norm": 0.4216485917568207, + "learning_rate": 7.093802345058627e-07, + "loss": 0.18190402984619142, + "step": 294400 + }, + { + "epoch": 98.66002177736829, + "grad_norm": 0.4336554706096649, + "learning_rate": 6.926298157453936e-07, + "loss": 0.18188596725463868, + "step": 294500 + }, + { + "epoch": 98.69352542088953, + "grad_norm": 0.557890772819519, + "learning_rate": 6.758793969849246e-07, + "loss": 0.1827729797363281, + "step": 294600 + }, + { + "epoch": 98.72702906441076, + "grad_norm": 0.5158662796020508, + "learning_rate": 6.591289782244556e-07, + "loss": 0.18270872116088868, + "step": 294700 + }, + { + "epoch": 98.76053270793199, + "grad_norm": 0.5574226975440979, + "learning_rate": 6.423785594639867e-07, + "loss": 0.18279212951660156, + "step": 294800 + }, + { + "epoch": 98.79403635145322, + "grad_norm": 0.6103866696357727, + "learning_rate": 6.256281407035176e-07, + "loss": 0.18242774963378905, + "step": 294900 + }, + { + "epoch": 98.82753999497446, + "grad_norm": 0.6679960489273071, + "learning_rate": 6.088777219430487e-07, + "loss": 0.18265195846557616, + "step": 295000 + }, + { + "epoch": 98.86104363849569, + "grad_norm": 0.5146142244338989, + "learning_rate": 5.922948073701842e-07, + "loss": 0.1826561737060547, + "step": 295100 + }, + { + "epoch": 98.89454728201692, + "grad_norm": 0.4862828850746155, + "learning_rate": 5.755443886097152e-07, + "loss": 0.1830119514465332, + "step": 295200 + }, + { + "epoch": 98.92805092553816, + "grad_norm": 0.5384283661842346, + "learning_rate": 5.587939698492462e-07, + "loss": 0.18346889495849608, + "step": 295300 + }, + { + "epoch": 98.96155456905939, + "grad_norm": 0.5220957398414612, + "learning_rate": 5.420435510887773e-07, + "loss": 0.18368080139160156, + "step": 295400 + }, + { + "epoch": 98.99505821258062, + "grad_norm": 0.4835510849952698, + "learning_rate": 5.252931323283082e-07, + "loss": 0.1819740867614746, + "step": 295500 + }, + { + "epoch": 99.02847809699304, + "grad_norm": 0.599375307559967, + "learning_rate": 5.085427135678393e-07, + "loss": 0.18192974090576172, + "step": 295600 + }, + { + "epoch": 99.06198174051428, + "grad_norm": 0.7051849365234375, + "learning_rate": 4.917922948073702e-07, + "loss": 0.1823443603515625, + "step": 295700 + }, + { + "epoch": 99.09548538403551, + "grad_norm": 0.503696858882904, + "learning_rate": 4.750418760469012e-07, + "loss": 0.18231864929199218, + "step": 295800 + }, + { + "epoch": 99.12898902755674, + "grad_norm": 0.48068055510520935, + "learning_rate": 4.582914572864322e-07, + "loss": 0.1825026512145996, + "step": 295900 + }, + { + "epoch": 99.16249267107798, + "grad_norm": 0.5054277777671814, + "learning_rate": 4.415410385259632e-07, + "loss": 0.18171930313110352, + "step": 296000 + }, + { + "epoch": 99.19599631459921, + "grad_norm": 0.4834759831428528, + "learning_rate": 4.247906197654941e-07, + "loss": 0.18209936141967772, + "step": 296100 + }, + { + "epoch": 99.22949995812044, + "grad_norm": 0.5204523205757141, + "learning_rate": 4.080402010050251e-07, + "loss": 0.18290546417236328, + "step": 296200 + }, + { + "epoch": 99.26300360164169, + "grad_norm": 0.4851609766483307, + "learning_rate": 3.9128978224455616e-07, + "loss": 0.18262216567993164, + "step": 296300 + }, + { + "epoch": 99.29650724516291, + "grad_norm": 0.506882905960083, + "learning_rate": 3.745393634840871e-07, + "loss": 0.18311552047729493, + "step": 296400 + }, + { + "epoch": 99.33001088868414, + "grad_norm": 0.4979182183742523, + "learning_rate": 3.577889447236181e-07, + "loss": 0.18193258285522462, + "step": 296500 + }, + { + "epoch": 99.36351453220537, + "grad_norm": 0.41721171140670776, + "learning_rate": 3.4103852596314913e-07, + "loss": 0.18166379928588866, + "step": 296600 + }, + { + "epoch": 99.39701817572661, + "grad_norm": 0.5125341415405273, + "learning_rate": 3.2428810720268007e-07, + "loss": 0.1818573760986328, + "step": 296700 + }, + { + "epoch": 99.43052181924784, + "grad_norm": 0.5992101430892944, + "learning_rate": 3.0753768844221106e-07, + "loss": 0.1827593421936035, + "step": 296800 + }, + { + "epoch": 99.46402546276907, + "grad_norm": 0.551201343536377, + "learning_rate": 2.9078726968174206e-07, + "loss": 0.18226703643798828, + "step": 296900 + }, + { + "epoch": 99.49752910629032, + "grad_norm": 0.4715881645679474, + "learning_rate": 2.7403685092127305e-07, + "loss": 0.18271636962890625, + "step": 297000 + }, + { + "epoch": 99.53103274981154, + "grad_norm": 0.48507949709892273, + "learning_rate": 2.5728643216080404e-07, + "loss": 0.18286649703979493, + "step": 297100 + }, + { + "epoch": 99.56453639333277, + "grad_norm": 0.5795986652374268, + "learning_rate": 2.4070351758793973e-07, + "loss": 0.18219593048095703, + "step": 297200 + }, + { + "epoch": 99.598040036854, + "grad_norm": 0.4794217646121979, + "learning_rate": 2.239530988274707e-07, + "loss": 0.18355159759521483, + "step": 297300 + }, + { + "epoch": 99.63154368037524, + "grad_norm": 0.5386576056480408, + "learning_rate": 2.0720268006700167e-07, + "loss": 0.1827494430541992, + "step": 297400 + }, + { + "epoch": 99.66504732389647, + "grad_norm": 0.5734672546386719, + "learning_rate": 1.9045226130653268e-07, + "loss": 0.18233570098876953, + "step": 297500 + }, + { + "epoch": 99.6985509674177, + "grad_norm": 0.49709200859069824, + "learning_rate": 1.7370184254606365e-07, + "loss": 0.18292242050170898, + "step": 297600 + }, + { + "epoch": 99.73205461093895, + "grad_norm": 0.46515047550201416, + "learning_rate": 1.5695142378559464e-07, + "loss": 0.18247623443603517, + "step": 297700 + }, + { + "epoch": 99.76555825446017, + "grad_norm": 0.5647607445716858, + "learning_rate": 1.4020100502512564e-07, + "loss": 0.18333343505859376, + "step": 297800 + }, + { + "epoch": 99.7990618979814, + "grad_norm": 0.5439239144325256, + "learning_rate": 1.2345058626465663e-07, + "loss": 0.1823881721496582, + "step": 297900 + }, + { + "epoch": 99.83256554150263, + "grad_norm": 0.5171498656272888, + "learning_rate": 1.067001675041876e-07, + "loss": 0.18236944198608399, + "step": 298000 + } + ], + "logging_steps": 100, + "max_steps": 298500, + "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.5085368137731277e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/training_args.bin b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..4243bd5e526d7e7d0d142ff9063a8e0096d948ea --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.0.0", + "use_cache": false, + "vocab_size": 1534 +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/generation_config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/model.safetensors b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cf3871e7c7b34560828360ecc366d7bb0e3fd05c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d48c858f135bfe0b979440e34caee1783e9b1d7dce813e7c31be66d767065d4a +size 177980872 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/optimizer.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..562352ef8faff7c56212da8df7840ed3395d5909 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c85d68b14aee4443d28b4874473c29fa2c42a91bdc6480838ff2279eee544c +size 356010827 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/rng_state.pth b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a2e0589955d283d8cb762ce42fe10d0886d0c363 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434122da259f7158307f8cc21d4eb94eff6a7dd18404a9ff1429edb02b1710ac +size 14645 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/scaler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..da1fb79d8e734d82f801f4d505349894e3eadaaa --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b667ac9407830960af51c7683ee87b691702979295929499ea53ab6a56aac52 +size 1383 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/scheduler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4c4a28629a672688eac45581d9947beb1ec70e7f --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600300f18ddef38f94eebb5e8aa220db0ab68b5339876dd792d8630c858d163d +size 1465 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/trainer_state.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..585b10f591c28e069d4c747c6770a0e2d5bb6548 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/trainer_state.json @@ -0,0 +1,20901 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.86606918502387, + "eval_steps": 100, + "global_step": 298100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.03350364352123293, + "grad_norm": 0.8461591005325317, + "learning_rate": 4.9983417085427135e-05, + "loss": 1.800863037109375, + "step": 100 + }, + { + "epoch": 0.06700728704246586, + "grad_norm": 0.7391623258590698, + "learning_rate": 4.996666666666667e-05, + "loss": 0.8150953674316406, + "step": 200 + }, + { + "epoch": 0.10051093056369881, + "grad_norm": 0.6344850659370422, + "learning_rate": 4.99499162479062e-05, + "loss": 0.7532137298583984, + "step": 300 + }, + { + "epoch": 0.13401457408493173, + "grad_norm": 0.6711709499359131, + "learning_rate": 4.993316582914573e-05, + "loss": 0.7202082061767578, + "step": 400 + }, + { + "epoch": 0.16751821760616467, + "grad_norm": 0.6779165267944336, + "learning_rate": 4.9916415410385264e-05, + "loss": 0.7091973114013672, + "step": 500 + }, + { + "epoch": 0.20102186112739762, + "grad_norm": 0.6654858589172363, + "learning_rate": 4.989966499162479e-05, + "loss": 0.685182876586914, + "step": 600 + }, + { + "epoch": 0.23452550464863053, + "grad_norm": 0.6182253956794739, + "learning_rate": 4.988291457286433e-05, + "loss": 0.6745145416259766, + "step": 700 + }, + { + "epoch": 0.26802914816986345, + "grad_norm": 0.6512383818626404, + "learning_rate": 4.986616415410386e-05, + "loss": 0.6662254333496094, + "step": 800 + }, + { + "epoch": 0.3015327916910964, + "grad_norm": 0.6715951561927795, + "learning_rate": 4.9849413735343386e-05, + "loss": 0.6557020568847656, + "step": 900 + }, + { + "epoch": 0.33503643521232934, + "grad_norm": 0.5785344839096069, + "learning_rate": 4.9832663316582915e-05, + "loss": 0.6456297302246093, + "step": 1000 + }, + { + "epoch": 0.36854007873356226, + "grad_norm": 0.6495988368988037, + "learning_rate": 4.981591289782245e-05, + "loss": 0.6365409851074219, + "step": 1100 + }, + { + "epoch": 0.40204372225479523, + "grad_norm": 0.634831428527832, + "learning_rate": 4.979916247906198e-05, + "loss": 0.6296848678588867, + "step": 1200 + }, + { + "epoch": 0.43554736577602815, + "grad_norm": 0.5968198180198669, + "learning_rate": 4.978241206030151e-05, + "loss": 0.6211205673217773, + "step": 1300 + }, + { + "epoch": 0.46905100929726107, + "grad_norm": 0.634230375289917, + "learning_rate": 4.976566164154104e-05, + "loss": 0.6164393997192383, + "step": 1400 + }, + { + "epoch": 0.502554652818494, + "grad_norm": 0.5891489386558533, + "learning_rate": 4.974891122278057e-05, + "loss": 0.6082125854492187, + "step": 1500 + }, + { + "epoch": 0.5360582963397269, + "grad_norm": 0.6446542739868164, + "learning_rate": 4.97321608040201e-05, + "loss": 0.611778564453125, + "step": 1600 + }, + { + "epoch": 0.5695619398609599, + "grad_norm": 0.6366457343101501, + "learning_rate": 4.971541038525964e-05, + "loss": 0.6013064193725586, + "step": 1700 + }, + { + "epoch": 0.6030655833821928, + "grad_norm": 0.6310938596725464, + "learning_rate": 4.9698659966499166e-05, + "loss": 0.5960189819335937, + "step": 1800 + }, + { + "epoch": 0.6365692269034258, + "grad_norm": 0.6312111616134644, + "learning_rate": 4.9681909547738694e-05, + "loss": 0.5902027511596679, + "step": 1900 + }, + { + "epoch": 0.6700728704246587, + "grad_norm": 0.6359553337097168, + "learning_rate": 4.966515912897823e-05, + "loss": 0.5884978485107422, + "step": 2000 + }, + { + "epoch": 0.7035765139458916, + "grad_norm": 0.6602451205253601, + "learning_rate": 4.964840871021776e-05, + "loss": 0.58427734375, + "step": 2100 + }, + { + "epoch": 0.7370801574671245, + "grad_norm": 0.6105899810791016, + "learning_rate": 4.963165829145729e-05, + "loss": 0.5838186645507812, + "step": 2200 + }, + { + "epoch": 0.7705838009883574, + "grad_norm": 0.5694506764411926, + "learning_rate": 4.9614907872696816e-05, + "loss": 0.5781952667236329, + "step": 2300 + }, + { + "epoch": 0.8040874445095905, + "grad_norm": 0.6220190525054932, + "learning_rate": 4.959815745393635e-05, + "loss": 0.5734509658813477, + "step": 2400 + }, + { + "epoch": 0.8375910880308234, + "grad_norm": 0.5669824481010437, + "learning_rate": 4.958140703517588e-05, + "loss": 0.573906478881836, + "step": 2500 + }, + { + "epoch": 0.8710947315520563, + "grad_norm": 0.6178188920021057, + "learning_rate": 4.956465661641541e-05, + "loss": 0.5677206802368164, + "step": 2600 + }, + { + "epoch": 0.9045983750732892, + "grad_norm": 0.5571620464324951, + "learning_rate": 4.9547906197654945e-05, + "loss": 0.5622820663452148, + "step": 2700 + }, + { + "epoch": 0.9381020185945221, + "grad_norm": 0.5818703770637512, + "learning_rate": 4.9531155778894474e-05, + "loss": 0.5609216690063477, + "step": 2800 + }, + { + "epoch": 0.971605662115755, + "grad_norm": 0.5967586040496826, + "learning_rate": 4.9514405360134e-05, + "loss": 0.5596435165405274, + "step": 2900 + }, + { + "epoch": 1.005025546528185, + "grad_norm": 0.6468071937561035, + "learning_rate": 4.949765494137354e-05, + "loss": 0.5584405899047852, + "step": 3000 + }, + { + "epoch": 1.0385291900494178, + "grad_norm": 0.6350861191749573, + "learning_rate": 4.948090452261307e-05, + "loss": 0.5500188446044922, + "step": 3100 + }, + { + "epoch": 1.0720328335706508, + "grad_norm": 0.6933004260063171, + "learning_rate": 4.94641541038526e-05, + "loss": 0.546169662475586, + "step": 3200 + }, + { + "epoch": 1.1055364770918836, + "grad_norm": 0.6557233333587646, + "learning_rate": 4.944740368509213e-05, + "loss": 0.5476358795166015, + "step": 3300 + }, + { + "epoch": 1.1390401206131167, + "grad_norm": 0.6253458857536316, + "learning_rate": 4.943065326633166e-05, + "loss": 0.544293212890625, + "step": 3400 + }, + { + "epoch": 1.1725437641343497, + "grad_norm": 0.6146714091300964, + "learning_rate": 4.941390284757119e-05, + "loss": 0.5420544052124023, + "step": 3500 + }, + { + "epoch": 1.2060474076555825, + "grad_norm": 0.6168274879455566, + "learning_rate": 4.9397152428810725e-05, + "loss": 0.5440950775146485, + "step": 3600 + }, + { + "epoch": 1.2395510511768155, + "grad_norm": 0.6314318180084229, + "learning_rate": 4.9380402010050254e-05, + "loss": 0.5422676086425782, + "step": 3700 + }, + { + "epoch": 1.2730546946980486, + "grad_norm": 0.6257957816123962, + "learning_rate": 4.936365159128978e-05, + "loss": 0.5370346069335937, + "step": 3800 + }, + { + "epoch": 1.3065583382192814, + "grad_norm": 0.6324900984764099, + "learning_rate": 4.934690117252931e-05, + "loss": 0.5346813583374024, + "step": 3900 + }, + { + "epoch": 1.3400619817405142, + "grad_norm": 0.6128197312355042, + "learning_rate": 4.933015075376885e-05, + "loss": 0.5321989822387695, + "step": 4000 + }, + { + "epoch": 1.3735656252617472, + "grad_norm": 0.5664730072021484, + "learning_rate": 4.9313400335008376e-05, + "loss": 0.5304061126708984, + "step": 4100 + }, + { + "epoch": 1.4070692687829802, + "grad_norm": 0.5894239544868469, + "learning_rate": 4.929664991624791e-05, + "loss": 0.5285339736938477, + "step": 4200 + }, + { + "epoch": 1.440572912304213, + "grad_norm": 0.6181634068489075, + "learning_rate": 4.927989949748744e-05, + "loss": 0.5315813446044921, + "step": 4300 + }, + { + "epoch": 1.474076555825446, + "grad_norm": 0.6103029251098633, + "learning_rate": 4.926314907872697e-05, + "loss": 0.5283493423461914, + "step": 4400 + }, + { + "epoch": 1.507580199346679, + "grad_norm": 0.5960842967033386, + "learning_rate": 4.9246398659966505e-05, + "loss": 0.5253337097167968, + "step": 4500 + }, + { + "epoch": 1.541083842867912, + "grad_norm": 0.6720269918441772, + "learning_rate": 4.9229648241206034e-05, + "loss": 0.5257507705688477, + "step": 4600 + }, + { + "epoch": 1.5745874863891447, + "grad_norm": 0.6651366949081421, + "learning_rate": 4.921289782244556e-05, + "loss": 0.5222479248046875, + "step": 4700 + }, + { + "epoch": 1.6080911299103777, + "grad_norm": 0.6316231489181519, + "learning_rate": 4.919614740368509e-05, + "loss": 0.5179043197631836, + "step": 4800 + }, + { + "epoch": 1.6415947734316108, + "grad_norm": 0.5880525708198547, + "learning_rate": 4.917939698492463e-05, + "loss": 0.5151556777954102, + "step": 4900 + }, + { + "epoch": 1.6750984169528436, + "grad_norm": 0.6046984195709229, + "learning_rate": 4.9162646566164156e-05, + "loss": 0.5172126007080078, + "step": 5000 + }, + { + "epoch": 1.7086020604740766, + "grad_norm": 0.6584818959236145, + "learning_rate": 4.9145896147403684e-05, + "loss": 0.5168862533569336, + "step": 5100 + }, + { + "epoch": 1.7421057039953096, + "grad_norm": 0.644334077835083, + "learning_rate": 4.912914572864321e-05, + "loss": 0.516330337524414, + "step": 5200 + }, + { + "epoch": 1.7756093475165424, + "grad_norm": 0.6277704834938049, + "learning_rate": 4.911239530988275e-05, + "loss": 0.5101805114746094, + "step": 5300 + }, + { + "epoch": 1.8091129910377752, + "grad_norm": 0.6398980617523193, + "learning_rate": 4.909564489112228e-05, + "loss": 0.5114438247680664, + "step": 5400 + }, + { + "epoch": 1.8426166345590083, + "grad_norm": 0.6116181015968323, + "learning_rate": 4.907889447236181e-05, + "loss": 0.5063412094116211, + "step": 5500 + }, + { + "epoch": 1.8761202780802413, + "grad_norm": 0.6046104431152344, + "learning_rate": 4.906214405360134e-05, + "loss": 0.5081657409667969, + "step": 5600 + }, + { + "epoch": 1.909623921601474, + "grad_norm": 0.5920073390007019, + "learning_rate": 4.904539363484088e-05, + "loss": 0.5051012802124023, + "step": 5700 + }, + { + "epoch": 1.9431275651227071, + "grad_norm": 0.6170016527175903, + "learning_rate": 4.9028643216080407e-05, + "loss": 0.5026112747192383, + "step": 5800 + }, + { + "epoch": 1.9766312086439402, + "grad_norm": 0.6302964091300964, + "learning_rate": 4.9011892797319935e-05, + "loss": 0.501869125366211, + "step": 5900 + }, + { + "epoch": 2.01005109305637, + "grad_norm": 0.6208528280258179, + "learning_rate": 4.8995142378559464e-05, + "loss": 0.49743770599365233, + "step": 6000 + }, + { + "epoch": 2.043554736577603, + "grad_norm": 0.6439351439476013, + "learning_rate": 4.8978391959799e-05, + "loss": 0.49052135467529295, + "step": 6100 + }, + { + "epoch": 2.0770583800988356, + "grad_norm": 0.6153578162193298, + "learning_rate": 4.896164154103853e-05, + "loss": 0.4963309860229492, + "step": 6200 + }, + { + "epoch": 2.110562023620069, + "grad_norm": 0.5905429720878601, + "learning_rate": 4.894489112227806e-05, + "loss": 0.4935873413085938, + "step": 6300 + }, + { + "epoch": 2.1440656671413016, + "grad_norm": 0.5844092965126038, + "learning_rate": 4.8928140703517586e-05, + "loss": 0.49054019927978515, + "step": 6400 + }, + { + "epoch": 2.1775693106625345, + "grad_norm": 0.6116010546684265, + "learning_rate": 4.891139028475712e-05, + "loss": 0.4881373596191406, + "step": 6500 + }, + { + "epoch": 2.2110729541837673, + "grad_norm": 0.5920172333717346, + "learning_rate": 4.889463986599665e-05, + "loss": 0.48111820220947266, + "step": 6600 + }, + { + "epoch": 2.2445765977050005, + "grad_norm": 0.6223201155662537, + "learning_rate": 4.8877889447236186e-05, + "loss": 0.4858921813964844, + "step": 6700 + }, + { + "epoch": 2.2780802412262333, + "grad_norm": 0.679458737373352, + "learning_rate": 4.8861139028475715e-05, + "loss": 0.4880897903442383, + "step": 6800 + }, + { + "epoch": 2.311583884747466, + "grad_norm": 0.6320315003395081, + "learning_rate": 4.8844388609715244e-05, + "loss": 0.4870236587524414, + "step": 6900 + }, + { + "epoch": 2.3450875282686994, + "grad_norm": 0.6325832009315491, + "learning_rate": 4.882763819095478e-05, + "loss": 0.4866282272338867, + "step": 7000 + }, + { + "epoch": 2.378591171789932, + "grad_norm": 0.6240285634994507, + "learning_rate": 4.881088777219431e-05, + "loss": 0.48300540924072266, + "step": 7100 + }, + { + "epoch": 2.412094815311165, + "grad_norm": 0.6501027941703796, + "learning_rate": 4.879413735343384e-05, + "loss": 0.48553779602050784, + "step": 7200 + }, + { + "epoch": 2.4455984588323982, + "grad_norm": 0.6311469078063965, + "learning_rate": 4.8777386934673366e-05, + "loss": 0.4865619659423828, + "step": 7300 + }, + { + "epoch": 2.479102102353631, + "grad_norm": 0.6794814467430115, + "learning_rate": 4.87606365159129e-05, + "loss": 0.4808743286132813, + "step": 7400 + }, + { + "epoch": 2.512605745874864, + "grad_norm": 0.5595630407333374, + "learning_rate": 4.874388609715243e-05, + "loss": 0.48029510498046873, + "step": 7500 + }, + { + "epoch": 2.546109389396097, + "grad_norm": 0.6712229251861572, + "learning_rate": 4.872713567839196e-05, + "loss": 0.476650276184082, + "step": 7600 + }, + { + "epoch": 2.57961303291733, + "grad_norm": 0.6312442421913147, + "learning_rate": 4.871038525963149e-05, + "loss": 0.4794431686401367, + "step": 7700 + }, + { + "epoch": 2.6131166764385627, + "grad_norm": 0.6586233377456665, + "learning_rate": 4.8693634840871024e-05, + "loss": 0.4789765930175781, + "step": 7800 + }, + { + "epoch": 2.6466203199597955, + "grad_norm": 0.6464796662330627, + "learning_rate": 4.867688442211055e-05, + "loss": 0.4760271072387695, + "step": 7900 + }, + { + "epoch": 2.6801239634810283, + "grad_norm": 0.6250919103622437, + "learning_rate": 4.866013400335009e-05, + "loss": 0.47466728210449216, + "step": 8000 + }, + { + "epoch": 2.7136276070022616, + "grad_norm": 0.6650984287261963, + "learning_rate": 4.864338358458962e-05, + "loss": 0.4735995864868164, + "step": 8100 + }, + { + "epoch": 2.7471312505234944, + "grad_norm": 0.6536551713943481, + "learning_rate": 4.862663316582915e-05, + "loss": 0.47292491912841794, + "step": 8200 + }, + { + "epoch": 2.780634894044727, + "grad_norm": 0.6191151142120361, + "learning_rate": 4.860988274706868e-05, + "loss": 0.4695613479614258, + "step": 8300 + }, + { + "epoch": 2.8141385375659604, + "grad_norm": 0.6110975742340088, + "learning_rate": 4.859313232830821e-05, + "loss": 0.47242835998535154, + "step": 8400 + }, + { + "epoch": 2.8476421810871932, + "grad_norm": 0.6511522531509399, + "learning_rate": 4.857638190954774e-05, + "loss": 0.46818080902099607, + "step": 8500 + }, + { + "epoch": 2.881145824608426, + "grad_norm": 0.640023410320282, + "learning_rate": 4.8559631490787275e-05, + "loss": 0.4684713745117188, + "step": 8600 + }, + { + "epoch": 2.9146494681296593, + "grad_norm": 0.6558462381362915, + "learning_rate": 4.85428810720268e-05, + "loss": 0.47039485931396485, + "step": 8700 + }, + { + "epoch": 2.948153111650892, + "grad_norm": 0.64987713098526, + "learning_rate": 4.852613065326633e-05, + "loss": 0.46639087677001956, + "step": 8800 + }, + { + "epoch": 2.981656755172125, + "grad_norm": 0.6003667712211609, + "learning_rate": 4.850938023450586e-05, + "loss": 0.4636190795898438, + "step": 8900 + }, + { + "epoch": 3.0150766395845547, + "grad_norm": 0.6194270253181458, + "learning_rate": 4.8492629815745397e-05, + "loss": 0.4602717590332031, + "step": 9000 + }, + { + "epoch": 3.0485802831057875, + "grad_norm": 0.6473113894462585, + "learning_rate": 4.8475879396984925e-05, + "loss": 0.4513474655151367, + "step": 9100 + }, + { + "epoch": 3.082083926627021, + "grad_norm": 0.581709086894989, + "learning_rate": 4.845912897822446e-05, + "loss": 0.45967998504638674, + "step": 9200 + }, + { + "epoch": 3.1155875701482536, + "grad_norm": 0.6870703101158142, + "learning_rate": 4.844237855946399e-05, + "loss": 0.4573031997680664, + "step": 9300 + }, + { + "epoch": 3.1490912136694864, + "grad_norm": 0.6703235507011414, + "learning_rate": 4.842562814070352e-05, + "loss": 0.45413665771484374, + "step": 9400 + }, + { + "epoch": 3.1825948571907197, + "grad_norm": 0.6165799498558044, + "learning_rate": 4.8408877721943054e-05, + "loss": 0.4570289993286133, + "step": 9500 + }, + { + "epoch": 3.2160985007119525, + "grad_norm": 0.6460033059120178, + "learning_rate": 4.839212730318258e-05, + "loss": 0.4591374969482422, + "step": 9600 + }, + { + "epoch": 3.2496021442331853, + "grad_norm": 0.6148829460144043, + "learning_rate": 4.837537688442211e-05, + "loss": 0.4580984115600586, + "step": 9700 + }, + { + "epoch": 3.283105787754418, + "grad_norm": 0.6245681047439575, + "learning_rate": 4.835862646566164e-05, + "loss": 0.4545408248901367, + "step": 9800 + }, + { + "epoch": 3.3166094312756513, + "grad_norm": 0.6586223840713501, + "learning_rate": 4.8341876046901176e-05, + "loss": 0.4529739761352539, + "step": 9900 + }, + { + "epoch": 3.350113074796884, + "grad_norm": 0.6357883810997009, + "learning_rate": 4.8325125628140705e-05, + "loss": 0.4568283843994141, + "step": 10000 + }, + { + "epoch": 3.383616718318117, + "grad_norm": 0.6078239679336548, + "learning_rate": 4.8308375209380234e-05, + "loss": 0.45651729583740236, + "step": 10100 + }, + { + "epoch": 3.41712036183935, + "grad_norm": 0.6468596458435059, + "learning_rate": 4.829162479061976e-05, + "loss": 0.45133846282958984, + "step": 10200 + }, + { + "epoch": 3.450624005360583, + "grad_norm": 0.6487044095993042, + "learning_rate": 4.82748743718593e-05, + "loss": 0.4508181381225586, + "step": 10300 + }, + { + "epoch": 3.484127648881816, + "grad_norm": 0.642910897731781, + "learning_rate": 4.825812395309883e-05, + "loss": 0.45145717620849607, + "step": 10400 + }, + { + "epoch": 3.517631292403049, + "grad_norm": 0.6625356674194336, + "learning_rate": 4.824137353433836e-05, + "loss": 0.45529659271240236, + "step": 10500 + }, + { + "epoch": 3.551134935924282, + "grad_norm": 0.6431829929351807, + "learning_rate": 4.822462311557789e-05, + "loss": 0.4476095962524414, + "step": 10600 + }, + { + "epoch": 3.5846385794455147, + "grad_norm": 0.6072223782539368, + "learning_rate": 4.820787269681743e-05, + "loss": 0.4495735168457031, + "step": 10700 + }, + { + "epoch": 3.6181422229667475, + "grad_norm": 0.586395800113678, + "learning_rate": 4.8191122278056956e-05, + "loss": 0.44253528594970704, + "step": 10800 + }, + { + "epoch": 3.6516458664879807, + "grad_norm": 0.5829164981842041, + "learning_rate": 4.8174371859296485e-05, + "loss": 0.44407268524169924, + "step": 10900 + }, + { + "epoch": 3.6851495100092135, + "grad_norm": 0.612237274646759, + "learning_rate": 4.8157621440536014e-05, + "loss": 0.44537506103515623, + "step": 11000 + }, + { + "epoch": 3.7186531535304463, + "grad_norm": 0.5877944827079773, + "learning_rate": 4.814087102177555e-05, + "loss": 0.44692161560058596, + "step": 11100 + }, + { + "epoch": 3.752156797051679, + "grad_norm": 0.6447933316230774, + "learning_rate": 4.812412060301508e-05, + "loss": 0.44803882598876954, + "step": 11200 + }, + { + "epoch": 3.7856604405729124, + "grad_norm": 0.6374318599700928, + "learning_rate": 4.810737018425461e-05, + "loss": 0.4482523345947266, + "step": 11300 + }, + { + "epoch": 3.819164084094145, + "grad_norm": 0.7126030921936035, + "learning_rate": 4.8090619765494136e-05, + "loss": 0.44646026611328127, + "step": 11400 + }, + { + "epoch": 3.852667727615378, + "grad_norm": 0.6466185450553894, + "learning_rate": 4.807386934673367e-05, + "loss": 0.44249160766601564, + "step": 11500 + }, + { + "epoch": 3.8861713711366113, + "grad_norm": 0.6428183913230896, + "learning_rate": 4.80571189279732e-05, + "loss": 0.44268692016601563, + "step": 11600 + }, + { + "epoch": 3.919675014657844, + "grad_norm": 0.5706833600997925, + "learning_rate": 4.8040368509212736e-05, + "loss": 0.4477870559692383, + "step": 11700 + }, + { + "epoch": 3.953178658179077, + "grad_norm": 0.6583021879196167, + "learning_rate": 4.8023618090452265e-05, + "loss": 0.44658790588378905, + "step": 11800 + }, + { + "epoch": 3.98668230170031, + "grad_norm": 0.6143375039100647, + "learning_rate": 4.800686767169179e-05, + "loss": 0.4439199447631836, + "step": 11900 + }, + { + "epoch": 4.02010218611274, + "grad_norm": 0.5873826146125793, + "learning_rate": 4.799011725293133e-05, + "loss": 0.43299171447753904, + "step": 12000 + }, + { + "epoch": 4.053605829633972, + "grad_norm": 0.652965247631073, + "learning_rate": 4.797336683417086e-05, + "loss": 0.43379459381103513, + "step": 12100 + }, + { + "epoch": 4.087109473155206, + "grad_norm": 0.6809676885604858, + "learning_rate": 4.795661641541039e-05, + "loss": 0.434725341796875, + "step": 12200 + }, + { + "epoch": 4.120613116676439, + "grad_norm": 0.7001864314079285, + "learning_rate": 4.7939865996649915e-05, + "loss": 0.4402421188354492, + "step": 12300 + }, + { + "epoch": 4.154116760197671, + "grad_norm": 0.5879281759262085, + "learning_rate": 4.792311557788945e-05, + "loss": 0.436952018737793, + "step": 12400 + }, + { + "epoch": 4.187620403718904, + "grad_norm": 0.6814981698989868, + "learning_rate": 4.790636515912898e-05, + "loss": 0.43582103729248045, + "step": 12500 + }, + { + "epoch": 4.221124047240138, + "grad_norm": 0.6850152611732483, + "learning_rate": 4.788961474036851e-05, + "loss": 0.4337678527832031, + "step": 12600 + }, + { + "epoch": 4.25462769076137, + "grad_norm": 0.6886492967605591, + "learning_rate": 4.787286432160804e-05, + "loss": 0.4366899108886719, + "step": 12700 + }, + { + "epoch": 4.288131334282603, + "grad_norm": 0.6915615797042847, + "learning_rate": 4.785611390284757e-05, + "loss": 0.4344156265258789, + "step": 12800 + }, + { + "epoch": 4.3216349778038365, + "grad_norm": 0.6565848588943481, + "learning_rate": 4.78393634840871e-05, + "loss": 0.43212577819824216, + "step": 12900 + }, + { + "epoch": 4.355138621325069, + "grad_norm": 0.6957235336303711, + "learning_rate": 4.782261306532664e-05, + "loss": 0.4340908432006836, + "step": 13000 + }, + { + "epoch": 4.388642264846302, + "grad_norm": 0.6763550043106079, + "learning_rate": 4.7805862646566166e-05, + "loss": 0.43744525909423826, + "step": 13100 + }, + { + "epoch": 4.4221459083675345, + "grad_norm": 0.6657949090003967, + "learning_rate": 4.77891122278057e-05, + "loss": 0.4336092758178711, + "step": 13200 + }, + { + "epoch": 4.455649551888768, + "grad_norm": 0.6623894572257996, + "learning_rate": 4.777236180904523e-05, + "loss": 0.43067619323730466, + "step": 13300 + }, + { + "epoch": 4.489153195410001, + "grad_norm": 0.7518236041069031, + "learning_rate": 4.775561139028476e-05, + "loss": 0.4269240951538086, + "step": 13400 + }, + { + "epoch": 4.522656838931233, + "grad_norm": 0.6672277450561523, + "learning_rate": 4.773886097152429e-05, + "loss": 0.42989879608154297, + "step": 13500 + }, + { + "epoch": 4.556160482452467, + "grad_norm": 0.6400379538536072, + "learning_rate": 4.7722110552763824e-05, + "loss": 0.4264271926879883, + "step": 13600 + }, + { + "epoch": 4.5896641259737, + "grad_norm": 0.5992236733436584, + "learning_rate": 4.770536013400335e-05, + "loss": 0.4286244964599609, + "step": 13700 + }, + { + "epoch": 4.623167769494932, + "grad_norm": 0.674788773059845, + "learning_rate": 4.768860971524288e-05, + "loss": 0.42616188049316406, + "step": 13800 + }, + { + "epoch": 4.6566714130161655, + "grad_norm": 0.6788604259490967, + "learning_rate": 4.767185929648241e-05, + "loss": 0.4273800277709961, + "step": 13900 + }, + { + "epoch": 4.690175056537399, + "grad_norm": 0.6140567064285278, + "learning_rate": 4.7655108877721946e-05, + "loss": 0.43147178649902346, + "step": 14000 + }, + { + "epoch": 4.723678700058631, + "grad_norm": 0.6155766248703003, + "learning_rate": 4.7638525963149085e-05, + "loss": 0.4265935134887695, + "step": 14100 + }, + { + "epoch": 4.757182343579864, + "grad_norm": 0.6408616304397583, + "learning_rate": 4.7621775544388614e-05, + "loss": 0.4271296691894531, + "step": 14200 + }, + { + "epoch": 4.790685987101098, + "grad_norm": 0.6060003638267517, + "learning_rate": 4.760502512562814e-05, + "loss": 0.42877567291259766, + "step": 14300 + }, + { + "epoch": 4.82418963062233, + "grad_norm": 0.594854474067688, + "learning_rate": 4.758827470686767e-05, + "loss": 0.42625518798828127, + "step": 14400 + }, + { + "epoch": 4.857693274143563, + "grad_norm": 0.7048496007919312, + "learning_rate": 4.757152428810721e-05, + "loss": 0.4247948455810547, + "step": 14500 + }, + { + "epoch": 4.8911969176647965, + "grad_norm": 0.6743406057357788, + "learning_rate": 4.7554773869346736e-05, + "loss": 0.42869789123535157, + "step": 14600 + }, + { + "epoch": 4.924700561186029, + "grad_norm": 0.6159805059432983, + "learning_rate": 4.7538023450586265e-05, + "loss": 0.42471588134765625, + "step": 14700 + }, + { + "epoch": 4.958204204707262, + "grad_norm": 0.6490402817726135, + "learning_rate": 4.7521273031825794e-05, + "loss": 0.42407047271728515, + "step": 14800 + }, + { + "epoch": 4.991707848228495, + "grad_norm": 0.6755446791648865, + "learning_rate": 4.750452261306533e-05, + "loss": 0.42307563781738283, + "step": 14900 + }, + { + "epoch": 5.025127732640924, + "grad_norm": 0.6245474219322205, + "learning_rate": 4.748777219430486e-05, + "loss": 0.4140509796142578, + "step": 15000 + }, + { + "epoch": 5.0586313761621575, + "grad_norm": 0.6199154257774353, + "learning_rate": 4.747102177554439e-05, + "loss": 0.4141695785522461, + "step": 15100 + }, + { + "epoch": 5.092135019683391, + "grad_norm": 0.6318620443344116, + "learning_rate": 4.7454271356783916e-05, + "loss": 0.4133845520019531, + "step": 15200 + }, + { + "epoch": 5.125638663204623, + "grad_norm": 0.6261297464370728, + "learning_rate": 4.743752093802346e-05, + "loss": 0.41985397338867186, + "step": 15300 + }, + { + "epoch": 5.159142306725856, + "grad_norm": 0.6642125248908997, + "learning_rate": 4.742077051926299e-05, + "loss": 0.41414112091064453, + "step": 15400 + }, + { + "epoch": 5.19264595024709, + "grad_norm": 0.7118062973022461, + "learning_rate": 4.7404020100502516e-05, + "loss": 0.4157746505737305, + "step": 15500 + }, + { + "epoch": 5.226149593768322, + "grad_norm": 0.6888347268104553, + "learning_rate": 4.7387269681742045e-05, + "loss": 0.41798015594482424, + "step": 15600 + }, + { + "epoch": 5.259653237289555, + "grad_norm": 0.6572776436805725, + "learning_rate": 4.737051926298158e-05, + "loss": 0.4158905029296875, + "step": 15700 + }, + { + "epoch": 5.2931568808107885, + "grad_norm": 0.6731371283531189, + "learning_rate": 4.735376884422111e-05, + "loss": 0.4200982666015625, + "step": 15800 + }, + { + "epoch": 5.326660524332021, + "grad_norm": 0.6026290655136108, + "learning_rate": 4.733701842546064e-05, + "loss": 0.4160591125488281, + "step": 15900 + }, + { + "epoch": 5.360164167853254, + "grad_norm": 0.6480405926704407, + "learning_rate": 4.732026800670017e-05, + "loss": 0.4141067123413086, + "step": 16000 + }, + { + "epoch": 5.393667811374487, + "grad_norm": 0.7435486912727356, + "learning_rate": 4.7303685092127306e-05, + "loss": 0.4195803451538086, + "step": 16100 + }, + { + "epoch": 5.42717145489572, + "grad_norm": 0.6561776995658875, + "learning_rate": 4.7286934673366835e-05, + "loss": 0.41183818817138673, + "step": 16200 + }, + { + "epoch": 5.460675098416953, + "grad_norm": 0.637554407119751, + "learning_rate": 4.727018425460637e-05, + "loss": 0.41124614715576174, + "step": 16300 + }, + { + "epoch": 5.494178741938185, + "grad_norm": 0.6575638055801392, + "learning_rate": 4.72534338358459e-05, + "loss": 0.41794925689697265, + "step": 16400 + }, + { + "epoch": 5.527682385459419, + "grad_norm": 0.678394079208374, + "learning_rate": 4.723668341708543e-05, + "loss": 0.4172962188720703, + "step": 16500 + }, + { + "epoch": 5.561186028980652, + "grad_norm": 0.6401932835578918, + "learning_rate": 4.7219932998324964e-05, + "loss": 0.4176398468017578, + "step": 16600 + }, + { + "epoch": 5.594689672501884, + "grad_norm": 0.7197437286376953, + "learning_rate": 4.720318257956449e-05, + "loss": 0.4155929183959961, + "step": 16700 + }, + { + "epoch": 5.6281933160231175, + "grad_norm": 0.6697796583175659, + "learning_rate": 4.718643216080402e-05, + "loss": 0.41755367279052735, + "step": 16800 + }, + { + "epoch": 5.661696959544351, + "grad_norm": 0.6090868711471558, + "learning_rate": 4.716968174204355e-05, + "loss": 0.4136951446533203, + "step": 16900 + }, + { + "epoch": 5.695200603065583, + "grad_norm": 0.6004068851470947, + "learning_rate": 4.7152931323283086e-05, + "loss": 0.4162490463256836, + "step": 17000 + }, + { + "epoch": 5.728704246586816, + "grad_norm": 0.6552139520645142, + "learning_rate": 4.7136180904522615e-05, + "loss": 0.4109830856323242, + "step": 17100 + }, + { + "epoch": 5.76220789010805, + "grad_norm": 0.7132771015167236, + "learning_rate": 4.7119430485762144e-05, + "loss": 0.4129109573364258, + "step": 17200 + }, + { + "epoch": 5.795711533629282, + "grad_norm": 0.6571471095085144, + "learning_rate": 4.710268006700167e-05, + "loss": 0.4140293121337891, + "step": 17300 + }, + { + "epoch": 5.829215177150515, + "grad_norm": 0.6521652936935425, + "learning_rate": 4.708592964824121e-05, + "loss": 0.41335311889648435, + "step": 17400 + }, + { + "epoch": 5.862718820671748, + "grad_norm": 0.6223021149635315, + "learning_rate": 4.706917922948074e-05, + "loss": 0.41415943145751954, + "step": 17500 + }, + { + "epoch": 5.896222464192981, + "grad_norm": 0.6671064496040344, + "learning_rate": 4.705242881072027e-05, + "loss": 0.4121688461303711, + "step": 17600 + }, + { + "epoch": 5.929726107714214, + "grad_norm": 0.6168386340141296, + "learning_rate": 4.70356783919598e-05, + "loss": 0.40964771270751954, + "step": 17700 + }, + { + "epoch": 5.963229751235447, + "grad_norm": 0.6829288601875305, + "learning_rate": 4.701892797319934e-05, + "loss": 0.4161583709716797, + "step": 17800 + }, + { + "epoch": 5.99673339475668, + "grad_norm": 0.6415479183197021, + "learning_rate": 4.7002177554438866e-05, + "loss": 0.4163412857055664, + "step": 17900 + }, + { + "epoch": 6.0301532791691095, + "grad_norm": 0.6762277483940125, + "learning_rate": 4.6985427135678394e-05, + "loss": 0.40404136657714845, + "step": 18000 + }, + { + "epoch": 6.063656922690343, + "grad_norm": 0.7215397357940674, + "learning_rate": 4.696884422110553e-05, + "loss": 0.40555873870849607, + "step": 18100 + }, + { + "epoch": 6.097160566211575, + "grad_norm": 0.6093649864196777, + "learning_rate": 4.695209380234506e-05, + "loss": 0.3959674072265625, + "step": 18200 + }, + { + "epoch": 6.130664209732808, + "grad_norm": 0.6576215624809265, + "learning_rate": 4.693534338358459e-05, + "loss": 0.4000381851196289, + "step": 18300 + }, + { + "epoch": 6.164167853254042, + "grad_norm": 0.6869475841522217, + "learning_rate": 4.691859296482412e-05, + "loss": 0.40716861724853515, + "step": 18400 + }, + { + "epoch": 6.197671496775274, + "grad_norm": 0.6864603161811829, + "learning_rate": 4.690184254606365e-05, + "loss": 0.4014585494995117, + "step": 18500 + }, + { + "epoch": 6.231175140296507, + "grad_norm": 0.68086177110672, + "learning_rate": 4.6885092127303185e-05, + "loss": 0.3985603713989258, + "step": 18600 + }, + { + "epoch": 6.2646787838177405, + "grad_norm": 0.700307309627533, + "learning_rate": 4.686834170854272e-05, + "loss": 0.3990879440307617, + "step": 18700 + }, + { + "epoch": 6.298182427338973, + "grad_norm": 0.7301186919212341, + "learning_rate": 4.685159128978225e-05, + "loss": 0.4010288619995117, + "step": 18800 + }, + { + "epoch": 6.331686070860206, + "grad_norm": 0.6819117069244385, + "learning_rate": 4.683484087102178e-05, + "loss": 0.4012245941162109, + "step": 18900 + }, + { + "epoch": 6.365189714381439, + "grad_norm": 0.6428888440132141, + "learning_rate": 4.681809045226131e-05, + "loss": 0.40439247131347655, + "step": 19000 + }, + { + "epoch": 6.398693357902672, + "grad_norm": 0.6879697442054749, + "learning_rate": 4.680134003350084e-05, + "loss": 0.4002133560180664, + "step": 19100 + }, + { + "epoch": 6.432197001423905, + "grad_norm": 0.7050502300262451, + "learning_rate": 4.678458961474037e-05, + "loss": 0.40451095581054686, + "step": 19200 + }, + { + "epoch": 6.465700644945138, + "grad_norm": 0.6575663685798645, + "learning_rate": 4.67678391959799e-05, + "loss": 0.40367134094238283, + "step": 19300 + }, + { + "epoch": 6.4992042884663705, + "grad_norm": 0.725883424282074, + "learning_rate": 4.675108877721943e-05, + "loss": 0.40375911712646484, + "step": 19400 + }, + { + "epoch": 6.532707931987604, + "grad_norm": 0.6960121989250183, + "learning_rate": 4.6734338358458964e-05, + "loss": 0.39711700439453124, + "step": 19500 + }, + { + "epoch": 6.566211575508836, + "grad_norm": 0.6402387022972107, + "learning_rate": 4.671758793969849e-05, + "loss": 0.40309242248535154, + "step": 19600 + }, + { + "epoch": 6.599715219030069, + "grad_norm": 0.6541135311126709, + "learning_rate": 4.670083752093802e-05, + "loss": 0.3986012268066406, + "step": 19700 + }, + { + "epoch": 6.633218862551303, + "grad_norm": 0.7802708745002747, + "learning_rate": 4.668408710217756e-05, + "loss": 0.4055080795288086, + "step": 19800 + }, + { + "epoch": 6.666722506072535, + "grad_norm": 0.7293182015419006, + "learning_rate": 4.666733668341709e-05, + "loss": 0.39762969970703127, + "step": 19900 + }, + { + "epoch": 6.700226149593768, + "grad_norm": 0.6476279497146606, + "learning_rate": 4.665058626465662e-05, + "loss": 0.39965827941894533, + "step": 20000 + }, + { + "epoch": 6.7337297931150015, + "grad_norm": 0.7234406471252441, + "learning_rate": 4.663383584589615e-05, + "loss": 0.40417919158935545, + "step": 20100 + }, + { + "epoch": 6.767233436636234, + "grad_norm": 0.6661069989204407, + "learning_rate": 4.661725293132328e-05, + "loss": 0.40048927307128906, + "step": 20200 + }, + { + "epoch": 6.800737080157467, + "grad_norm": 0.6745995283126831, + "learning_rate": 4.660050251256282e-05, + "loss": 0.40084247589111327, + "step": 20300 + }, + { + "epoch": 6.8342407236787, + "grad_norm": 0.6546103954315186, + "learning_rate": 4.658375209380235e-05, + "loss": 0.40273414611816405, + "step": 20400 + }, + { + "epoch": 6.867744367199933, + "grad_norm": 0.6249874830245972, + "learning_rate": 4.6567001675041877e-05, + "loss": 0.4047482299804688, + "step": 20500 + }, + { + "epoch": 6.901248010721166, + "grad_norm": 0.621865451335907, + "learning_rate": 4.6550251256281405e-05, + "loss": 0.40309608459472657, + "step": 20600 + }, + { + "epoch": 6.934751654242399, + "grad_norm": 0.664582371711731, + "learning_rate": 4.653350083752094e-05, + "loss": 0.402041015625, + "step": 20700 + }, + { + "epoch": 6.968255297763632, + "grad_norm": 0.6802883148193359, + "learning_rate": 4.651675041876047e-05, + "loss": 0.40645900726318357, + "step": 20800 + }, + { + "epoch": 7.001675182176061, + "grad_norm": 0.6586912870407104, + "learning_rate": 4.6500000000000005e-05, + "loss": 0.3996978759765625, + "step": 20900 + }, + { + "epoch": 7.035178825697295, + "grad_norm": 0.6849681735038757, + "learning_rate": 4.6483249581239534e-05, + "loss": 0.38614749908447266, + "step": 21000 + }, + { + "epoch": 7.068682469218528, + "grad_norm": 0.694872260093689, + "learning_rate": 4.646649916247906e-05, + "loss": 0.38619533538818357, + "step": 21100 + }, + { + "epoch": 7.10218611273976, + "grad_norm": 0.7047699689865112, + "learning_rate": 4.64497487437186e-05, + "loss": 0.38167682647705076, + "step": 21200 + }, + { + "epoch": 7.1356897562609936, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.643299832495813e-05, + "loss": 0.3932147979736328, + "step": 21300 + }, + { + "epoch": 7.169193399782226, + "grad_norm": 0.6869648098945618, + "learning_rate": 4.6416247906197656e-05, + "loss": 0.38886920928955077, + "step": 21400 + }, + { + "epoch": 7.202697043303459, + "grad_norm": 0.7238380908966064, + "learning_rate": 4.6399497487437185e-05, + "loss": 0.3933087158203125, + "step": 21500 + }, + { + "epoch": 7.236200686824692, + "grad_norm": 0.708855152130127, + "learning_rate": 4.638274706867672e-05, + "loss": 0.3932600784301758, + "step": 21600 + }, + { + "epoch": 7.269704330345925, + "grad_norm": 0.6577633619308472, + "learning_rate": 4.636599664991625e-05, + "loss": 0.38899864196777345, + "step": 21700 + }, + { + "epoch": 7.303207973867158, + "grad_norm": 0.7226035594940186, + "learning_rate": 4.634924623115578e-05, + "loss": 0.3912385559082031, + "step": 21800 + }, + { + "epoch": 7.336711617388391, + "grad_norm": 0.7393138408660889, + "learning_rate": 4.633249581239531e-05, + "loss": 0.38804672241210936, + "step": 21900 + }, + { + "epoch": 7.370215260909624, + "grad_norm": 0.7591322660446167, + "learning_rate": 4.631574539363484e-05, + "loss": 0.39187992095947266, + "step": 22000 + }, + { + "epoch": 7.403718904430857, + "grad_norm": 0.7180842757225037, + "learning_rate": 4.629899497487438e-05, + "loss": 0.3885354232788086, + "step": 22100 + }, + { + "epoch": 7.43722254795209, + "grad_norm": 0.5701187252998352, + "learning_rate": 4.628241206030151e-05, + "loss": 0.3929626083374023, + "step": 22200 + }, + { + "epoch": 7.4707261914733225, + "grad_norm": 0.6831353902816772, + "learning_rate": 4.626566164154104e-05, + "loss": 0.3864256286621094, + "step": 22300 + }, + { + "epoch": 7.504229834994556, + "grad_norm": 0.7295540571212769, + "learning_rate": 4.6248911222780575e-05, + "loss": 0.3930975341796875, + "step": 22400 + }, + { + "epoch": 7.537733478515788, + "grad_norm": 0.6555300951004028, + "learning_rate": 4.6232160804020104e-05, + "loss": 0.39193412780761716, + "step": 22500 + }, + { + "epoch": 7.571237122037021, + "grad_norm": 0.6836072206497192, + "learning_rate": 4.621541038525963e-05, + "loss": 0.39321327209472656, + "step": 22600 + }, + { + "epoch": 7.604740765558255, + "grad_norm": 0.7344244122505188, + "learning_rate": 4.619865996649916e-05, + "loss": 0.39178211212158204, + "step": 22700 + }, + { + "epoch": 7.638244409079487, + "grad_norm": 0.6757531762123108, + "learning_rate": 4.61819095477387e-05, + "loss": 0.3929476547241211, + "step": 22800 + }, + { + "epoch": 7.67174805260072, + "grad_norm": 0.790185272693634, + "learning_rate": 4.6165159128978226e-05, + "loss": 0.388702392578125, + "step": 22900 + }, + { + "epoch": 7.7052516961219535, + "grad_norm": 0.6090592741966248, + "learning_rate": 4.6148408710217755e-05, + "loss": 0.39199878692626955, + "step": 23000 + }, + { + "epoch": 7.738755339643186, + "grad_norm": 0.7253360152244568, + "learning_rate": 4.6131658291457284e-05, + "loss": 0.39112945556640627, + "step": 23100 + }, + { + "epoch": 7.772258983164419, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.611490787269682e-05, + "loss": 0.39291053771972656, + "step": 23200 + }, + { + "epoch": 7.805762626685652, + "grad_norm": 0.6961659789085388, + "learning_rate": 4.6098157453936355e-05, + "loss": 0.39124824523925783, + "step": 23300 + }, + { + "epoch": 7.839266270206885, + "grad_norm": 0.7136702537536621, + "learning_rate": 4.6081407035175884e-05, + "loss": 0.39080577850341797, + "step": 23400 + }, + { + "epoch": 7.872769913728118, + "grad_norm": 0.7133346199989319, + "learning_rate": 4.606465661641541e-05, + "loss": 0.3894335174560547, + "step": 23500 + }, + { + "epoch": 7.906273557249351, + "grad_norm": 0.7279176115989685, + "learning_rate": 4.604790619765494e-05, + "loss": 0.3878567886352539, + "step": 23600 + }, + { + "epoch": 7.939777200770584, + "grad_norm": 0.6854584217071533, + "learning_rate": 4.603115577889448e-05, + "loss": 0.3958644104003906, + "step": 23700 + }, + { + "epoch": 7.973280844291817, + "grad_norm": 0.7134712934494019, + "learning_rate": 4.6014405360134006e-05, + "loss": 0.39134223937988283, + "step": 23800 + }, + { + "epoch": 8.006700728704246, + "grad_norm": 0.7242705821990967, + "learning_rate": 4.5997654941373535e-05, + "loss": 0.38787689208984377, + "step": 23900 + }, + { + "epoch": 8.04020437222548, + "grad_norm": 0.6507485508918762, + "learning_rate": 4.5980904522613064e-05, + "loss": 0.3778019332885742, + "step": 24000 + }, + { + "epoch": 8.073708015746712, + "grad_norm": 0.6936424374580383, + "learning_rate": 4.59641541038526e-05, + "loss": 0.3767805862426758, + "step": 24100 + }, + { + "epoch": 8.107211659267945, + "grad_norm": 0.6715813279151917, + "learning_rate": 4.594757118927974e-05, + "loss": 0.37527366638183596, + "step": 24200 + }, + { + "epoch": 8.140715302789179, + "grad_norm": 0.7407135367393494, + "learning_rate": 4.593082077051927e-05, + "loss": 0.37779621124267576, + "step": 24300 + }, + { + "epoch": 8.174218946310411, + "grad_norm": 0.7536392211914062, + "learning_rate": 4.5914070351758796e-05, + "loss": 0.3771663665771484, + "step": 24400 + }, + { + "epoch": 8.207722589831643, + "grad_norm": 0.7159863114356995, + "learning_rate": 4.589731993299833e-05, + "loss": 0.3789206314086914, + "step": 24500 + }, + { + "epoch": 8.241226233352878, + "grad_norm": 0.7217793464660645, + "learning_rate": 4.588056951423786e-05, + "loss": 0.37845233917236326, + "step": 24600 + }, + { + "epoch": 8.27472987687411, + "grad_norm": 0.6689481139183044, + "learning_rate": 4.586381909547739e-05, + "loss": 0.3793601989746094, + "step": 24700 + }, + { + "epoch": 8.308233520395342, + "grad_norm": 0.6575570702552795, + "learning_rate": 4.584706867671692e-05, + "loss": 0.3798051452636719, + "step": 24800 + }, + { + "epoch": 8.341737163916576, + "grad_norm": 0.7236769795417786, + "learning_rate": 4.5830318257956454e-05, + "loss": 0.3808049011230469, + "step": 24900 + }, + { + "epoch": 8.375240807437809, + "grad_norm": 0.7543460130691528, + "learning_rate": 4.581356783919598e-05, + "loss": 0.3847679138183594, + "step": 25000 + }, + { + "epoch": 8.408744450959041, + "grad_norm": 0.7130107879638672, + "learning_rate": 4.579681742043551e-05, + "loss": 0.37841434478759767, + "step": 25100 + }, + { + "epoch": 8.442248094480275, + "grad_norm": 0.6971204876899719, + "learning_rate": 4.578006700167504e-05, + "loss": 0.3828566360473633, + "step": 25200 + }, + { + "epoch": 8.475751738001508, + "grad_norm": 0.7880971431732178, + "learning_rate": 4.5763316582914576e-05, + "loss": 0.37794727325439453, + "step": 25300 + }, + { + "epoch": 8.50925538152274, + "grad_norm": 0.795606255531311, + "learning_rate": 4.574656616415411e-05, + "loss": 0.3807938003540039, + "step": 25400 + }, + { + "epoch": 8.542759025043974, + "grad_norm": 0.662270724773407, + "learning_rate": 4.572981574539364e-05, + "loss": 0.38113510131835937, + "step": 25500 + }, + { + "epoch": 8.576262668565207, + "grad_norm": 0.7585960626602173, + "learning_rate": 4.571306532663317e-05, + "loss": 0.3807952880859375, + "step": 25600 + }, + { + "epoch": 8.609766312086439, + "grad_norm": 0.7054327726364136, + "learning_rate": 4.56963149078727e-05, + "loss": 0.3791161346435547, + "step": 25700 + }, + { + "epoch": 8.643269955607673, + "grad_norm": 0.7529199719429016, + "learning_rate": 4.5679564489112233e-05, + "loss": 0.3771999359130859, + "step": 25800 + }, + { + "epoch": 8.676773599128905, + "grad_norm": 0.7693551182746887, + "learning_rate": 4.566281407035176e-05, + "loss": 0.37909912109375, + "step": 25900 + }, + { + "epoch": 8.710277242650138, + "grad_norm": 0.7142516374588013, + "learning_rate": 4.564606365159129e-05, + "loss": 0.38215831756591795, + "step": 26000 + }, + { + "epoch": 8.743780886171372, + "grad_norm": 0.7293452024459839, + "learning_rate": 4.562931323283082e-05, + "loss": 0.38390281677246096, + "step": 26100 + }, + { + "epoch": 8.777284529692604, + "grad_norm": 0.725549578666687, + "learning_rate": 4.561273031825796e-05, + "loss": 0.37903385162353515, + "step": 26200 + }, + { + "epoch": 8.810788173213837, + "grad_norm": 0.7497493028640747, + "learning_rate": 4.559597989949749e-05, + "loss": 0.3807545852661133, + "step": 26300 + }, + { + "epoch": 8.844291816735069, + "grad_norm": 0.6810445189476013, + "learning_rate": 4.557922948073702e-05, + "loss": 0.38407058715820314, + "step": 26400 + }, + { + "epoch": 8.877795460256303, + "grad_norm": 0.6970882415771484, + "learning_rate": 4.556247906197655e-05, + "loss": 0.377288818359375, + "step": 26500 + }, + { + "epoch": 8.911299103777536, + "grad_norm": 0.6579902768135071, + "learning_rate": 4.554572864321608e-05, + "loss": 0.3823952484130859, + "step": 26600 + }, + { + "epoch": 8.94480274729877, + "grad_norm": 0.7329373359680176, + "learning_rate": 4.552897822445562e-05, + "loss": 0.38345798492431643, + "step": 26700 + }, + { + "epoch": 8.978306390820002, + "grad_norm": 0.7462034821510315, + "learning_rate": 4.5512227805695146e-05, + "loss": 0.38348892211914065, + "step": 26800 + }, + { + "epoch": 9.011726275232432, + "grad_norm": 0.6734225153923035, + "learning_rate": 4.5495477386934675e-05, + "loss": 0.37156158447265625, + "step": 26900 + }, + { + "epoch": 9.045229918753664, + "grad_norm": 0.7718762159347534, + "learning_rate": 4.54787269681742e-05, + "loss": 0.3672407913208008, + "step": 27000 + }, + { + "epoch": 9.078733562274897, + "grad_norm": 0.7702797055244446, + "learning_rate": 4.546197654941374e-05, + "loss": 0.36319580078125, + "step": 27100 + }, + { + "epoch": 9.11223720579613, + "grad_norm": 0.7608715891838074, + "learning_rate": 4.544522613065327e-05, + "loss": 0.3686368179321289, + "step": 27200 + }, + { + "epoch": 9.145740849317363, + "grad_norm": 0.6544201970100403, + "learning_rate": 4.54284757118928e-05, + "loss": 0.3657124710083008, + "step": 27300 + }, + { + "epoch": 9.179244492838595, + "grad_norm": 0.7948552370071411, + "learning_rate": 4.541172529313233e-05, + "loss": 0.3642101669311523, + "step": 27400 + }, + { + "epoch": 9.21274813635983, + "grad_norm": 0.7283180356025696, + "learning_rate": 4.539497487437186e-05, + "loss": 0.36608253479003905, + "step": 27500 + }, + { + "epoch": 9.246251779881062, + "grad_norm": 0.7535043358802795, + "learning_rate": 4.537822445561139e-05, + "loss": 0.3699675750732422, + "step": 27600 + }, + { + "epoch": 9.279755423402294, + "grad_norm": 0.7893076539039612, + "learning_rate": 4.5361474036850925e-05, + "loss": 0.3712180709838867, + "step": 27700 + }, + { + "epoch": 9.313259066923528, + "grad_norm": 0.7542401552200317, + "learning_rate": 4.5344723618090454e-05, + "loss": 0.36577003479003906, + "step": 27800 + }, + { + "epoch": 9.34676271044476, + "grad_norm": 0.7122746706008911, + "learning_rate": 4.532797319932999e-05, + "loss": 0.3700094985961914, + "step": 27900 + }, + { + "epoch": 9.380266353965993, + "grad_norm": 0.7706195116043091, + "learning_rate": 4.531122278056952e-05, + "loss": 0.3662248229980469, + "step": 28000 + }, + { + "epoch": 9.413769997487227, + "grad_norm": 0.7564675211906433, + "learning_rate": 4.529447236180905e-05, + "loss": 0.37131824493408205, + "step": 28100 + }, + { + "epoch": 9.44727364100846, + "grad_norm": 0.7425429224967957, + "learning_rate": 4.5277721943048576e-05, + "loss": 0.3740149688720703, + "step": 28200 + }, + { + "epoch": 9.480777284529692, + "grad_norm": 0.7587184906005859, + "learning_rate": 4.5261139028475716e-05, + "loss": 0.3699770736694336, + "step": 28300 + }, + { + "epoch": 9.514280928050926, + "grad_norm": 0.7541705369949341, + "learning_rate": 4.5244388609715244e-05, + "loss": 0.37311084747314455, + "step": 28400 + }, + { + "epoch": 9.547784571572159, + "grad_norm": 0.7311919331550598, + "learning_rate": 4.522763819095477e-05, + "loss": 0.3715859603881836, + "step": 28500 + }, + { + "epoch": 9.581288215093391, + "grad_norm": 0.700539767742157, + "learning_rate": 4.52108877721943e-05, + "loss": 0.3688846206665039, + "step": 28600 + }, + { + "epoch": 9.614791858614625, + "grad_norm": 0.6238375306129456, + "learning_rate": 4.519413735343384e-05, + "loss": 0.3701490020751953, + "step": 28700 + }, + { + "epoch": 9.648295502135857, + "grad_norm": 0.6758601069450378, + "learning_rate": 4.517738693467337e-05, + "loss": 0.37076793670654296, + "step": 28800 + }, + { + "epoch": 9.68179914565709, + "grad_norm": 0.7019829750061035, + "learning_rate": 4.51606365159129e-05, + "loss": 0.3690201187133789, + "step": 28900 + }, + { + "epoch": 9.715302789178324, + "grad_norm": 0.8280263543128967, + "learning_rate": 4.514388609715243e-05, + "loss": 0.3725156402587891, + "step": 29000 + }, + { + "epoch": 9.748806432699556, + "grad_norm": 0.6962838172912598, + "learning_rate": 4.512713567839196e-05, + "loss": 0.3695372009277344, + "step": 29100 + }, + { + "epoch": 9.782310076220789, + "grad_norm": 0.6678254008293152, + "learning_rate": 4.5110385259631495e-05, + "loss": 0.36981796264648437, + "step": 29200 + }, + { + "epoch": 9.815813719742023, + "grad_norm": 0.7574114799499512, + "learning_rate": 4.5093634840871024e-05, + "loss": 0.3735762023925781, + "step": 29300 + }, + { + "epoch": 9.849317363263255, + "grad_norm": 0.6498548984527588, + "learning_rate": 4.507688442211055e-05, + "loss": 0.36818092346191406, + "step": 29400 + }, + { + "epoch": 9.882821006784487, + "grad_norm": 0.6784448623657227, + "learning_rate": 4.506013400335008e-05, + "loss": 0.3738037872314453, + "step": 29500 + }, + { + "epoch": 9.916324650305722, + "grad_norm": 0.748648464679718, + "learning_rate": 4.504338358458962e-05, + "loss": 0.3744197463989258, + "step": 29600 + }, + { + "epoch": 9.949828293826954, + "grad_norm": 0.7319295406341553, + "learning_rate": 4.5026633165829146e-05, + "loss": 0.3747980499267578, + "step": 29700 + }, + { + "epoch": 9.983331937348186, + "grad_norm": 0.7425316572189331, + "learning_rate": 4.5009882747068675e-05, + "loss": 0.37337436676025393, + "step": 29800 + }, + { + "epoch": 10.016751821760616, + "grad_norm": 0.6705507040023804, + "learning_rate": 4.499313232830821e-05, + "loss": 0.36580001831054687, + "step": 29900 + }, + { + "epoch": 10.050255465281849, + "grad_norm": 0.7338049411773682, + "learning_rate": 4.4976381909547746e-05, + "loss": 0.35635528564453123, + "step": 30000 + }, + { + "epoch": 10.083759108803083, + "grad_norm": 0.7279812693595886, + "learning_rate": 4.4959631490787275e-05, + "loss": 0.3529629898071289, + "step": 30100 + }, + { + "epoch": 10.117262752324315, + "grad_norm": 0.7696557641029358, + "learning_rate": 4.4942881072026804e-05, + "loss": 0.354565315246582, + "step": 30200 + }, + { + "epoch": 10.150766395845547, + "grad_norm": 0.728212833404541, + "learning_rate": 4.4926298157453936e-05, + "loss": 0.3530071258544922, + "step": 30300 + }, + { + "epoch": 10.184270039366782, + "grad_norm": 0.7012603878974915, + "learning_rate": 4.490954773869347e-05, + "loss": 0.3573540496826172, + "step": 30400 + }, + { + "epoch": 10.217773682888014, + "grad_norm": 0.7446846961975098, + "learning_rate": 4.4892797319933e-05, + "loss": 0.35920669555664064, + "step": 30500 + }, + { + "epoch": 10.251277326409246, + "grad_norm": 0.792353630065918, + "learning_rate": 4.487604690117253e-05, + "loss": 0.3555112075805664, + "step": 30600 + }, + { + "epoch": 10.28478096993048, + "grad_norm": 0.6799439787864685, + "learning_rate": 4.485929648241206e-05, + "loss": 0.36326725006103516, + "step": 30700 + }, + { + "epoch": 10.318284613451713, + "grad_norm": 0.7877249121665955, + "learning_rate": 4.4842546063651594e-05, + "loss": 0.36337570190429686, + "step": 30800 + }, + { + "epoch": 10.351788256972945, + "grad_norm": 0.8450521230697632, + "learning_rate": 4.482579564489112e-05, + "loss": 0.3597735595703125, + "step": 30900 + }, + { + "epoch": 10.38529190049418, + "grad_norm": 0.7301276922225952, + "learning_rate": 4.480904522613066e-05, + "loss": 0.3627984619140625, + "step": 31000 + }, + { + "epoch": 10.418795544015412, + "grad_norm": 0.7038715481758118, + "learning_rate": 4.479229480737019e-05, + "loss": 0.356929817199707, + "step": 31100 + }, + { + "epoch": 10.452299187536644, + "grad_norm": 0.7955334782600403, + "learning_rate": 4.4775544388609716e-05, + "loss": 0.35474601745605466, + "step": 31200 + }, + { + "epoch": 10.485802831057878, + "grad_norm": 0.7089738249778748, + "learning_rate": 4.475879396984925e-05, + "loss": 0.36358638763427736, + "step": 31300 + }, + { + "epoch": 10.51930647457911, + "grad_norm": 0.8143360018730164, + "learning_rate": 4.474204355108878e-05, + "loss": 0.3624624252319336, + "step": 31400 + }, + { + "epoch": 10.552810118100343, + "grad_norm": 0.8367409706115723, + "learning_rate": 4.472529313232831e-05, + "loss": 0.36308753967285157, + "step": 31500 + }, + { + "epoch": 10.586313761621577, + "grad_norm": 0.7856859564781189, + "learning_rate": 4.470854271356784e-05, + "loss": 0.362791862487793, + "step": 31600 + }, + { + "epoch": 10.61981740514281, + "grad_norm": 0.8061284422874451, + "learning_rate": 4.4691792294807374e-05, + "loss": 0.3634458541870117, + "step": 31700 + }, + { + "epoch": 10.653321048664042, + "grad_norm": 0.785724401473999, + "learning_rate": 4.46750418760469e-05, + "loss": 0.36115474700927735, + "step": 31800 + }, + { + "epoch": 10.686824692185276, + "grad_norm": 0.7530859112739563, + "learning_rate": 4.465829145728643e-05, + "loss": 0.36017478942871095, + "step": 31900 + }, + { + "epoch": 10.720328335706508, + "grad_norm": 0.7640136480331421, + "learning_rate": 4.464154103852596e-05, + "loss": 0.36370697021484377, + "step": 32000 + }, + { + "epoch": 10.75383197922774, + "grad_norm": 0.7125088572502136, + "learning_rate": 4.4624790619765496e-05, + "loss": 0.36396575927734376, + "step": 32100 + }, + { + "epoch": 10.787335622748975, + "grad_norm": 0.8106554746627808, + "learning_rate": 4.4608040201005025e-05, + "loss": 0.3571950912475586, + "step": 32200 + }, + { + "epoch": 10.820839266270207, + "grad_norm": 0.768183708190918, + "learning_rate": 4.4591457286432164e-05, + "loss": 0.3580643844604492, + "step": 32300 + }, + { + "epoch": 10.85434290979144, + "grad_norm": 0.7329164743423462, + "learning_rate": 4.457470686767169e-05, + "loss": 0.36159816741943357, + "step": 32400 + }, + { + "epoch": 10.887846553312674, + "grad_norm": 0.7993727922439575, + "learning_rate": 4.455795644891123e-05, + "loss": 0.3672108840942383, + "step": 32500 + }, + { + "epoch": 10.921350196833906, + "grad_norm": 0.7389618754386902, + "learning_rate": 4.454120603015076e-05, + "loss": 0.3596214294433594, + "step": 32600 + }, + { + "epoch": 10.954853840355138, + "grad_norm": 0.6745049953460693, + "learning_rate": 4.4524455611390286e-05, + "loss": 0.36047595977783203, + "step": 32700 + }, + { + "epoch": 10.98835748387637, + "grad_norm": 0.7832050919532776, + "learning_rate": 4.4507705192629815e-05, + "loss": 0.3599930953979492, + "step": 32800 + }, + { + "epoch": 11.021777368288802, + "grad_norm": 0.7236883044242859, + "learning_rate": 4.449095477386935e-05, + "loss": 0.3518721771240234, + "step": 32900 + }, + { + "epoch": 11.055281011810035, + "grad_norm": 0.6951456069946289, + "learning_rate": 4.447420435510888e-05, + "loss": 0.3448529815673828, + "step": 33000 + }, + { + "epoch": 11.088784655331267, + "grad_norm": 0.8174095749855042, + "learning_rate": 4.445745393634841e-05, + "loss": 0.3480173873901367, + "step": 33100 + }, + { + "epoch": 11.1222882988525, + "grad_norm": 0.8361256122589111, + "learning_rate": 4.444070351758794e-05, + "loss": 0.3429459762573242, + "step": 33200 + }, + { + "epoch": 11.155791942373734, + "grad_norm": 0.8620163202285767, + "learning_rate": 4.442395309882747e-05, + "loss": 0.3492248916625977, + "step": 33300 + }, + { + "epoch": 11.189295585894966, + "grad_norm": 0.7246844172477722, + "learning_rate": 4.440720268006701e-05, + "loss": 0.3458073043823242, + "step": 33400 + }, + { + "epoch": 11.222799229416198, + "grad_norm": 0.7091465592384338, + "learning_rate": 4.439045226130654e-05, + "loss": 0.34752788543701174, + "step": 33500 + }, + { + "epoch": 11.256302872937432, + "grad_norm": 0.7573132514953613, + "learning_rate": 4.4373701842546066e-05, + "loss": 0.3496548080444336, + "step": 33600 + }, + { + "epoch": 11.289806516458665, + "grad_norm": 0.7986613512039185, + "learning_rate": 4.4356951423785595e-05, + "loss": 0.34697345733642576, + "step": 33700 + }, + { + "epoch": 11.323310159979897, + "grad_norm": 0.7822960615158081, + "learning_rate": 4.434020100502513e-05, + "loss": 0.35006622314453123, + "step": 33800 + }, + { + "epoch": 11.356813803501131, + "grad_norm": 0.8444114327430725, + "learning_rate": 4.432345058626466e-05, + "loss": 0.3496244430541992, + "step": 33900 + }, + { + "epoch": 11.390317447022364, + "grad_norm": 0.7642440795898438, + "learning_rate": 4.430670016750419e-05, + "loss": 0.350846061706543, + "step": 34000 + }, + { + "epoch": 11.423821090543596, + "grad_norm": 0.7518153190612793, + "learning_rate": 4.428994974874372e-05, + "loss": 0.3499641036987305, + "step": 34100 + }, + { + "epoch": 11.45732473406483, + "grad_norm": 0.8707530498504639, + "learning_rate": 4.427319932998325e-05, + "loss": 0.3532308578491211, + "step": 34200 + }, + { + "epoch": 11.490828377586062, + "grad_norm": 0.7227981686592102, + "learning_rate": 4.4256616415410385e-05, + "loss": 0.35490013122558595, + "step": 34300 + }, + { + "epoch": 11.524332021107295, + "grad_norm": 0.7735912203788757, + "learning_rate": 4.423986599664992e-05, + "loss": 0.3542043304443359, + "step": 34400 + }, + { + "epoch": 11.557835664628529, + "grad_norm": 0.8353047370910645, + "learning_rate": 4.422311557788945e-05, + "loss": 0.34967689514160155, + "step": 34500 + }, + { + "epoch": 11.591339308149761, + "grad_norm": 0.7564737200737, + "learning_rate": 4.4206365159128985e-05, + "loss": 0.35371181488037107, + "step": 34600 + }, + { + "epoch": 11.624842951670994, + "grad_norm": 0.656694233417511, + "learning_rate": 4.4189614740368514e-05, + "loss": 0.3496272277832031, + "step": 34700 + }, + { + "epoch": 11.658346595192228, + "grad_norm": 0.8337951302528381, + "learning_rate": 4.417286432160804e-05, + "loss": 0.35147029876708985, + "step": 34800 + }, + { + "epoch": 11.69185023871346, + "grad_norm": 0.779253363609314, + "learning_rate": 4.415611390284757e-05, + "loss": 0.3496464920043945, + "step": 34900 + }, + { + "epoch": 11.725353882234693, + "grad_norm": 0.8846334218978882, + "learning_rate": 4.413936348408711e-05, + "loss": 0.3506482696533203, + "step": 35000 + }, + { + "epoch": 11.758857525755927, + "grad_norm": 0.7678661346435547, + "learning_rate": 4.4122613065326636e-05, + "loss": 0.35182670593261717, + "step": 35100 + }, + { + "epoch": 11.792361169277159, + "grad_norm": 0.779376745223999, + "learning_rate": 4.4105862646566165e-05, + "loss": 0.3535502624511719, + "step": 35200 + }, + { + "epoch": 11.825864812798391, + "grad_norm": 0.8054938316345215, + "learning_rate": 4.408911222780569e-05, + "loss": 0.35151683807373046, + "step": 35300 + }, + { + "epoch": 11.859368456319626, + "grad_norm": 0.7657700181007385, + "learning_rate": 4.407236180904523e-05, + "loss": 0.3521769714355469, + "step": 35400 + }, + { + "epoch": 11.892872099840858, + "grad_norm": 0.7825794219970703, + "learning_rate": 4.405561139028476e-05, + "loss": 0.3515496826171875, + "step": 35500 + }, + { + "epoch": 11.92637574336209, + "grad_norm": 0.811125636100769, + "learning_rate": 4.403886097152429e-05, + "loss": 0.35637962341308593, + "step": 35600 + }, + { + "epoch": 11.959879386883323, + "grad_norm": 0.7954035401344299, + "learning_rate": 4.402211055276382e-05, + "loss": 0.3535337066650391, + "step": 35700 + }, + { + "epoch": 11.993383030404557, + "grad_norm": 0.9039795994758606, + "learning_rate": 4.400536013400335e-05, + "loss": 0.351923828125, + "step": 35800 + }, + { + "epoch": 12.026802914816987, + "grad_norm": 0.7764714360237122, + "learning_rate": 4.3988609715242887e-05, + "loss": 0.3385712432861328, + "step": 35900 + }, + { + "epoch": 12.060306558338219, + "grad_norm": 0.8632619380950928, + "learning_rate": 4.3971859296482415e-05, + "loss": 0.3341633605957031, + "step": 36000 + }, + { + "epoch": 12.093810201859451, + "grad_norm": 0.7242739200592041, + "learning_rate": 4.3955108877721944e-05, + "loss": 0.33580013275146486, + "step": 36100 + }, + { + "epoch": 12.127313845380685, + "grad_norm": 0.8469365239143372, + "learning_rate": 4.393835845896147e-05, + "loss": 0.33277801513671873, + "step": 36200 + }, + { + "epoch": 12.160817488901918, + "grad_norm": 0.8422605991363525, + "learning_rate": 4.392177554438861e-05, + "loss": 0.33413345336914063, + "step": 36300 + }, + { + "epoch": 12.19432113242315, + "grad_norm": 0.7811619639396667, + "learning_rate": 4.390502512562814e-05, + "loss": 0.33585643768310547, + "step": 36400 + }, + { + "epoch": 12.227824775944384, + "grad_norm": 0.7483822703361511, + "learning_rate": 4.388827470686767e-05, + "loss": 0.33689048767089846, + "step": 36500 + }, + { + "epoch": 12.261328419465617, + "grad_norm": 0.8344827890396118, + "learning_rate": 4.3871524288107206e-05, + "loss": 0.33572166442871093, + "step": 36600 + }, + { + "epoch": 12.294832062986849, + "grad_norm": 0.8680643439292908, + "learning_rate": 4.385477386934674e-05, + "loss": 0.3416824722290039, + "step": 36700 + }, + { + "epoch": 12.328335706508083, + "grad_norm": 0.8696274757385254, + "learning_rate": 4.383802345058627e-05, + "loss": 0.33966796875, + "step": 36800 + }, + { + "epoch": 12.361839350029316, + "grad_norm": 0.8183309435844421, + "learning_rate": 4.38212730318258e-05, + "loss": 0.3437775039672852, + "step": 36900 + }, + { + "epoch": 12.395342993550548, + "grad_norm": 0.8513368368148804, + "learning_rate": 4.380452261306533e-05, + "loss": 0.3392060470581055, + "step": 37000 + }, + { + "epoch": 12.428846637071782, + "grad_norm": 0.799085259437561, + "learning_rate": 4.378777219430486e-05, + "loss": 0.34548038482666016, + "step": 37100 + }, + { + "epoch": 12.462350280593014, + "grad_norm": 0.8001937866210938, + "learning_rate": 4.377102177554439e-05, + "loss": 0.3440947723388672, + "step": 37200 + }, + { + "epoch": 12.495853924114247, + "grad_norm": 0.7208882570266724, + "learning_rate": 4.375427135678392e-05, + "loss": 0.33991405487060544, + "step": 37300 + }, + { + "epoch": 12.529357567635481, + "grad_norm": 0.7442817687988281, + "learning_rate": 4.373752093802345e-05, + "loss": 0.3403905487060547, + "step": 37400 + }, + { + "epoch": 12.562861211156713, + "grad_norm": 0.8188682794570923, + "learning_rate": 4.3720770519262985e-05, + "loss": 0.3432355499267578, + "step": 37500 + }, + { + "epoch": 12.596364854677946, + "grad_norm": 0.8770096302032471, + "learning_rate": 4.3704020100502514e-05, + "loss": 0.3425747299194336, + "step": 37600 + }, + { + "epoch": 12.62986849819918, + "grad_norm": 0.6969801187515259, + "learning_rate": 4.368726968174204e-05, + "loss": 0.3424406051635742, + "step": 37700 + }, + { + "epoch": 12.663372141720412, + "grad_norm": 0.7996489405632019, + "learning_rate": 4.367051926298157e-05, + "loss": 0.34474189758300783, + "step": 37800 + }, + { + "epoch": 12.696875785241645, + "grad_norm": 0.8017092943191528, + "learning_rate": 4.365376884422111e-05, + "loss": 0.3453398895263672, + "step": 37900 + }, + { + "epoch": 12.730379428762879, + "grad_norm": 0.8389545679092407, + "learning_rate": 4.363701842546064e-05, + "loss": 0.3442976760864258, + "step": 38000 + }, + { + "epoch": 12.763883072284111, + "grad_norm": 0.829469621181488, + "learning_rate": 4.362026800670017e-05, + "loss": 0.3431151580810547, + "step": 38100 + }, + { + "epoch": 12.797386715805343, + "grad_norm": 0.747890055179596, + "learning_rate": 4.36035175879397e-05, + "loss": 0.3406733322143555, + "step": 38200 + }, + { + "epoch": 12.830890359326578, + "grad_norm": 0.8428831100463867, + "learning_rate": 4.358693467336683e-05, + "loss": 0.34296836853027346, + "step": 38300 + }, + { + "epoch": 12.86439400284781, + "grad_norm": 0.837282121181488, + "learning_rate": 4.357018425460637e-05, + "loss": 0.3470125579833984, + "step": 38400 + }, + { + "epoch": 12.897897646369042, + "grad_norm": 0.7993006706237793, + "learning_rate": 4.35534338358459e-05, + "loss": 0.3433689117431641, + "step": 38500 + }, + { + "epoch": 12.931401289890276, + "grad_norm": 0.7729536294937134, + "learning_rate": 4.3536683417085426e-05, + "loss": 0.34415348052978517, + "step": 38600 + }, + { + "epoch": 12.964904933411509, + "grad_norm": 0.8379591107368469, + "learning_rate": 4.3519932998324955e-05, + "loss": 0.3490380096435547, + "step": 38700 + }, + { + "epoch": 12.998408576932741, + "grad_norm": 0.8118153214454651, + "learning_rate": 4.350318257956449e-05, + "loss": 0.3449933624267578, + "step": 38800 + }, + { + "epoch": 13.031828461345171, + "grad_norm": 0.7350383400917053, + "learning_rate": 4.3486432160804026e-05, + "loss": 0.3230305862426758, + "step": 38900 + }, + { + "epoch": 13.065332104866405, + "grad_norm": 0.844278872013092, + "learning_rate": 4.3469681742043555e-05, + "loss": 0.3269623565673828, + "step": 39000 + }, + { + "epoch": 13.098835748387637, + "grad_norm": 0.7997421622276306, + "learning_rate": 4.3452931323283084e-05, + "loss": 0.32578598022460936, + "step": 39100 + }, + { + "epoch": 13.13233939190887, + "grad_norm": 0.830944299697876, + "learning_rate": 4.343618090452262e-05, + "loss": 0.32753429412841795, + "step": 39200 + }, + { + "epoch": 13.165843035430104, + "grad_norm": 0.7835378646850586, + "learning_rate": 4.341943048576215e-05, + "loss": 0.32705738067626955, + "step": 39300 + }, + { + "epoch": 13.199346678951336, + "grad_norm": 0.9184708595275879, + "learning_rate": 4.340268006700168e-05, + "loss": 0.32659355163574216, + "step": 39400 + }, + { + "epoch": 13.232850322472569, + "grad_norm": 0.9233602285385132, + "learning_rate": 4.3385929648241206e-05, + "loss": 0.3316535186767578, + "step": 39500 + }, + { + "epoch": 13.266353965993801, + "grad_norm": 0.8355572819709778, + "learning_rate": 4.336917922948074e-05, + "loss": 0.3265563583374023, + "step": 39600 + }, + { + "epoch": 13.299857609515035, + "grad_norm": 0.8072609901428223, + "learning_rate": 4.335242881072027e-05, + "loss": 0.329896354675293, + "step": 39700 + }, + { + "epoch": 13.333361253036268, + "grad_norm": 0.7573186159133911, + "learning_rate": 4.33356783919598e-05, + "loss": 0.3345551300048828, + "step": 39800 + }, + { + "epoch": 13.3668648965575, + "grad_norm": 0.7736772894859314, + "learning_rate": 4.331892797319933e-05, + "loss": 0.32930431365966795, + "step": 39900 + }, + { + "epoch": 13.400368540078734, + "grad_norm": 0.6786108016967773, + "learning_rate": 4.3302177554438864e-05, + "loss": 0.3282357406616211, + "step": 40000 + }, + { + "epoch": 13.433872183599966, + "grad_norm": 0.9429032206535339, + "learning_rate": 4.328542713567839e-05, + "loss": 0.33234012603759766, + "step": 40100 + }, + { + "epoch": 13.467375827121199, + "grad_norm": 0.8342773914337158, + "learning_rate": 4.326867671691793e-05, + "loss": 0.33062789916992186, + "step": 40200 + }, + { + "epoch": 13.500879470642433, + "grad_norm": 0.8285291194915771, + "learning_rate": 4.325209380234506e-05, + "loss": 0.33372978210449217, + "step": 40300 + }, + { + "epoch": 13.534383114163665, + "grad_norm": 0.9048053622245789, + "learning_rate": 4.323534338358459e-05, + "loss": 0.3388665771484375, + "step": 40400 + }, + { + "epoch": 13.567886757684898, + "grad_norm": 0.8660252690315247, + "learning_rate": 4.3218592964824125e-05, + "loss": 0.33297966003417967, + "step": 40500 + }, + { + "epoch": 13.601390401206132, + "grad_norm": 0.8536561727523804, + "learning_rate": 4.3201842546063654e-05, + "loss": 0.3336554718017578, + "step": 40600 + }, + { + "epoch": 13.634894044727364, + "grad_norm": 0.8385009765625, + "learning_rate": 4.318509212730318e-05, + "loss": 0.3373324203491211, + "step": 40700 + }, + { + "epoch": 13.668397688248596, + "grad_norm": 0.8286055326461792, + "learning_rate": 4.316834170854271e-05, + "loss": 0.3344192886352539, + "step": 40800 + }, + { + "epoch": 13.70190133176983, + "grad_norm": 0.8716219067573547, + "learning_rate": 4.315159128978225e-05, + "loss": 0.3346976089477539, + "step": 40900 + }, + { + "epoch": 13.735404975291063, + "grad_norm": 0.9002569317817688, + "learning_rate": 4.3134840871021776e-05, + "loss": 0.33477676391601563, + "step": 41000 + }, + { + "epoch": 13.768908618812295, + "grad_norm": 0.7407629489898682, + "learning_rate": 4.3118090452261305e-05, + "loss": 0.3335411071777344, + "step": 41100 + }, + { + "epoch": 13.80241226233353, + "grad_norm": 0.8391560316085815, + "learning_rate": 4.310134003350084e-05, + "loss": 0.33270046234130857, + "step": 41200 + }, + { + "epoch": 13.835915905854762, + "grad_norm": 0.8274234533309937, + "learning_rate": 4.3084589614740376e-05, + "loss": 0.3338147735595703, + "step": 41300 + }, + { + "epoch": 13.869419549375994, + "grad_norm": 0.7722423672676086, + "learning_rate": 4.3067839195979905e-05, + "loss": 0.3329287338256836, + "step": 41400 + }, + { + "epoch": 13.902923192897228, + "grad_norm": 0.8129300475120544, + "learning_rate": 4.3051088777219434e-05, + "loss": 0.3391679000854492, + "step": 41500 + }, + { + "epoch": 13.93642683641846, + "grad_norm": 0.7851378917694092, + "learning_rate": 4.303433835845896e-05, + "loss": 0.33578712463378907, + "step": 41600 + }, + { + "epoch": 13.969930479939693, + "grad_norm": 0.8963794708251953, + "learning_rate": 4.30175879396985e-05, + "loss": 0.3370305252075195, + "step": 41700 + }, + { + "epoch": 14.003350364352123, + "grad_norm": 0.7511172890663147, + "learning_rate": 4.300083752093803e-05, + "loss": 0.3332187652587891, + "step": 41800 + }, + { + "epoch": 14.036854007873357, + "grad_norm": 0.8411696553230286, + "learning_rate": 4.2984087102177556e-05, + "loss": 0.3142329978942871, + "step": 41900 + }, + { + "epoch": 14.07035765139459, + "grad_norm": 0.8463764190673828, + "learning_rate": 4.2967336683417085e-05, + "loss": 0.31400049209594727, + "step": 42000 + }, + { + "epoch": 14.103861294915822, + "grad_norm": 0.8349206447601318, + "learning_rate": 4.295058626465662e-05, + "loss": 0.3154226112365723, + "step": 42100 + }, + { + "epoch": 14.137364938437056, + "grad_norm": 0.8107666373252869, + "learning_rate": 4.293383584589615e-05, + "loss": 0.31885833740234376, + "step": 42200 + }, + { + "epoch": 14.170868581958288, + "grad_norm": 0.8954828381538391, + "learning_rate": 4.291725293132329e-05, + "loss": 0.3197479820251465, + "step": 42300 + }, + { + "epoch": 14.20437222547952, + "grad_norm": 0.8605073094367981, + "learning_rate": 4.290050251256282e-05, + "loss": 0.32168098449707033, + "step": 42400 + }, + { + "epoch": 14.237875869000753, + "grad_norm": 0.8864564299583435, + "learning_rate": 4.2883752093802346e-05, + "loss": 0.31901069641113283, + "step": 42500 + }, + { + "epoch": 14.271379512521987, + "grad_norm": 0.8231778144836426, + "learning_rate": 4.286700167504188e-05, + "loss": 0.3223213577270508, + "step": 42600 + }, + { + "epoch": 14.30488315604322, + "grad_norm": 0.8360753059387207, + "learning_rate": 4.285025125628141e-05, + "loss": 0.32040260314941404, + "step": 42700 + }, + { + "epoch": 14.338386799564452, + "grad_norm": 0.8900824785232544, + "learning_rate": 4.283350083752094e-05, + "loss": 0.32190364837646485, + "step": 42800 + }, + { + "epoch": 14.371890443085686, + "grad_norm": 0.8233429193496704, + "learning_rate": 4.281675041876047e-05, + "loss": 0.32389614105224607, + "step": 42900 + }, + { + "epoch": 14.405394086606918, + "grad_norm": 0.7868608236312866, + "learning_rate": 4.2800000000000004e-05, + "loss": 0.3197458839416504, + "step": 43000 + }, + { + "epoch": 14.43889773012815, + "grad_norm": 0.9061699509620667, + "learning_rate": 4.278324958123953e-05, + "loss": 0.32365760803222654, + "step": 43100 + }, + { + "epoch": 14.472401373649385, + "grad_norm": 0.8254518508911133, + "learning_rate": 4.276649916247906e-05, + "loss": 0.32395694732666014, + "step": 43200 + }, + { + "epoch": 14.505905017170617, + "grad_norm": 0.8711475729942322, + "learning_rate": 4.274974874371859e-05, + "loss": 0.32183242797851563, + "step": 43300 + }, + { + "epoch": 14.53940866069185, + "grad_norm": 0.8801646828651428, + "learning_rate": 4.2732998324958126e-05, + "loss": 0.3255552673339844, + "step": 43400 + }, + { + "epoch": 14.572912304213084, + "grad_norm": 0.9780988693237305, + "learning_rate": 4.271624790619766e-05, + "loss": 0.32349624633789065, + "step": 43500 + }, + { + "epoch": 14.606415947734316, + "grad_norm": 0.7670713663101196, + "learning_rate": 4.269949748743719e-05, + "loss": 0.325313720703125, + "step": 43600 + }, + { + "epoch": 14.639919591255548, + "grad_norm": 0.8528743386268616, + "learning_rate": 4.268274706867672e-05, + "loss": 0.3246849822998047, + "step": 43700 + }, + { + "epoch": 14.673423234776783, + "grad_norm": 0.8485456109046936, + "learning_rate": 4.2665996649916254e-05, + "loss": 0.3302822494506836, + "step": 43800 + }, + { + "epoch": 14.706926878298015, + "grad_norm": 0.7821197509765625, + "learning_rate": 4.264924623115578e-05, + "loss": 0.3271540451049805, + "step": 43900 + }, + { + "epoch": 14.740430521819247, + "grad_norm": 0.8672188520431519, + "learning_rate": 4.263249581239531e-05, + "loss": 0.32373977661132813, + "step": 44000 + }, + { + "epoch": 14.773934165340481, + "grad_norm": 0.8280694484710693, + "learning_rate": 4.261574539363484e-05, + "loss": 0.3241862106323242, + "step": 44100 + }, + { + "epoch": 14.807437808861714, + "grad_norm": 0.8599796891212463, + "learning_rate": 4.2598994974874377e-05, + "loss": 0.32549205780029294, + "step": 44200 + }, + { + "epoch": 14.840941452382946, + "grad_norm": 0.8781849145889282, + "learning_rate": 4.258241206030151e-05, + "loss": 0.331417121887207, + "step": 44300 + }, + { + "epoch": 14.87444509590418, + "grad_norm": 0.9023721814155579, + "learning_rate": 4.256566164154104e-05, + "loss": 0.33159866333007815, + "step": 44400 + }, + { + "epoch": 14.907948739425413, + "grad_norm": 0.8109947443008423, + "learning_rate": 4.2548911222780573e-05, + "loss": 0.3285139846801758, + "step": 44500 + }, + { + "epoch": 14.941452382946645, + "grad_norm": 0.9133332371711731, + "learning_rate": 4.25321608040201e-05, + "loss": 0.3285633850097656, + "step": 44600 + }, + { + "epoch": 14.97495602646788, + "grad_norm": 0.897939145565033, + "learning_rate": 4.251541038525964e-05, + "loss": 0.3268856430053711, + "step": 44700 + }, + { + "epoch": 15.008375910880309, + "grad_norm": 0.8286980986595154, + "learning_rate": 4.249865996649917e-05, + "loss": 0.31992229461669924, + "step": 44800 + }, + { + "epoch": 15.041879554401541, + "grad_norm": 0.8173639178276062, + "learning_rate": 4.2481909547738696e-05, + "loss": 0.3056914710998535, + "step": 44900 + }, + { + "epoch": 15.075383197922774, + "grad_norm": 0.7765247821807861, + "learning_rate": 4.2465159128978224e-05, + "loss": 0.30892095565795896, + "step": 45000 + }, + { + "epoch": 15.108886841444008, + "grad_norm": 0.9506803750991821, + "learning_rate": 4.244840871021776e-05, + "loss": 0.31020853042602536, + "step": 45100 + }, + { + "epoch": 15.14239048496524, + "grad_norm": 0.855025053024292, + "learning_rate": 4.243165829145729e-05, + "loss": 0.30636240005493165, + "step": 45200 + }, + { + "epoch": 15.175894128486473, + "grad_norm": 0.8373168110847473, + "learning_rate": 4.241490787269682e-05, + "loss": 0.3096147537231445, + "step": 45300 + }, + { + "epoch": 15.209397772007707, + "grad_norm": 0.8214793801307678, + "learning_rate": 4.2398157453936346e-05, + "loss": 0.3086151885986328, + "step": 45400 + }, + { + "epoch": 15.242901415528939, + "grad_norm": 0.8581687211990356, + "learning_rate": 4.238140703517588e-05, + "loss": 0.3079892349243164, + "step": 45500 + }, + { + "epoch": 15.276405059050171, + "grad_norm": 0.8844295740127563, + "learning_rate": 4.236465661641541e-05, + "loss": 0.31047849655151366, + "step": 45600 + }, + { + "epoch": 15.309908702571404, + "grad_norm": 0.8439965844154358, + "learning_rate": 4.234790619765494e-05, + "loss": 0.3138412094116211, + "step": 45700 + }, + { + "epoch": 15.343412346092638, + "grad_norm": 0.903762698173523, + "learning_rate": 4.2331155778894475e-05, + "loss": 0.3122879219055176, + "step": 45800 + }, + { + "epoch": 15.37691598961387, + "grad_norm": 0.8018752932548523, + "learning_rate": 4.2314405360134004e-05, + "loss": 0.3170251655578613, + "step": 45900 + }, + { + "epoch": 15.410419633135103, + "grad_norm": 0.92534339427948, + "learning_rate": 4.229765494137354e-05, + "loss": 0.3110039138793945, + "step": 46000 + }, + { + "epoch": 15.443923276656337, + "grad_norm": 0.9206555485725403, + "learning_rate": 4.228090452261307e-05, + "loss": 0.31349218368530274, + "step": 46100 + }, + { + "epoch": 15.47742692017757, + "grad_norm": 0.9693331122398376, + "learning_rate": 4.22641541038526e-05, + "loss": 0.3193240737915039, + "step": 46200 + }, + { + "epoch": 15.510930563698802, + "grad_norm": 0.8420470952987671, + "learning_rate": 4.224757118927974e-05, + "loss": 0.3151701354980469, + "step": 46300 + }, + { + "epoch": 15.544434207220036, + "grad_norm": 0.9353216290473938, + "learning_rate": 4.2230820770519265e-05, + "loss": 0.3188944435119629, + "step": 46400 + }, + { + "epoch": 15.577937850741268, + "grad_norm": 0.9871792197227478, + "learning_rate": 4.2214070351758794e-05, + "loss": 0.31723602294921877, + "step": 46500 + }, + { + "epoch": 15.6114414942625, + "grad_norm": 0.7518536448478699, + "learning_rate": 4.219731993299832e-05, + "loss": 0.31692527770996093, + "step": 46600 + }, + { + "epoch": 15.644945137783735, + "grad_norm": 0.8153543472290039, + "learning_rate": 4.218056951423786e-05, + "loss": 0.3178220748901367, + "step": 46700 + }, + { + "epoch": 15.678448781304967, + "grad_norm": 0.9253189563751221, + "learning_rate": 4.2163819095477394e-05, + "loss": 0.31681758880615235, + "step": 46800 + }, + { + "epoch": 15.7119524248262, + "grad_norm": 0.9607227444648743, + "learning_rate": 4.214706867671692e-05, + "loss": 0.31734546661376956, + "step": 46900 + }, + { + "epoch": 15.745456068347433, + "grad_norm": 0.9105275273323059, + "learning_rate": 4.213031825795645e-05, + "loss": 0.3183962059020996, + "step": 47000 + }, + { + "epoch": 15.778959711868666, + "grad_norm": 0.943592369556427, + "learning_rate": 4.211356783919598e-05, + "loss": 0.3173214912414551, + "step": 47100 + }, + { + "epoch": 15.812463355389898, + "grad_norm": 0.8281202912330627, + "learning_rate": 4.2096817420435516e-05, + "loss": 0.31825736999511717, + "step": 47200 + }, + { + "epoch": 15.845966998911132, + "grad_norm": 0.9243564009666443, + "learning_rate": 4.2080067001675045e-05, + "loss": 0.31478778839111327, + "step": 47300 + }, + { + "epoch": 15.879470642432365, + "grad_norm": 0.9413986206054688, + "learning_rate": 4.2063316582914574e-05, + "loss": 0.3212542343139648, + "step": 47400 + }, + { + "epoch": 15.912974285953597, + "grad_norm": 0.7720843553543091, + "learning_rate": 4.20465661641541e-05, + "loss": 0.3203662109375, + "step": 47500 + }, + { + "epoch": 15.946477929474831, + "grad_norm": 0.9300262331962585, + "learning_rate": 4.202981574539364e-05, + "loss": 0.31860551834106443, + "step": 47600 + }, + { + "epoch": 15.979981572996063, + "grad_norm": 0.9552218317985535, + "learning_rate": 4.201306532663317e-05, + "loss": 0.32005401611328127, + "step": 47700 + }, + { + "epoch": 16.01340145740849, + "grad_norm": 0.9004557132720947, + "learning_rate": 4.1996314907872696e-05, + "loss": 0.30930152893066404, + "step": 47800 + }, + { + "epoch": 16.046905100929727, + "grad_norm": 0.8685380220413208, + "learning_rate": 4.1979564489112225e-05, + "loss": 0.2990193176269531, + "step": 47900 + }, + { + "epoch": 16.08040874445096, + "grad_norm": 0.9357792735099792, + "learning_rate": 4.196281407035176e-05, + "loss": 0.3014987373352051, + "step": 48000 + }, + { + "epoch": 16.113912387972192, + "grad_norm": 0.8524284362792969, + "learning_rate": 4.1946063651591296e-05, + "loss": 0.29952068328857423, + "step": 48100 + }, + { + "epoch": 16.147416031493425, + "grad_norm": 0.8511279225349426, + "learning_rate": 4.1929313232830825e-05, + "loss": 0.2990330505371094, + "step": 48200 + }, + { + "epoch": 16.180919675014657, + "grad_norm": 0.9268020987510681, + "learning_rate": 4.191273031825796e-05, + "loss": 0.2993707275390625, + "step": 48300 + }, + { + "epoch": 16.21442331853589, + "grad_norm": 0.9302972555160522, + "learning_rate": 4.1895979899497486e-05, + "loss": 0.30082115173339846, + "step": 48400 + }, + { + "epoch": 16.247926962057125, + "grad_norm": 0.7517661452293396, + "learning_rate": 4.187922948073702e-05, + "loss": 0.29987972259521484, + "step": 48500 + }, + { + "epoch": 16.281430605578358, + "grad_norm": 0.9238623976707458, + "learning_rate": 4.186247906197655e-05, + "loss": 0.30625816345214846, + "step": 48600 + }, + { + "epoch": 16.31493424909959, + "grad_norm": 0.8699862360954285, + "learning_rate": 4.184572864321608e-05, + "loss": 0.3052105522155762, + "step": 48700 + }, + { + "epoch": 16.348437892620822, + "grad_norm": 0.8557946085929871, + "learning_rate": 4.182897822445561e-05, + "loss": 0.30761667251586916, + "step": 48800 + }, + { + "epoch": 16.381941536142055, + "grad_norm": 0.9344996213912964, + "learning_rate": 4.1812227805695144e-05, + "loss": 0.3052439498901367, + "step": 48900 + }, + { + "epoch": 16.415445179663287, + "grad_norm": 0.8814606070518494, + "learning_rate": 4.179547738693467e-05, + "loss": 0.3072672843933105, + "step": 49000 + }, + { + "epoch": 16.448948823184523, + "grad_norm": 0.847149670124054, + "learning_rate": 4.177872696817421e-05, + "loss": 0.3086087226867676, + "step": 49100 + }, + { + "epoch": 16.482452466705755, + "grad_norm": 0.8724634051322937, + "learning_rate": 4.176197654941374e-05, + "loss": 0.3087570571899414, + "step": 49200 + }, + { + "epoch": 16.515956110226988, + "grad_norm": 0.909691572189331, + "learning_rate": 4.174522613065327e-05, + "loss": 0.3070098495483398, + "step": 49300 + }, + { + "epoch": 16.54945975374822, + "grad_norm": 0.9307814240455627, + "learning_rate": 4.17284757118928e-05, + "loss": 0.305695915222168, + "step": 49400 + }, + { + "epoch": 16.582963397269452, + "grad_norm": 0.7699813842773438, + "learning_rate": 4.171172529313233e-05, + "loss": 0.30605703353881836, + "step": 49500 + }, + { + "epoch": 16.616467040790685, + "grad_norm": 1.0044174194335938, + "learning_rate": 4.169497487437186e-05, + "loss": 0.3084003257751465, + "step": 49600 + }, + { + "epoch": 16.64997068431192, + "grad_norm": 0.8166942000389099, + "learning_rate": 4.1678224455611395e-05, + "loss": 0.307757682800293, + "step": 49700 + }, + { + "epoch": 16.683474327833153, + "grad_norm": 0.8853956460952759, + "learning_rate": 4.1661474036850924e-05, + "loss": 0.3071472358703613, + "step": 49800 + }, + { + "epoch": 16.716977971354385, + "grad_norm": 0.8246440291404724, + "learning_rate": 4.164472361809045e-05, + "loss": 0.3088929557800293, + "step": 49900 + }, + { + "epoch": 16.750481614875618, + "grad_norm": 0.9108903408050537, + "learning_rate": 4.162797319932998e-05, + "loss": 0.3075083541870117, + "step": 50000 + }, + { + "epoch": 16.78398525839685, + "grad_norm": 0.9037117958068848, + "learning_rate": 4.161122278056952e-05, + "loss": 0.31276445388793944, + "step": 50100 + }, + { + "epoch": 16.817488901918082, + "grad_norm": 0.9087954759597778, + "learning_rate": 4.1594472361809046e-05, + "loss": 0.30919795989990234, + "step": 50200 + }, + { + "epoch": 16.85099254543932, + "grad_norm": Infinity, + "learning_rate": 4.157772194304858e-05, + "loss": 0.3113286209106445, + "step": 50300 + }, + { + "epoch": 16.88449618896055, + "grad_norm": 0.9613434076309204, + "learning_rate": 4.1561139028475714e-05, + "loss": 0.31487524032592773, + "step": 50400 + }, + { + "epoch": 16.917999832481783, + "grad_norm": 0.9458907246589661, + "learning_rate": 4.154438860971524e-05, + "loss": 0.3127643394470215, + "step": 50500 + }, + { + "epoch": 16.951503476003015, + "grad_norm": 0.9252173900604248, + "learning_rate": 4.152763819095478e-05, + "loss": 0.3084212112426758, + "step": 50600 + }, + { + "epoch": 16.985007119524248, + "grad_norm": 0.9816356897354126, + "learning_rate": 4.151088777219431e-05, + "loss": 0.31181251525878906, + "step": 50700 + }, + { + "epoch": 17.01842700393668, + "grad_norm": 0.8120167851448059, + "learning_rate": 4.1494137353433836e-05, + "loss": 0.2999544906616211, + "step": 50800 + }, + { + "epoch": 17.05193064745791, + "grad_norm": 0.7779452800750732, + "learning_rate": 4.1477386934673365e-05, + "loss": 0.2881363487243652, + "step": 50900 + }, + { + "epoch": 17.085434290979144, + "grad_norm": 0.8800045847892761, + "learning_rate": 4.14606365159129e-05, + "loss": 0.29184545516967775, + "step": 51000 + }, + { + "epoch": 17.118937934500376, + "grad_norm": 0.8309177160263062, + "learning_rate": 4.144388609715243e-05, + "loss": 0.293133430480957, + "step": 51100 + }, + { + "epoch": 17.15244157802161, + "grad_norm": 0.8549261093139648, + "learning_rate": 4.142713567839196e-05, + "loss": 0.29502378463745116, + "step": 51200 + }, + { + "epoch": 17.18594522154284, + "grad_norm": 0.9220601916313171, + "learning_rate": 4.141038525963149e-05, + "loss": 0.29487173080444334, + "step": 51300 + }, + { + "epoch": 17.219448865064077, + "grad_norm": 0.8818517327308655, + "learning_rate": 4.139363484087103e-05, + "loss": 0.2922089767456055, + "step": 51400 + }, + { + "epoch": 17.25295250858531, + "grad_norm": 0.9325298070907593, + "learning_rate": 4.137688442211056e-05, + "loss": 0.2953068351745605, + "step": 51500 + }, + { + "epoch": 17.286456152106542, + "grad_norm": 0.842454731464386, + "learning_rate": 4.136013400335009e-05, + "loss": 0.29264474868774415, + "step": 51600 + }, + { + "epoch": 17.319959795627774, + "grad_norm": 0.9482097029685974, + "learning_rate": 4.1343383584589616e-05, + "loss": 0.2976564979553223, + "step": 51700 + }, + { + "epoch": 17.353463439149007, + "grad_norm": 0.9430213570594788, + "learning_rate": 4.132663316582915e-05, + "loss": 0.29929805755615235, + "step": 51800 + }, + { + "epoch": 17.38696708267024, + "grad_norm": 0.9468767642974854, + "learning_rate": 4.130988274706868e-05, + "loss": 0.2957676124572754, + "step": 51900 + }, + { + "epoch": 17.420470726191475, + "grad_norm": 0.9603669047355652, + "learning_rate": 4.129313232830821e-05, + "loss": 0.2980274963378906, + "step": 52000 + }, + { + "epoch": 17.453974369712707, + "grad_norm": 0.8796602487564087, + "learning_rate": 4.127638190954774e-05, + "loss": 0.3016574096679687, + "step": 52100 + }, + { + "epoch": 17.48747801323394, + "grad_norm": 0.9244174957275391, + "learning_rate": 4.125963149078727e-05, + "loss": 0.2988929748535156, + "step": 52200 + }, + { + "epoch": 17.520981656755172, + "grad_norm": 0.7938122749328613, + "learning_rate": 4.12428810720268e-05, + "loss": 0.29994075775146484, + "step": 52300 + }, + { + "epoch": 17.554485300276404, + "grad_norm": 0.9149840474128723, + "learning_rate": 4.122629815745394e-05, + "loss": 0.29651493072509766, + "step": 52400 + }, + { + "epoch": 17.587988943797637, + "grad_norm": 0.96629399061203, + "learning_rate": 4.120954773869347e-05, + "loss": 0.30109855651855466, + "step": 52500 + }, + { + "epoch": 17.621492587318873, + "grad_norm": 0.8029501438140869, + "learning_rate": 4.1192797319933e-05, + "loss": 0.3032656478881836, + "step": 52600 + }, + { + "epoch": 17.654996230840105, + "grad_norm": 0.831659734249115, + "learning_rate": 4.1176046901172535e-05, + "loss": 0.2977634048461914, + "step": 52700 + }, + { + "epoch": 17.688499874361337, + "grad_norm": 0.8770350813865662, + "learning_rate": 4.1159296482412063e-05, + "loss": 0.3002130317687988, + "step": 52800 + }, + { + "epoch": 17.72200351788257, + "grad_norm": 0.9197613596916199, + "learning_rate": 4.114254606365159e-05, + "loss": 0.30171897888183596, + "step": 52900 + }, + { + "epoch": 17.755507161403802, + "grad_norm": 0.8716971278190613, + "learning_rate": 4.112579564489112e-05, + "loss": 0.3020934104919434, + "step": 53000 + }, + { + "epoch": 17.789010804925034, + "grad_norm": 0.9348130226135254, + "learning_rate": 4.110904522613066e-05, + "loss": 0.30243810653686526, + "step": 53100 + }, + { + "epoch": 17.82251444844627, + "grad_norm": 1.0112886428833008, + "learning_rate": 4.1092294807370185e-05, + "loss": 0.3036368370056152, + "step": 53200 + }, + { + "epoch": 17.856018091967503, + "grad_norm": 0.9333941340446472, + "learning_rate": 4.1075544388609714e-05, + "loss": 0.30571670532226564, + "step": 53300 + }, + { + "epoch": 17.889521735488735, + "grad_norm": 0.8895190358161926, + "learning_rate": 4.105879396984924e-05, + "loss": 0.3056245040893555, + "step": 53400 + }, + { + "epoch": 17.923025379009967, + "grad_norm": 0.953789472579956, + "learning_rate": 4.104204355108878e-05, + "loss": 0.30313159942626955, + "step": 53500 + }, + { + "epoch": 17.9565290225312, + "grad_norm": 0.8885256052017212, + "learning_rate": 4.102529313232831e-05, + "loss": 0.3018374061584473, + "step": 53600 + }, + { + "epoch": 17.990032666052432, + "grad_norm": 1.043843388557434, + "learning_rate": 4.100854271356784e-05, + "loss": 0.30093835830688476, + "step": 53700 + }, + { + "epoch": 18.023452550464864, + "grad_norm": 0.8944602012634277, + "learning_rate": 4.099179229480737e-05, + "loss": 0.28485956192016604, + "step": 53800 + }, + { + "epoch": 18.056956193986096, + "grad_norm": 0.9355315566062927, + "learning_rate": 4.097504187604691e-05, + "loss": 0.28318214416503906, + "step": 53900 + }, + { + "epoch": 18.09045983750733, + "grad_norm": 0.7996422052383423, + "learning_rate": 4.0958291457286436e-05, + "loss": 0.2806725120544434, + "step": 54000 + }, + { + "epoch": 18.12396348102856, + "grad_norm": 0.9255834817886353, + "learning_rate": 4.0941541038525965e-05, + "loss": 0.2835847473144531, + "step": 54100 + }, + { + "epoch": 18.157467124549793, + "grad_norm": 0.9625722169876099, + "learning_rate": 4.0924790619765494e-05, + "loss": 0.28318588256835936, + "step": 54200 + }, + { + "epoch": 18.19097076807103, + "grad_norm": 0.9195216298103333, + "learning_rate": 4.090804020100503e-05, + "loss": 0.2873989105224609, + "step": 54300 + }, + { + "epoch": 18.22447441159226, + "grad_norm": 0.9396908283233643, + "learning_rate": 4.089145728643216e-05, + "loss": 0.2853095054626465, + "step": 54400 + }, + { + "epoch": 18.257978055113494, + "grad_norm": 0.8911498188972473, + "learning_rate": 4.087470686767169e-05, + "loss": 0.2902779769897461, + "step": 54500 + }, + { + "epoch": 18.291481698634726, + "grad_norm": 0.995733916759491, + "learning_rate": 4.085795644891122e-05, + "loss": 0.28672319412231445, + "step": 54600 + }, + { + "epoch": 18.32498534215596, + "grad_norm": 1.0607621669769287, + "learning_rate": 4.0841206030150755e-05, + "loss": 0.288260498046875, + "step": 54700 + }, + { + "epoch": 18.35848898567719, + "grad_norm": 0.9770358204841614, + "learning_rate": 4.082445561139029e-05, + "loss": 0.2871124267578125, + "step": 54800 + }, + { + "epoch": 18.391992629198427, + "grad_norm": 0.7948865294456482, + "learning_rate": 4.080770519262982e-05, + "loss": 0.2901685333251953, + "step": 54900 + }, + { + "epoch": 18.42549627271966, + "grad_norm": 0.829538106918335, + "learning_rate": 4.079095477386935e-05, + "loss": 0.29097063064575196, + "step": 55000 + }, + { + "epoch": 18.45899991624089, + "grad_norm": 0.972334086894989, + "learning_rate": 4.077420435510888e-05, + "loss": 0.2907312965393066, + "step": 55100 + }, + { + "epoch": 18.492503559762124, + "grad_norm": 1.0088402032852173, + "learning_rate": 4.075745393634841e-05, + "loss": 0.2925748634338379, + "step": 55200 + }, + { + "epoch": 18.526007203283356, + "grad_norm": 1.0144375562667847, + "learning_rate": 4.074070351758794e-05, + "loss": 0.29165184020996093, + "step": 55300 + }, + { + "epoch": 18.55951084680459, + "grad_norm": 0.9276221394538879, + "learning_rate": 4.072395309882747e-05, + "loss": 0.2919579887390137, + "step": 55400 + }, + { + "epoch": 18.593014490325825, + "grad_norm": 0.9088070392608643, + "learning_rate": 4.0707202680067e-05, + "loss": 0.29476572036743165, + "step": 55500 + }, + { + "epoch": 18.626518133847057, + "grad_norm": 0.8358734846115112, + "learning_rate": 4.0690452261306535e-05, + "loss": 0.29323875427246093, + "step": 55600 + }, + { + "epoch": 18.66002177736829, + "grad_norm": 0.9234775304794312, + "learning_rate": 4.0673701842546064e-05, + "loss": 0.295458984375, + "step": 55700 + }, + { + "epoch": 18.69352542088952, + "grad_norm": 1.033413052558899, + "learning_rate": 4.065695142378559e-05, + "loss": 0.29363622665405276, + "step": 55800 + }, + { + "epoch": 18.727029064410754, + "grad_norm": 0.8682520389556885, + "learning_rate": 4.064020100502513e-05, + "loss": 0.2977585220336914, + "step": 55900 + }, + { + "epoch": 18.760532707931986, + "grad_norm": 1.0640672445297241, + "learning_rate": 4.0623450586264664e-05, + "loss": 0.2952461051940918, + "step": 56000 + }, + { + "epoch": 18.794036351453222, + "grad_norm": 0.9460969567298889, + "learning_rate": 4.060670016750419e-05, + "loss": 0.2973412322998047, + "step": 56100 + }, + { + "epoch": 18.827539994974455, + "grad_norm": 0.9299043416976929, + "learning_rate": 4.058994974874372e-05, + "loss": 0.29550174713134764, + "step": 56200 + }, + { + "epoch": 18.861043638495687, + "grad_norm": 1.0823304653167725, + "learning_rate": 4.057319932998325e-05, + "loss": 0.2938914680480957, + "step": 56300 + }, + { + "epoch": 18.89454728201692, + "grad_norm": 0.9436834454536438, + "learning_rate": 4.055661641541039e-05, + "loss": 0.29774511337280274, + "step": 56400 + }, + { + "epoch": 18.92805092553815, + "grad_norm": 0.9670146107673645, + "learning_rate": 4.053986599664992e-05, + "loss": 0.29711448669433593, + "step": 56500 + }, + { + "epoch": 18.961554569059384, + "grad_norm": 0.971251368522644, + "learning_rate": 4.052311557788945e-05, + "loss": 0.29909347534179687, + "step": 56600 + }, + { + "epoch": 18.995058212580616, + "grad_norm": 0.8543409705162048, + "learning_rate": 4.0506365159128976e-05, + "loss": 0.29678007125854494, + "step": 56700 + }, + { + "epoch": 19.028478096993048, + "grad_norm": 0.9036636352539062, + "learning_rate": 4.048961474036851e-05, + "loss": 0.2788318824768066, + "step": 56800 + }, + { + "epoch": 19.06198174051428, + "grad_norm": 1.0365597009658813, + "learning_rate": 4.047286432160804e-05, + "loss": 0.2757110023498535, + "step": 56900 + }, + { + "epoch": 19.095485384035513, + "grad_norm": 0.8653129935264587, + "learning_rate": 4.0456113902847576e-05, + "loss": 0.2768836402893066, + "step": 57000 + }, + { + "epoch": 19.128989027556745, + "grad_norm": 0.8460621237754822, + "learning_rate": 4.0439363484087105e-05, + "loss": 0.2755991363525391, + "step": 57100 + }, + { + "epoch": 19.16249267107798, + "grad_norm": 0.8957028985023499, + "learning_rate": 4.0422613065326634e-05, + "loss": 0.27972606658935545, + "step": 57200 + }, + { + "epoch": 19.195996314599213, + "grad_norm": 0.9295471906661987, + "learning_rate": 4.040586264656617e-05, + "loss": 0.2782594871520996, + "step": 57300 + }, + { + "epoch": 19.229499958120446, + "grad_norm": 0.8899731636047363, + "learning_rate": 4.03891122278057e-05, + "loss": 0.2778139877319336, + "step": 57400 + }, + { + "epoch": 19.263003601641678, + "grad_norm": 0.9683830142021179, + "learning_rate": 4.037236180904523e-05, + "loss": 0.28136295318603516, + "step": 57500 + }, + { + "epoch": 19.29650724516291, + "grad_norm": 0.8920564651489258, + "learning_rate": 4.0355611390284756e-05, + "loss": 0.28040409088134766, + "step": 57600 + }, + { + "epoch": 19.330010888684143, + "grad_norm": 0.9366307854652405, + "learning_rate": 4.033886097152429e-05, + "loss": 0.28461326599121095, + "step": 57700 + }, + { + "epoch": 19.36351453220538, + "grad_norm": 0.9464457035064697, + "learning_rate": 4.032211055276382e-05, + "loss": 0.28297006607055664, + "step": 57800 + }, + { + "epoch": 19.39701817572661, + "grad_norm": 1.0350395441055298, + "learning_rate": 4.030536013400335e-05, + "loss": 0.2860834503173828, + "step": 57900 + }, + { + "epoch": 19.430521819247843, + "grad_norm": 0.8994850516319275, + "learning_rate": 4.028860971524288e-05, + "loss": 0.28455873489379885, + "step": 58000 + }, + { + "epoch": 19.464025462769076, + "grad_norm": 1.0085395574569702, + "learning_rate": 4.0271859296482414e-05, + "loss": 0.28580081939697266, + "step": 58100 + }, + { + "epoch": 19.497529106290308, + "grad_norm": 0.9378731846809387, + "learning_rate": 4.025510887772195e-05, + "loss": 0.28492233276367185, + "step": 58200 + }, + { + "epoch": 19.53103274981154, + "grad_norm": 1.1039483547210693, + "learning_rate": 4.023835845896148e-05, + "loss": 0.28393068313598635, + "step": 58300 + }, + { + "epoch": 19.564536393332776, + "grad_norm": 1.0000792741775513, + "learning_rate": 4.022177554438861e-05, + "loss": 0.28428964614868163, + "step": 58400 + }, + { + "epoch": 19.59804003685401, + "grad_norm": 0.9822189211845398, + "learning_rate": 4.0205025125628146e-05, + "loss": 0.28679338455200193, + "step": 58500 + }, + { + "epoch": 19.63154368037524, + "grad_norm": 1.008216142654419, + "learning_rate": 4.0188274706867675e-05, + "loss": 0.2877239990234375, + "step": 58600 + }, + { + "epoch": 19.665047323896474, + "grad_norm": 0.8709893822669983, + "learning_rate": 4.0171524288107204e-05, + "loss": 0.28736095428466796, + "step": 58700 + }, + { + "epoch": 19.698550967417706, + "grad_norm": 1.0486055612564087, + "learning_rate": 4.015477386934673e-05, + "loss": 0.2875706672668457, + "step": 58800 + }, + { + "epoch": 19.73205461093894, + "grad_norm": 0.9718714952468872, + "learning_rate": 4.013802345058627e-05, + "loss": 0.2887088394165039, + "step": 58900 + }, + { + "epoch": 19.765558254460174, + "grad_norm": 0.9496104717254639, + "learning_rate": 4.01212730318258e-05, + "loss": 0.2863414573669434, + "step": 59000 + }, + { + "epoch": 19.799061897981407, + "grad_norm": 1.0247166156768799, + "learning_rate": 4.0104522613065326e-05, + "loss": 0.287678165435791, + "step": 59100 + }, + { + "epoch": 19.83256554150264, + "grad_norm": 0.9370303153991699, + "learning_rate": 4.008777219430486e-05, + "loss": 0.28977474212646487, + "step": 59200 + }, + { + "epoch": 19.86606918502387, + "grad_norm": 0.8732765316963196, + "learning_rate": 4.007102177554439e-05, + "loss": 0.2899479293823242, + "step": 59300 + }, + { + "epoch": 19.899572828545104, + "grad_norm": 0.9661251306533813, + "learning_rate": 4.0054271356783926e-05, + "loss": 0.28924821853637694, + "step": 59400 + }, + { + "epoch": 19.933076472066336, + "grad_norm": 0.9300135374069214, + "learning_rate": 4.0037520938023455e-05, + "loss": 0.2898877716064453, + "step": 59500 + }, + { + "epoch": 19.96658011558757, + "grad_norm": 1.0985535383224487, + "learning_rate": 4.0020770519262983e-05, + "loss": 0.28800737380981445, + "step": 59600 + }, + { + "epoch": 20.0, + "grad_norm": 1.0769129991531372, + "learning_rate": 4.000402010050251e-05, + "loss": 0.2884260940551758, + "step": 59700 + }, + { + "epoch": 20.033503643521232, + "grad_norm": 0.9619253277778625, + "learning_rate": 3.998726968174205e-05, + "loss": 0.2721578788757324, + "step": 59800 + }, + { + "epoch": 20.067007287042465, + "grad_norm": 0.9351584911346436, + "learning_rate": 3.997051926298158e-05, + "loss": 0.2715591049194336, + "step": 59900 + }, + { + "epoch": 20.100510930563697, + "grad_norm": 0.957760214805603, + "learning_rate": 3.9953768844221106e-05, + "loss": 0.2707101821899414, + "step": 60000 + }, + { + "epoch": 20.134014574084933, + "grad_norm": 0.8414269089698792, + "learning_rate": 3.9937018425460634e-05, + "loss": 0.27344297409057616, + "step": 60100 + }, + { + "epoch": 20.167518217606165, + "grad_norm": 1.0471901893615723, + "learning_rate": 3.992026800670017e-05, + "loss": 0.2716003227233887, + "step": 60200 + }, + { + "epoch": 20.201021861127398, + "grad_norm": 0.9024125933647156, + "learning_rate": 3.99035175879397e-05, + "loss": 0.27117115020751953, + "step": 60300 + }, + { + "epoch": 20.23452550464863, + "grad_norm": 0.8774855136871338, + "learning_rate": 3.988693467336684e-05, + "loss": 0.2748865509033203, + "step": 60400 + }, + { + "epoch": 20.268029148169862, + "grad_norm": 0.9664554595947266, + "learning_rate": 3.987018425460637e-05, + "loss": 0.27406461715698244, + "step": 60500 + }, + { + "epoch": 20.301532791691095, + "grad_norm": 1.035376787185669, + "learning_rate": 3.98534338358459e-05, + "loss": 0.2735789489746094, + "step": 60600 + }, + { + "epoch": 20.33503643521233, + "grad_norm": 0.9546007513999939, + "learning_rate": 3.983668341708543e-05, + "loss": 0.2764925956726074, + "step": 60700 + }, + { + "epoch": 20.368540078733563, + "grad_norm": 1.0165990591049194, + "learning_rate": 3.981993299832496e-05, + "loss": 0.27297565460205075, + "step": 60800 + }, + { + "epoch": 20.402043722254795, + "grad_norm": 0.9471421241760254, + "learning_rate": 3.980318257956449e-05, + "loss": 0.27823368072509763, + "step": 60900 + }, + { + "epoch": 20.435547365776028, + "grad_norm": 0.9725298285484314, + "learning_rate": 3.9786432160804025e-05, + "loss": 0.2764093208312988, + "step": 61000 + }, + { + "epoch": 20.46905100929726, + "grad_norm": 0.8394715189933777, + "learning_rate": 3.976968174204355e-05, + "loss": 0.2772574996948242, + "step": 61100 + }, + { + "epoch": 20.502554652818493, + "grad_norm": 0.8922716975212097, + "learning_rate": 3.975293132328308e-05, + "loss": 0.27750770568847655, + "step": 61200 + }, + { + "epoch": 20.53605829633973, + "grad_norm": 0.9844845533370972, + "learning_rate": 3.973618090452261e-05, + "loss": 0.2779910278320312, + "step": 61300 + }, + { + "epoch": 20.56956193986096, + "grad_norm": 0.8804232478141785, + "learning_rate": 3.971943048576215e-05, + "loss": 0.2776468086242676, + "step": 61400 + }, + { + "epoch": 20.603065583382193, + "grad_norm": 0.9889972805976868, + "learning_rate": 3.970268006700168e-05, + "loss": 0.27890708923339846, + "step": 61500 + }, + { + "epoch": 20.636569226903426, + "grad_norm": 0.980644166469574, + "learning_rate": 3.968592964824121e-05, + "loss": 0.28234588623046875, + "step": 61600 + }, + { + "epoch": 20.670072870424658, + "grad_norm": 0.9484408497810364, + "learning_rate": 3.966917922948074e-05, + "loss": 0.28126981735229495, + "step": 61700 + }, + { + "epoch": 20.70357651394589, + "grad_norm": 1.055678367614746, + "learning_rate": 3.965242881072027e-05, + "loss": 0.2830071067810059, + "step": 61800 + }, + { + "epoch": 20.737080157467126, + "grad_norm": 0.8886085748672485, + "learning_rate": 3.9635678391959804e-05, + "loss": 0.27813196182250977, + "step": 61900 + }, + { + "epoch": 20.77058380098836, + "grad_norm": 1.0629770755767822, + "learning_rate": 3.961892797319933e-05, + "loss": 0.2837041664123535, + "step": 62000 + }, + { + "epoch": 20.80408744450959, + "grad_norm": 0.8154080510139465, + "learning_rate": 3.960217755443886e-05, + "loss": 0.2794221115112305, + "step": 62100 + }, + { + "epoch": 20.837591088030823, + "grad_norm": 0.9643964171409607, + "learning_rate": 3.958542713567839e-05, + "loss": 0.2807983207702637, + "step": 62200 + }, + { + "epoch": 20.871094731552056, + "grad_norm": 1.0410659313201904, + "learning_rate": 3.9568676716917926e-05, + "loss": 0.27797990798950195, + "step": 62300 + }, + { + "epoch": 20.904598375073288, + "grad_norm": 0.9507243633270264, + "learning_rate": 3.955209380234506e-05, + "loss": 0.2836384010314941, + "step": 62400 + }, + { + "epoch": 20.93810201859452, + "grad_norm": 1.0288045406341553, + "learning_rate": 3.953534338358459e-05, + "loss": 0.28449560165405274, + "step": 62500 + }, + { + "epoch": 20.971605662115756, + "grad_norm": 0.9709306359291077, + "learning_rate": 3.951859296482412e-05, + "loss": 0.282686824798584, + "step": 62600 + }, + { + "epoch": 21.005025546528184, + "grad_norm": 0.8715474009513855, + "learning_rate": 3.950184254606365e-05, + "loss": 0.2808470153808594, + "step": 62700 + }, + { + "epoch": 21.038529190049417, + "grad_norm": 0.9847482442855835, + "learning_rate": 3.948509212730319e-05, + "loss": 0.2635519218444824, + "step": 62800 + }, + { + "epoch": 21.07203283357065, + "grad_norm": 0.945732057094574, + "learning_rate": 3.9468341708542717e-05, + "loss": 0.26160152435302736, + "step": 62900 + }, + { + "epoch": 21.105536477091885, + "grad_norm": 0.9310206174850464, + "learning_rate": 3.945175879396985e-05, + "loss": 0.26616928100585935, + "step": 63000 + }, + { + "epoch": 21.139040120613117, + "grad_norm": 0.8321387767791748, + "learning_rate": 3.9435008375209385e-05, + "loss": 0.2665995216369629, + "step": 63100 + }, + { + "epoch": 21.17254376413435, + "grad_norm": 0.9247589707374573, + "learning_rate": 3.9418257956448913e-05, + "loss": 0.2642600440979004, + "step": 63200 + }, + { + "epoch": 21.206047407655582, + "grad_norm": 0.9166206121444702, + "learning_rate": 3.940150753768844e-05, + "loss": 0.2661565208435059, + "step": 63300 + }, + { + "epoch": 21.239551051176814, + "grad_norm": 1.0146381855010986, + "learning_rate": 3.938475711892797e-05, + "loss": 0.26595497131347656, + "step": 63400 + }, + { + "epoch": 21.273054694698047, + "grad_norm": 0.8782115578651428, + "learning_rate": 3.936800670016751e-05, + "loss": 0.2683505821228027, + "step": 63500 + }, + { + "epoch": 21.306558338219283, + "grad_norm": 0.8348855376243591, + "learning_rate": 3.935125628140704e-05, + "loss": 0.27002309799194335, + "step": 63600 + }, + { + "epoch": 21.340061981740515, + "grad_norm": 1.0207946300506592, + "learning_rate": 3.933450586264657e-05, + "loss": 0.2727695083618164, + "step": 63700 + }, + { + "epoch": 21.373565625261747, + "grad_norm": 0.9709821939468384, + "learning_rate": 3.93177554438861e-05, + "loss": 0.2713334655761719, + "step": 63800 + }, + { + "epoch": 21.40706926878298, + "grad_norm": 0.9931967258453369, + "learning_rate": 3.930100502512563e-05, + "loss": 0.2715752029418945, + "step": 63900 + }, + { + "epoch": 21.440572912304212, + "grad_norm": 1.002032995223999, + "learning_rate": 3.9284254606365164e-05, + "loss": 0.27039655685424807, + "step": 64000 + }, + { + "epoch": 21.474076555825445, + "grad_norm": 1.011479377746582, + "learning_rate": 3.926750418760469e-05, + "loss": 0.27180171966552735, + "step": 64100 + }, + { + "epoch": 21.50758019934668, + "grad_norm": 0.8830493092536926, + "learning_rate": 3.925075376884422e-05, + "loss": 0.27189735412597654, + "step": 64200 + }, + { + "epoch": 21.541083842867913, + "grad_norm": 0.957878828048706, + "learning_rate": 3.923400335008375e-05, + "loss": 0.27135616302490234, + "step": 64300 + }, + { + "epoch": 21.574587486389145, + "grad_norm": 0.9988912343978882, + "learning_rate": 3.9217252931323286e-05, + "loss": 0.2725925064086914, + "step": 64400 + }, + { + "epoch": 21.608091129910378, + "grad_norm": 0.9891326427459717, + "learning_rate": 3.9200502512562815e-05, + "loss": 0.27440677642822264, + "step": 64500 + }, + { + "epoch": 21.64159477343161, + "grad_norm": 1.0808324813842773, + "learning_rate": 3.9183752093802344e-05, + "loss": 0.27411041259765623, + "step": 64600 + }, + { + "epoch": 21.675098416952842, + "grad_norm": 0.9373248219490051, + "learning_rate": 3.916700167504187e-05, + "loss": 0.2749940490722656, + "step": 64700 + }, + { + "epoch": 21.708602060474078, + "grad_norm": 1.165182113647461, + "learning_rate": 3.915025125628141e-05, + "loss": 0.27408443450927733, + "step": 64800 + }, + { + "epoch": 21.74210570399531, + "grad_norm": 0.9180405139923096, + "learning_rate": 3.9133500837520944e-05, + "loss": 0.27541778564453123, + "step": 64900 + }, + { + "epoch": 21.775609347516543, + "grad_norm": 1.0415167808532715, + "learning_rate": 3.911675041876047e-05, + "loss": 0.2752027893066406, + "step": 65000 + }, + { + "epoch": 21.809112991037775, + "grad_norm": 0.996279239654541, + "learning_rate": 3.91e-05, + "loss": 0.27856874465942383, + "step": 65100 + }, + { + "epoch": 21.842616634559008, + "grad_norm": 0.8467832207679749, + "learning_rate": 3.908324958123953e-05, + "loss": 0.2744846153259277, + "step": 65200 + }, + { + "epoch": 21.87612027808024, + "grad_norm": 0.9609348177909851, + "learning_rate": 3.9066499162479066e-05, + "loss": 0.27501155853271486, + "step": 65300 + }, + { + "epoch": 21.909623921601476, + "grad_norm": 1.0232717990875244, + "learning_rate": 3.9049748743718595e-05, + "loss": 0.2766411590576172, + "step": 65400 + }, + { + "epoch": 21.94312756512271, + "grad_norm": 0.9764308333396912, + "learning_rate": 3.9032998324958124e-05, + "loss": 0.27579292297363284, + "step": 65500 + }, + { + "epoch": 21.97663120864394, + "grad_norm": 0.8772796392440796, + "learning_rate": 3.901624790619766e-05, + "loss": 0.27892873764038084, + "step": 65600 + }, + { + "epoch": 22.01005109305637, + "grad_norm": 0.9070359468460083, + "learning_rate": 3.899949748743719e-05, + "loss": 0.27117897033691407, + "step": 65700 + }, + { + "epoch": 22.043554736577605, + "grad_norm": 0.9539000988006592, + "learning_rate": 3.898274706867672e-05, + "loss": 0.2588020706176758, + "step": 65800 + }, + { + "epoch": 22.077058380098837, + "grad_norm": 0.7974834442138672, + "learning_rate": 3.8965996649916246e-05, + "loss": 0.2590653610229492, + "step": 65900 + }, + { + "epoch": 22.11056202362007, + "grad_norm": 0.9373714327812195, + "learning_rate": 3.894924623115578e-05, + "loss": 0.25843637466430663, + "step": 66000 + }, + { + "epoch": 22.1440656671413, + "grad_norm": 0.9088506698608398, + "learning_rate": 3.893249581239532e-05, + "loss": 0.2609646987915039, + "step": 66100 + }, + { + "epoch": 22.177569310662534, + "grad_norm": 0.7560039162635803, + "learning_rate": 3.8915745393634846e-05, + "loss": 0.25976266860961916, + "step": 66200 + }, + { + "epoch": 22.211072954183766, + "grad_norm": 1.0187093019485474, + "learning_rate": 3.8898994974874375e-05, + "loss": 0.2626813507080078, + "step": 66300 + }, + { + "epoch": 22.244576597705, + "grad_norm": 0.9864270687103271, + "learning_rate": 3.8882244556113904e-05, + "loss": 0.26082069396972657, + "step": 66400 + }, + { + "epoch": 22.278080241226235, + "grad_norm": 0.9238985776901245, + "learning_rate": 3.886549413735344e-05, + "loss": 0.26303247451782225, + "step": 66500 + }, + { + "epoch": 22.311583884747467, + "grad_norm": 1.06230628490448, + "learning_rate": 3.884874371859297e-05, + "loss": 0.2636404609680176, + "step": 66600 + }, + { + "epoch": 22.3450875282687, + "grad_norm": 0.8938685655593872, + "learning_rate": 3.88319932998325e-05, + "loss": 0.26432344436645505, + "step": 66700 + }, + { + "epoch": 22.37859117178993, + "grad_norm": 0.9398422837257385, + "learning_rate": 3.8815242881072026e-05, + "loss": 0.2664291763305664, + "step": 66800 + }, + { + "epoch": 22.412094815311164, + "grad_norm": 0.9452701210975647, + "learning_rate": 3.879849246231156e-05, + "loss": 0.26500213623046875, + "step": 66900 + }, + { + "epoch": 22.445598458832396, + "grad_norm": 1.0754152536392212, + "learning_rate": 3.8781909547738694e-05, + "loss": 0.266211051940918, + "step": 67000 + }, + { + "epoch": 22.479102102353632, + "grad_norm": 0.966921329498291, + "learning_rate": 3.876515912897823e-05, + "loss": 0.26374603271484376, + "step": 67100 + }, + { + "epoch": 22.512605745874865, + "grad_norm": 0.979242742061615, + "learning_rate": 3.874840871021776e-05, + "loss": 0.266760082244873, + "step": 67200 + }, + { + "epoch": 22.546109389396097, + "grad_norm": 1.169141173362732, + "learning_rate": 3.873165829145729e-05, + "loss": 0.2670201873779297, + "step": 67300 + }, + { + "epoch": 22.57961303291733, + "grad_norm": 0.9599239230155945, + "learning_rate": 3.871490787269682e-05, + "loss": 0.2680745315551758, + "step": 67400 + }, + { + "epoch": 22.613116676438562, + "grad_norm": 1.0141677856445312, + "learning_rate": 3.869815745393635e-05, + "loss": 0.26869884490966794, + "step": 67500 + }, + { + "epoch": 22.646620319959794, + "grad_norm": 0.9633665084838867, + "learning_rate": 3.868140703517588e-05, + "loss": 0.26763187408447264, + "step": 67600 + }, + { + "epoch": 22.68012396348103, + "grad_norm": 1.046339750289917, + "learning_rate": 3.866465661641541e-05, + "loss": 0.271055965423584, + "step": 67700 + }, + { + "epoch": 22.713627607002262, + "grad_norm": 1.0029908418655396, + "learning_rate": 3.8647906197654945e-05, + "loss": 0.26755489349365236, + "step": 67800 + }, + { + "epoch": 22.747131250523495, + "grad_norm": 0.9917793273925781, + "learning_rate": 3.8631155778894473e-05, + "loss": 0.26893938064575196, + "step": 67900 + }, + { + "epoch": 22.780634894044727, + "grad_norm": 0.921280026435852, + "learning_rate": 3.8614405360134e-05, + "loss": 0.26891294479370115, + "step": 68000 + }, + { + "epoch": 22.81413853756596, + "grad_norm": 0.9776479601860046, + "learning_rate": 3.859765494137353e-05, + "loss": 0.2671005058288574, + "step": 68100 + }, + { + "epoch": 22.847642181087192, + "grad_norm": 0.8705649375915527, + "learning_rate": 3.858090452261307e-05, + "loss": 0.2690028762817383, + "step": 68200 + }, + { + "epoch": 22.881145824608428, + "grad_norm": 0.8992595076560974, + "learning_rate": 3.8564154103852595e-05, + "loss": 0.26913272857666015, + "step": 68300 + }, + { + "epoch": 22.91464946812966, + "grad_norm": 0.8897244334220886, + "learning_rate": 3.854740368509213e-05, + "loss": 0.27021236419677735, + "step": 68400 + }, + { + "epoch": 22.948153111650893, + "grad_norm": 0.9646697044372559, + "learning_rate": 3.853065326633166e-05, + "loss": 0.27057441711425784, + "step": 68500 + }, + { + "epoch": 22.981656755172125, + "grad_norm": 0.9705012440681458, + "learning_rate": 3.8513902847571195e-05, + "loss": 0.27003257751464843, + "step": 68600 + }, + { + "epoch": 23.015076639584557, + "grad_norm": 0.9501924514770508, + "learning_rate": 3.8497152428810724e-05, + "loss": 0.2624375915527344, + "step": 68700 + }, + { + "epoch": 23.04858028310579, + "grad_norm": 0.9246262311935425, + "learning_rate": 3.848040201005025e-05, + "loss": 0.2510771560668945, + "step": 68800 + }, + { + "epoch": 23.08208392662702, + "grad_norm": 1.0363575220108032, + "learning_rate": 3.846365159128978e-05, + "loss": 0.2513089370727539, + "step": 68900 + }, + { + "epoch": 23.115587570148254, + "grad_norm": 1.0965619087219238, + "learning_rate": 3.844706867671692e-05, + "loss": 0.2531783103942871, + "step": 69000 + }, + { + "epoch": 23.149091213669486, + "grad_norm": 0.7851601839065552, + "learning_rate": 3.843031825795645e-05, + "loss": 0.25430681228637697, + "step": 69100 + }, + { + "epoch": 23.18259485719072, + "grad_norm": 0.8714056611061096, + "learning_rate": 3.841356783919598e-05, + "loss": 0.2563682746887207, + "step": 69200 + }, + { + "epoch": 23.21609850071195, + "grad_norm": 0.9404228925704956, + "learning_rate": 3.839681742043551e-05, + "loss": 0.25634672164916994, + "step": 69300 + }, + { + "epoch": 23.249602144233187, + "grad_norm": 1.04526948928833, + "learning_rate": 3.838006700167504e-05, + "loss": 0.2558123779296875, + "step": 69400 + }, + { + "epoch": 23.28310578775442, + "grad_norm": 1.0145646333694458, + "learning_rate": 3.836331658291458e-05, + "loss": 0.25761409759521486, + "step": 69500 + }, + { + "epoch": 23.31660943127565, + "grad_norm": 1.0709373950958252, + "learning_rate": 3.834656616415411e-05, + "loss": 0.25936553955078123, + "step": 69600 + }, + { + "epoch": 23.350113074796884, + "grad_norm": 1.0656367540359497, + "learning_rate": 3.8329815745393637e-05, + "loss": 0.25993459701538085, + "step": 69700 + }, + { + "epoch": 23.383616718318116, + "grad_norm": 0.9517690539360046, + "learning_rate": 3.8313065326633165e-05, + "loss": 0.2593793296813965, + "step": 69800 + }, + { + "epoch": 23.41712036183935, + "grad_norm": 0.9651705026626587, + "learning_rate": 3.82963149078727e-05, + "loss": 0.2592854309082031, + "step": 69900 + }, + { + "epoch": 23.450624005360584, + "grad_norm": 0.9077875018119812, + "learning_rate": 3.827956448911223e-05, + "loss": 0.2614713668823242, + "step": 70000 + }, + { + "epoch": 23.484127648881817, + "grad_norm": 0.9982284307479858, + "learning_rate": 3.826281407035176e-05, + "loss": 0.2588504219055176, + "step": 70100 + }, + { + "epoch": 23.51763129240305, + "grad_norm": 0.9539495706558228, + "learning_rate": 3.824606365159129e-05, + "loss": 0.26046722412109374, + "step": 70200 + }, + { + "epoch": 23.55113493592428, + "grad_norm": 1.0776108503341675, + "learning_rate": 3.822931323283082e-05, + "loss": 0.2608753776550293, + "step": 70300 + }, + { + "epoch": 23.584638579445514, + "grad_norm": 1.0306613445281982, + "learning_rate": 3.821256281407035e-05, + "loss": 0.26188905715942384, + "step": 70400 + }, + { + "epoch": 23.618142222966746, + "grad_norm": 0.9900612831115723, + "learning_rate": 3.819581239530988e-05, + "loss": 0.26530147552490235, + "step": 70500 + }, + { + "epoch": 23.651645866487982, + "grad_norm": 1.047272801399231, + "learning_rate": 3.817906197654941e-05, + "loss": 0.26567121505737307, + "step": 70600 + }, + { + "epoch": 23.685149510009214, + "grad_norm": 0.9837287068367004, + "learning_rate": 3.816231155778895e-05, + "loss": 0.2618439865112305, + "step": 70700 + }, + { + "epoch": 23.718653153530447, + "grad_norm": 1.0495308637619019, + "learning_rate": 3.814556113902848e-05, + "loss": 0.2637239646911621, + "step": 70800 + }, + { + "epoch": 23.75215679705168, + "grad_norm": 0.9998559951782227, + "learning_rate": 3.812881072026801e-05, + "loss": 0.2645314788818359, + "step": 70900 + }, + { + "epoch": 23.78566044057291, + "grad_norm": 1.0041533708572388, + "learning_rate": 3.811222780569514e-05, + "loss": 0.26535621643066404, + "step": 71000 + }, + { + "epoch": 23.819164084094144, + "grad_norm": 0.8790546655654907, + "learning_rate": 3.809547738693468e-05, + "loss": 0.26744958877563474, + "step": 71100 + }, + { + "epoch": 23.85266772761538, + "grad_norm": 1.0044236183166504, + "learning_rate": 3.8078726968174206e-05, + "loss": 0.2647633171081543, + "step": 71200 + }, + { + "epoch": 23.886171371136612, + "grad_norm": 0.9612513184547424, + "learning_rate": 3.8061976549413735e-05, + "loss": 0.2649590682983398, + "step": 71300 + }, + { + "epoch": 23.919675014657845, + "grad_norm": 0.8713734745979309, + "learning_rate": 3.8045226130653264e-05, + "loss": 0.266021728515625, + "step": 71400 + }, + { + "epoch": 23.953178658179077, + "grad_norm": 1.0584930181503296, + "learning_rate": 3.80284757118928e-05, + "loss": 0.2661307907104492, + "step": 71500 + }, + { + "epoch": 23.98668230170031, + "grad_norm": 1.003209114074707, + "learning_rate": 3.801172529313233e-05, + "loss": 0.26575571060180664, + "step": 71600 + }, + { + "epoch": 24.02010218611274, + "grad_norm": 1.0001593828201294, + "learning_rate": 3.7994974874371864e-05, + "loss": 0.25387475967407225, + "step": 71700 + }, + { + "epoch": 24.053605829633973, + "grad_norm": 1.0081121921539307, + "learning_rate": 3.797822445561139e-05, + "loss": 0.24931825637817384, + "step": 71800 + }, + { + "epoch": 24.087109473155206, + "grad_norm": 0.969540536403656, + "learning_rate": 3.796147403685092e-05, + "loss": 0.24639154434204102, + "step": 71900 + }, + { + "epoch": 24.120613116676438, + "grad_norm": 0.9975810050964355, + "learning_rate": 3.794472361809046e-05, + "loss": 0.24772171020507813, + "step": 72000 + }, + { + "epoch": 24.15411676019767, + "grad_norm": 1.0242449045181274, + "learning_rate": 3.7927973199329986e-05, + "loss": 0.24881784439086915, + "step": 72100 + }, + { + "epoch": 24.187620403718903, + "grad_norm": 0.9321593642234802, + "learning_rate": 3.7911222780569515e-05, + "loss": 0.250980339050293, + "step": 72200 + }, + { + "epoch": 24.22112404724014, + "grad_norm": 0.8362423181533813, + "learning_rate": 3.7894472361809044e-05, + "loss": 0.2504695320129395, + "step": 72300 + }, + { + "epoch": 24.25462769076137, + "grad_norm": 1.0577383041381836, + "learning_rate": 3.787772194304858e-05, + "loss": 0.25103809356689455, + "step": 72400 + }, + { + "epoch": 24.288131334282603, + "grad_norm": 0.9327830672264099, + "learning_rate": 3.786097152428811e-05, + "loss": 0.2529195785522461, + "step": 72500 + }, + { + "epoch": 24.321634977803836, + "grad_norm": 0.941429078578949, + "learning_rate": 3.784422110552764e-05, + "loss": 0.25365312576293947, + "step": 72600 + }, + { + "epoch": 24.355138621325068, + "grad_norm": 0.9718444347381592, + "learning_rate": 3.7827470686767166e-05, + "loss": 0.25447874069213866, + "step": 72700 + }, + { + "epoch": 24.3886422648463, + "grad_norm": 1.0243566036224365, + "learning_rate": 3.78107202680067e-05, + "loss": 0.2550676727294922, + "step": 72800 + }, + { + "epoch": 24.422145908367536, + "grad_norm": 1.0174282789230347, + "learning_rate": 3.779396984924624e-05, + "loss": 0.25832677841186524, + "step": 72900 + }, + { + "epoch": 24.45564955188877, + "grad_norm": 0.9675871133804321, + "learning_rate": 3.777738693467337e-05, + "loss": 0.2548235511779785, + "step": 73000 + }, + { + "epoch": 24.48915319541, + "grad_norm": 1.095906138420105, + "learning_rate": 3.77606365159129e-05, + "loss": 0.2557443809509277, + "step": 73100 + }, + { + "epoch": 24.522656838931233, + "grad_norm": 0.8963753581047058, + "learning_rate": 3.7743886097152434e-05, + "loss": 0.25586761474609376, + "step": 73200 + }, + { + "epoch": 24.556160482452466, + "grad_norm": 0.8457279801368713, + "learning_rate": 3.772713567839196e-05, + "loss": 0.2581898307800293, + "step": 73300 + }, + { + "epoch": 24.589664125973698, + "grad_norm": 1.0806199312210083, + "learning_rate": 3.771038525963149e-05, + "loss": 0.25776454925537107, + "step": 73400 + }, + { + "epoch": 24.623167769494934, + "grad_norm": 1.117748737335205, + "learning_rate": 3.769363484087102e-05, + "loss": 0.25891387939453125, + "step": 73500 + }, + { + "epoch": 24.656671413016166, + "grad_norm": 1.022865653038025, + "learning_rate": 3.7676884422110556e-05, + "loss": 0.25816925048828127, + "step": 73600 + }, + { + "epoch": 24.6901750565374, + "grad_norm": 1.0696437358856201, + "learning_rate": 3.7660134003350085e-05, + "loss": 0.2563637351989746, + "step": 73700 + }, + { + "epoch": 24.72367870005863, + "grad_norm": 0.9979215860366821, + "learning_rate": 3.7643383584589614e-05, + "loss": 0.25864744186401367, + "step": 73800 + }, + { + "epoch": 24.757182343579863, + "grad_norm": 1.0636203289031982, + "learning_rate": 3.762663316582914e-05, + "loss": 0.25936466217041015, + "step": 73900 + }, + { + "epoch": 24.790685987101096, + "grad_norm": 1.0561468601226807, + "learning_rate": 3.760988274706868e-05, + "loss": 0.2596282005310059, + "step": 74000 + }, + { + "epoch": 24.82418963062233, + "grad_norm": 1.0279403924942017, + "learning_rate": 3.7593132328308214e-05, + "loss": 0.25866455078125, + "step": 74100 + }, + { + "epoch": 24.857693274143564, + "grad_norm": 1.0280523300170898, + "learning_rate": 3.757638190954774e-05, + "loss": 0.2624567985534668, + "step": 74200 + }, + { + "epoch": 24.891196917664796, + "grad_norm": 1.0582387447357178, + "learning_rate": 3.755963149078727e-05, + "loss": 0.26197324752807616, + "step": 74300 + }, + { + "epoch": 24.92470056118603, + "grad_norm": 0.9122918248176575, + "learning_rate": 3.75428810720268e-05, + "loss": 0.25970455169677736, + "step": 74400 + }, + { + "epoch": 24.95820420470726, + "grad_norm": 1.223061442375183, + "learning_rate": 3.7526130653266336e-05, + "loss": 0.2615465927124023, + "step": 74500 + }, + { + "epoch": 24.991707848228494, + "grad_norm": 0.9313095808029175, + "learning_rate": 3.7509380234505865e-05, + "loss": 0.26078268051147463, + "step": 74600 + }, + { + "epoch": 25.025127732640925, + "grad_norm": 0.9277160167694092, + "learning_rate": 3.7492629815745393e-05, + "loss": 0.2467232322692871, + "step": 74700 + }, + { + "epoch": 25.058631376162158, + "grad_norm": 0.8967624306678772, + "learning_rate": 3.747587939698492e-05, + "loss": 0.2427264404296875, + "step": 74800 + }, + { + "epoch": 25.09213501968339, + "grad_norm": 0.9991577863693237, + "learning_rate": 3.745912897822446e-05, + "loss": 0.24398237228393554, + "step": 74900 + }, + { + "epoch": 25.125638663204622, + "grad_norm": 0.9068632125854492, + "learning_rate": 3.74425460636516e-05, + "loss": 0.24407464981079102, + "step": 75000 + }, + { + "epoch": 25.159142306725858, + "grad_norm": 0.9610689878463745, + "learning_rate": 3.7425795644891126e-05, + "loss": 0.2451825523376465, + "step": 75100 + }, + { + "epoch": 25.19264595024709, + "grad_norm": 1.0655577182769775, + "learning_rate": 3.7409045226130655e-05, + "loss": 0.24775781631469726, + "step": 75200 + }, + { + "epoch": 25.226149593768323, + "grad_norm": 0.9166316390037537, + "learning_rate": 3.739229480737019e-05, + "loss": 0.24586162567138672, + "step": 75300 + }, + { + "epoch": 25.259653237289555, + "grad_norm": 1.0330859422683716, + "learning_rate": 3.737554438860972e-05, + "loss": 0.2476130485534668, + "step": 75400 + }, + { + "epoch": 25.293156880810788, + "grad_norm": 0.9790452122688293, + "learning_rate": 3.735879396984925e-05, + "loss": 0.24896875381469727, + "step": 75500 + }, + { + "epoch": 25.32666052433202, + "grad_norm": 0.9078829288482666, + "learning_rate": 3.734204355108878e-05, + "loss": 0.25146854400634766, + "step": 75600 + }, + { + "epoch": 25.360164167853252, + "grad_norm": 1.0172176361083984, + "learning_rate": 3.732529313232831e-05, + "loss": 0.24892644882202147, + "step": 75700 + }, + { + "epoch": 25.39366781137449, + "grad_norm": 0.8392038941383362, + "learning_rate": 3.730854271356784e-05, + "loss": 0.2486979866027832, + "step": 75800 + }, + { + "epoch": 25.42717145489572, + "grad_norm": 1.120992660522461, + "learning_rate": 3.729179229480737e-05, + "loss": 0.2500802612304687, + "step": 75900 + }, + { + "epoch": 25.460675098416953, + "grad_norm": 0.9740986227989197, + "learning_rate": 3.727520938023451e-05, + "loss": 0.2497385025024414, + "step": 76000 + }, + { + "epoch": 25.494178741938185, + "grad_norm": 1.1447396278381348, + "learning_rate": 3.725845896147404e-05, + "loss": 0.2524580001831055, + "step": 76100 + }, + { + "epoch": 25.527682385459418, + "grad_norm": 0.8573219776153564, + "learning_rate": 3.7241708542713574e-05, + "loss": 0.2522186470031738, + "step": 76200 + }, + { + "epoch": 25.56118602898065, + "grad_norm": 1.0129204988479614, + "learning_rate": 3.72249581239531e-05, + "loss": 0.2548684501647949, + "step": 76300 + }, + { + "epoch": 25.594689672501886, + "grad_norm": 0.9877455830574036, + "learning_rate": 3.720820770519263e-05, + "loss": 0.2520929527282715, + "step": 76400 + }, + { + "epoch": 25.62819331602312, + "grad_norm": 0.9686979651451111, + "learning_rate": 3.719145728643216e-05, + "loss": 0.25263065338134766, + "step": 76500 + }, + { + "epoch": 25.66169695954435, + "grad_norm": 0.9908387660980225, + "learning_rate": 3.7174706867671696e-05, + "loss": 0.25347740173339844, + "step": 76600 + }, + { + "epoch": 25.695200603065583, + "grad_norm": 1.006608009338379, + "learning_rate": 3.7157956448911225e-05, + "loss": 0.2546247863769531, + "step": 76700 + }, + { + "epoch": 25.728704246586815, + "grad_norm": 1.003769874572754, + "learning_rate": 3.7141206030150754e-05, + "loss": 0.253816089630127, + "step": 76800 + }, + { + "epoch": 25.762207890108048, + "grad_norm": 1.0374062061309814, + "learning_rate": 3.712445561139028e-05, + "loss": 0.25663318634033205, + "step": 76900 + }, + { + "epoch": 25.795711533629284, + "grad_norm": 1.0362064838409424, + "learning_rate": 3.710770519262982e-05, + "loss": 0.2567397880554199, + "step": 77000 + }, + { + "epoch": 25.829215177150516, + "grad_norm": 1.0892760753631592, + "learning_rate": 3.709095477386935e-05, + "loss": 0.25798879623413085, + "step": 77100 + }, + { + "epoch": 25.86271882067175, + "grad_norm": 1.049902081489563, + "learning_rate": 3.7074204355108876e-05, + "loss": 0.25775598526000976, + "step": 77200 + }, + { + "epoch": 25.89622246419298, + "grad_norm": 0.8818158507347107, + "learning_rate": 3.705745393634841e-05, + "loss": 0.2554671287536621, + "step": 77300 + }, + { + "epoch": 25.929726107714213, + "grad_norm": 1.0922232866287231, + "learning_rate": 3.704070351758795e-05, + "loss": 0.25704565048217776, + "step": 77400 + }, + { + "epoch": 25.963229751235446, + "grad_norm": 0.9811676144599915, + "learning_rate": 3.7023953098827476e-05, + "loss": 0.25583274841308595, + "step": 77500 + }, + { + "epoch": 25.99673339475668, + "grad_norm": 1.044572353363037, + "learning_rate": 3.7007202680067004e-05, + "loss": 0.25744909286499024, + "step": 77600 + }, + { + "epoch": 26.03015327916911, + "grad_norm": 0.790084958076477, + "learning_rate": 3.699045226130653e-05, + "loss": 0.23935884475708008, + "step": 77700 + }, + { + "epoch": 26.063656922690342, + "grad_norm": 0.9131903052330017, + "learning_rate": 3.697370184254607e-05, + "loss": 0.2395966339111328, + "step": 77800 + }, + { + "epoch": 26.097160566211574, + "grad_norm": 1.0206575393676758, + "learning_rate": 3.69569514237856e-05, + "loss": 0.23894302368164064, + "step": 77900 + }, + { + "epoch": 26.13066420973281, + "grad_norm": 0.9167901873588562, + "learning_rate": 3.6940201005025127e-05, + "loss": 0.24095657348632812, + "step": 78000 + }, + { + "epoch": 26.164167853254042, + "grad_norm": 0.9756499528884888, + "learning_rate": 3.6923450586264655e-05, + "loss": 0.24229476928710938, + "step": 78100 + }, + { + "epoch": 26.197671496775275, + "grad_norm": 1.1261674165725708, + "learning_rate": 3.690670016750419e-05, + "loss": 0.24467144012451172, + "step": 78200 + }, + { + "epoch": 26.231175140296507, + "grad_norm": 0.8712000846862793, + "learning_rate": 3.688994974874372e-05, + "loss": 0.2426918601989746, + "step": 78300 + }, + { + "epoch": 26.26467878381774, + "grad_norm": 0.9853079915046692, + "learning_rate": 3.687319932998325e-05, + "loss": 0.2432308578491211, + "step": 78400 + }, + { + "epoch": 26.298182427338972, + "grad_norm": 0.9844798445701599, + "learning_rate": 3.6856448911222784e-05, + "loss": 0.24566902160644533, + "step": 78500 + }, + { + "epoch": 26.331686070860208, + "grad_norm": 0.991397500038147, + "learning_rate": 3.683969849246231e-05, + "loss": 0.24585660934448242, + "step": 78600 + }, + { + "epoch": 26.36518971438144, + "grad_norm": 0.9551209211349487, + "learning_rate": 3.682294807370185e-05, + "loss": 0.24546436309814454, + "step": 78700 + }, + { + "epoch": 26.398693357902673, + "grad_norm": 1.0218653678894043, + "learning_rate": 3.680619765494138e-05, + "loss": 0.2468564987182617, + "step": 78800 + }, + { + "epoch": 26.432197001423905, + "grad_norm": 0.879303514957428, + "learning_rate": 3.6789447236180906e-05, + "loss": 0.24688074111938477, + "step": 78900 + }, + { + "epoch": 26.465700644945137, + "grad_norm": 0.9550554156303406, + "learning_rate": 3.6772696817420435e-05, + "loss": 0.24929559707641602, + "step": 79000 + }, + { + "epoch": 26.49920428846637, + "grad_norm": 1.092371940612793, + "learning_rate": 3.675594639865997e-05, + "loss": 0.2490665817260742, + "step": 79100 + }, + { + "epoch": 26.532707931987602, + "grad_norm": 0.9425039887428284, + "learning_rate": 3.67391959798995e-05, + "loss": 0.24648136138916016, + "step": 79200 + }, + { + "epoch": 26.566211575508838, + "grad_norm": 0.9212557077407837, + "learning_rate": 3.672244556113903e-05, + "loss": 0.24588151931762695, + "step": 79300 + }, + { + "epoch": 26.59971521903007, + "grad_norm": 1.0376055240631104, + "learning_rate": 3.670569514237856e-05, + "loss": 0.24943052291870116, + "step": 79400 + }, + { + "epoch": 26.633218862551303, + "grad_norm": 0.9473478198051453, + "learning_rate": 3.668894472361809e-05, + "loss": 0.24888269424438478, + "step": 79500 + }, + { + "epoch": 26.666722506072535, + "grad_norm": 1.052951455116272, + "learning_rate": 3.667219430485762e-05, + "loss": 0.24891986846923828, + "step": 79600 + }, + { + "epoch": 26.700226149593767, + "grad_norm": 1.1100990772247314, + "learning_rate": 3.665544388609715e-05, + "loss": 0.2513142776489258, + "step": 79700 + }, + { + "epoch": 26.733729793115, + "grad_norm": 0.9589593410491943, + "learning_rate": 3.6638693467336686e-05, + "loss": 0.24993154525756836, + "step": 79800 + }, + { + "epoch": 26.767233436636236, + "grad_norm": 0.9308981895446777, + "learning_rate": 3.662194304857622e-05, + "loss": 0.2495902442932129, + "step": 79900 + }, + { + "epoch": 26.800737080157468, + "grad_norm": 1.0080679655075073, + "learning_rate": 3.6605360134003354e-05, + "loss": 0.25091459274291994, + "step": 80000 + }, + { + "epoch": 26.8342407236787, + "grad_norm": 0.965578556060791, + "learning_rate": 3.658860971524288e-05, + "loss": 0.2524791526794434, + "step": 80100 + }, + { + "epoch": 26.867744367199933, + "grad_norm": 1.0109574794769287, + "learning_rate": 3.657185929648241e-05, + "loss": 0.2515005111694336, + "step": 80200 + }, + { + "epoch": 26.901248010721165, + "grad_norm": 1.0662031173706055, + "learning_rate": 3.655510887772195e-05, + "loss": 0.25569900512695315, + "step": 80300 + }, + { + "epoch": 26.934751654242397, + "grad_norm": 1.0011720657348633, + "learning_rate": 3.6538358458961476e-05, + "loss": 0.25127042770385744, + "step": 80400 + }, + { + "epoch": 26.968255297763633, + "grad_norm": 1.0007758140563965, + "learning_rate": 3.6521608040201005e-05, + "loss": 0.25374698638916016, + "step": 80500 + }, + { + "epoch": 27.00167518217606, + "grad_norm": 0.8360596895217896, + "learning_rate": 3.6504857621440534e-05, + "loss": 0.2519091033935547, + "step": 80600 + }, + { + "epoch": 27.035178825697294, + "grad_norm": 0.772354781627655, + "learning_rate": 3.648810720268007e-05, + "loss": 0.2350589370727539, + "step": 80700 + }, + { + "epoch": 27.068682469218526, + "grad_norm": 0.9291853904724121, + "learning_rate": 3.6471356783919605e-05, + "loss": 0.23687738418579102, + "step": 80800 + }, + { + "epoch": 27.102186112739762, + "grad_norm": 0.8280290365219116, + "learning_rate": 3.6454606365159134e-05, + "loss": 0.23724706649780272, + "step": 80900 + }, + { + "epoch": 27.135689756260994, + "grad_norm": 1.0114185810089111, + "learning_rate": 3.643785594639866e-05, + "loss": 0.2386191940307617, + "step": 81000 + }, + { + "epoch": 27.169193399782227, + "grad_norm": 0.8960608839988708, + "learning_rate": 3.642110552763819e-05, + "loss": 0.23746776580810547, + "step": 81100 + }, + { + "epoch": 27.20269704330346, + "grad_norm": 0.9211316704750061, + "learning_rate": 3.640435510887773e-05, + "loss": 0.24118051528930665, + "step": 81200 + }, + { + "epoch": 27.23620068682469, + "grad_norm": 0.9914082884788513, + "learning_rate": 3.6387604690117256e-05, + "loss": 0.2407957649230957, + "step": 81300 + }, + { + "epoch": 27.269704330345924, + "grad_norm": 0.8905548453330994, + "learning_rate": 3.6370854271356785e-05, + "loss": 0.23928272247314453, + "step": 81400 + }, + { + "epoch": 27.30320797386716, + "grad_norm": 0.8846296072006226, + "learning_rate": 3.635427135678392e-05, + "loss": 0.24042049407958985, + "step": 81500 + }, + { + "epoch": 27.336711617388392, + "grad_norm": 0.9076329469680786, + "learning_rate": 3.633752093802345e-05, + "loss": 0.24250953674316406, + "step": 81600 + }, + { + "epoch": 27.370215260909625, + "grad_norm": 1.1054998636245728, + "learning_rate": 3.632077051926298e-05, + "loss": 0.2428689956665039, + "step": 81700 + }, + { + "epoch": 27.403718904430857, + "grad_norm": 0.9182295799255371, + "learning_rate": 3.630402010050251e-05, + "loss": 0.24241937637329103, + "step": 81800 + }, + { + "epoch": 27.43722254795209, + "grad_norm": 1.0540192127227783, + "learning_rate": 3.6287269681742046e-05, + "loss": 0.24241340637207032, + "step": 81900 + }, + { + "epoch": 27.47072619147332, + "grad_norm": 0.9639661312103271, + "learning_rate": 3.6270519262981575e-05, + "loss": 0.24282842636108398, + "step": 82000 + }, + { + "epoch": 27.504229834994554, + "grad_norm": 0.8837372064590454, + "learning_rate": 3.625376884422111e-05, + "loss": 0.24227666854858398, + "step": 82100 + }, + { + "epoch": 27.53773347851579, + "grad_norm": 0.8825430274009705, + "learning_rate": 3.623701842546064e-05, + "loss": 0.24317176818847655, + "step": 82200 + }, + { + "epoch": 27.571237122037022, + "grad_norm": 1.0860276222229004, + "learning_rate": 3.622026800670017e-05, + "loss": 0.2448468780517578, + "step": 82300 + }, + { + "epoch": 27.604740765558255, + "grad_norm": 1.0138317346572876, + "learning_rate": 3.6203517587939704e-05, + "loss": 0.24316675186157227, + "step": 82400 + }, + { + "epoch": 27.638244409079487, + "grad_norm": 1.0941250324249268, + "learning_rate": 3.618676716917923e-05, + "loss": 0.2473929786682129, + "step": 82500 + }, + { + "epoch": 27.67174805260072, + "grad_norm": 0.8989108800888062, + "learning_rate": 3.617001675041876e-05, + "loss": 0.247222900390625, + "step": 82600 + }, + { + "epoch": 27.70525169612195, + "grad_norm": 1.0026638507843018, + "learning_rate": 3.615326633165829e-05, + "loss": 0.24576572418212891, + "step": 82700 + }, + { + "epoch": 27.738755339643188, + "grad_norm": 1.0626496076583862, + "learning_rate": 3.6136515912897826e-05, + "loss": 0.2481866455078125, + "step": 82800 + }, + { + "epoch": 27.77225898316442, + "grad_norm": 0.8049838542938232, + "learning_rate": 3.6119765494137355e-05, + "loss": 0.24766799926757813, + "step": 82900 + }, + { + "epoch": 27.805762626685652, + "grad_norm": 1.0565505027770996, + "learning_rate": 3.6103015075376883e-05, + "loss": 0.24823820114135742, + "step": 83000 + }, + { + "epoch": 27.839266270206885, + "grad_norm": 1.0819406509399414, + "learning_rate": 3.608626465661642e-05, + "loss": 0.24928997039794923, + "step": 83100 + }, + { + "epoch": 27.872769913728117, + "grad_norm": 1.014066457748413, + "learning_rate": 3.606951423785595e-05, + "loss": 0.24671865463256837, + "step": 83200 + }, + { + "epoch": 27.90627355724935, + "grad_norm": 1.002631425857544, + "learning_rate": 3.6052763819095483e-05, + "loss": 0.24837955474853515, + "step": 83300 + }, + { + "epoch": 27.939777200770585, + "grad_norm": 1.0699118375778198, + "learning_rate": 3.603601340033501e-05, + "loss": 0.25022062301635745, + "step": 83400 + }, + { + "epoch": 27.973280844291818, + "grad_norm": 0.9003764986991882, + "learning_rate": 3.601926298157454e-05, + "loss": 0.24779138565063477, + "step": 83500 + }, + { + "epoch": 28.006700728704246, + "grad_norm": 0.7831597924232483, + "learning_rate": 3.600251256281407e-05, + "loss": 0.24304958343505859, + "step": 83600 + }, + { + "epoch": 28.040204372225478, + "grad_norm": 0.8876057267189026, + "learning_rate": 3.5985762144053605e-05, + "loss": 0.23251798629760742, + "step": 83700 + }, + { + "epoch": 28.073708015746714, + "grad_norm": 0.8161166906356812, + "learning_rate": 3.5969011725293134e-05, + "loss": 0.23175537109375, + "step": 83800 + }, + { + "epoch": 28.107211659267946, + "grad_norm": 1.0348833799362183, + "learning_rate": 3.595226130653266e-05, + "loss": 0.23300014495849608, + "step": 83900 + }, + { + "epoch": 28.14071530278918, + "grad_norm": 0.9496212601661682, + "learning_rate": 3.5935678391959796e-05, + "loss": 0.23465946197509766, + "step": 84000 + }, + { + "epoch": 28.17421894631041, + "grad_norm": 0.8523275256156921, + "learning_rate": 3.591892797319933e-05, + "loss": 0.23583173751831055, + "step": 84100 + }, + { + "epoch": 28.207722589831643, + "grad_norm": 0.9591325521469116, + "learning_rate": 3.590217755443887e-05, + "loss": 0.2353810691833496, + "step": 84200 + }, + { + "epoch": 28.241226233352876, + "grad_norm": 0.876011312007904, + "learning_rate": 3.5885427135678396e-05, + "loss": 0.23749792098999023, + "step": 84300 + }, + { + "epoch": 28.27472987687411, + "grad_norm": 0.9948890209197998, + "learning_rate": 3.5868676716917924e-05, + "loss": 0.23812158584594725, + "step": 84400 + }, + { + "epoch": 28.308233520395344, + "grad_norm": 0.99249267578125, + "learning_rate": 3.585192629815745e-05, + "loss": 0.23765924453735351, + "step": 84500 + }, + { + "epoch": 28.341737163916576, + "grad_norm": 0.8422896265983582, + "learning_rate": 3.583517587939699e-05, + "loss": 0.2388518714904785, + "step": 84600 + }, + { + "epoch": 28.37524080743781, + "grad_norm": 1.0225242376327515, + "learning_rate": 3.581842546063652e-05, + "loss": 0.2379816436767578, + "step": 84700 + }, + { + "epoch": 28.40874445095904, + "grad_norm": 0.9493758082389832, + "learning_rate": 3.5801675041876047e-05, + "loss": 0.23900142669677735, + "step": 84800 + }, + { + "epoch": 28.442248094480274, + "grad_norm": 1.0754547119140625, + "learning_rate": 3.578492462311558e-05, + "loss": 0.2420096778869629, + "step": 84900 + }, + { + "epoch": 28.475751738001506, + "grad_norm": 1.1404248476028442, + "learning_rate": 3.576817420435511e-05, + "loss": 0.2387169647216797, + "step": 85000 + }, + { + "epoch": 28.509255381522742, + "grad_norm": 1.0831667184829712, + "learning_rate": 3.575142378559464e-05, + "loss": 0.23977863311767578, + "step": 85100 + }, + { + "epoch": 28.542759025043974, + "grad_norm": 0.9713730812072754, + "learning_rate": 3.573467336683417e-05, + "loss": 0.24276636123657228, + "step": 85200 + }, + { + "epoch": 28.576262668565207, + "grad_norm": 0.8892617225646973, + "learning_rate": 3.5717922948073704e-05, + "loss": 0.24079540252685547, + "step": 85300 + }, + { + "epoch": 28.60976631208644, + "grad_norm": 0.90485680103302, + "learning_rate": 3.570117252931324e-05, + "loss": 0.23991119384765625, + "step": 85400 + }, + { + "epoch": 28.64326995560767, + "grad_norm": 0.8535875678062439, + "learning_rate": 3.568442211055277e-05, + "loss": 0.24252616882324218, + "step": 85500 + }, + { + "epoch": 28.676773599128904, + "grad_norm": 1.1108918190002441, + "learning_rate": 3.56676716917923e-05, + "loss": 0.24145748138427733, + "step": 85600 + }, + { + "epoch": 28.71027724265014, + "grad_norm": 1.0389022827148438, + "learning_rate": 3.5650921273031826e-05, + "loss": 0.24423345565795898, + "step": 85700 + }, + { + "epoch": 28.743780886171372, + "grad_norm": 1.0552116632461548, + "learning_rate": 3.563417085427136e-05, + "loss": 0.24410188674926758, + "step": 85800 + }, + { + "epoch": 28.777284529692604, + "grad_norm": 0.9229023456573486, + "learning_rate": 3.561742043551089e-05, + "loss": 0.24257204055786133, + "step": 85900 + }, + { + "epoch": 28.810788173213837, + "grad_norm": 1.0788532495498657, + "learning_rate": 3.560067001675042e-05, + "loss": 0.24557861328125, + "step": 86000 + }, + { + "epoch": 28.84429181673507, + "grad_norm": 0.8226192593574524, + "learning_rate": 3.558391959798995e-05, + "loss": 0.24487424850463868, + "step": 86100 + }, + { + "epoch": 28.8777954602563, + "grad_norm": 0.9678732752799988, + "learning_rate": 3.5567169179229484e-05, + "loss": 0.24371047973632812, + "step": 86200 + }, + { + "epoch": 28.911299103777537, + "grad_norm": 0.9942400455474854, + "learning_rate": 3.555041876046901e-05, + "loss": 0.24467437744140624, + "step": 86300 + }, + { + "epoch": 28.94480274729877, + "grad_norm": 1.050825595855713, + "learning_rate": 3.553366834170854e-05, + "loss": 0.2451385498046875, + "step": 86400 + }, + { + "epoch": 28.978306390820002, + "grad_norm": 0.9947119951248169, + "learning_rate": 3.551691792294807e-05, + "loss": 0.24689924240112304, + "step": 86500 + }, + { + "epoch": 29.01172627523243, + "grad_norm": 0.7659996151924133, + "learning_rate": 3.5500167504187606e-05, + "loss": 0.23850542068481445, + "step": 86600 + }, + { + "epoch": 29.045229918753666, + "grad_norm": 0.7991949915885925, + "learning_rate": 3.548341708542714e-05, + "loss": 0.23052330017089845, + "step": 86700 + }, + { + "epoch": 29.0787335622749, + "grad_norm": 0.9375367760658264, + "learning_rate": 3.546666666666667e-05, + "loss": 0.228839168548584, + "step": 86800 + }, + { + "epoch": 29.11223720579613, + "grad_norm": 1.0139492750167847, + "learning_rate": 3.54499162479062e-05, + "loss": 0.2321438217163086, + "step": 86900 + }, + { + "epoch": 29.145740849317363, + "grad_norm": 0.8823564648628235, + "learning_rate": 3.543316582914573e-05, + "loss": 0.23002294540405274, + "step": 87000 + }, + { + "epoch": 29.179244492838595, + "grad_norm": 0.8460071086883545, + "learning_rate": 3.5416415410385264e-05, + "loss": 0.23179996490478516, + "step": 87100 + }, + { + "epoch": 29.212748136359828, + "grad_norm": 0.9480848908424377, + "learning_rate": 3.539966499162479e-05, + "loss": 0.23330198287963866, + "step": 87200 + }, + { + "epoch": 29.246251779881064, + "grad_norm": 0.9003339409828186, + "learning_rate": 3.538291457286432e-05, + "loss": 0.2348067855834961, + "step": 87300 + }, + { + "epoch": 29.279755423402296, + "grad_norm": 0.9011369943618774, + "learning_rate": 3.536616415410386e-05, + "loss": 0.23475120544433595, + "step": 87400 + }, + { + "epoch": 29.31325906692353, + "grad_norm": 1.102575421333313, + "learning_rate": 3.5349413735343386e-05, + "loss": 0.23566722869873047, + "step": 87500 + }, + { + "epoch": 29.34676271044476, + "grad_norm": 1.0036569833755493, + "learning_rate": 3.5332663316582915e-05, + "loss": 0.2358757209777832, + "step": 87600 + }, + { + "epoch": 29.380266353965993, + "grad_norm": 0.9289223551750183, + "learning_rate": 3.531591289782244e-05, + "loss": 0.23525848388671874, + "step": 87700 + }, + { + "epoch": 29.413769997487226, + "grad_norm": 0.9896803498268127, + "learning_rate": 3.529916247906198e-05, + "loss": 0.23644231796264648, + "step": 87800 + }, + { + "epoch": 29.447273641008458, + "grad_norm": 0.9522982239723206, + "learning_rate": 3.5282412060301515e-05, + "loss": 0.23636116027832033, + "step": 87900 + }, + { + "epoch": 29.480777284529694, + "grad_norm": 0.9571079611778259, + "learning_rate": 3.526582914572865e-05, + "loss": 0.23850887298583984, + "step": 88000 + }, + { + "epoch": 29.514280928050926, + "grad_norm": 1.0205976963043213, + "learning_rate": 3.5249078726968176e-05, + "loss": 0.23928991317749024, + "step": 88100 + }, + { + "epoch": 29.54778457157216, + "grad_norm": 1.0385000705718994, + "learning_rate": 3.5232328308207705e-05, + "loss": 0.2364453125, + "step": 88200 + }, + { + "epoch": 29.58128821509339, + "grad_norm": 0.8799936771392822, + "learning_rate": 3.521557788944724e-05, + "loss": 0.2379269027709961, + "step": 88300 + }, + { + "epoch": 29.614791858614623, + "grad_norm": 1.0788037776947021, + "learning_rate": 3.519882747068677e-05, + "loss": 0.23958860397338866, + "step": 88400 + }, + { + "epoch": 29.648295502135856, + "grad_norm": 0.8725781440734863, + "learning_rate": 3.51820770519263e-05, + "loss": 0.23952722549438477, + "step": 88500 + }, + { + "epoch": 29.68179914565709, + "grad_norm": 1.0508238077163696, + "learning_rate": 3.516532663316583e-05, + "loss": 0.2397722053527832, + "step": 88600 + }, + { + "epoch": 29.715302789178324, + "grad_norm": 1.098661184310913, + "learning_rate": 3.514857621440536e-05, + "loss": 0.2380986213684082, + "step": 88700 + }, + { + "epoch": 29.748806432699556, + "grad_norm": 1.1082944869995117, + "learning_rate": 3.513182579564489e-05, + "loss": 0.2417365074157715, + "step": 88800 + }, + { + "epoch": 29.78231007622079, + "grad_norm": 0.9109951853752136, + "learning_rate": 3.511507537688443e-05, + "loss": 0.23964044570922852, + "step": 88900 + }, + { + "epoch": 29.81581371974202, + "grad_norm": 1.106863021850586, + "learning_rate": 3.5098324958123956e-05, + "loss": 0.24028875350952147, + "step": 89000 + }, + { + "epoch": 29.849317363263253, + "grad_norm": 0.9252721667289734, + "learning_rate": 3.5081574539363484e-05, + "loss": 0.24027196884155275, + "step": 89100 + }, + { + "epoch": 29.88282100678449, + "grad_norm": 1.18505859375, + "learning_rate": 3.506482412060302e-05, + "loss": 0.2418280601501465, + "step": 89200 + }, + { + "epoch": 29.91632465030572, + "grad_norm": 0.956193745136261, + "learning_rate": 3.504807370184255e-05, + "loss": 0.24323488235473634, + "step": 89300 + }, + { + "epoch": 29.949828293826954, + "grad_norm": 0.9459329843521118, + "learning_rate": 3.503132328308208e-05, + "loss": 0.24398193359375, + "step": 89400 + }, + { + "epoch": 29.983331937348186, + "grad_norm": 0.9862803816795349, + "learning_rate": 3.5014572864321607e-05, + "loss": 0.2418046760559082, + "step": 89500 + }, + { + "epoch": 30.016751821760618, + "grad_norm": 0.9011918902397156, + "learning_rate": 3.499782244556114e-05, + "loss": 0.23376155853271485, + "step": 89600 + }, + { + "epoch": 30.05025546528185, + "grad_norm": 0.9960854649543762, + "learning_rate": 3.498107202680067e-05, + "loss": 0.22885730743408203, + "step": 89700 + }, + { + "epoch": 30.083759108803083, + "grad_norm": 0.953056275844574, + "learning_rate": 3.49643216080402e-05, + "loss": 0.22713994979858398, + "step": 89800 + }, + { + "epoch": 30.117262752324315, + "grad_norm": 0.8877431154251099, + "learning_rate": 3.494757118927973e-05, + "loss": 0.22972366333007813, + "step": 89900 + }, + { + "epoch": 30.150766395845547, + "grad_norm": 0.9188148379325867, + "learning_rate": 3.493115577889448e-05, + "loss": 0.22967748641967772, + "step": 90000 + }, + { + "epoch": 30.18427003936678, + "grad_norm": 0.8880020380020142, + "learning_rate": 3.491440536013401e-05, + "loss": 0.22878494262695312, + "step": 90100 + }, + { + "epoch": 30.217773682888016, + "grad_norm": 0.9602766036987305, + "learning_rate": 3.4897654941373536e-05, + "loss": 0.23181842803955077, + "step": 90200 + }, + { + "epoch": 30.251277326409248, + "grad_norm": 0.8411327600479126, + "learning_rate": 3.4880904522613065e-05, + "loss": 0.23128870010375976, + "step": 90300 + }, + { + "epoch": 30.28478096993048, + "grad_norm": 0.9455945491790771, + "learning_rate": 3.48641541038526e-05, + "loss": 0.22971813201904298, + "step": 90400 + }, + { + "epoch": 30.318284613451713, + "grad_norm": 1.0151312351226807, + "learning_rate": 3.484740368509213e-05, + "loss": 0.2330830955505371, + "step": 90500 + }, + { + "epoch": 30.351788256972945, + "grad_norm": 0.9535360932350159, + "learning_rate": 3.483065326633166e-05, + "loss": 0.2313951873779297, + "step": 90600 + }, + { + "epoch": 30.385291900494177, + "grad_norm": 1.0460865497589111, + "learning_rate": 3.481390284757119e-05, + "loss": 0.23312372207641602, + "step": 90700 + }, + { + "epoch": 30.418795544015413, + "grad_norm": 0.9364484548568726, + "learning_rate": 3.479715242881072e-05, + "loss": 0.2326444625854492, + "step": 90800 + }, + { + "epoch": 30.452299187536646, + "grad_norm": 1.133334994316101, + "learning_rate": 3.478040201005025e-05, + "loss": 0.23389068603515625, + "step": 90900 + }, + { + "epoch": 30.485802831057878, + "grad_norm": 0.9046189188957214, + "learning_rate": 3.476365159128979e-05, + "loss": 0.23185604095458984, + "step": 91000 + }, + { + "epoch": 30.51930647457911, + "grad_norm": 0.7889045476913452, + "learning_rate": 3.4746901172529316e-05, + "loss": 0.23226310729980468, + "step": 91100 + }, + { + "epoch": 30.552810118100343, + "grad_norm": 0.8806297183036804, + "learning_rate": 3.4730150753768845e-05, + "loss": 0.23628852844238282, + "step": 91200 + }, + { + "epoch": 30.586313761621575, + "grad_norm": 0.8764693737030029, + "learning_rate": 3.471340033500838e-05, + "loss": 0.23575132369995117, + "step": 91300 + }, + { + "epoch": 30.619817405142808, + "grad_norm": 0.8656399846076965, + "learning_rate": 3.469664991624791e-05, + "loss": 0.23674060821533202, + "step": 91400 + }, + { + "epoch": 30.653321048664044, + "grad_norm": 1.0599033832550049, + "learning_rate": 3.467989949748744e-05, + "loss": 0.23605079650878907, + "step": 91500 + }, + { + "epoch": 30.686824692185276, + "grad_norm": 0.994979202747345, + "learning_rate": 3.4663149078726967e-05, + "loss": 0.23578712463378906, + "step": 91600 + }, + { + "epoch": 30.72032833570651, + "grad_norm": 0.9587284326553345, + "learning_rate": 3.46463986599665e-05, + "loss": 0.23613155364990235, + "step": 91700 + }, + { + "epoch": 30.75383197922774, + "grad_norm": 0.8443505764007568, + "learning_rate": 3.462964824120603e-05, + "loss": 0.23871355056762694, + "step": 91800 + }, + { + "epoch": 30.787335622748973, + "grad_norm": 1.099453091621399, + "learning_rate": 3.461289782244556e-05, + "loss": 0.24006723403930663, + "step": 91900 + }, + { + "epoch": 30.820839266270205, + "grad_norm": 1.0319575071334839, + "learning_rate": 3.459614740368509e-05, + "loss": 0.23815488815307617, + "step": 92000 + }, + { + "epoch": 30.85434290979144, + "grad_norm": 1.0333192348480225, + "learning_rate": 3.4579396984924624e-05, + "loss": 0.23808452606201172, + "step": 92100 + }, + { + "epoch": 30.887846553312674, + "grad_norm": 0.9881009459495544, + "learning_rate": 3.456264656616416e-05, + "loss": 0.2392608642578125, + "step": 92200 + }, + { + "epoch": 30.921350196833906, + "grad_norm": 1.0562998056411743, + "learning_rate": 3.454589614740369e-05, + "loss": 0.2401527976989746, + "step": 92300 + }, + { + "epoch": 30.95485384035514, + "grad_norm": 1.0023164749145508, + "learning_rate": 3.452914572864322e-05, + "loss": 0.23784709930419923, + "step": 92400 + }, + { + "epoch": 30.98835748387637, + "grad_norm": 0.8636544942855835, + "learning_rate": 3.451239530988275e-05, + "loss": 0.2380337142944336, + "step": 92500 + }, + { + "epoch": 31.021777368288802, + "grad_norm": 0.9277747273445129, + "learning_rate": 3.449564489112228e-05, + "loss": 0.22985034942626953, + "step": 92600 + }, + { + "epoch": 31.055281011810035, + "grad_norm": 0.8739263415336609, + "learning_rate": 3.4479061976549414e-05, + "loss": 0.22400131225585937, + "step": 92700 + }, + { + "epoch": 31.088784655331267, + "grad_norm": 0.8611975908279419, + "learning_rate": 3.446231155778894e-05, + "loss": 0.22545413970947265, + "step": 92800 + }, + { + "epoch": 31.1222882988525, + "grad_norm": 0.8462928533554077, + "learning_rate": 3.444556113902848e-05, + "loss": 0.22551637649536133, + "step": 92900 + }, + { + "epoch": 31.15579194237373, + "grad_norm": 1.022512435913086, + "learning_rate": 3.442881072026801e-05, + "loss": 0.22650592803955077, + "step": 93000 + }, + { + "epoch": 31.189295585894968, + "grad_norm": 0.9026772975921631, + "learning_rate": 3.4412060301507537e-05, + "loss": 0.22779397964477538, + "step": 93100 + }, + { + "epoch": 31.2227992294162, + "grad_norm": 1.0489071607589722, + "learning_rate": 3.4395309882747065e-05, + "loss": 0.22914936065673827, + "step": 93200 + }, + { + "epoch": 31.256302872937432, + "grad_norm": 0.9933543801307678, + "learning_rate": 3.43785594639866e-05, + "loss": 0.2292425537109375, + "step": 93300 + }, + { + "epoch": 31.289806516458665, + "grad_norm": 0.9085004329681396, + "learning_rate": 3.4361809045226137e-05, + "loss": 0.22929515838623046, + "step": 93400 + }, + { + "epoch": 31.323310159979897, + "grad_norm": 1.075490117073059, + "learning_rate": 3.4345058626465665e-05, + "loss": 0.22939607620239258, + "step": 93500 + }, + { + "epoch": 31.35681380350113, + "grad_norm": 0.9651515483856201, + "learning_rate": 3.4328308207705194e-05, + "loss": 0.22934986114501954, + "step": 93600 + }, + { + "epoch": 31.390317447022365, + "grad_norm": 0.8695613145828247, + "learning_rate": 3.431155778894472e-05, + "loss": 0.22976022720336914, + "step": 93700 + }, + { + "epoch": 31.423821090543598, + "grad_norm": 0.844338595867157, + "learning_rate": 3.429480737018426e-05, + "loss": 0.2312468147277832, + "step": 93800 + }, + { + "epoch": 31.45732473406483, + "grad_norm": 1.0382046699523926, + "learning_rate": 3.427805695142379e-05, + "loss": 0.2319161796569824, + "step": 93900 + }, + { + "epoch": 31.490828377586062, + "grad_norm": 0.9150004386901855, + "learning_rate": 3.4261306532663316e-05, + "loss": 0.23153928756713868, + "step": 94000 + }, + { + "epoch": 31.524332021107295, + "grad_norm": 0.9382134079933167, + "learning_rate": 3.4244556113902845e-05, + "loss": 0.23179262161254882, + "step": 94100 + }, + { + "epoch": 31.557835664628527, + "grad_norm": 1.003744125366211, + "learning_rate": 3.422780569514238e-05, + "loss": 0.2336377716064453, + "step": 94200 + }, + { + "epoch": 31.591339308149763, + "grad_norm": 1.0066591501235962, + "learning_rate": 3.421105527638191e-05, + "loss": 0.23306447982788087, + "step": 94300 + }, + { + "epoch": 31.624842951670995, + "grad_norm": 0.9587600827217102, + "learning_rate": 3.419430485762144e-05, + "loss": 0.23304904937744142, + "step": 94400 + }, + { + "epoch": 31.658346595192228, + "grad_norm": 0.9264236092567444, + "learning_rate": 3.4177554438860974e-05, + "loss": 0.23374231338500975, + "step": 94500 + }, + { + "epoch": 31.69185023871346, + "grad_norm": 0.9786285758018494, + "learning_rate": 3.416080402010051e-05, + "loss": 0.23288776397705077, + "step": 94600 + }, + { + "epoch": 31.725353882234693, + "grad_norm": 1.0406526327133179, + "learning_rate": 3.414405360134004e-05, + "loss": 0.23135658264160155, + "step": 94700 + }, + { + "epoch": 31.758857525755925, + "grad_norm": 1.0150673389434814, + "learning_rate": 3.412730318257957e-05, + "loss": 0.23329238891601561, + "step": 94800 + }, + { + "epoch": 31.792361169277157, + "grad_norm": 1.039716124534607, + "learning_rate": 3.4110552763819096e-05, + "loss": 0.23622480392456055, + "step": 94900 + }, + { + "epoch": 31.825864812798393, + "grad_norm": 0.8796889185905457, + "learning_rate": 3.409380234505863e-05, + "loss": 0.23527551651000977, + "step": 95000 + }, + { + "epoch": 31.859368456319626, + "grad_norm": 1.0430560111999512, + "learning_rate": 3.407705192629816e-05, + "loss": 0.23613218307495118, + "step": 95100 + }, + { + "epoch": 31.892872099840858, + "grad_norm": 0.934065043926239, + "learning_rate": 3.406030150753769e-05, + "loss": 0.23549306869506836, + "step": 95200 + }, + { + "epoch": 31.92637574336209, + "grad_norm": 0.9562022089958191, + "learning_rate": 3.404355108877722e-05, + "loss": 0.23596378326416015, + "step": 95300 + }, + { + "epoch": 31.959879386883323, + "grad_norm": 0.9484182000160217, + "learning_rate": 3.4026800670016754e-05, + "loss": 0.23749320983886718, + "step": 95400 + }, + { + "epoch": 31.993383030404555, + "grad_norm": 0.9226858615875244, + "learning_rate": 3.401005025125628e-05, + "loss": 0.23577556610107422, + "step": 95500 + }, + { + "epoch": 32.02680291481698, + "grad_norm": 0.8082904815673828, + "learning_rate": 3.399346733668342e-05, + "loss": 0.2252376174926758, + "step": 95600 + }, + { + "epoch": 32.06030655833822, + "grad_norm": 0.8369967341423035, + "learning_rate": 3.397671691792295e-05, + "loss": 0.22338224411010743, + "step": 95700 + }, + { + "epoch": 32.093810201859455, + "grad_norm": 0.8281686305999756, + "learning_rate": 3.395996649916248e-05, + "loss": 0.22212993621826171, + "step": 95800 + }, + { + "epoch": 32.127313845380684, + "grad_norm": 0.9705724716186523, + "learning_rate": 3.3943216080402015e-05, + "loss": 0.22465606689453124, + "step": 95900 + }, + { + "epoch": 32.16081748890192, + "grad_norm": 0.8423786163330078, + "learning_rate": 3.3926465661641544e-05, + "loss": 0.2250945281982422, + "step": 96000 + }, + { + "epoch": 32.19432113242315, + "grad_norm": 0.8339988589286804, + "learning_rate": 3.390971524288107e-05, + "loss": 0.22318048477172853, + "step": 96100 + }, + { + "epoch": 32.227824775944384, + "grad_norm": 0.8893176913261414, + "learning_rate": 3.38929648241206e-05, + "loss": 0.22539207458496094, + "step": 96200 + }, + { + "epoch": 32.26132841946562, + "grad_norm": 0.9052960276603699, + "learning_rate": 3.387621440536014e-05, + "loss": 0.22607305526733398, + "step": 96300 + }, + { + "epoch": 32.29483206298685, + "grad_norm": 1.0362404584884644, + "learning_rate": 3.3859463986599666e-05, + "loss": 0.22683595657348632, + "step": 96400 + }, + { + "epoch": 32.328335706508085, + "grad_norm": 0.9416490793228149, + "learning_rate": 3.3842713567839195e-05, + "loss": 0.22825729370117187, + "step": 96500 + }, + { + "epoch": 32.361839350029314, + "grad_norm": 0.8258299827575684, + "learning_rate": 3.3825963149078724e-05, + "loss": 0.2302044677734375, + "step": 96600 + }, + { + "epoch": 32.39534299355055, + "grad_norm": 0.8278768062591553, + "learning_rate": 3.380921273031826e-05, + "loss": 0.22817007064819336, + "step": 96700 + }, + { + "epoch": 32.42884663707178, + "grad_norm": 0.9295879006385803, + "learning_rate": 3.3792462311557795e-05, + "loss": 0.22796960830688476, + "step": 96800 + }, + { + "epoch": 32.462350280593014, + "grad_norm": 0.9297919273376465, + "learning_rate": 3.3775711892797324e-05, + "loss": 0.2300715446472168, + "step": 96900 + }, + { + "epoch": 32.49585392411425, + "grad_norm": 0.9032301902770996, + "learning_rate": 3.375896147403685e-05, + "loss": 0.22858844757080077, + "step": 97000 + }, + { + "epoch": 32.52935756763548, + "grad_norm": 0.9087026119232178, + "learning_rate": 3.374221105527639e-05, + "loss": 0.2282412528991699, + "step": 97100 + }, + { + "epoch": 32.562861211156715, + "grad_norm": 0.846002995967865, + "learning_rate": 3.372546063651592e-05, + "loss": 0.2312621307373047, + "step": 97200 + }, + { + "epoch": 32.596364854677944, + "grad_norm": 1.1084449291229248, + "learning_rate": 3.3708710217755446e-05, + "loss": 0.23065135955810548, + "step": 97300 + }, + { + "epoch": 32.62986849819918, + "grad_norm": 1.00586998462677, + "learning_rate": 3.3691959798994974e-05, + "loss": 0.2318124580383301, + "step": 97400 + }, + { + "epoch": 32.663372141720416, + "grad_norm": 1.010598063468933, + "learning_rate": 3.367520938023451e-05, + "loss": 0.22885004043579102, + "step": 97500 + }, + { + "epoch": 32.696875785241645, + "grad_norm": 0.9496275186538696, + "learning_rate": 3.365845896147404e-05, + "loss": 0.2315340232849121, + "step": 97600 + }, + { + "epoch": 32.73037942876288, + "grad_norm": 0.9502295255661011, + "learning_rate": 3.364170854271357e-05, + "loss": 0.2300456428527832, + "step": 97700 + }, + { + "epoch": 32.76388307228411, + "grad_norm": 0.8757120370864868, + "learning_rate": 3.3624958123953096e-05, + "loss": 0.2325787353515625, + "step": 97800 + }, + { + "epoch": 32.797386715805345, + "grad_norm": 1.086429476737976, + "learning_rate": 3.360820770519263e-05, + "loss": 0.23413005828857422, + "step": 97900 + }, + { + "epoch": 32.830890359326574, + "grad_norm": 0.9264597296714783, + "learning_rate": 3.359145728643216e-05, + "loss": 0.23220701217651368, + "step": 98000 + }, + { + "epoch": 32.86439400284781, + "grad_norm": 1.1024547815322876, + "learning_rate": 3.3574706867671696e-05, + "loss": 0.2337321662902832, + "step": 98100 + }, + { + "epoch": 32.897897646369046, + "grad_norm": 1.0790379047393799, + "learning_rate": 3.355812395309883e-05, + "loss": 0.23275186538696288, + "step": 98200 + }, + { + "epoch": 32.931401289890275, + "grad_norm": 1.0850489139556885, + "learning_rate": 3.354137353433836e-05, + "loss": 0.2350110626220703, + "step": 98300 + }, + { + "epoch": 32.96490493341151, + "grad_norm": 1.0384962558746338, + "learning_rate": 3.3524623115577893e-05, + "loss": 0.23315866470336913, + "step": 98400 + }, + { + "epoch": 32.99840857693274, + "grad_norm": 0.9511744379997253, + "learning_rate": 3.350787269681742e-05, + "loss": 0.23335418701171876, + "step": 98500 + }, + { + "epoch": 33.03182846134517, + "grad_norm": 0.9015313386917114, + "learning_rate": 3.349112227805695e-05, + "loss": 0.2207508850097656, + "step": 98600 + }, + { + "epoch": 33.06533210486641, + "grad_norm": 0.9277299046516418, + "learning_rate": 3.347437185929648e-05, + "loss": 0.2212068557739258, + "step": 98700 + }, + { + "epoch": 33.098835748387636, + "grad_norm": 0.9584958553314209, + "learning_rate": 3.3457621440536015e-05, + "loss": 0.2199711036682129, + "step": 98800 + }, + { + "epoch": 33.13233939190887, + "grad_norm": 0.788788378238678, + "learning_rate": 3.3440871021775544e-05, + "loss": 0.222060546875, + "step": 98900 + }, + { + "epoch": 33.1658430354301, + "grad_norm": 0.7377296090126038, + "learning_rate": 3.342412060301507e-05, + "loss": 0.2214929962158203, + "step": 99000 + }, + { + "epoch": 33.199346678951336, + "grad_norm": 0.9132254719734192, + "learning_rate": 3.340737018425461e-05, + "loss": 0.22287454605102539, + "step": 99100 + }, + { + "epoch": 33.23285032247257, + "grad_norm": 0.8702635169029236, + "learning_rate": 3.3390619765494144e-05, + "loss": 0.2249801254272461, + "step": 99200 + }, + { + "epoch": 33.2663539659938, + "grad_norm": 1.008585810661316, + "learning_rate": 3.337386934673367e-05, + "loss": 0.22441143035888672, + "step": 99300 + }, + { + "epoch": 33.29985760951504, + "grad_norm": 0.9218880534172058, + "learning_rate": 3.33571189279732e-05, + "loss": 0.22384666442871093, + "step": 99400 + }, + { + "epoch": 33.333361253036266, + "grad_norm": 0.8806573748588562, + "learning_rate": 3.334036850921273e-05, + "loss": 0.22616491317749024, + "step": 99500 + }, + { + "epoch": 33.3668648965575, + "grad_norm": 0.9997828602790833, + "learning_rate": 3.3323618090452266e-05, + "loss": 0.2251066780090332, + "step": 99600 + }, + { + "epoch": 33.40036854007873, + "grad_norm": 0.80961012840271, + "learning_rate": 3.3306867671691795e-05, + "loss": 0.22590801239013672, + "step": 99700 + }, + { + "epoch": 33.433872183599966, + "grad_norm": 0.8894720077514648, + "learning_rate": 3.3290117252931324e-05, + "loss": 0.2253563690185547, + "step": 99800 + }, + { + "epoch": 33.4673758271212, + "grad_norm": 0.9108457565307617, + "learning_rate": 3.327336683417085e-05, + "loss": 0.22678316116333008, + "step": 99900 + }, + { + "epoch": 33.50087947064243, + "grad_norm": 0.9380918145179749, + "learning_rate": 3.325661641541039e-05, + "loss": 0.22538763046264648, + "step": 100000 + }, + { + "epoch": 33.53438311416367, + "grad_norm": 0.9901800155639648, + "learning_rate": 3.323986599664992e-05, + "loss": 0.2280316734313965, + "step": 100100 + }, + { + "epoch": 33.567886757684896, + "grad_norm": 0.9266390204429626, + "learning_rate": 3.3223115577889446e-05, + "loss": 0.22870094299316407, + "step": 100200 + }, + { + "epoch": 33.60139040120613, + "grad_norm": 1.033541202545166, + "learning_rate": 3.3206365159128975e-05, + "loss": 0.22756708145141602, + "step": 100300 + }, + { + "epoch": 33.63489404472736, + "grad_norm": 0.9486100673675537, + "learning_rate": 3.318961474036851e-05, + "loss": 0.23031322479248048, + "step": 100400 + }, + { + "epoch": 33.6683976882486, + "grad_norm": 1.0127127170562744, + "learning_rate": 3.3172864321608046e-05, + "loss": 0.22845163345336914, + "step": 100500 + }, + { + "epoch": 33.70190133176983, + "grad_norm": 0.8763633966445923, + "learning_rate": 3.3156113902847575e-05, + "loss": 0.22902427673339842, + "step": 100600 + }, + { + "epoch": 33.73540497529106, + "grad_norm": 1.1065373420715332, + "learning_rate": 3.3139363484087104e-05, + "loss": 0.23073022842407226, + "step": 100700 + }, + { + "epoch": 33.7689086188123, + "grad_norm": 0.9771313071250916, + "learning_rate": 3.3122780569514236e-05, + "loss": 0.23011575698852538, + "step": 100800 + }, + { + "epoch": 33.802412262333526, + "grad_norm": 0.8843592405319214, + "learning_rate": 3.310603015075377e-05, + "loss": 0.23142065048217775, + "step": 100900 + }, + { + "epoch": 33.83591590585476, + "grad_norm": 0.8456923961639404, + "learning_rate": 3.30892797319933e-05, + "loss": 0.23063251495361328, + "step": 101000 + }, + { + "epoch": 33.869419549376, + "grad_norm": 0.8443148732185364, + "learning_rate": 3.307252931323283e-05, + "loss": 0.23091581344604492, + "step": 101100 + }, + { + "epoch": 33.90292319289723, + "grad_norm": 0.960616409778595, + "learning_rate": 3.305577889447236e-05, + "loss": 0.2316324806213379, + "step": 101200 + }, + { + "epoch": 33.93642683641846, + "grad_norm": 0.9722175002098083, + "learning_rate": 3.3039028475711894e-05, + "loss": 0.23007387161254883, + "step": 101300 + }, + { + "epoch": 33.96993047993969, + "grad_norm": 0.8240259289741516, + "learning_rate": 3.302227805695143e-05, + "loss": 0.2318846321105957, + "step": 101400 + }, + { + "epoch": 34.00335036435212, + "grad_norm": 0.9287110567092896, + "learning_rate": 3.300552763819096e-05, + "loss": 0.23206823348999023, + "step": 101500 + }, + { + "epoch": 34.03685400787336, + "grad_norm": 0.9008814692497253, + "learning_rate": 3.298877721943049e-05, + "loss": 0.21785154342651367, + "step": 101600 + }, + { + "epoch": 34.07035765139459, + "grad_norm": 0.9070394039154053, + "learning_rate": 3.297202680067002e-05, + "loss": 0.2177290725708008, + "step": 101700 + }, + { + "epoch": 34.10386129491582, + "grad_norm": 0.9032074809074402, + "learning_rate": 3.295527638190955e-05, + "loss": 0.21938394546508788, + "step": 101800 + }, + { + "epoch": 34.13736493843705, + "grad_norm": 0.9069404006004333, + "learning_rate": 3.293852596314908e-05, + "loss": 0.2203085708618164, + "step": 101900 + }, + { + "epoch": 34.17086858195829, + "grad_norm": 0.9074708819389343, + "learning_rate": 3.292177554438861e-05, + "loss": 0.2204928970336914, + "step": 102000 + }, + { + "epoch": 34.204372225479524, + "grad_norm": 0.9713619351387024, + "learning_rate": 3.2905025125628145e-05, + "loss": 0.22204416275024413, + "step": 102100 + }, + { + "epoch": 34.23787586900075, + "grad_norm": 0.9323224425315857, + "learning_rate": 3.2888274706867674e-05, + "loss": 0.22052072525024413, + "step": 102200 + }, + { + "epoch": 34.27137951252199, + "grad_norm": 0.8843114376068115, + "learning_rate": 3.28715242881072e-05, + "loss": 0.22254072189331053, + "step": 102300 + }, + { + "epoch": 34.30488315604322, + "grad_norm": 1.0152033567428589, + "learning_rate": 3.285477386934673e-05, + "loss": 0.2236959457397461, + "step": 102400 + }, + { + "epoch": 34.338386799564454, + "grad_norm": 0.9482904672622681, + "learning_rate": 3.283802345058627e-05, + "loss": 0.224102725982666, + "step": 102500 + }, + { + "epoch": 34.37189044308568, + "grad_norm": 0.8699772953987122, + "learning_rate": 3.28212730318258e-05, + "loss": 0.22381122589111327, + "step": 102600 + }, + { + "epoch": 34.40539408660692, + "grad_norm": 0.9056621193885803, + "learning_rate": 3.280452261306533e-05, + "loss": 0.22394416809082032, + "step": 102700 + }, + { + "epoch": 34.438897730128154, + "grad_norm": 1.0373077392578125, + "learning_rate": 3.2787939698492464e-05, + "loss": 0.22495691299438478, + "step": 102800 + }, + { + "epoch": 34.47240137364938, + "grad_norm": 1.0134550333023071, + "learning_rate": 3.277118927973199e-05, + "loss": 0.22408302307128905, + "step": 102900 + }, + { + "epoch": 34.50590501717062, + "grad_norm": 0.9845434427261353, + "learning_rate": 3.275443886097153e-05, + "loss": 0.22512359619140626, + "step": 103000 + }, + { + "epoch": 34.53940866069185, + "grad_norm": 1.0372213125228882, + "learning_rate": 3.273768844221106e-05, + "loss": 0.22693737030029296, + "step": 103100 + }, + { + "epoch": 34.572912304213084, + "grad_norm": 0.8394227027893066, + "learning_rate": 3.2720938023450586e-05, + "loss": 0.22773279190063478, + "step": 103200 + }, + { + "epoch": 34.60641594773432, + "grad_norm": 0.9733761548995972, + "learning_rate": 3.2704187604690115e-05, + "loss": 0.2269156265258789, + "step": 103300 + }, + { + "epoch": 34.63991959125555, + "grad_norm": 0.9194538593292236, + "learning_rate": 3.268743718592965e-05, + "loss": 0.22706941604614259, + "step": 103400 + }, + { + "epoch": 34.673423234776784, + "grad_norm": 0.9639450311660767, + "learning_rate": 3.267068676716918e-05, + "loss": 0.22622791290283203, + "step": 103500 + }, + { + "epoch": 34.70692687829801, + "grad_norm": 1.0700583457946777, + "learning_rate": 3.265393634840871e-05, + "loss": 0.2273421859741211, + "step": 103600 + }, + { + "epoch": 34.74043052181925, + "grad_norm": 0.9843416810035706, + "learning_rate": 3.2637185929648244e-05, + "loss": 0.22782588958740235, + "step": 103700 + }, + { + "epoch": 34.77393416534048, + "grad_norm": 0.9237584471702576, + "learning_rate": 3.262043551088777e-05, + "loss": 0.22874467849731445, + "step": 103800 + }, + { + "epoch": 34.807437808861714, + "grad_norm": 0.8710795640945435, + "learning_rate": 3.260368509212731e-05, + "loss": 0.22824941635131835, + "step": 103900 + }, + { + "epoch": 34.84094145238295, + "grad_norm": 0.8803784847259521, + "learning_rate": 3.258693467336684e-05, + "loss": 0.225937442779541, + "step": 104000 + }, + { + "epoch": 34.87444509590418, + "grad_norm": 0.9234800338745117, + "learning_rate": 3.2570184254606366e-05, + "loss": 0.22656524658203125, + "step": 104100 + }, + { + "epoch": 34.907948739425414, + "grad_norm": 0.9999638795852661, + "learning_rate": 3.25534338358459e-05, + "loss": 0.2282132911682129, + "step": 104200 + }, + { + "epoch": 34.94145238294664, + "grad_norm": 1.1694445610046387, + "learning_rate": 3.253668341708543e-05, + "loss": 0.22793378829956054, + "step": 104300 + }, + { + "epoch": 34.97495602646788, + "grad_norm": 0.8837403655052185, + "learning_rate": 3.251993299832496e-05, + "loss": 0.22847984313964845, + "step": 104400 + }, + { + "epoch": 35.00837591088031, + "grad_norm": 0.8809188604354858, + "learning_rate": 3.250318257956449e-05, + "loss": 0.22692270278930665, + "step": 104500 + }, + { + "epoch": 35.04187955440154, + "grad_norm": 1.0068167448043823, + "learning_rate": 3.248643216080402e-05, + "loss": 0.21723543167114256, + "step": 104600 + }, + { + "epoch": 35.075383197922775, + "grad_norm": 0.8723959922790527, + "learning_rate": 3.246968174204355e-05, + "loss": 0.21555179595947266, + "step": 104700 + }, + { + "epoch": 35.108886841444004, + "grad_norm": 0.8103620409965515, + "learning_rate": 3.245293132328308e-05, + "loss": 0.21831268310546875, + "step": 104800 + }, + { + "epoch": 35.14239048496524, + "grad_norm": 0.9336848855018616, + "learning_rate": 3.2436180904522617e-05, + "loss": 0.21713750839233398, + "step": 104900 + }, + { + "epoch": 35.175894128486476, + "grad_norm": 0.7471016049385071, + "learning_rate": 3.2419430485762145e-05, + "loss": 0.21997308731079102, + "step": 105000 + }, + { + "epoch": 35.209397772007705, + "grad_norm": 0.8775885105133057, + "learning_rate": 3.240268006700168e-05, + "loss": 0.21831626892089845, + "step": 105100 + }, + { + "epoch": 35.24290141552894, + "grad_norm": 0.8458008170127869, + "learning_rate": 3.238592964824121e-05, + "loss": 0.21945228576660156, + "step": 105200 + }, + { + "epoch": 35.27640505905017, + "grad_norm": 0.8437234163284302, + "learning_rate": 3.236917922948074e-05, + "loss": 0.2186195182800293, + "step": 105300 + }, + { + "epoch": 35.309908702571406, + "grad_norm": 0.7865097522735596, + "learning_rate": 3.235259631490787e-05, + "loss": 0.22217554092407227, + "step": 105400 + }, + { + "epoch": 35.343412346092634, + "grad_norm": 0.866061806678772, + "learning_rate": 3.233584589614741e-05, + "loss": 0.22084756851196288, + "step": 105500 + }, + { + "epoch": 35.37691598961387, + "grad_norm": 0.9198658466339111, + "learning_rate": 3.2319095477386936e-05, + "loss": 0.21991580963134766, + "step": 105600 + }, + { + "epoch": 35.410419633135106, + "grad_norm": 0.8831592202186584, + "learning_rate": 3.2302345058626464e-05, + "loss": 0.22320646286010742, + "step": 105700 + }, + { + "epoch": 35.443923276656335, + "grad_norm": 0.9197396636009216, + "learning_rate": 3.228559463986599e-05, + "loss": 0.22325061798095702, + "step": 105800 + }, + { + "epoch": 35.47742692017757, + "grad_norm": 0.8785274624824524, + "learning_rate": 3.226884422110553e-05, + "loss": 0.22299362182617188, + "step": 105900 + }, + { + "epoch": 35.5109305636988, + "grad_norm": 0.8461816310882568, + "learning_rate": 3.2252093802345064e-05, + "loss": 0.2225216484069824, + "step": 106000 + }, + { + "epoch": 35.544434207220036, + "grad_norm": 1.063522219657898, + "learning_rate": 3.223534338358459e-05, + "loss": 0.2242141342163086, + "step": 106100 + }, + { + "epoch": 35.57793785074127, + "grad_norm": 0.867465615272522, + "learning_rate": 3.221859296482412e-05, + "loss": 0.2223381805419922, + "step": 106200 + }, + { + "epoch": 35.6114414942625, + "grad_norm": 0.9031139016151428, + "learning_rate": 3.220184254606365e-05, + "loss": 0.22474571228027343, + "step": 106300 + }, + { + "epoch": 35.644945137783736, + "grad_norm": 1.0108989477157593, + "learning_rate": 3.2185092127303186e-05, + "loss": 0.22544246673583984, + "step": 106400 + }, + { + "epoch": 35.678448781304965, + "grad_norm": 1.0109949111938477, + "learning_rate": 3.2168341708542715e-05, + "loss": 0.22579713821411132, + "step": 106500 + }, + { + "epoch": 35.7119524248262, + "grad_norm": 0.9123691916465759, + "learning_rate": 3.2151591289782244e-05, + "loss": 0.22499269485473633, + "step": 106600 + }, + { + "epoch": 35.74545606834743, + "grad_norm": 0.951260507106781, + "learning_rate": 3.213484087102178e-05, + "loss": 0.22552137374877929, + "step": 106700 + }, + { + "epoch": 35.778959711868666, + "grad_norm": 0.8786386251449585, + "learning_rate": 3.211809045226131e-05, + "loss": 0.22638605117797853, + "step": 106800 + }, + { + "epoch": 35.8124633553899, + "grad_norm": 0.9864464998245239, + "learning_rate": 3.210134003350084e-05, + "loss": 0.2277699089050293, + "step": 106900 + }, + { + "epoch": 35.84596699891113, + "grad_norm": 1.0679579973220825, + "learning_rate": 3.2084589614740366e-05, + "loss": 0.22652555465698243, + "step": 107000 + }, + { + "epoch": 35.879470642432366, + "grad_norm": 1.0075697898864746, + "learning_rate": 3.20678391959799e-05, + "loss": 0.22713031768798828, + "step": 107100 + }, + { + "epoch": 35.912974285953595, + "grad_norm": 0.9335576891899109, + "learning_rate": 3.205108877721944e-05, + "loss": 0.22596691131591798, + "step": 107200 + }, + { + "epoch": 35.94647792947483, + "grad_norm": 0.7710935473442078, + "learning_rate": 3.2034338358458966e-05, + "loss": 0.22641992568969727, + "step": 107300 + }, + { + "epoch": 35.97998157299606, + "grad_norm": 1.083516001701355, + "learning_rate": 3.2017587939698495e-05, + "loss": 0.22827293395996093, + "step": 107400 + }, + { + "epoch": 36.01340145740849, + "grad_norm": 0.8612881302833557, + "learning_rate": 3.2000837520938024e-05, + "loss": 0.22379323959350586, + "step": 107500 + }, + { + "epoch": 36.04690510092973, + "grad_norm": 0.7906754016876221, + "learning_rate": 3.198408710217756e-05, + "loss": 0.21393178939819335, + "step": 107600 + }, + { + "epoch": 36.080408744450956, + "grad_norm": 0.6994041800498962, + "learning_rate": 3.196733668341709e-05, + "loss": 0.2150893211364746, + "step": 107700 + }, + { + "epoch": 36.11391238797219, + "grad_norm": 0.7304232120513916, + "learning_rate": 3.195058626465662e-05, + "loss": 0.21509407043457032, + "step": 107800 + }, + { + "epoch": 36.14741603149343, + "grad_norm": 0.8723782896995544, + "learning_rate": 3.1933835845896146e-05, + "loss": 0.21703847885131836, + "step": 107900 + }, + { + "epoch": 36.18091967501466, + "grad_norm": 0.8350656628608704, + "learning_rate": 3.191708542713568e-05, + "loss": 0.21680261611938476, + "step": 108000 + }, + { + "epoch": 36.21442331853589, + "grad_norm": 0.8917808532714844, + "learning_rate": 3.190033500837521e-05, + "loss": 0.21753547668457032, + "step": 108100 + }, + { + "epoch": 36.24792696205712, + "grad_norm": 0.9806150197982788, + "learning_rate": 3.188358458961474e-05, + "loss": 0.21905086517333985, + "step": 108200 + }, + { + "epoch": 36.28143060557836, + "grad_norm": 0.8857609033584595, + "learning_rate": 3.186700167504188e-05, + "loss": 0.21918514251708984, + "step": 108300 + }, + { + "epoch": 36.314934249099586, + "grad_norm": 0.910219669342041, + "learning_rate": 3.185025125628141e-05, + "loss": 0.2200949287414551, + "step": 108400 + }, + { + "epoch": 36.34843789262082, + "grad_norm": 1.0122119188308716, + "learning_rate": 3.183350083752094e-05, + "loss": 0.2193107795715332, + "step": 108500 + }, + { + "epoch": 36.38194153614206, + "grad_norm": 0.9494280815124512, + "learning_rate": 3.181675041876047e-05, + "loss": 0.2197030258178711, + "step": 108600 + }, + { + "epoch": 36.41544517966329, + "grad_norm": 0.9605288505554199, + "learning_rate": 3.18e-05, + "loss": 0.22033754348754883, + "step": 108700 + }, + { + "epoch": 36.44894882318452, + "grad_norm": 0.7704981565475464, + "learning_rate": 3.178324958123953e-05, + "loss": 0.22123022079467775, + "step": 108800 + }, + { + "epoch": 36.48245246670575, + "grad_norm": 0.9490818381309509, + "learning_rate": 3.1766499162479065e-05, + "loss": 0.22183971405029296, + "step": 108900 + }, + { + "epoch": 36.51595611022699, + "grad_norm": 0.9417729377746582, + "learning_rate": 3.1749748743718594e-05, + "loss": 0.22279998779296875, + "step": 109000 + }, + { + "epoch": 36.54945975374822, + "grad_norm": 0.933033287525177, + "learning_rate": 3.173299832495812e-05, + "loss": 0.22310422897338866, + "step": 109100 + }, + { + "epoch": 36.58296339726945, + "grad_norm": 0.8921425342559814, + "learning_rate": 3.171624790619765e-05, + "loss": 0.2227332878112793, + "step": 109200 + }, + { + "epoch": 36.61646704079069, + "grad_norm": 0.8272472023963928, + "learning_rate": 3.169949748743719e-05, + "loss": 0.22220718383789062, + "step": 109300 + }, + { + "epoch": 36.64997068431192, + "grad_norm": 0.9517436027526855, + "learning_rate": 3.1682747068676716e-05, + "loss": 0.22240093231201172, + "step": 109400 + }, + { + "epoch": 36.68347432783315, + "grad_norm": 0.869287371635437, + "learning_rate": 3.166599664991625e-05, + "loss": 0.22267683029174803, + "step": 109500 + }, + { + "epoch": 36.71697797135438, + "grad_norm": 0.8402668237686157, + "learning_rate": 3.164924623115578e-05, + "loss": 0.22277099609375, + "step": 109600 + }, + { + "epoch": 36.75048161487562, + "grad_norm": 0.7411085367202759, + "learning_rate": 3.1632495812395316e-05, + "loss": 0.22394742965698242, + "step": 109700 + }, + { + "epoch": 36.783985258396854, + "grad_norm": 0.9969924092292786, + "learning_rate": 3.1615745393634845e-05, + "loss": 0.22464384078979494, + "step": 109800 + }, + { + "epoch": 36.81748890191808, + "grad_norm": 1.0667954683303833, + "learning_rate": 3.1598994974874373e-05, + "loss": 0.22305191040039063, + "step": 109900 + }, + { + "epoch": 36.85099254543932, + "grad_norm": 0.9248315095901489, + "learning_rate": 3.15822445561139e-05, + "loss": 0.22483558654785157, + "step": 110000 + }, + { + "epoch": 36.88449618896055, + "grad_norm": 0.921510636806488, + "learning_rate": 3.156549413735344e-05, + "loss": 0.22462337493896484, + "step": 110100 + }, + { + "epoch": 36.91799983248178, + "grad_norm": 0.9513688683509827, + "learning_rate": 3.154874371859297e-05, + "loss": 0.22469757080078126, + "step": 110200 + }, + { + "epoch": 36.95150347600301, + "grad_norm": 0.9634213447570801, + "learning_rate": 3.1531993299832495e-05, + "loss": 0.22559005737304688, + "step": 110300 + }, + { + "epoch": 36.98500711952425, + "grad_norm": 0.8968513607978821, + "learning_rate": 3.1515242881072024e-05, + "loss": 0.22452268600463868, + "step": 110400 + }, + { + "epoch": 37.01842700393668, + "grad_norm": 0.9366862773895264, + "learning_rate": 3.149849246231156e-05, + "loss": 0.21873317718505858, + "step": 110500 + }, + { + "epoch": 37.05193064745791, + "grad_norm": 0.9117385149002075, + "learning_rate": 3.148174204355109e-05, + "loss": 0.21297582626342773, + "step": 110600 + }, + { + "epoch": 37.085434290979144, + "grad_norm": 0.8058609962463379, + "learning_rate": 3.1464991624790624e-05, + "loss": 0.21399580001831053, + "step": 110700 + }, + { + "epoch": 37.11893793450038, + "grad_norm": 0.9793832302093506, + "learning_rate": 3.144824120603015e-05, + "loss": 0.21349397659301758, + "step": 110800 + }, + { + "epoch": 37.15244157802161, + "grad_norm": 0.7564776539802551, + "learning_rate": 3.143149078726968e-05, + "loss": 0.2160548210144043, + "step": 110900 + }, + { + "epoch": 37.185945221542845, + "grad_norm": 0.9561526775360107, + "learning_rate": 3.141474036850922e-05, + "loss": 0.21727354049682618, + "step": 111000 + }, + { + "epoch": 37.219448865064074, + "grad_norm": 0.8852317929267883, + "learning_rate": 3.1397989949748746e-05, + "loss": 0.2165077018737793, + "step": 111100 + }, + { + "epoch": 37.25295250858531, + "grad_norm": 0.9445819854736328, + "learning_rate": 3.1381239530988275e-05, + "loss": 0.21671443939208984, + "step": 111200 + }, + { + "epoch": 37.28645615210654, + "grad_norm": 0.8414257168769836, + "learning_rate": 3.136465661641541e-05, + "loss": 0.2156463623046875, + "step": 111300 + }, + { + "epoch": 37.319959795627774, + "grad_norm": 0.9724504351615906, + "learning_rate": 3.134790619765494e-05, + "loss": 0.21695276260375976, + "step": 111400 + }, + { + "epoch": 37.35346343914901, + "grad_norm": 0.8939653038978577, + "learning_rate": 3.133115577889447e-05, + "loss": 0.21864233016967774, + "step": 111500 + }, + { + "epoch": 37.38696708267024, + "grad_norm": 0.7889378070831299, + "learning_rate": 3.1314405360134e-05, + "loss": 0.2170688056945801, + "step": 111600 + }, + { + "epoch": 37.420470726191475, + "grad_norm": 0.9483622312545776, + "learning_rate": 3.129765494137353e-05, + "loss": 0.2190123176574707, + "step": 111700 + }, + { + "epoch": 37.453974369712704, + "grad_norm": 0.8011330366134644, + "learning_rate": 3.128090452261307e-05, + "loss": 0.22048694610595704, + "step": 111800 + }, + { + "epoch": 37.48747801323394, + "grad_norm": 0.8247294425964355, + "learning_rate": 3.12641541038526e-05, + "loss": 0.21904251098632813, + "step": 111900 + }, + { + "epoch": 37.520981656755175, + "grad_norm": 0.750112771987915, + "learning_rate": 3.124740368509213e-05, + "loss": 0.21833335876464843, + "step": 112000 + }, + { + "epoch": 37.554485300276404, + "grad_norm": 0.9256598353385925, + "learning_rate": 3.123065326633166e-05, + "loss": 0.21966569900512695, + "step": 112100 + }, + { + "epoch": 37.58798894379764, + "grad_norm": 0.9734209775924683, + "learning_rate": 3.1213902847571194e-05, + "loss": 0.22099735260009765, + "step": 112200 + }, + { + "epoch": 37.62149258731887, + "grad_norm": 0.990144670009613, + "learning_rate": 3.119715242881072e-05, + "loss": 0.22192005157470704, + "step": 112300 + }, + { + "epoch": 37.654996230840105, + "grad_norm": 0.6585299372673035, + "learning_rate": 3.118040201005025e-05, + "loss": 0.22165678024291993, + "step": 112400 + }, + { + "epoch": 37.688499874361334, + "grad_norm": 0.9786301255226135, + "learning_rate": 3.116365159128978e-05, + "loss": 0.22310081481933594, + "step": 112500 + }, + { + "epoch": 37.72200351788257, + "grad_norm": 0.8770159482955933, + "learning_rate": 3.1146901172529316e-05, + "loss": 0.22149917602539063, + "step": 112600 + }, + { + "epoch": 37.755507161403806, + "grad_norm": 0.9303070306777954, + "learning_rate": 3.1130150753768845e-05, + "loss": 0.22284337997436524, + "step": 112700 + }, + { + "epoch": 37.789010804925034, + "grad_norm": 0.9092078804969788, + "learning_rate": 3.1113400335008374e-05, + "loss": 0.2229990005493164, + "step": 112800 + }, + { + "epoch": 37.82251444844627, + "grad_norm": 0.9219861626625061, + "learning_rate": 3.10966499162479e-05, + "loss": 0.2217073631286621, + "step": 112900 + }, + { + "epoch": 37.8560180919675, + "grad_norm": 0.7435413002967834, + "learning_rate": 3.107989949748744e-05, + "loss": 0.22171833038330077, + "step": 113000 + }, + { + "epoch": 37.889521735488735, + "grad_norm": 0.9068054556846619, + "learning_rate": 3.1063149078726974e-05, + "loss": 0.22258939743041992, + "step": 113100 + }, + { + "epoch": 37.923025379009964, + "grad_norm": 1.0471735000610352, + "learning_rate": 3.10463986599665e-05, + "loss": 0.2234604263305664, + "step": 113200 + }, + { + "epoch": 37.9565290225312, + "grad_norm": 1.0463248491287231, + "learning_rate": 3.102964824120603e-05, + "loss": 0.22215925216674803, + "step": 113300 + }, + { + "epoch": 37.990032666052436, + "grad_norm": 0.9165071845054626, + "learning_rate": 3.101289782244556e-05, + "loss": 0.22422847747802735, + "step": 113400 + }, + { + "epoch": 38.02345255046486, + "grad_norm": 0.8414464592933655, + "learning_rate": 3.09963149078727e-05, + "loss": 0.21486921310424806, + "step": 113500 + }, + { + "epoch": 38.056956193986096, + "grad_norm": 0.8961010575294495, + "learning_rate": 3.097956448911223e-05, + "loss": 0.21109798431396484, + "step": 113600 + }, + { + "epoch": 38.09045983750733, + "grad_norm": 0.9100089073181152, + "learning_rate": 3.096281407035176e-05, + "loss": 0.21328540802001952, + "step": 113700 + }, + { + "epoch": 38.12396348102856, + "grad_norm": 0.9186659455299377, + "learning_rate": 3.0946063651591286e-05, + "loss": 0.21333318710327148, + "step": 113800 + }, + { + "epoch": 38.1574671245498, + "grad_norm": 0.7723438143730164, + "learning_rate": 3.092931323283082e-05, + "loss": 0.21231781005859374, + "step": 113900 + }, + { + "epoch": 38.190970768071026, + "grad_norm": 0.8304508328437805, + "learning_rate": 3.091256281407035e-05, + "loss": 0.21468320846557618, + "step": 114000 + }, + { + "epoch": 38.22447441159226, + "grad_norm": 0.8922227025032043, + "learning_rate": 3.0895812395309886e-05, + "loss": 0.21428609848022462, + "step": 114100 + }, + { + "epoch": 38.25797805511349, + "grad_norm": 0.7371033430099487, + "learning_rate": 3.0879061976549415e-05, + "loss": 0.2143361473083496, + "step": 114200 + }, + { + "epoch": 38.291481698634726, + "grad_norm": 0.8409704566001892, + "learning_rate": 3.086231155778895e-05, + "loss": 0.21631322860717772, + "step": 114300 + }, + { + "epoch": 38.32498534215596, + "grad_norm": 0.7273088097572327, + "learning_rate": 3.084556113902848e-05, + "loss": 0.2163697624206543, + "step": 114400 + }, + { + "epoch": 38.35848898567719, + "grad_norm": 0.8249197602272034, + "learning_rate": 3.082881072026801e-05, + "loss": 0.2180681800842285, + "step": 114500 + }, + { + "epoch": 38.39199262919843, + "grad_norm": 0.7984412312507629, + "learning_rate": 3.081206030150754e-05, + "loss": 0.21718357086181642, + "step": 114600 + }, + { + "epoch": 38.425496272719656, + "grad_norm": 1.08668851852417, + "learning_rate": 3.079530988274707e-05, + "loss": 0.21632287979125978, + "step": 114700 + }, + { + "epoch": 38.45899991624089, + "grad_norm": 0.7324666976928711, + "learning_rate": 3.07785594639866e-05, + "loss": 0.2178202438354492, + "step": 114800 + }, + { + "epoch": 38.49250355976213, + "grad_norm": 0.8047093749046326, + "learning_rate": 3.076180904522613e-05, + "loss": 0.21611106872558594, + "step": 114900 + }, + { + "epoch": 38.526007203283356, + "grad_norm": 0.8086637854576111, + "learning_rate": 3.074505862646566e-05, + "loss": 0.21893905639648437, + "step": 115000 + }, + { + "epoch": 38.55951084680459, + "grad_norm": 0.9299573302268982, + "learning_rate": 3.0728308207705195e-05, + "loss": 0.21941152572631836, + "step": 115100 + }, + { + "epoch": 38.59301449032582, + "grad_norm": 0.921328067779541, + "learning_rate": 3.0711557788944724e-05, + "loss": 0.21848363876342775, + "step": 115200 + }, + { + "epoch": 38.62651813384706, + "grad_norm": 0.8732923865318298, + "learning_rate": 3.069480737018426e-05, + "loss": 0.2199881935119629, + "step": 115300 + }, + { + "epoch": 38.660021777368286, + "grad_norm": 0.8334107995033264, + "learning_rate": 3.067805695142379e-05, + "loss": 0.21993675231933593, + "step": 115400 + }, + { + "epoch": 38.69352542088952, + "grad_norm": 0.9880418181419373, + "learning_rate": 3.066130653266332e-05, + "loss": 0.21957590103149413, + "step": 115500 + }, + { + "epoch": 38.72702906441076, + "grad_norm": 0.7397698760032654, + "learning_rate": 3.0644723618090456e-05, + "loss": 0.22164581298828126, + "step": 115600 + }, + { + "epoch": 38.760532707931986, + "grad_norm": 0.8668732047080994, + "learning_rate": 3.0627973199329985e-05, + "loss": 0.22148818969726564, + "step": 115700 + }, + { + "epoch": 38.79403635145322, + "grad_norm": 0.9017316699028015, + "learning_rate": 3.0611222780569514e-05, + "loss": 0.22045387268066408, + "step": 115800 + }, + { + "epoch": 38.82753999497445, + "grad_norm": 0.960860550403595, + "learning_rate": 3.059447236180904e-05, + "loss": 0.22010658264160157, + "step": 115900 + }, + { + "epoch": 38.86104363849569, + "grad_norm": 0.9069247245788574, + "learning_rate": 3.057772194304858e-05, + "loss": 0.22206361770629882, + "step": 116000 + }, + { + "epoch": 38.894547282016916, + "grad_norm": 0.9507908821105957, + "learning_rate": 3.056097152428811e-05, + "loss": 0.223684139251709, + "step": 116100 + }, + { + "epoch": 38.92805092553815, + "grad_norm": 0.9307253360748291, + "learning_rate": 3.0544221105527636e-05, + "loss": 0.2224336814880371, + "step": 116200 + }, + { + "epoch": 38.96155456905939, + "grad_norm": 0.8504303097724915, + "learning_rate": 3.052747068676717e-05, + "loss": 0.22100894927978515, + "step": 116300 + }, + { + "epoch": 38.995058212580616, + "grad_norm": 1.0041011571884155, + "learning_rate": 3.0510720268006704e-05, + "loss": 0.2226072692871094, + "step": 116400 + }, + { + "epoch": 39.02847809699305, + "grad_norm": 0.8630343675613403, + "learning_rate": 3.0493969849246236e-05, + "loss": 0.21175411224365234, + "step": 116500 + }, + { + "epoch": 39.061981740514284, + "grad_norm": 0.8499475717544556, + "learning_rate": 3.0477219430485765e-05, + "loss": 0.21058534622192382, + "step": 116600 + }, + { + "epoch": 39.09548538403551, + "grad_norm": 0.8700653910636902, + "learning_rate": 3.0460469011725297e-05, + "loss": 0.21063339233398437, + "step": 116700 + }, + { + "epoch": 39.12898902755675, + "grad_norm": 0.928617537021637, + "learning_rate": 3.0443718592964826e-05, + "loss": 0.21142158508300782, + "step": 116800 + }, + { + "epoch": 39.16249267107798, + "grad_norm": 0.7653895616531372, + "learning_rate": 3.0426968174204358e-05, + "loss": 0.2120248031616211, + "step": 116900 + }, + { + "epoch": 39.19599631459921, + "grad_norm": 0.9703547954559326, + "learning_rate": 3.0410217755443887e-05, + "loss": 0.21317352294921876, + "step": 117000 + }, + { + "epoch": 39.22949995812044, + "grad_norm": 0.8479989767074585, + "learning_rate": 3.039346733668342e-05, + "loss": 0.21484851837158203, + "step": 117100 + }, + { + "epoch": 39.26300360164168, + "grad_norm": 0.899630069732666, + "learning_rate": 3.0376716917922948e-05, + "loss": 0.21453136444091797, + "step": 117200 + }, + { + "epoch": 39.296507245162914, + "grad_norm": 1.086026906967163, + "learning_rate": 3.035996649916248e-05, + "loss": 0.21443565368652343, + "step": 117300 + }, + { + "epoch": 39.33001088868414, + "grad_norm": 0.8970637917518616, + "learning_rate": 3.034321608040201e-05, + "loss": 0.21288238525390624, + "step": 117400 + }, + { + "epoch": 39.36351453220538, + "grad_norm": 0.9710267186164856, + "learning_rate": 3.032646566164154e-05, + "loss": 0.21607624053955077, + "step": 117500 + }, + { + "epoch": 39.39701817572661, + "grad_norm": 0.908697783946991, + "learning_rate": 3.030988274706868e-05, + "loss": 0.2151881217956543, + "step": 117600 + }, + { + "epoch": 39.43052181924784, + "grad_norm": 0.9393781423568726, + "learning_rate": 3.029313232830821e-05, + "loss": 0.21689601898193359, + "step": 117700 + }, + { + "epoch": 39.46402546276908, + "grad_norm": 0.8031620383262634, + "learning_rate": 3.027638190954774e-05, + "loss": 0.21640504837036134, + "step": 117800 + }, + { + "epoch": 39.49752910629031, + "grad_norm": 1.027938961982727, + "learning_rate": 3.025963149078727e-05, + "loss": 0.21748722076416016, + "step": 117900 + }, + { + "epoch": 39.531032749811544, + "grad_norm": 0.9682844877243042, + "learning_rate": 3.0242881072026802e-05, + "loss": 0.21787578582763673, + "step": 118000 + }, + { + "epoch": 39.56453639333277, + "grad_norm": 0.884766697883606, + "learning_rate": 3.022613065326633e-05, + "loss": 0.21701082229614257, + "step": 118100 + }, + { + "epoch": 39.59804003685401, + "grad_norm": 0.9033914804458618, + "learning_rate": 3.0209380234505863e-05, + "loss": 0.21810293197631836, + "step": 118200 + }, + { + "epoch": 39.63154368037524, + "grad_norm": 0.8522166013717651, + "learning_rate": 3.0192629815745392e-05, + "loss": 0.2182499122619629, + "step": 118300 + }, + { + "epoch": 39.665047323896474, + "grad_norm": 1.1046702861785889, + "learning_rate": 3.0175879396984924e-05, + "loss": 0.2196645164489746, + "step": 118400 + }, + { + "epoch": 39.69855096741771, + "grad_norm": 0.7786019444465637, + "learning_rate": 3.0159128978224453e-05, + "loss": 0.21823881149291993, + "step": 118500 + }, + { + "epoch": 39.73205461093894, + "grad_norm": 0.8261039853096008, + "learning_rate": 3.0142378559463992e-05, + "loss": 0.2183905029296875, + "step": 118600 + }, + { + "epoch": 39.765558254460174, + "grad_norm": 0.7951787710189819, + "learning_rate": 3.012562814070352e-05, + "loss": 0.22037561416625975, + "step": 118700 + }, + { + "epoch": 39.7990618979814, + "grad_norm": 0.9430021047592163, + "learning_rate": 3.0108877721943053e-05, + "loss": 0.22020740509033204, + "step": 118800 + }, + { + "epoch": 39.83256554150264, + "grad_norm": 0.8699235320091248, + "learning_rate": 3.0092127303182582e-05, + "loss": 0.2182463836669922, + "step": 118900 + }, + { + "epoch": 39.866069185023875, + "grad_norm": 0.6874027252197266, + "learning_rate": 3.0075376884422114e-05, + "loss": 0.21936134338378907, + "step": 119000 + }, + { + "epoch": 39.899572828545104, + "grad_norm": 0.9950704574584961, + "learning_rate": 3.0058626465661643e-05, + "loss": 0.22008882522583006, + "step": 119100 + }, + { + "epoch": 39.93307647206634, + "grad_norm": 0.9827971458435059, + "learning_rate": 3.0041876046901175e-05, + "loss": 0.22005229949951172, + "step": 119200 + }, + { + "epoch": 39.96658011558757, + "grad_norm": 0.9177015423774719, + "learning_rate": 3.0025125628140704e-05, + "loss": 0.21897659301757813, + "step": 119300 + }, + { + "epoch": 40.0, + "grad_norm": 1.1112428903579712, + "learning_rate": 3.0008375209380236e-05, + "loss": 0.2205747604370117, + "step": 119400 + }, + { + "epoch": 40.033503643521236, + "grad_norm": 0.9478968977928162, + "learning_rate": 2.9991624790619765e-05, + "loss": 0.20781259536743163, + "step": 119500 + }, + { + "epoch": 40.067007287042465, + "grad_norm": 0.8990084528923035, + "learning_rate": 2.99750418760469e-05, + "loss": 0.20928415298461914, + "step": 119600 + }, + { + "epoch": 40.1005109305637, + "grad_norm": 1.0282913446426392, + "learning_rate": 2.9958291457286437e-05, + "loss": 0.21068788528442384, + "step": 119700 + }, + { + "epoch": 40.13401457408493, + "grad_norm": 0.781109094619751, + "learning_rate": 2.9941541038525965e-05, + "loss": 0.2100553321838379, + "step": 119800 + }, + { + "epoch": 40.167518217606165, + "grad_norm": 0.7364116311073303, + "learning_rate": 2.9924790619765498e-05, + "loss": 0.211074161529541, + "step": 119900 + }, + { + "epoch": 40.201021861127394, + "grad_norm": 0.8109786510467529, + "learning_rate": 2.9908040201005027e-05, + "loss": 0.2111503028869629, + "step": 120000 + }, + { + "epoch": 40.23452550464863, + "grad_norm": 0.8337066769599915, + "learning_rate": 2.989128978224456e-05, + "loss": 0.21187753677368165, + "step": 120100 + }, + { + "epoch": 40.268029148169866, + "grad_norm": 0.8106216788291931, + "learning_rate": 2.9874539363484088e-05, + "loss": 0.21110746383666992, + "step": 120200 + }, + { + "epoch": 40.301532791691095, + "grad_norm": 0.900480329990387, + "learning_rate": 2.985778894472362e-05, + "loss": 0.21332656860351562, + "step": 120300 + }, + { + "epoch": 40.33503643521233, + "grad_norm": 0.8936036825180054, + "learning_rate": 2.984103852596315e-05, + "loss": 0.21424699783325196, + "step": 120400 + }, + { + "epoch": 40.36854007873356, + "grad_norm": 1.0281628370285034, + "learning_rate": 2.982428810720268e-05, + "loss": 0.21567123413085937, + "step": 120500 + }, + { + "epoch": 40.402043722254795, + "grad_norm": 0.9829724431037903, + "learning_rate": 2.980753768844221e-05, + "loss": 0.21529359817504884, + "step": 120600 + }, + { + "epoch": 40.43554736577603, + "grad_norm": 0.8747444748878479, + "learning_rate": 2.9790787269681742e-05, + "loss": 0.21478731155395508, + "step": 120700 + }, + { + "epoch": 40.46905100929726, + "grad_norm": 0.8821930885314941, + "learning_rate": 2.977403685092127e-05, + "loss": 0.21482231140136718, + "step": 120800 + }, + { + "epoch": 40.502554652818496, + "grad_norm": 0.8955323696136475, + "learning_rate": 2.975728643216081e-05, + "loss": 0.2153952407836914, + "step": 120900 + }, + { + "epoch": 40.536058296339725, + "grad_norm": 0.8369837999343872, + "learning_rate": 2.974053601340034e-05, + "loss": 0.21576461791992188, + "step": 121000 + }, + { + "epoch": 40.56956193986096, + "grad_norm": 0.8737310767173767, + "learning_rate": 2.972378559463987e-05, + "loss": 0.21639930725097656, + "step": 121100 + }, + { + "epoch": 40.60306558338219, + "grad_norm": 0.9263436198234558, + "learning_rate": 2.97070351758794e-05, + "loss": 0.21683277130126954, + "step": 121200 + }, + { + "epoch": 40.636569226903426, + "grad_norm": 0.9024245142936707, + "learning_rate": 2.9690284757118932e-05, + "loss": 0.21628368377685547, + "step": 121300 + }, + { + "epoch": 40.67007287042466, + "grad_norm": 0.8429529070854187, + "learning_rate": 2.967353433835846e-05, + "loss": 0.2163913917541504, + "step": 121400 + }, + { + "epoch": 40.70357651394589, + "grad_norm": 1.2450178861618042, + "learning_rate": 2.9656783919597993e-05, + "loss": 0.2194381523132324, + "step": 121500 + }, + { + "epoch": 40.737080157467126, + "grad_norm": 0.7648131251335144, + "learning_rate": 2.964003350083752e-05, + "loss": 0.21698453903198242, + "step": 121600 + }, + { + "epoch": 40.770583800988355, + "grad_norm": 0.9009991884231567, + "learning_rate": 2.9623283082077054e-05, + "loss": 0.21700273513793944, + "step": 121700 + }, + { + "epoch": 40.80408744450959, + "grad_norm": 0.8008719086647034, + "learning_rate": 2.9606532663316583e-05, + "loss": 0.21888105392456056, + "step": 121800 + }, + { + "epoch": 40.83759108803083, + "grad_norm": 0.9055608510971069, + "learning_rate": 2.9589782244556115e-05, + "loss": 0.21676677703857422, + "step": 121900 + }, + { + "epoch": 40.871094731552056, + "grad_norm": 0.80983567237854, + "learning_rate": 2.9573199329983254e-05, + "loss": 0.21832197189331054, + "step": 122000 + }, + { + "epoch": 40.90459837507329, + "grad_norm": 0.892451286315918, + "learning_rate": 2.9556448911222783e-05, + "loss": 0.21815378189086915, + "step": 122100 + }, + { + "epoch": 40.93810201859452, + "grad_norm": 0.8478377461433411, + "learning_rate": 2.9539698492462315e-05, + "loss": 0.21775611877441406, + "step": 122200 + }, + { + "epoch": 40.971605662115756, + "grad_norm": 0.9962807297706604, + "learning_rate": 2.9522948073701844e-05, + "loss": 0.219617919921875, + "step": 122300 + }, + { + "epoch": 41.00502554652819, + "grad_norm": 0.947913646697998, + "learning_rate": 2.9506197654941376e-05, + "loss": 0.21659244537353517, + "step": 122400 + }, + { + "epoch": 41.03852919004942, + "grad_norm": 0.7525883316993713, + "learning_rate": 2.9489447236180905e-05, + "loss": 0.20789249420166014, + "step": 122500 + }, + { + "epoch": 41.07203283357065, + "grad_norm": 0.6433896422386169, + "learning_rate": 2.9472696817420437e-05, + "loss": 0.2080308723449707, + "step": 122600 + }, + { + "epoch": 41.10553647709188, + "grad_norm": 0.8577892780303955, + "learning_rate": 2.9455946398659966e-05, + "loss": 0.20854692459106444, + "step": 122700 + }, + { + "epoch": 41.13904012061312, + "grad_norm": 0.9137370586395264, + "learning_rate": 2.9439195979899498e-05, + "loss": 0.20944379806518554, + "step": 122800 + }, + { + "epoch": 41.172543764134346, + "grad_norm": 0.8469370007514954, + "learning_rate": 2.9422445561139027e-05, + "loss": 0.21084047317504884, + "step": 122900 + }, + { + "epoch": 41.20604740765558, + "grad_norm": 0.8777198791503906, + "learning_rate": 2.940569514237856e-05, + "loss": 0.209267520904541, + "step": 123000 + }, + { + "epoch": 41.23955105117682, + "grad_norm": 0.8626389503479004, + "learning_rate": 2.9388944723618088e-05, + "loss": 0.21044559478759767, + "step": 123100 + }, + { + "epoch": 41.27305469469805, + "grad_norm": 0.9588419198989868, + "learning_rate": 2.9372194304857624e-05, + "loss": 0.21222888946533203, + "step": 123200 + }, + { + "epoch": 41.30655833821928, + "grad_norm": 0.86114901304245, + "learning_rate": 2.9355443886097156e-05, + "loss": 0.21097087860107422, + "step": 123300 + }, + { + "epoch": 41.34006198174051, + "grad_norm": 0.887198269367218, + "learning_rate": 2.9338693467336688e-05, + "loss": 0.21297225952148438, + "step": 123400 + }, + { + "epoch": 41.37356562526175, + "grad_norm": 0.7785773873329163, + "learning_rate": 2.9321943048576217e-05, + "loss": 0.2132717514038086, + "step": 123500 + }, + { + "epoch": 41.40706926878298, + "grad_norm": 0.8815355896949768, + "learning_rate": 2.930519262981575e-05, + "loss": 0.2135430908203125, + "step": 123600 + }, + { + "epoch": 41.44057291230421, + "grad_norm": 0.7385589480400085, + "learning_rate": 2.9288442211055278e-05, + "loss": 0.21455587387084962, + "step": 123700 + }, + { + "epoch": 41.47407655582545, + "grad_norm": 0.9357995986938477, + "learning_rate": 2.927169179229481e-05, + "loss": 0.2131095314025879, + "step": 123800 + }, + { + "epoch": 41.50758019934668, + "grad_norm": 0.9078415632247925, + "learning_rate": 2.925494137353434e-05, + "loss": 0.21512672424316406, + "step": 123900 + }, + { + "epoch": 41.54108384286791, + "grad_norm": 0.8247988820075989, + "learning_rate": 2.923819095477387e-05, + "loss": 0.21399457931518553, + "step": 124000 + }, + { + "epoch": 41.57458748638914, + "grad_norm": 0.726129949092865, + "learning_rate": 2.9221608040201004e-05, + "loss": 0.21407983779907228, + "step": 124100 + }, + { + "epoch": 41.60809112991038, + "grad_norm": 0.8694594502449036, + "learning_rate": 2.920485762144054e-05, + "loss": 0.21551137924194336, + "step": 124200 + }, + { + "epoch": 41.64159477343161, + "grad_norm": 0.9320394992828369, + "learning_rate": 2.918810720268007e-05, + "loss": 0.21677978515625, + "step": 124300 + }, + { + "epoch": 41.67509841695284, + "grad_norm": 1.0589549541473389, + "learning_rate": 2.91713567839196e-05, + "loss": 0.21467880249023438, + "step": 124400 + }, + { + "epoch": 41.70860206047408, + "grad_norm": 0.8709360361099243, + "learning_rate": 2.9154606365159133e-05, + "loss": 0.21607656478881837, + "step": 124500 + }, + { + "epoch": 41.74210570399531, + "grad_norm": 0.8040139675140381, + "learning_rate": 2.913785594639866e-05, + "loss": 0.21505617141723632, + "step": 124600 + }, + { + "epoch": 41.77560934751654, + "grad_norm": 0.899761438369751, + "learning_rate": 2.9121105527638194e-05, + "loss": 0.2151774787902832, + "step": 124700 + }, + { + "epoch": 41.80911299103778, + "grad_norm": 0.8534619808197021, + "learning_rate": 2.9104355108877722e-05, + "loss": 0.21662195205688475, + "step": 124800 + }, + { + "epoch": 41.84261663455901, + "grad_norm": 0.96486896276474, + "learning_rate": 2.9087604690117255e-05, + "loss": 0.21604257583618164, + "step": 124900 + }, + { + "epoch": 41.87612027808024, + "grad_norm": 0.8162650465965271, + "learning_rate": 2.9070854271356783e-05, + "loss": 0.2170560836791992, + "step": 125000 + }, + { + "epoch": 41.90962392160147, + "grad_norm": 0.889887809753418, + "learning_rate": 2.9054103852596316e-05, + "loss": 0.21925149917602538, + "step": 125100 + }, + { + "epoch": 41.94312756512271, + "grad_norm": 0.9023459553718567, + "learning_rate": 2.9037353433835844e-05, + "loss": 0.21658233642578126, + "step": 125200 + }, + { + "epoch": 41.97663120864394, + "grad_norm": 0.9475107192993164, + "learning_rate": 2.9020603015075377e-05, + "loss": 0.2174862480163574, + "step": 125300 + }, + { + "epoch": 42.01005109305637, + "grad_norm": 0.8001925945281982, + "learning_rate": 2.9003852596314905e-05, + "loss": 0.21471311569213866, + "step": 125400 + }, + { + "epoch": 42.043554736577605, + "grad_norm": 0.7804350852966309, + "learning_rate": 2.898710217755444e-05, + "loss": 0.2056850814819336, + "step": 125500 + }, + { + "epoch": 42.07705838009883, + "grad_norm": 0.9709755182266235, + "learning_rate": 2.8970351758793973e-05, + "loss": 0.20687313079833985, + "step": 125600 + }, + { + "epoch": 42.11056202362007, + "grad_norm": 0.8425003290176392, + "learning_rate": 2.8953601340033502e-05, + "loss": 0.20829198837280274, + "step": 125700 + }, + { + "epoch": 42.1440656671413, + "grad_norm": 0.7324151396751404, + "learning_rate": 2.8936850921273034e-05, + "loss": 0.20799571990966798, + "step": 125800 + }, + { + "epoch": 42.177569310662534, + "grad_norm": 0.7971581220626831, + "learning_rate": 2.8920100502512567e-05, + "loss": 0.21026283264160156, + "step": 125900 + }, + { + "epoch": 42.21107295418377, + "grad_norm": 0.7958289384841919, + "learning_rate": 2.8903350083752095e-05, + "loss": 0.20917728424072266, + "step": 126000 + }, + { + "epoch": 42.244576597705, + "grad_norm": 0.8632842302322388, + "learning_rate": 2.888676716917923e-05, + "loss": 0.20981687545776367, + "step": 126100 + }, + { + "epoch": 42.278080241226235, + "grad_norm": 0.8120240569114685, + "learning_rate": 2.887001675041876e-05, + "loss": 0.21040897369384765, + "step": 126200 + }, + { + "epoch": 42.31158388474746, + "grad_norm": 0.9877341389656067, + "learning_rate": 2.8853266331658292e-05, + "loss": 0.21044788360595704, + "step": 126300 + }, + { + "epoch": 42.3450875282687, + "grad_norm": 0.803947925567627, + "learning_rate": 2.883651591289782e-05, + "loss": 0.21133209228515626, + "step": 126400 + }, + { + "epoch": 42.378591171789935, + "grad_norm": 0.8692134022712708, + "learning_rate": 2.8819765494137357e-05, + "loss": 0.21098001480102538, + "step": 126500 + }, + { + "epoch": 42.412094815311164, + "grad_norm": 0.703528642654419, + "learning_rate": 2.880301507537689e-05, + "loss": 0.21152076721191407, + "step": 126600 + }, + { + "epoch": 42.4455984588324, + "grad_norm": 0.9700392484664917, + "learning_rate": 2.8786264656616418e-05, + "loss": 0.21170536041259766, + "step": 126700 + }, + { + "epoch": 42.47910210235363, + "grad_norm": 0.7205595970153809, + "learning_rate": 2.876951423785595e-05, + "loss": 0.2123921012878418, + "step": 126800 + }, + { + "epoch": 42.512605745874865, + "grad_norm": 0.8186672925949097, + "learning_rate": 2.875276381909548e-05, + "loss": 0.2122740364074707, + "step": 126900 + }, + { + "epoch": 42.54610938939609, + "grad_norm": 0.9268088340759277, + "learning_rate": 2.873601340033501e-05, + "loss": 0.21358152389526366, + "step": 127000 + }, + { + "epoch": 42.57961303291733, + "grad_norm": 0.762809157371521, + "learning_rate": 2.871926298157454e-05, + "loss": 0.21314903259277343, + "step": 127100 + }, + { + "epoch": 42.613116676438565, + "grad_norm": 0.8699193596839905, + "learning_rate": 2.8702512562814072e-05, + "loss": 0.2129987335205078, + "step": 127200 + }, + { + "epoch": 42.646620319959794, + "grad_norm": 0.698263943195343, + "learning_rate": 2.86857621440536e-05, + "loss": 0.21600809097290039, + "step": 127300 + }, + { + "epoch": 42.68012396348103, + "grad_norm": 0.7782033681869507, + "learning_rate": 2.8669011725293133e-05, + "loss": 0.21448253631591796, + "step": 127400 + }, + { + "epoch": 42.71362760700226, + "grad_norm": 0.8113609552383423, + "learning_rate": 2.8652261306532662e-05, + "loss": 0.2134496307373047, + "step": 127500 + }, + { + "epoch": 42.747131250523495, + "grad_norm": 0.7400202751159668, + "learning_rate": 2.8635510887772194e-05, + "loss": 0.21415563583374023, + "step": 127600 + }, + { + "epoch": 42.78063489404473, + "grad_norm": 1.0038073062896729, + "learning_rate": 2.8618760469011723e-05, + "loss": 0.2144919776916504, + "step": 127700 + }, + { + "epoch": 42.81413853756596, + "grad_norm": 0.7947350144386292, + "learning_rate": 2.860201005025126e-05, + "loss": 0.21546197891235352, + "step": 127800 + }, + { + "epoch": 42.847642181087195, + "grad_norm": 0.7404258847236633, + "learning_rate": 2.858525963149079e-05, + "loss": 0.2151948356628418, + "step": 127900 + }, + { + "epoch": 42.881145824608424, + "grad_norm": 0.8000117540359497, + "learning_rate": 2.856850921273032e-05, + "loss": 0.2174908447265625, + "step": 128000 + }, + { + "epoch": 42.91464946812966, + "grad_norm": 0.8331735730171204, + "learning_rate": 2.8551758793969852e-05, + "loss": 0.2154141616821289, + "step": 128100 + }, + { + "epoch": 42.94815311165089, + "grad_norm": 0.8255071640014648, + "learning_rate": 2.8535175879396984e-05, + "loss": 0.21642459869384767, + "step": 128200 + }, + { + "epoch": 42.981656755172125, + "grad_norm": 0.8828434944152832, + "learning_rate": 2.8518425460636516e-05, + "loss": 0.21653507232666017, + "step": 128300 + }, + { + "epoch": 43.01507663958456, + "grad_norm": 0.8157568573951721, + "learning_rate": 2.8501675041876045e-05, + "loss": 0.21150121688842774, + "step": 128400 + }, + { + "epoch": 43.048580283105785, + "grad_norm": 0.7143152356147766, + "learning_rate": 2.8484924623115578e-05, + "loss": 0.20697792053222655, + "step": 128500 + }, + { + "epoch": 43.08208392662702, + "grad_norm": 0.9034318327903748, + "learning_rate": 2.846817420435511e-05, + "loss": 0.20594911575317382, + "step": 128600 + }, + { + "epoch": 43.11558757014826, + "grad_norm": 0.7974486947059631, + "learning_rate": 2.845142378559464e-05, + "loss": 0.20707765579223633, + "step": 128700 + }, + { + "epoch": 43.149091213669486, + "grad_norm": 0.7226033210754395, + "learning_rate": 2.8434673366834174e-05, + "loss": 0.20583932876586913, + "step": 128800 + }, + { + "epoch": 43.18259485719072, + "grad_norm": 0.8551874160766602, + "learning_rate": 2.8417922948073706e-05, + "loss": 0.2078396797180176, + "step": 128900 + }, + { + "epoch": 43.21609850071195, + "grad_norm": 0.7227718234062195, + "learning_rate": 2.8401172529313235e-05, + "loss": 0.20798839569091798, + "step": 129000 + }, + { + "epoch": 43.24960214423319, + "grad_norm": 0.9496952891349792, + "learning_rate": 2.8384422110552767e-05, + "loss": 0.2099104118347168, + "step": 129100 + }, + { + "epoch": 43.283105787754415, + "grad_norm": 0.9909376502037048, + "learning_rate": 2.8367671691792296e-05, + "loss": 0.20969415664672852, + "step": 129200 + }, + { + "epoch": 43.31660943127565, + "grad_norm": 0.9239180088043213, + "learning_rate": 2.835092127303183e-05, + "loss": 0.20861217498779297, + "step": 129300 + }, + { + "epoch": 43.35011307479689, + "grad_norm": 0.8692393898963928, + "learning_rate": 2.8334170854271357e-05, + "loss": 0.2091372299194336, + "step": 129400 + }, + { + "epoch": 43.383616718318116, + "grad_norm": 0.693246603012085, + "learning_rate": 2.831742043551089e-05, + "loss": 0.20966863632202148, + "step": 129500 + }, + { + "epoch": 43.41712036183935, + "grad_norm": 0.8332297205924988, + "learning_rate": 2.8300670016750418e-05, + "loss": 0.21026342391967773, + "step": 129600 + }, + { + "epoch": 43.45062400536058, + "grad_norm": 0.8729221820831299, + "learning_rate": 2.828391959798995e-05, + "loss": 0.21070770263671876, + "step": 129700 + }, + { + "epoch": 43.48412764888182, + "grad_norm": 0.7649937868118286, + "learning_rate": 2.826716917922948e-05, + "loss": 0.21120260238647462, + "step": 129800 + }, + { + "epoch": 43.517631292403046, + "grad_norm": 0.8937798738479614, + "learning_rate": 2.825041876046901e-05, + "loss": 0.21302244186401367, + "step": 129900 + }, + { + "epoch": 43.55113493592428, + "grad_norm": 1.0248814821243286, + "learning_rate": 2.8233668341708547e-05, + "loss": 0.21207603454589843, + "step": 130000 + }, + { + "epoch": 43.58463857944552, + "grad_norm": 0.9701077938079834, + "learning_rate": 2.8216917922948076e-05, + "loss": 0.2112472915649414, + "step": 130100 + }, + { + "epoch": 43.618142222966746, + "grad_norm": 0.8634024858474731, + "learning_rate": 2.8200167504187608e-05, + "loss": 0.21355249404907226, + "step": 130200 + }, + { + "epoch": 43.65164586648798, + "grad_norm": 0.9003106951713562, + "learning_rate": 2.818358458961474e-05, + "loss": 0.2142485809326172, + "step": 130300 + }, + { + "epoch": 43.68514951000921, + "grad_norm": 0.7895374298095703, + "learning_rate": 2.8166834170854273e-05, + "loss": 0.2131346321105957, + "step": 130400 + }, + { + "epoch": 43.71865315353045, + "grad_norm": 1.0067280530929565, + "learning_rate": 2.81500837520938e-05, + "loss": 0.21282941818237305, + "step": 130500 + }, + { + "epoch": 43.75215679705168, + "grad_norm": 0.7602081894874573, + "learning_rate": 2.8133333333333334e-05, + "loss": 0.2138546371459961, + "step": 130600 + }, + { + "epoch": 43.78566044057291, + "grad_norm": 0.7720736265182495, + "learning_rate": 2.8116582914572863e-05, + "loss": 0.2136884307861328, + "step": 130700 + }, + { + "epoch": 43.81916408409415, + "grad_norm": 0.7715796232223511, + "learning_rate": 2.8099832495812395e-05, + "loss": 0.21329423904418945, + "step": 130800 + }, + { + "epoch": 43.852667727615376, + "grad_norm": 0.8566184043884277, + "learning_rate": 2.8083082077051924e-05, + "loss": 0.21406152725219726, + "step": 130900 + }, + { + "epoch": 43.88617137113661, + "grad_norm": 0.8490840792655945, + "learning_rate": 2.8066331658291456e-05, + "loss": 0.21463991165161134, + "step": 131000 + }, + { + "epoch": 43.91967501465784, + "grad_norm": 0.9666714072227478, + "learning_rate": 2.804958123953099e-05, + "loss": 0.21495559692382812, + "step": 131100 + }, + { + "epoch": 43.95317865817908, + "grad_norm": 1.0371804237365723, + "learning_rate": 2.8032830820770524e-05, + "loss": 0.21566991806030272, + "step": 131200 + }, + { + "epoch": 43.98668230170031, + "grad_norm": 0.910309910774231, + "learning_rate": 2.8016080402010053e-05, + "loss": 0.215529727935791, + "step": 131300 + }, + { + "epoch": 44.02010218611274, + "grad_norm": 0.7464276552200317, + "learning_rate": 2.7999329983249585e-05, + "loss": 0.20866870880126953, + "step": 131400 + }, + { + "epoch": 44.05360582963397, + "grad_norm": 0.7517808079719543, + "learning_rate": 2.7982579564489114e-05, + "loss": 0.20390798568725585, + "step": 131500 + }, + { + "epoch": 44.08710947315521, + "grad_norm": 0.6557915210723877, + "learning_rate": 2.7965829145728646e-05, + "loss": 0.20384593963623046, + "step": 131600 + }, + { + "epoch": 44.12061311667644, + "grad_norm": 0.855191171169281, + "learning_rate": 2.7949078726968175e-05, + "loss": 0.2066969871520996, + "step": 131700 + }, + { + "epoch": 44.154116760197674, + "grad_norm": 0.8590629696846008, + "learning_rate": 2.7932328308207707e-05, + "loss": 0.2062934684753418, + "step": 131800 + }, + { + "epoch": 44.1876204037189, + "grad_norm": 0.9050695896148682, + "learning_rate": 2.7915577889447236e-05, + "loss": 0.20599493026733398, + "step": 131900 + }, + { + "epoch": 44.22112404724014, + "grad_norm": 0.8817638754844666, + "learning_rate": 2.7898827470686768e-05, + "loss": 0.2078232765197754, + "step": 132000 + }, + { + "epoch": 44.25462769076137, + "grad_norm": 0.8479394316673279, + "learning_rate": 2.7882077051926297e-05, + "loss": 0.20759906768798828, + "step": 132100 + }, + { + "epoch": 44.2881313342826, + "grad_norm": 0.8977039456367493, + "learning_rate": 2.786532663316583e-05, + "loss": 0.20864250183105468, + "step": 132200 + }, + { + "epoch": 44.32163497780384, + "grad_norm": 0.7003665566444397, + "learning_rate": 2.7848576214405365e-05, + "loss": 0.20907209396362306, + "step": 132300 + }, + { + "epoch": 44.35513862132507, + "grad_norm": 0.8874910473823547, + "learning_rate": 2.7831825795644893e-05, + "loss": 0.20834226608276368, + "step": 132400 + }, + { + "epoch": 44.388642264846304, + "grad_norm": 0.8135631680488586, + "learning_rate": 2.781524288107203e-05, + "loss": 0.2098270034790039, + "step": 132500 + }, + { + "epoch": 44.42214590836753, + "grad_norm": 1.0045340061187744, + "learning_rate": 2.7798492462311558e-05, + "loss": 0.2112841033935547, + "step": 132600 + }, + { + "epoch": 44.45564955188877, + "grad_norm": 0.8854024410247803, + "learning_rate": 2.778174204355109e-05, + "loss": 0.2096893310546875, + "step": 132700 + }, + { + "epoch": 44.48915319541, + "grad_norm": 0.8551903963088989, + "learning_rate": 2.776499162479062e-05, + "loss": 0.21038183212280273, + "step": 132800 + }, + { + "epoch": 44.52265683893123, + "grad_norm": 0.848574161529541, + "learning_rate": 2.774824120603015e-05, + "loss": 0.21035202026367186, + "step": 132900 + }, + { + "epoch": 44.55616048245247, + "grad_norm": 0.8698804378509521, + "learning_rate": 2.773149078726968e-05, + "loss": 0.21176429748535155, + "step": 133000 + }, + { + "epoch": 44.5896641259737, + "grad_norm": 0.8525173664093018, + "learning_rate": 2.7714740368509212e-05, + "loss": 0.21025493621826172, + "step": 133100 + }, + { + "epoch": 44.623167769494934, + "grad_norm": 1.0027357339859009, + "learning_rate": 2.769798994974874e-05, + "loss": 0.21228431701660155, + "step": 133200 + }, + { + "epoch": 44.65667141301616, + "grad_norm": 0.9768441915512085, + "learning_rate": 2.7681239530988273e-05, + "loss": 0.21132736206054686, + "step": 133300 + }, + { + "epoch": 44.6901750565374, + "grad_norm": 0.9287051558494568, + "learning_rate": 2.766448911222781e-05, + "loss": 0.211924991607666, + "step": 133400 + }, + { + "epoch": 44.723678700058635, + "grad_norm": 1.0014779567718506, + "learning_rate": 2.764773869346734e-05, + "loss": 0.21157003402709962, + "step": 133500 + }, + { + "epoch": 44.75718234357986, + "grad_norm": 0.8901475071907043, + "learning_rate": 2.763098827470687e-05, + "loss": 0.21130624771118164, + "step": 133600 + }, + { + "epoch": 44.7906859871011, + "grad_norm": 0.7723361253738403, + "learning_rate": 2.7614237855946402e-05, + "loss": 0.21280551910400392, + "step": 133700 + }, + { + "epoch": 44.82418963062233, + "grad_norm": 0.8794797658920288, + "learning_rate": 2.759748743718593e-05, + "loss": 0.21236923217773437, + "step": 133800 + }, + { + "epoch": 44.857693274143564, + "grad_norm": 0.8374422192573547, + "learning_rate": 2.7580737018425463e-05, + "loss": 0.21364736557006836, + "step": 133900 + }, + { + "epoch": 44.89119691766479, + "grad_norm": 0.8275327086448669, + "learning_rate": 2.7563986599664992e-05, + "loss": 0.21200048446655273, + "step": 134000 + }, + { + "epoch": 44.92470056118603, + "grad_norm": 0.9097633957862854, + "learning_rate": 2.7547236180904524e-05, + "loss": 0.21340879440307617, + "step": 134100 + }, + { + "epoch": 44.958204204707265, + "grad_norm": 0.9494147300720215, + "learning_rate": 2.7530485762144053e-05, + "loss": 0.2142266273498535, + "step": 134200 + }, + { + "epoch": 44.991707848228494, + "grad_norm": 0.814795970916748, + "learning_rate": 2.7513735343383585e-05, + "loss": 0.21452692031860351, + "step": 134300 + }, + { + "epoch": 45.025127732640925, + "grad_norm": 0.6908448934555054, + "learning_rate": 2.7496984924623114e-05, + "loss": 0.20500320434570313, + "step": 134400 + }, + { + "epoch": 45.05863137616216, + "grad_norm": 0.6426514387130737, + "learning_rate": 2.7480234505862646e-05, + "loss": 0.2033299446105957, + "step": 134500 + }, + { + "epoch": 45.09213501968339, + "grad_norm": 0.8847736716270447, + "learning_rate": 2.7463484087102182e-05, + "loss": 0.20543498992919923, + "step": 134600 + }, + { + "epoch": 45.125638663204626, + "grad_norm": 0.713890552520752, + "learning_rate": 2.744673366834171e-05, + "loss": 0.20500320434570313, + "step": 134700 + }, + { + "epoch": 45.159142306725855, + "grad_norm": 0.7541131973266602, + "learning_rate": 2.7430150753768847e-05, + "loss": 0.2060226631164551, + "step": 134800 + }, + { + "epoch": 45.19264595024709, + "grad_norm": 0.9209812879562378, + "learning_rate": 2.7413400335008375e-05, + "loss": 0.20517513275146484, + "step": 134900 + }, + { + "epoch": 45.22614959376832, + "grad_norm": 0.781428873538971, + "learning_rate": 2.7396649916247908e-05, + "loss": 0.20627330780029296, + "step": 135000 + }, + { + "epoch": 45.259653237289555, + "grad_norm": 0.8748304843902588, + "learning_rate": 2.7379899497487437e-05, + "loss": 0.20791227340698243, + "step": 135100 + }, + { + "epoch": 45.29315688081079, + "grad_norm": 0.7505505681037903, + "learning_rate": 2.736314907872697e-05, + "loss": 0.2061052703857422, + "step": 135200 + }, + { + "epoch": 45.32666052433202, + "grad_norm": 0.8114047646522522, + "learning_rate": 2.7346398659966498e-05, + "loss": 0.2083379364013672, + "step": 135300 + }, + { + "epoch": 45.360164167853256, + "grad_norm": 0.8816334009170532, + "learning_rate": 2.732964824120603e-05, + "loss": 0.2089382553100586, + "step": 135400 + }, + { + "epoch": 45.393667811374485, + "grad_norm": 0.8554006814956665, + "learning_rate": 2.731289782244556e-05, + "loss": 0.20821535110473632, + "step": 135500 + }, + { + "epoch": 45.42717145489572, + "grad_norm": 0.8525182008743286, + "learning_rate": 2.7296147403685098e-05, + "loss": 0.20828678131103515, + "step": 135600 + }, + { + "epoch": 45.46067509841695, + "grad_norm": 0.9644753932952881, + "learning_rate": 2.7279396984924626e-05, + "loss": 0.20957386016845703, + "step": 135700 + }, + { + "epoch": 45.494178741938185, + "grad_norm": 0.857822835445404, + "learning_rate": 2.726264656616416e-05, + "loss": 0.21084308624267578, + "step": 135800 + }, + { + "epoch": 45.52768238545942, + "grad_norm": 0.6781661510467529, + "learning_rate": 2.7245896147403687e-05, + "loss": 0.21013999938964845, + "step": 135900 + }, + { + "epoch": 45.56118602898065, + "grad_norm": 0.87371426820755, + "learning_rate": 2.722914572864322e-05, + "loss": 0.2115696907043457, + "step": 136000 + }, + { + "epoch": 45.594689672501886, + "grad_norm": 1.0570032596588135, + "learning_rate": 2.721239530988275e-05, + "loss": 0.20983007431030273, + "step": 136100 + }, + { + "epoch": 45.628193316023115, + "grad_norm": 0.8911213278770447, + "learning_rate": 2.719564489112228e-05, + "loss": 0.2098233413696289, + "step": 136200 + }, + { + "epoch": 45.66169695954435, + "grad_norm": 0.7911779284477234, + "learning_rate": 2.717889447236181e-05, + "loss": 0.2099312973022461, + "step": 136300 + }, + { + "epoch": 45.69520060306559, + "grad_norm": 0.8585467338562012, + "learning_rate": 2.7162144053601342e-05, + "loss": 0.21018625259399415, + "step": 136400 + }, + { + "epoch": 45.728704246586815, + "grad_norm": 0.8224589824676514, + "learning_rate": 2.714539363484087e-05, + "loss": 0.211662654876709, + "step": 136500 + }, + { + "epoch": 45.76220789010805, + "grad_norm": 0.8850246667861938, + "learning_rate": 2.7128643216080403e-05, + "loss": 0.21219783782958984, + "step": 136600 + }, + { + "epoch": 45.79571153362928, + "grad_norm": 0.9044328927993774, + "learning_rate": 2.711189279731993e-05, + "loss": 0.21055538177490235, + "step": 136700 + }, + { + "epoch": 45.829215177150516, + "grad_norm": 0.8955138325691223, + "learning_rate": 2.7095142378559464e-05, + "loss": 0.21124111175537108, + "step": 136800 + }, + { + "epoch": 45.862718820671745, + "grad_norm": 0.9041482210159302, + "learning_rate": 2.7078559463986603e-05, + "loss": 0.21166906356811524, + "step": 136900 + }, + { + "epoch": 45.89622246419298, + "grad_norm": 0.8111388087272644, + "learning_rate": 2.7061809045226132e-05, + "loss": 0.21167055130004883, + "step": 137000 + }, + { + "epoch": 45.92972610771422, + "grad_norm": 0.9616506695747375, + "learning_rate": 2.7045058626465664e-05, + "loss": 0.21228885650634766, + "step": 137100 + }, + { + "epoch": 45.963229751235446, + "grad_norm": 0.8436776399612427, + "learning_rate": 2.7028308207705193e-05, + "loss": 0.2126219940185547, + "step": 137200 + }, + { + "epoch": 45.99673339475668, + "grad_norm": 0.71140456199646, + "learning_rate": 2.7011557788944725e-05, + "loss": 0.21354110717773436, + "step": 137300 + }, + { + "epoch": 46.03015327916911, + "grad_norm": 0.7948451042175293, + "learning_rate": 2.6994807370184254e-05, + "loss": 0.2044697570800781, + "step": 137400 + }, + { + "epoch": 46.06365692269034, + "grad_norm": 0.8057336807250977, + "learning_rate": 2.6978056951423786e-05, + "loss": 0.20385299682617186, + "step": 137500 + }, + { + "epoch": 46.09716056621158, + "grad_norm": 0.7120649218559265, + "learning_rate": 2.6961306532663315e-05, + "loss": 0.20400421142578126, + "step": 137600 + }, + { + "epoch": 46.13066420973281, + "grad_norm": 0.9549148678779602, + "learning_rate": 2.6944556113902847e-05, + "loss": 0.2034744453430176, + "step": 137700 + }, + { + "epoch": 46.16416785325404, + "grad_norm": 0.8098897337913513, + "learning_rate": 2.6927805695142376e-05, + "loss": 0.203569393157959, + "step": 137800 + }, + { + "epoch": 46.19767149677527, + "grad_norm": 0.7123087644577026, + "learning_rate": 2.6911055276381915e-05, + "loss": 0.20544761657714844, + "step": 137900 + }, + { + "epoch": 46.23117514029651, + "grad_norm": 0.8449687361717224, + "learning_rate": 2.6894304857621444e-05, + "loss": 0.20498695373535156, + "step": 138000 + }, + { + "epoch": 46.26467878381774, + "grad_norm": 0.7853437066078186, + "learning_rate": 2.6877554438860976e-05, + "loss": 0.2059033203125, + "step": 138100 + }, + { + "epoch": 46.29818242733897, + "grad_norm": 0.7418807148933411, + "learning_rate": 2.6860804020100505e-05, + "loss": 0.20638565063476563, + "step": 138200 + }, + { + "epoch": 46.33168607086021, + "grad_norm": 0.9248971343040466, + "learning_rate": 2.6844053601340037e-05, + "loss": 0.2076273727416992, + "step": 138300 + }, + { + "epoch": 46.36518971438144, + "grad_norm": 0.8263251185417175, + "learning_rate": 2.6827303182579566e-05, + "loss": 0.20645214080810548, + "step": 138400 + }, + { + "epoch": 46.39869335790267, + "grad_norm": 0.9032105207443237, + "learning_rate": 2.6810552763819098e-05, + "loss": 0.20705162048339842, + "step": 138500 + }, + { + "epoch": 46.4321970014239, + "grad_norm": 0.7566851377487183, + "learning_rate": 2.6793802345058627e-05, + "loss": 0.20758819580078125, + "step": 138600 + }, + { + "epoch": 46.46570064494514, + "grad_norm": 0.7938912510871887, + "learning_rate": 2.677705192629816e-05, + "loss": 0.20770130157470704, + "step": 138700 + }, + { + "epoch": 46.49920428846637, + "grad_norm": 0.8320357799530029, + "learning_rate": 2.6760301507537688e-05, + "loss": 0.20806819915771485, + "step": 138800 + }, + { + "epoch": 46.5327079319876, + "grad_norm": 0.9987215995788574, + "learning_rate": 2.674355108877722e-05, + "loss": 0.20871660232543945, + "step": 138900 + }, + { + "epoch": 46.56621157550884, + "grad_norm": 0.8866457939147949, + "learning_rate": 2.672696817420436e-05, + "loss": 0.20802412033081055, + "step": 139000 + }, + { + "epoch": 46.59971521903007, + "grad_norm": 0.7644064426422119, + "learning_rate": 2.6710217755443888e-05, + "loss": 0.2100166893005371, + "step": 139100 + }, + { + "epoch": 46.6332188625513, + "grad_norm": 0.832198977470398, + "learning_rate": 2.669346733668342e-05, + "loss": 0.2086174964904785, + "step": 139200 + }, + { + "epoch": 46.66672250607254, + "grad_norm": 0.7455396056175232, + "learning_rate": 2.667671691792295e-05, + "loss": 0.21050701141357422, + "step": 139300 + }, + { + "epoch": 46.70022614959377, + "grad_norm": 0.7941868901252747, + "learning_rate": 2.665996649916248e-05, + "loss": 0.21018735885620118, + "step": 139400 + }, + { + "epoch": 46.733729793115, + "grad_norm": 0.745232105255127, + "learning_rate": 2.664321608040201e-05, + "loss": 0.2106583023071289, + "step": 139500 + }, + { + "epoch": 46.76723343663623, + "grad_norm": 0.8534348011016846, + "learning_rate": 2.6626465661641543e-05, + "loss": 0.21023065567016602, + "step": 139600 + }, + { + "epoch": 46.80073708015747, + "grad_norm": 0.8639134764671326, + "learning_rate": 2.660971524288107e-05, + "loss": 0.20966962814331055, + "step": 139700 + }, + { + "epoch": 46.8342407236787, + "grad_norm": 0.9052923917770386, + "learning_rate": 2.6592964824120604e-05, + "loss": 0.2114642906188965, + "step": 139800 + }, + { + "epoch": 46.86774436719993, + "grad_norm": 0.8590245246887207, + "learning_rate": 2.6576214405360132e-05, + "loss": 0.2110831069946289, + "step": 139900 + }, + { + "epoch": 46.90124801072117, + "grad_norm": 0.8708141446113586, + "learning_rate": 2.6559463986599665e-05, + "loss": 0.21110519409179687, + "step": 140000 + }, + { + "epoch": 46.9347516542424, + "grad_norm": 0.9694708585739136, + "learning_rate": 2.6542713567839193e-05, + "loss": 0.21246437072753907, + "step": 140100 + }, + { + "epoch": 46.96825529776363, + "grad_norm": 0.8531249761581421, + "learning_rate": 2.6525963149078732e-05, + "loss": 0.2127097511291504, + "step": 140200 + }, + { + "epoch": 47.001675182176065, + "grad_norm": 0.7149065136909485, + "learning_rate": 2.650921273031826e-05, + "loss": 0.21077686309814453, + "step": 140300 + }, + { + "epoch": 47.035178825697294, + "grad_norm": 0.906190812587738, + "learning_rate": 2.6492462311557793e-05, + "loss": 0.20198272705078124, + "step": 140400 + }, + { + "epoch": 47.06868246921853, + "grad_norm": 0.8794195652008057, + "learning_rate": 2.6475711892797322e-05, + "loss": 0.20144824981689452, + "step": 140500 + }, + { + "epoch": 47.10218611273976, + "grad_norm": 0.7231687307357788, + "learning_rate": 2.6458961474036854e-05, + "loss": 0.20203954696655274, + "step": 140600 + }, + { + "epoch": 47.135689756260994, + "grad_norm": 0.8035680651664734, + "learning_rate": 2.6442211055276383e-05, + "loss": 0.20453298568725586, + "step": 140700 + }, + { + "epoch": 47.16919339978222, + "grad_norm": 0.7751315832138062, + "learning_rate": 2.6425460636515916e-05, + "loss": 0.20380630493164062, + "step": 140800 + }, + { + "epoch": 47.20269704330346, + "grad_norm": 0.8336166739463806, + "learning_rate": 2.6408710217755444e-05, + "loss": 0.2044701385498047, + "step": 140900 + }, + { + "epoch": 47.236200686824695, + "grad_norm": 0.92495197057724, + "learning_rate": 2.6391959798994977e-05, + "loss": 0.20544666290283203, + "step": 141000 + }, + { + "epoch": 47.269704330345924, + "grad_norm": 0.8691511750221252, + "learning_rate": 2.637537688442211e-05, + "loss": 0.20497919082641602, + "step": 141100 + }, + { + "epoch": 47.30320797386716, + "grad_norm": 0.7744715213775635, + "learning_rate": 2.6358626465661645e-05, + "loss": 0.20545125961303712, + "step": 141200 + }, + { + "epoch": 47.33671161738839, + "grad_norm": 0.8087801337242126, + "learning_rate": 2.6341876046901177e-05, + "loss": 0.20726716995239258, + "step": 141300 + }, + { + "epoch": 47.370215260909625, + "grad_norm": 0.6278528571128845, + "learning_rate": 2.6325125628140706e-05, + "loss": 0.20632375717163087, + "step": 141400 + }, + { + "epoch": 47.40371890443085, + "grad_norm": 0.7197872996330261, + "learning_rate": 2.6308375209380238e-05, + "loss": 0.20561176300048828, + "step": 141500 + }, + { + "epoch": 47.43722254795209, + "grad_norm": 0.8030456900596619, + "learning_rate": 2.6291624790619767e-05, + "loss": 0.20726533889770507, + "step": 141600 + }, + { + "epoch": 47.470726191473325, + "grad_norm": 0.8122235536575317, + "learning_rate": 2.62748743718593e-05, + "loss": 0.20543954849243165, + "step": 141700 + }, + { + "epoch": 47.504229834994554, + "grad_norm": 0.8430666923522949, + "learning_rate": 2.6258123953098828e-05, + "loss": 0.20687795639038087, + "step": 141800 + }, + { + "epoch": 47.53773347851579, + "grad_norm": 0.7796192765235901, + "learning_rate": 2.624137353433836e-05, + "loss": 0.20932218551635742, + "step": 141900 + }, + { + "epoch": 47.57123712203702, + "grad_norm": 0.7568249702453613, + "learning_rate": 2.622462311557789e-05, + "loss": 0.20753023147583008, + "step": 142000 + }, + { + "epoch": 47.604740765558255, + "grad_norm": 0.7766709923744202, + "learning_rate": 2.620787269681742e-05, + "loss": 0.20817523956298828, + "step": 142100 + }, + { + "epoch": 47.63824440907949, + "grad_norm": 0.8407247066497803, + "learning_rate": 2.619112227805695e-05, + "loss": 0.20790090560913085, + "step": 142200 + }, + { + "epoch": 47.67174805260072, + "grad_norm": 1.0693186521530151, + "learning_rate": 2.6174371859296482e-05, + "loss": 0.20879848480224608, + "step": 142300 + }, + { + "epoch": 47.705251696121955, + "grad_norm": 0.9089698791503906, + "learning_rate": 2.615762144053601e-05, + "loss": 0.20962982177734374, + "step": 142400 + }, + { + "epoch": 47.738755339643184, + "grad_norm": 0.9101313948631287, + "learning_rate": 2.614087102177555e-05, + "loss": 0.20881969451904298, + "step": 142500 + }, + { + "epoch": 47.77225898316442, + "grad_norm": 0.9239957332611084, + "learning_rate": 2.612412060301508e-05, + "loss": 0.21106016159057617, + "step": 142600 + }, + { + "epoch": 47.80576262668565, + "grad_norm": 0.7095087170600891, + "learning_rate": 2.610737018425461e-05, + "loss": 0.21043779373168944, + "step": 142700 + }, + { + "epoch": 47.839266270206885, + "grad_norm": 0.8761176466941833, + "learning_rate": 2.609061976549414e-05, + "loss": 0.20853693008422852, + "step": 142800 + }, + { + "epoch": 47.87276991372812, + "grad_norm": 0.9387518763542175, + "learning_rate": 2.6073869346733672e-05, + "loss": 0.21088685989379882, + "step": 142900 + }, + { + "epoch": 47.90627355724935, + "grad_norm": 0.8915501832962036, + "learning_rate": 2.60571189279732e-05, + "loss": 0.21008544921875, + "step": 143000 + }, + { + "epoch": 47.939777200770585, + "grad_norm": 0.9699543714523315, + "learning_rate": 2.6040368509212733e-05, + "loss": 0.21000476837158202, + "step": 143100 + }, + { + "epoch": 47.973280844291814, + "grad_norm": 0.7812904119491577, + "learning_rate": 2.6023785594639865e-05, + "loss": 0.21052337646484376, + "step": 143200 + }, + { + "epoch": 48.006700728704246, + "grad_norm": 0.822690486907959, + "learning_rate": 2.6007035175879398e-05, + "loss": 0.20833581924438477, + "step": 143300 + }, + { + "epoch": 48.04020437222548, + "grad_norm": 0.6735044121742249, + "learning_rate": 2.5990284757118926e-05, + "loss": 0.20092033386230468, + "step": 143400 + }, + { + "epoch": 48.07370801574671, + "grad_norm": 0.7303795218467712, + "learning_rate": 2.5973534338358462e-05, + "loss": 0.2011802864074707, + "step": 143500 + }, + { + "epoch": 48.107211659267946, + "grad_norm": 0.7877155542373657, + "learning_rate": 2.5956783919597994e-05, + "loss": 0.2021241569519043, + "step": 143600 + }, + { + "epoch": 48.140715302789175, + "grad_norm": 0.7610930800437927, + "learning_rate": 2.5940033500837523e-05, + "loss": 0.20223419189453126, + "step": 143700 + }, + { + "epoch": 48.17421894631041, + "grad_norm": 0.81033855676651, + "learning_rate": 2.5923283082077055e-05, + "loss": 0.20270132064819335, + "step": 143800 + }, + { + "epoch": 48.20772258983165, + "grad_norm": 0.7211432456970215, + "learning_rate": 2.5906532663316584e-05, + "loss": 0.2033340072631836, + "step": 143900 + }, + { + "epoch": 48.241226233352876, + "grad_norm": 0.7816910147666931, + "learning_rate": 2.5889782244556116e-05, + "loss": 0.20389623641967775, + "step": 144000 + }, + { + "epoch": 48.27472987687411, + "grad_norm": 0.8680933713912964, + "learning_rate": 2.5873031825795645e-05, + "loss": 0.20449954986572266, + "step": 144100 + }, + { + "epoch": 48.30823352039534, + "grad_norm": 0.6703556776046753, + "learning_rate": 2.5856281407035177e-05, + "loss": 0.20437568664550781, + "step": 144200 + }, + { + "epoch": 48.34173716391658, + "grad_norm": 0.755338191986084, + "learning_rate": 2.5839530988274706e-05, + "loss": 0.20576271057128906, + "step": 144300 + }, + { + "epoch": 48.375240807437805, + "grad_norm": 0.7581430673599243, + "learning_rate": 2.582278056951424e-05, + "loss": 0.2058708953857422, + "step": 144400 + }, + { + "epoch": 48.40874445095904, + "grad_norm": 0.7973390817642212, + "learning_rate": 2.5806030150753767e-05, + "loss": 0.20591938018798828, + "step": 144500 + }, + { + "epoch": 48.44224809448028, + "grad_norm": 0.8226273655891418, + "learning_rate": 2.57892797319933e-05, + "loss": 0.20543519973754884, + "step": 144600 + }, + { + "epoch": 48.475751738001506, + "grad_norm": 0.9298210740089417, + "learning_rate": 2.5772529313232828e-05, + "loss": 0.2074728012084961, + "step": 144700 + }, + { + "epoch": 48.50925538152274, + "grad_norm": 0.7703186273574829, + "learning_rate": 2.5755778894472364e-05, + "loss": 0.2061468505859375, + "step": 144800 + }, + { + "epoch": 48.54275902504397, + "grad_norm": 0.7027441263198853, + "learning_rate": 2.5739028475711896e-05, + "loss": 0.2068248176574707, + "step": 144900 + }, + { + "epoch": 48.57626266856521, + "grad_norm": 0.866961658000946, + "learning_rate": 2.5722278056951425e-05, + "loss": 0.20709081649780273, + "step": 145000 + }, + { + "epoch": 48.60976631208644, + "grad_norm": 0.7900598645210266, + "learning_rate": 2.5705527638190957e-05, + "loss": 0.20745479583740234, + "step": 145100 + }, + { + "epoch": 48.64326995560767, + "grad_norm": 0.7642288208007812, + "learning_rate": 2.568877721943049e-05, + "loss": 0.20698997497558594, + "step": 145200 + }, + { + "epoch": 48.67677359912891, + "grad_norm": 0.8306117653846741, + "learning_rate": 2.5672026800670018e-05, + "loss": 0.20851272583007813, + "step": 145300 + }, + { + "epoch": 48.710277242650136, + "grad_norm": 0.9393877387046814, + "learning_rate": 2.565527638190955e-05, + "loss": 0.2079641914367676, + "step": 145400 + }, + { + "epoch": 48.74378088617137, + "grad_norm": 0.7118200659751892, + "learning_rate": 2.5638693467336683e-05, + "loss": 0.20779979705810547, + "step": 145500 + }, + { + "epoch": 48.7772845296926, + "grad_norm": 0.8508455157279968, + "learning_rate": 2.5621943048576215e-05, + "loss": 0.20885522842407225, + "step": 145600 + }, + { + "epoch": 48.81078817321384, + "grad_norm": 0.7956013083457947, + "learning_rate": 2.5605192629815744e-05, + "loss": 0.2095408821105957, + "step": 145700 + }, + { + "epoch": 48.84429181673507, + "grad_norm": 0.9105645418167114, + "learning_rate": 2.558844221105528e-05, + "loss": 0.20915800094604492, + "step": 145800 + }, + { + "epoch": 48.8777954602563, + "grad_norm": 0.8507822155952454, + "learning_rate": 2.5571691792294812e-05, + "loss": 0.20863231658935547, + "step": 145900 + }, + { + "epoch": 48.91129910377754, + "grad_norm": 0.9350414872169495, + "learning_rate": 2.555494137353434e-05, + "loss": 0.2097511100769043, + "step": 146000 + }, + { + "epoch": 48.944802747298766, + "grad_norm": 0.6584986448287964, + "learning_rate": 2.5538190954773873e-05, + "loss": 0.20917884826660157, + "step": 146100 + }, + { + "epoch": 48.97830639082, + "grad_norm": 0.8874914646148682, + "learning_rate": 2.55214405360134e-05, + "loss": 0.20966741561889649, + "step": 146200 + }, + { + "epoch": 49.011726275232434, + "grad_norm": 0.6621425747871399, + "learning_rate": 2.5504690117252934e-05, + "loss": 0.20701923370361328, + "step": 146300 + }, + { + "epoch": 49.04522991875366, + "grad_norm": 0.772162914276123, + "learning_rate": 2.5487939698492463e-05, + "loss": 0.19997344970703124, + "step": 146400 + }, + { + "epoch": 49.0787335622749, + "grad_norm": 0.7397682666778564, + "learning_rate": 2.5471189279731995e-05, + "loss": 0.19966798782348633, + "step": 146500 + }, + { + "epoch": 49.11223720579613, + "grad_norm": 0.7998943328857422, + "learning_rate": 2.5454438860971524e-05, + "loss": 0.20070135116577148, + "step": 146600 + }, + { + "epoch": 49.14574084931736, + "grad_norm": 0.8297356367111206, + "learning_rate": 2.5437688442211056e-05, + "loss": 0.2032426643371582, + "step": 146700 + }, + { + "epoch": 49.1792444928386, + "grad_norm": 0.6718747615814209, + "learning_rate": 2.5420938023450585e-05, + "loss": 0.20162422180175782, + "step": 146800 + }, + { + "epoch": 49.21274813635983, + "grad_norm": 0.8085470795631409, + "learning_rate": 2.5404187604690117e-05, + "loss": 0.20480926513671874, + "step": 146900 + }, + { + "epoch": 49.246251779881064, + "grad_norm": 0.6637224555015564, + "learning_rate": 2.5387437185929646e-05, + "loss": 0.20419147491455078, + "step": 147000 + }, + { + "epoch": 49.27975542340229, + "grad_norm": 0.8804967999458313, + "learning_rate": 2.537068676716918e-05, + "loss": 0.20260902404785155, + "step": 147100 + }, + { + "epoch": 49.31325906692353, + "grad_norm": 0.6562800407409668, + "learning_rate": 2.5353936348408713e-05, + "loss": 0.2042051887512207, + "step": 147200 + }, + { + "epoch": 49.346762710444764, + "grad_norm": 0.802295446395874, + "learning_rate": 2.5337185929648242e-05, + "loss": 0.20388504028320312, + "step": 147300 + }, + { + "epoch": 49.38026635396599, + "grad_norm": 0.6702427268028259, + "learning_rate": 2.5320435510887775e-05, + "loss": 0.20359308242797852, + "step": 147400 + }, + { + "epoch": 49.41376999748723, + "grad_norm": 0.6546157002449036, + "learning_rate": 2.5303685092127303e-05, + "loss": 0.20544279098510743, + "step": 147500 + }, + { + "epoch": 49.44727364100846, + "grad_norm": 0.7745968103408813, + "learning_rate": 2.528710217755444e-05, + "loss": 0.20460813522338867, + "step": 147600 + }, + { + "epoch": 49.480777284529694, + "grad_norm": 0.754804790019989, + "learning_rate": 2.527035175879397e-05, + "loss": 0.20541131973266602, + "step": 147700 + }, + { + "epoch": 49.51428092805092, + "grad_norm": 0.8245925307273865, + "learning_rate": 2.52536013400335e-05, + "loss": 0.20514223098754883, + "step": 147800 + }, + { + "epoch": 49.54778457157216, + "grad_norm": 0.7658609747886658, + "learning_rate": 2.5236850921273032e-05, + "loss": 0.20672239303588869, + "step": 147900 + }, + { + "epoch": 49.581288215093394, + "grad_norm": 0.8386098742485046, + "learning_rate": 2.522010050251256e-05, + "loss": 0.20576807022094726, + "step": 148000 + }, + { + "epoch": 49.61479185861462, + "grad_norm": 0.9193150997161865, + "learning_rate": 2.5203350083752097e-05, + "loss": 0.20691360473632814, + "step": 148100 + }, + { + "epoch": 49.64829550213586, + "grad_norm": 0.8064738512039185, + "learning_rate": 2.518659966499163e-05, + "loss": 0.20630212783813476, + "step": 148200 + }, + { + "epoch": 49.68179914565709, + "grad_norm": 0.6325901746749878, + "learning_rate": 2.5169849246231158e-05, + "loss": 0.20667299270629882, + "step": 148300 + }, + { + "epoch": 49.715302789178324, + "grad_norm": 0.796997606754303, + "learning_rate": 2.515309882747069e-05, + "loss": 0.20724594116210937, + "step": 148400 + }, + { + "epoch": 49.74880643269955, + "grad_norm": 0.8888092041015625, + "learning_rate": 2.513634840871022e-05, + "loss": 0.20756359100341798, + "step": 148500 + }, + { + "epoch": 49.78231007622079, + "grad_norm": 0.8092156052589417, + "learning_rate": 2.511959798994975e-05, + "loss": 0.2068187713623047, + "step": 148600 + }, + { + "epoch": 49.815813719742025, + "grad_norm": 0.9051980972290039, + "learning_rate": 2.510284757118928e-05, + "loss": 0.20732791900634764, + "step": 148700 + }, + { + "epoch": 49.84931736326325, + "grad_norm": 0.9662907719612122, + "learning_rate": 2.5086097152428812e-05, + "loss": 0.2081096076965332, + "step": 148800 + }, + { + "epoch": 49.88282100678449, + "grad_norm": 0.9831855297088623, + "learning_rate": 2.506934673366834e-05, + "loss": 0.20788869857788086, + "step": 148900 + }, + { + "epoch": 49.91632465030572, + "grad_norm": 0.6909393668174744, + "learning_rate": 2.5052596314907873e-05, + "loss": 0.20930927276611327, + "step": 149000 + }, + { + "epoch": 49.949828293826954, + "grad_norm": 0.7016172409057617, + "learning_rate": 2.5035845896147402e-05, + "loss": 0.20851097106933594, + "step": 149100 + }, + { + "epoch": 49.98333193734819, + "grad_norm": 0.9753764867782593, + "learning_rate": 2.5019095477386934e-05, + "loss": 0.20876035690307618, + "step": 149200 + }, + { + "epoch": 50.016751821760614, + "grad_norm": 0.814017117023468, + "learning_rate": 2.500234505862647e-05, + "loss": 0.20314416885375977, + "step": 149300 + }, + { + "epoch": 50.05025546528185, + "grad_norm": 0.7156041860580444, + "learning_rate": 2.4985594639866e-05, + "loss": 0.19888938903808595, + "step": 149400 + }, + { + "epoch": 50.08375910880308, + "grad_norm": 0.7967144250869751, + "learning_rate": 2.4968844221105528e-05, + "loss": 0.2009027862548828, + "step": 149500 + }, + { + "epoch": 50.117262752324315, + "grad_norm": 0.8211435079574585, + "learning_rate": 2.495209380234506e-05, + "loss": 0.20014671325683595, + "step": 149600 + }, + { + "epoch": 50.15076639584555, + "grad_norm": 0.6646608710289001, + "learning_rate": 2.4935510887772196e-05, + "loss": 0.20111976623535155, + "step": 149700 + }, + { + "epoch": 50.18427003936678, + "grad_norm": 0.7369064092636108, + "learning_rate": 2.4918760469011724e-05, + "loss": 0.20281072616577148, + "step": 149800 + }, + { + "epoch": 50.217773682888016, + "grad_norm": 0.5978965163230896, + "learning_rate": 2.4902010050251257e-05, + "loss": 0.20169940948486328, + "step": 149900 + }, + { + "epoch": 50.251277326409244, + "grad_norm": 0.8313732743263245, + "learning_rate": 2.4885259631490785e-05, + "loss": 0.2015657615661621, + "step": 150000 + }, + { + "epoch": 50.28478096993048, + "grad_norm": 0.9016907811164856, + "learning_rate": 2.486850921273032e-05, + "loss": 0.2032327651977539, + "step": 150100 + }, + { + "epoch": 50.318284613451716, + "grad_norm": 0.7199917435646057, + "learning_rate": 2.485175879396985e-05, + "loss": 0.20292411804199217, + "step": 150200 + }, + { + "epoch": 50.351788256972945, + "grad_norm": 0.8585846424102783, + "learning_rate": 2.4835008375209382e-05, + "loss": 0.20314014434814454, + "step": 150300 + }, + { + "epoch": 50.38529190049418, + "grad_norm": 0.7034669518470764, + "learning_rate": 2.481825795644891e-05, + "loss": 0.20416894912719727, + "step": 150400 + }, + { + "epoch": 50.41879554401541, + "grad_norm": 0.865682065486908, + "learning_rate": 2.4801507537688443e-05, + "loss": 0.20476892471313476, + "step": 150500 + }, + { + "epoch": 50.452299187536646, + "grad_norm": 0.7300936579704285, + "learning_rate": 2.4784757118927972e-05, + "loss": 0.20488790512084962, + "step": 150600 + }, + { + "epoch": 50.485802831057875, + "grad_norm": 0.8905784487724304, + "learning_rate": 2.4768006700167508e-05, + "loss": 0.20429906845092774, + "step": 150700 + }, + { + "epoch": 50.51930647457911, + "grad_norm": 0.759925365447998, + "learning_rate": 2.4751256281407036e-05, + "loss": 0.2061992645263672, + "step": 150800 + }, + { + "epoch": 50.552810118100346, + "grad_norm": 0.7266499996185303, + "learning_rate": 2.473450586264657e-05, + "loss": 0.20576707839965822, + "step": 150900 + }, + { + "epoch": 50.586313761621575, + "grad_norm": 0.6730079650878906, + "learning_rate": 2.4717755443886097e-05, + "loss": 0.20497604370117187, + "step": 151000 + }, + { + "epoch": 50.61981740514281, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.470100502512563e-05, + "loss": 0.20579778671264648, + "step": 151100 + }, + { + "epoch": 50.65332104866404, + "grad_norm": 0.7999610304832458, + "learning_rate": 2.468425460636516e-05, + "loss": 0.20637252807617187, + "step": 151200 + }, + { + "epoch": 50.686824692185276, + "grad_norm": 0.7081186771392822, + "learning_rate": 2.4667504187604694e-05, + "loss": 0.20630395889282227, + "step": 151300 + }, + { + "epoch": 50.720328335706505, + "grad_norm": 0.8061164021492004, + "learning_rate": 2.4650753768844223e-05, + "loss": 0.20621145248413086, + "step": 151400 + }, + { + "epoch": 50.75383197922774, + "grad_norm": 0.826841413974762, + "learning_rate": 2.4634003350083755e-05, + "loss": 0.20574779510498048, + "step": 151500 + }, + { + "epoch": 50.78733562274898, + "grad_norm": 0.7742196321487427, + "learning_rate": 2.4617252931323284e-05, + "loss": 0.205941162109375, + "step": 151600 + }, + { + "epoch": 50.820839266270205, + "grad_norm": 0.8660677075386047, + "learning_rate": 2.4600502512562816e-05, + "loss": 0.20769458770751953, + "step": 151700 + }, + { + "epoch": 50.85434290979144, + "grad_norm": 0.7156419157981873, + "learning_rate": 2.4583752093802345e-05, + "loss": 0.20709629058837892, + "step": 151800 + }, + { + "epoch": 50.88784655331267, + "grad_norm": 0.812447190284729, + "learning_rate": 2.456716917922948e-05, + "loss": 0.20599342346191407, + "step": 151900 + }, + { + "epoch": 50.921350196833906, + "grad_norm": 0.8019922375679016, + "learning_rate": 2.4550418760469013e-05, + "loss": 0.20727943420410155, + "step": 152000 + }, + { + "epoch": 50.95485384035514, + "grad_norm": 0.7810946702957153, + "learning_rate": 2.4533668341708542e-05, + "loss": 0.2080386734008789, + "step": 152100 + }, + { + "epoch": 50.98835748387637, + "grad_norm": 0.7739458084106445, + "learning_rate": 2.4516917922948074e-05, + "loss": 0.2072319793701172, + "step": 152200 + }, + { + "epoch": 51.0217773682888, + "grad_norm": 0.7210680246353149, + "learning_rate": 2.4500167504187606e-05, + "loss": 0.20264469146728514, + "step": 152300 + }, + { + "epoch": 51.05528101181003, + "grad_norm": 0.7153304219245911, + "learning_rate": 2.448341708542714e-05, + "loss": 0.19857017517089845, + "step": 152400 + }, + { + "epoch": 51.08878465533127, + "grad_norm": 0.7581055760383606, + "learning_rate": 2.4466666666666667e-05, + "loss": 0.19956087112426757, + "step": 152500 + }, + { + "epoch": 51.1222882988525, + "grad_norm": 0.7437317967414856, + "learning_rate": 2.44499162479062e-05, + "loss": 0.19829078674316405, + "step": 152600 + }, + { + "epoch": 51.15579194237373, + "grad_norm": 0.6868230104446411, + "learning_rate": 2.443316582914573e-05, + "loss": 0.19977245330810547, + "step": 152700 + }, + { + "epoch": 51.18929558589497, + "grad_norm": 0.7176596522331238, + "learning_rate": 2.441641541038526e-05, + "loss": 0.20137237548828124, + "step": 152800 + }, + { + "epoch": 51.2227992294162, + "grad_norm": 0.7465003132820129, + "learning_rate": 2.439966499162479e-05, + "loss": 0.20151824951171876, + "step": 152900 + }, + { + "epoch": 51.25630287293743, + "grad_norm": 0.8134509325027466, + "learning_rate": 2.4382914572864325e-05, + "loss": 0.20129066467285156, + "step": 153000 + }, + { + "epoch": 51.28980651645867, + "grad_norm": 0.7882896065711975, + "learning_rate": 2.4366164154103854e-05, + "loss": 0.20372648239135743, + "step": 153100 + }, + { + "epoch": 51.3233101599799, + "grad_norm": 0.6261149048805237, + "learning_rate": 2.4349413735343386e-05, + "loss": 0.20317134857177735, + "step": 153200 + }, + { + "epoch": 51.35681380350113, + "grad_norm": 0.7279029488563538, + "learning_rate": 2.4332663316582915e-05, + "loss": 0.20203876495361328, + "step": 153300 + }, + { + "epoch": 51.39031744702236, + "grad_norm": 0.7463719248771667, + "learning_rate": 2.4315912897822447e-05, + "loss": 0.2032138252258301, + "step": 153400 + }, + { + "epoch": 51.4238210905436, + "grad_norm": 0.7583816051483154, + "learning_rate": 2.4299162479061976e-05, + "loss": 0.20314373016357423, + "step": 153500 + }, + { + "epoch": 51.45732473406483, + "grad_norm": 0.7088111042976379, + "learning_rate": 2.428241206030151e-05, + "loss": 0.20380254745483398, + "step": 153600 + }, + { + "epoch": 51.49082837758606, + "grad_norm": 0.6820314526557922, + "learning_rate": 2.426566164154104e-05, + "loss": 0.20396411895751954, + "step": 153700 + }, + { + "epoch": 51.5243320211073, + "grad_norm": 0.6890659332275391, + "learning_rate": 2.4248911222780573e-05, + "loss": 0.20465932846069335, + "step": 153800 + }, + { + "epoch": 51.55783566462853, + "grad_norm": 0.7410996556282043, + "learning_rate": 2.4232328308207705e-05, + "loss": 0.20433155059814453, + "step": 153900 + }, + { + "epoch": 51.59133930814976, + "grad_norm": 0.6642614006996155, + "learning_rate": 2.4215577889447237e-05, + "loss": 0.20583141326904297, + "step": 154000 + }, + { + "epoch": 51.62484295167099, + "grad_norm": 0.8036423921585083, + "learning_rate": 2.419882747068677e-05, + "loss": 0.20297210693359374, + "step": 154100 + }, + { + "epoch": 51.65834659519223, + "grad_norm": 0.7510450482368469, + "learning_rate": 2.4182077051926298e-05, + "loss": 0.20401430130004883, + "step": 154200 + }, + { + "epoch": 51.69185023871346, + "grad_norm": 0.7840591073036194, + "learning_rate": 2.416532663316583e-05, + "loss": 0.205728702545166, + "step": 154300 + }, + { + "epoch": 51.72535388223469, + "grad_norm": 0.8357808589935303, + "learning_rate": 2.414857621440536e-05, + "loss": 0.20580055236816405, + "step": 154400 + }, + { + "epoch": 51.75885752575593, + "grad_norm": 0.7890837788581848, + "learning_rate": 2.413182579564489e-05, + "loss": 0.2051936149597168, + "step": 154500 + }, + { + "epoch": 51.79236116927716, + "grad_norm": 1.031099557876587, + "learning_rate": 2.4115075376884424e-05, + "loss": 0.20656421661376953, + "step": 154600 + }, + { + "epoch": 51.82586481279839, + "grad_norm": 0.7498375773429871, + "learning_rate": 2.4098324958123956e-05, + "loss": 0.2050635528564453, + "step": 154700 + }, + { + "epoch": 51.85936845631962, + "grad_norm": 0.760242760181427, + "learning_rate": 2.4081574539363485e-05, + "loss": 0.20564306259155274, + "step": 154800 + }, + { + "epoch": 51.89287209984086, + "grad_norm": 0.7774176597595215, + "learning_rate": 2.4064824120603017e-05, + "loss": 0.20756494522094726, + "step": 154900 + }, + { + "epoch": 51.926375743362094, + "grad_norm": 0.7169613242149353, + "learning_rate": 2.4048073701842546e-05, + "loss": 0.2062942886352539, + "step": 155000 + }, + { + "epoch": 51.95987938688332, + "grad_norm": 0.8178589344024658, + "learning_rate": 2.4031323283082078e-05, + "loss": 0.20722549438476562, + "step": 155100 + }, + { + "epoch": 51.99338303040456, + "grad_norm": 0.9282923936843872, + "learning_rate": 2.401457286432161e-05, + "loss": 0.20599929809570314, + "step": 155200 + }, + { + "epoch": 52.02680291481698, + "grad_norm": 0.718063235282898, + "learning_rate": 2.3997822445561142e-05, + "loss": 0.19876413345336913, + "step": 155300 + }, + { + "epoch": 52.06030655833822, + "grad_norm": 0.8059532642364502, + "learning_rate": 2.398107202680067e-05, + "loss": 0.19822462081909178, + "step": 155400 + }, + { + "epoch": 52.093810201859455, + "grad_norm": 0.7145259380340576, + "learning_rate": 2.3964321608040203e-05, + "loss": 0.19868303298950196, + "step": 155500 + }, + { + "epoch": 52.127313845380684, + "grad_norm": 0.8659557700157166, + "learning_rate": 2.3947571189279732e-05, + "loss": 0.19922651290893556, + "step": 155600 + }, + { + "epoch": 52.16081748890192, + "grad_norm": 0.6749393939971924, + "learning_rate": 2.3930820770519264e-05, + "loss": 0.1997986602783203, + "step": 155700 + }, + { + "epoch": 52.19432113242315, + "grad_norm": 0.6439624428749084, + "learning_rate": 2.3914070351758793e-05, + "loss": 0.20102750778198242, + "step": 155800 + }, + { + "epoch": 52.227824775944384, + "grad_norm": 0.7515970468521118, + "learning_rate": 2.389748743718593e-05, + "loss": 0.20047502517700194, + "step": 155900 + }, + { + "epoch": 52.26132841946562, + "grad_norm": 0.806867241859436, + "learning_rate": 2.388073701842546e-05, + "loss": 0.19967298507690429, + "step": 156000 + }, + { + "epoch": 52.29483206298685, + "grad_norm": 0.6517553925514221, + "learning_rate": 2.3863986599664994e-05, + "loss": 0.20189517974853516, + "step": 156100 + }, + { + "epoch": 52.328335706508085, + "grad_norm": 0.7536884546279907, + "learning_rate": 2.3847236180904522e-05, + "loss": 0.20110305786132812, + "step": 156200 + }, + { + "epoch": 52.361839350029314, + "grad_norm": 0.6968570947647095, + "learning_rate": 2.3830485762144055e-05, + "loss": 0.20244617462158204, + "step": 156300 + }, + { + "epoch": 52.39534299355055, + "grad_norm": 0.7550085783004761, + "learning_rate": 2.3813735343383587e-05, + "loss": 0.20247106552124022, + "step": 156400 + }, + { + "epoch": 52.42884663707178, + "grad_norm": 0.720716118812561, + "learning_rate": 2.3796984924623116e-05, + "loss": 0.20291017532348632, + "step": 156500 + }, + { + "epoch": 52.462350280593014, + "grad_norm": 0.8645543456077576, + "learning_rate": 2.3780234505862648e-05, + "loss": 0.20293344497680665, + "step": 156600 + }, + { + "epoch": 52.49585392411425, + "grad_norm": 0.8600931167602539, + "learning_rate": 2.3763484087102177e-05, + "loss": 0.20278577804565429, + "step": 156700 + }, + { + "epoch": 52.52935756763548, + "grad_norm": 0.7974618673324585, + "learning_rate": 2.374673366834171e-05, + "loss": 0.202381591796875, + "step": 156800 + }, + { + "epoch": 52.562861211156715, + "grad_norm": 0.7992094159126282, + "learning_rate": 2.372998324958124e-05, + "loss": 0.20381240844726561, + "step": 156900 + }, + { + "epoch": 52.596364854677944, + "grad_norm": 0.8903921842575073, + "learning_rate": 2.3713232830820773e-05, + "loss": 0.20466848373413085, + "step": 157000 + }, + { + "epoch": 52.62986849819918, + "grad_norm": 0.7660692930221558, + "learning_rate": 2.3696482412060302e-05, + "loss": 0.20477258682250976, + "step": 157100 + }, + { + "epoch": 52.663372141720416, + "grad_norm": 0.9394494891166687, + "learning_rate": 2.3679731993299834e-05, + "loss": 0.20499584197998047, + "step": 157200 + }, + { + "epoch": 52.696875785241645, + "grad_norm": 0.7494113445281982, + "learning_rate": 2.3662981574539363e-05, + "loss": 0.20393524169921876, + "step": 157300 + }, + { + "epoch": 52.73037942876288, + "grad_norm": 0.8550491333007812, + "learning_rate": 2.3646231155778895e-05, + "loss": 0.2046040725708008, + "step": 157400 + }, + { + "epoch": 52.76388307228411, + "grad_norm": 0.7414348721504211, + "learning_rate": 2.3629480737018428e-05, + "loss": 0.2042390251159668, + "step": 157500 + }, + { + "epoch": 52.797386715805345, + "grad_norm": 0.7701572775840759, + "learning_rate": 2.361273031825796e-05, + "loss": 0.20498817443847656, + "step": 157600 + }, + { + "epoch": 52.830890359326574, + "grad_norm": 0.8651624917984009, + "learning_rate": 2.359597989949749e-05, + "loss": 0.2049662399291992, + "step": 157700 + }, + { + "epoch": 52.86439400284781, + "grad_norm": 0.7625434398651123, + "learning_rate": 2.357922948073702e-05, + "loss": 0.20496458053588867, + "step": 157800 + }, + { + "epoch": 52.897897646369046, + "grad_norm": 0.7538461685180664, + "learning_rate": 2.356247906197655e-05, + "loss": 0.20603256225585936, + "step": 157900 + }, + { + "epoch": 52.931401289890275, + "grad_norm": 0.8014910221099854, + "learning_rate": 2.3545728643216082e-05, + "loss": 0.20654550552368164, + "step": 158000 + }, + { + "epoch": 52.96490493341151, + "grad_norm": 0.7098953723907471, + "learning_rate": 2.3529145728643218e-05, + "loss": 0.2058616065979004, + "step": 158100 + }, + { + "epoch": 52.99840857693274, + "grad_norm": 0.7502704858779907, + "learning_rate": 2.3512395309882747e-05, + "loss": 0.20542961120605469, + "step": 158200 + }, + { + "epoch": 53.03182846134517, + "grad_norm": 0.7823647260665894, + "learning_rate": 2.349564489112228e-05, + "loss": 0.19869186401367187, + "step": 158300 + }, + { + "epoch": 53.06533210486641, + "grad_norm": 0.6451433300971985, + "learning_rate": 2.3478894472361808e-05, + "loss": 0.19836278915405273, + "step": 158400 + }, + { + "epoch": 53.098835748387636, + "grad_norm": 0.778315544128418, + "learning_rate": 2.346214405360134e-05, + "loss": 0.196907901763916, + "step": 158500 + }, + { + "epoch": 53.13233939190887, + "grad_norm": 0.7905980944633484, + "learning_rate": 2.3445393634840872e-05, + "loss": 0.19891220092773437, + "step": 158600 + }, + { + "epoch": 53.1658430354301, + "grad_norm": 0.7197417616844177, + "learning_rate": 2.3428643216080404e-05, + "loss": 0.19840576171875, + "step": 158700 + }, + { + "epoch": 53.199346678951336, + "grad_norm": 0.8555814623832703, + "learning_rate": 2.3411892797319933e-05, + "loss": 0.20008617401123047, + "step": 158800 + }, + { + "epoch": 53.23285032247257, + "grad_norm": 0.7590495944023132, + "learning_rate": 2.3395142378559465e-05, + "loss": 0.20077667236328126, + "step": 158900 + }, + { + "epoch": 53.2663539659938, + "grad_norm": 0.7683301568031311, + "learning_rate": 2.3378391959798994e-05, + "loss": 0.19980268478393554, + "step": 159000 + }, + { + "epoch": 53.29985760951504, + "grad_norm": 0.7807407379150391, + "learning_rate": 2.3361641541038526e-05, + "loss": 0.20026128768920898, + "step": 159100 + }, + { + "epoch": 53.333361253036266, + "grad_norm": 0.8405656218528748, + "learning_rate": 2.334489112227806e-05, + "loss": 0.20058374404907225, + "step": 159200 + }, + { + "epoch": 53.3668648965575, + "grad_norm": 0.9434088468551636, + "learning_rate": 2.332814070351759e-05, + "loss": 0.2012481689453125, + "step": 159300 + }, + { + "epoch": 53.40036854007873, + "grad_norm": 0.7459748387336731, + "learning_rate": 2.331139028475712e-05, + "loss": 0.20088954925537109, + "step": 159400 + }, + { + "epoch": 53.433872183599966, + "grad_norm": 0.7078500390052795, + "learning_rate": 2.3294639865996652e-05, + "loss": 0.20286613464355469, + "step": 159500 + }, + { + "epoch": 53.4673758271212, + "grad_norm": 0.8187021017074585, + "learning_rate": 2.327788944723618e-05, + "loss": 0.2021192741394043, + "step": 159600 + }, + { + "epoch": 53.50087947064243, + "grad_norm": 0.8571094274520874, + "learning_rate": 2.3261139028475713e-05, + "loss": 0.20223554611206054, + "step": 159700 + }, + { + "epoch": 53.53438311416367, + "grad_norm": 0.7480899691581726, + "learning_rate": 2.3244388609715245e-05, + "loss": 0.20176963806152343, + "step": 159800 + }, + { + "epoch": 53.567886757684896, + "grad_norm": 0.6709027886390686, + "learning_rate": 2.3227638190954777e-05, + "loss": 0.20310573577880858, + "step": 159900 + }, + { + "epoch": 53.60139040120613, + "grad_norm": 0.8324502110481262, + "learning_rate": 2.3210887772194306e-05, + "loss": 0.20389171600341796, + "step": 160000 + }, + { + "epoch": 53.63489404472736, + "grad_norm": 0.7991625666618347, + "learning_rate": 2.3194304857621442e-05, + "loss": 0.20335477828979492, + "step": 160100 + }, + { + "epoch": 53.6683976882486, + "grad_norm": 0.8041797876358032, + "learning_rate": 2.3177554438860974e-05, + "loss": 0.20338481903076172, + "step": 160200 + }, + { + "epoch": 53.70190133176983, + "grad_norm": 0.7331723570823669, + "learning_rate": 2.3160804020100503e-05, + "loss": 0.20225767135620118, + "step": 160300 + }, + { + "epoch": 53.73540497529106, + "grad_norm": 0.8455171585083008, + "learning_rate": 2.3144053601340035e-05, + "loss": 0.20394590377807617, + "step": 160400 + }, + { + "epoch": 53.7689086188123, + "grad_norm": 0.7466434836387634, + "learning_rate": 2.3127303182579564e-05, + "loss": 0.20405231475830077, + "step": 160500 + }, + { + "epoch": 53.802412262333526, + "grad_norm": 0.7956470847129822, + "learning_rate": 2.3110552763819096e-05, + "loss": 0.20502872467041017, + "step": 160600 + }, + { + "epoch": 53.83591590585476, + "grad_norm": 0.8183136582374573, + "learning_rate": 2.3093802345058625e-05, + "loss": 0.20336063385009764, + "step": 160700 + }, + { + "epoch": 53.869419549376, + "grad_norm": 0.6803155541419983, + "learning_rate": 2.307705192629816e-05, + "loss": 0.20551418304443358, + "step": 160800 + }, + { + "epoch": 53.90292319289723, + "grad_norm": 0.7090324759483337, + "learning_rate": 2.306030150753769e-05, + "loss": 0.20483921051025392, + "step": 160900 + }, + { + "epoch": 53.93642683641846, + "grad_norm": 0.6998985409736633, + "learning_rate": 2.304355108877722e-05, + "loss": 0.20418329238891603, + "step": 161000 + }, + { + "epoch": 53.96993047993969, + "grad_norm": 0.7103771567344666, + "learning_rate": 2.302680067001675e-05, + "loss": 0.20509437561035157, + "step": 161100 + }, + { + "epoch": 54.00335036435212, + "grad_norm": 0.9205202460289001, + "learning_rate": 2.3010050251256283e-05, + "loss": 0.20359134674072266, + "step": 161200 + }, + { + "epoch": 54.03685400787336, + "grad_norm": 0.7976627349853516, + "learning_rate": 2.299329983249581e-05, + "loss": 0.19689498901367186, + "step": 161300 + }, + { + "epoch": 54.07035765139459, + "grad_norm": 0.821431040763855, + "learning_rate": 2.2976549413735344e-05, + "loss": 0.1979433059692383, + "step": 161400 + }, + { + "epoch": 54.10386129491582, + "grad_norm": 0.7001577019691467, + "learning_rate": 2.2959798994974876e-05, + "loss": 0.1971571159362793, + "step": 161500 + }, + { + "epoch": 54.13736493843705, + "grad_norm": 0.8949475884437561, + "learning_rate": 2.2943048576214408e-05, + "loss": 0.19859142303466798, + "step": 161600 + }, + { + "epoch": 54.17086858195829, + "grad_norm": 0.7298758029937744, + "learning_rate": 2.2926298157453937e-05, + "loss": 0.19952430725097656, + "step": 161700 + }, + { + "epoch": 54.204372225479524, + "grad_norm": 0.8920609951019287, + "learning_rate": 2.290954773869347e-05, + "loss": 0.1987653160095215, + "step": 161800 + }, + { + "epoch": 54.23787586900075, + "grad_norm": 0.7720832824707031, + "learning_rate": 2.2892797319932998e-05, + "loss": 0.19959186553955077, + "step": 161900 + }, + { + "epoch": 54.27137951252199, + "grad_norm": 0.7590644359588623, + "learning_rate": 2.287604690117253e-05, + "loss": 0.19991098403930663, + "step": 162000 + }, + { + "epoch": 54.30488315604322, + "grad_norm": 0.7114115357398987, + "learning_rate": 2.2859296482412062e-05, + "loss": 0.20001384735107422, + "step": 162100 + }, + { + "epoch": 54.338386799564454, + "grad_norm": 0.6103782057762146, + "learning_rate": 2.28427135678392e-05, + "loss": 0.2000261116027832, + "step": 162200 + }, + { + "epoch": 54.37189044308568, + "grad_norm": 0.678782045841217, + "learning_rate": 2.2825963149078727e-05, + "loss": 0.2014828109741211, + "step": 162300 + }, + { + "epoch": 54.40539408660692, + "grad_norm": 0.8127717971801758, + "learning_rate": 2.280921273031826e-05, + "loss": 0.1989847755432129, + "step": 162400 + }, + { + "epoch": 54.438897730128154, + "grad_norm": 0.8343021273612976, + "learning_rate": 2.279246231155779e-05, + "loss": 0.20117862701416014, + "step": 162500 + }, + { + "epoch": 54.47240137364938, + "grad_norm": 0.7219998240470886, + "learning_rate": 2.277571189279732e-05, + "loss": 0.20171173095703124, + "step": 162600 + }, + { + "epoch": 54.50590501717062, + "grad_norm": 0.817757785320282, + "learning_rate": 2.2758961474036853e-05, + "loss": 0.20216232299804687, + "step": 162700 + }, + { + "epoch": 54.53940866069185, + "grad_norm": 0.8951203227043152, + "learning_rate": 2.274221105527638e-05, + "loss": 0.20124095916748047, + "step": 162800 + }, + { + "epoch": 54.572912304213084, + "grad_norm": 0.8889951109886169, + "learning_rate": 2.2725460636515914e-05, + "loss": 0.20379587173461913, + "step": 162900 + }, + { + "epoch": 54.60641594773432, + "grad_norm": 0.8064408898353577, + "learning_rate": 2.2708710217755442e-05, + "loss": 0.20114097595214844, + "step": 163000 + }, + { + "epoch": 54.63991959125555, + "grad_norm": 0.6613183617591858, + "learning_rate": 2.2691959798994978e-05, + "loss": 0.20306098937988282, + "step": 163100 + }, + { + "epoch": 54.673423234776784, + "grad_norm": 0.8730353713035583, + "learning_rate": 2.2675209380234507e-05, + "loss": 0.20401838302612305, + "step": 163200 + }, + { + "epoch": 54.70692687829801, + "grad_norm": 0.7803497314453125, + "learning_rate": 2.265845896147404e-05, + "loss": 0.20256214141845702, + "step": 163300 + }, + { + "epoch": 54.74043052181925, + "grad_norm": 0.8791249394416809, + "learning_rate": 2.2641708542713568e-05, + "loss": 0.20302362442016603, + "step": 163400 + }, + { + "epoch": 54.77393416534048, + "grad_norm": 0.8422548770904541, + "learning_rate": 2.26249581239531e-05, + "loss": 0.2037299919128418, + "step": 163500 + }, + { + "epoch": 54.807437808861714, + "grad_norm": 0.6493898630142212, + "learning_rate": 2.260820770519263e-05, + "loss": 0.20337121963500976, + "step": 163600 + }, + { + "epoch": 54.84094145238295, + "grad_norm": 0.8213750720024109, + "learning_rate": 2.259145728643216e-05, + "loss": 0.20318853378295898, + "step": 163700 + }, + { + "epoch": 54.87444509590418, + "grad_norm": 0.9080546498298645, + "learning_rate": 2.2574706867671693e-05, + "loss": 0.20395517349243164, + "step": 163800 + }, + { + "epoch": 54.907948739425414, + "grad_norm": 0.9570611715316772, + "learning_rate": 2.2557956448911226e-05, + "loss": 0.20360021591186522, + "step": 163900 + }, + { + "epoch": 54.94145238294664, + "grad_norm": 0.848283588886261, + "learning_rate": 2.2541206030150754e-05, + "loss": 0.20453887939453125, + "step": 164000 + }, + { + "epoch": 54.97495602646788, + "grad_norm": 0.8141411542892456, + "learning_rate": 2.2524455611390287e-05, + "loss": 0.20472782135009765, + "step": 164100 + }, + { + "epoch": 55.00837591088031, + "grad_norm": 0.6006379723548889, + "learning_rate": 2.2507872696817423e-05, + "loss": 0.2019051742553711, + "step": 164200 + }, + { + "epoch": 55.04187955440154, + "grad_norm": 0.6700722575187683, + "learning_rate": 2.249112227805695e-05, + "loss": 0.1957373046875, + "step": 164300 + }, + { + "epoch": 55.075383197922775, + "grad_norm": 0.7176284193992615, + "learning_rate": 2.2474371859296484e-05, + "loss": 0.1963091278076172, + "step": 164400 + }, + { + "epoch": 55.108886841444004, + "grad_norm": 0.6696990132331848, + "learning_rate": 2.2457621440536016e-05, + "loss": 0.19629579544067383, + "step": 164500 + }, + { + "epoch": 55.14239048496524, + "grad_norm": 0.7618410587310791, + "learning_rate": 2.2440871021775545e-05, + "loss": 0.19794061660766601, + "step": 164600 + }, + { + "epoch": 55.175894128486476, + "grad_norm": 0.6654366850852966, + "learning_rate": 2.2424120603015077e-05, + "loss": 0.1991598892211914, + "step": 164700 + }, + { + "epoch": 55.209397772007705, + "grad_norm": 0.9601466059684753, + "learning_rate": 2.240737018425461e-05, + "loss": 0.19887115478515624, + "step": 164800 + }, + { + "epoch": 55.24290141552894, + "grad_norm": 0.766276478767395, + "learning_rate": 2.2390619765494138e-05, + "loss": 0.19863889694213868, + "step": 164900 + }, + { + "epoch": 55.27640505905017, + "grad_norm": 0.7112438678741455, + "learning_rate": 2.237386934673367e-05, + "loss": 0.19905502319335938, + "step": 165000 + }, + { + "epoch": 55.309908702571406, + "grad_norm": 0.6443644165992737, + "learning_rate": 2.23571189279732e-05, + "loss": 0.19937538146972655, + "step": 165100 + }, + { + "epoch": 55.343412346092634, + "grad_norm": 0.8128257393836975, + "learning_rate": 2.234036850921273e-05, + "loss": 0.19976985931396485, + "step": 165200 + }, + { + "epoch": 55.37691598961387, + "grad_norm": 0.7452270984649658, + "learning_rate": 2.232361809045226e-05, + "loss": 0.19971412658691406, + "step": 165300 + }, + { + "epoch": 55.410419633135106, + "grad_norm": 0.7263997197151184, + "learning_rate": 2.2306867671691795e-05, + "loss": 0.19973045349121094, + "step": 165400 + }, + { + "epoch": 55.443923276656335, + "grad_norm": 0.7190716862678528, + "learning_rate": 2.2290117252931324e-05, + "loss": 0.20105569839477538, + "step": 165500 + }, + { + "epoch": 55.47742692017757, + "grad_norm": 0.7603322863578796, + "learning_rate": 2.2273366834170857e-05, + "loss": 0.20152530670166016, + "step": 165600 + }, + { + "epoch": 55.5109305636988, + "grad_norm": 0.6346855759620667, + "learning_rate": 2.2256616415410385e-05, + "loss": 0.20098255157470704, + "step": 165700 + }, + { + "epoch": 55.544434207220036, + "grad_norm": 0.6980137228965759, + "learning_rate": 2.2239865996649918e-05, + "loss": 0.200362548828125, + "step": 165800 + }, + { + "epoch": 55.57793785074127, + "grad_norm": 0.7294763922691345, + "learning_rate": 2.2223115577889446e-05, + "loss": 0.20156070709228516, + "step": 165900 + }, + { + "epoch": 55.6114414942625, + "grad_norm": 0.7770695090293884, + "learning_rate": 2.2206365159128982e-05, + "loss": 0.20071981430053712, + "step": 166000 + }, + { + "epoch": 55.644945137783736, + "grad_norm": 0.6916683316230774, + "learning_rate": 2.218961474036851e-05, + "loss": 0.2019366455078125, + "step": 166100 + }, + { + "epoch": 55.678448781304965, + "grad_norm": 0.6621333360671997, + "learning_rate": 2.2172864321608043e-05, + "loss": 0.2023235321044922, + "step": 166200 + }, + { + "epoch": 55.7119524248262, + "grad_norm": 0.742199718952179, + "learning_rate": 2.2156281407035176e-05, + "loss": 0.2024928092956543, + "step": 166300 + }, + { + "epoch": 55.74545606834743, + "grad_norm": 0.6829848289489746, + "learning_rate": 2.2139530988274708e-05, + "loss": 0.20235004425048828, + "step": 166400 + }, + { + "epoch": 55.778959711868666, + "grad_norm": 0.6780540943145752, + "learning_rate": 2.212278056951424e-05, + "loss": 0.2021579360961914, + "step": 166500 + }, + { + "epoch": 55.8124633553899, + "grad_norm": 0.7976480722427368, + "learning_rate": 2.210603015075377e-05, + "loss": 0.20198610305786133, + "step": 166600 + }, + { + "epoch": 55.84596699891113, + "grad_norm": 0.7261124849319458, + "learning_rate": 2.20892797319933e-05, + "loss": 0.20343488693237305, + "step": 166700 + }, + { + "epoch": 55.879470642432366, + "grad_norm": 0.7780104279518127, + "learning_rate": 2.207252931323283e-05, + "loss": 0.20361764907836913, + "step": 166800 + }, + { + "epoch": 55.912974285953595, + "grad_norm": 0.6498653292655945, + "learning_rate": 2.2055778894472362e-05, + "loss": 0.20432092666625976, + "step": 166900 + }, + { + "epoch": 55.94647792947483, + "grad_norm": 0.8899915814399719, + "learning_rate": 2.2039028475711894e-05, + "loss": 0.2044738006591797, + "step": 167000 + }, + { + "epoch": 55.97998157299606, + "grad_norm": 0.703768789768219, + "learning_rate": 2.2022278056951426e-05, + "loss": 0.2027983283996582, + "step": 167100 + }, + { + "epoch": 56.01340145740849, + "grad_norm": 0.6999773979187012, + "learning_rate": 2.2005527638190955e-05, + "loss": 0.19977279663085937, + "step": 167200 + }, + { + "epoch": 56.04690510092973, + "grad_norm": 0.7234398126602173, + "learning_rate": 2.1988777219430487e-05, + "loss": 0.19637002944946289, + "step": 167300 + }, + { + "epoch": 56.080408744450956, + "grad_norm": 0.7196521162986755, + "learning_rate": 2.1972026800670016e-05, + "loss": 0.1961227035522461, + "step": 167400 + }, + { + "epoch": 56.11391238797219, + "grad_norm": 0.7114014625549316, + "learning_rate": 2.195527638190955e-05, + "loss": 0.19647451400756835, + "step": 167500 + }, + { + "epoch": 56.14741603149343, + "grad_norm": 0.7853075861930847, + "learning_rate": 2.1938525963149077e-05, + "loss": 0.19717487335205078, + "step": 167600 + }, + { + "epoch": 56.18091967501466, + "grad_norm": 0.6808475852012634, + "learning_rate": 2.1921775544388613e-05, + "loss": 0.19807977676391603, + "step": 167700 + }, + { + "epoch": 56.21442331853589, + "grad_norm": 0.6541131734848022, + "learning_rate": 2.1905025125628142e-05, + "loss": 0.19757047653198243, + "step": 167800 + }, + { + "epoch": 56.24792696205712, + "grad_norm": 0.7412530183792114, + "learning_rate": 2.1888274706867674e-05, + "loss": 0.19785118103027344, + "step": 167900 + }, + { + "epoch": 56.28143060557836, + "grad_norm": 0.7527230978012085, + "learning_rate": 2.1871524288107203e-05, + "loss": 0.19891765594482422, + "step": 168000 + }, + { + "epoch": 56.314934249099586, + "grad_norm": 0.7702918648719788, + "learning_rate": 2.1854773869346735e-05, + "loss": 0.19912639617919922, + "step": 168100 + }, + { + "epoch": 56.34843789262082, + "grad_norm": 0.9410870671272278, + "learning_rate": 2.1838023450586264e-05, + "loss": 0.19807853698730468, + "step": 168200 + }, + { + "epoch": 56.38194153614206, + "grad_norm": 0.7551661133766174, + "learning_rate": 2.18212730318258e-05, + "loss": 0.19915082931518555, + "step": 168300 + }, + { + "epoch": 56.41544517966329, + "grad_norm": 0.8068090081214905, + "learning_rate": 2.1804522613065328e-05, + "loss": 0.19918592453002928, + "step": 168400 + }, + { + "epoch": 56.44894882318452, + "grad_norm": 0.8415470123291016, + "learning_rate": 2.1787939698492464e-05, + "loss": 0.19998703002929688, + "step": 168500 + }, + { + "epoch": 56.48245246670575, + "grad_norm": 0.6690595149993896, + "learning_rate": 2.1771189279731993e-05, + "loss": 0.2002570152282715, + "step": 168600 + }, + { + "epoch": 56.51595611022699, + "grad_norm": 0.8166069984436035, + "learning_rate": 2.1754438860971525e-05, + "loss": 0.20179470062255858, + "step": 168700 + }, + { + "epoch": 56.54945975374822, + "grad_norm": 0.7660237550735474, + "learning_rate": 2.1737688442211057e-05, + "loss": 0.20062505722045898, + "step": 168800 + }, + { + "epoch": 56.58296339726945, + "grad_norm": 0.8243525624275208, + "learning_rate": 2.1720938023450586e-05, + "loss": 0.2011745071411133, + "step": 168900 + }, + { + "epoch": 56.61646704079069, + "grad_norm": 0.7057405114173889, + "learning_rate": 2.170418760469012e-05, + "loss": 0.2007113838195801, + "step": 169000 + }, + { + "epoch": 56.64997068431192, + "grad_norm": 0.8495818376541138, + "learning_rate": 2.1687437185929647e-05, + "loss": 0.20225597381591798, + "step": 169100 + }, + { + "epoch": 56.68347432783315, + "grad_norm": 0.6715584397315979, + "learning_rate": 2.167068676716918e-05, + "loss": 0.20023557662963867, + "step": 169200 + }, + { + "epoch": 56.71697797135438, + "grad_norm": 0.6438612937927246, + "learning_rate": 2.1653936348408708e-05, + "loss": 0.2012915802001953, + "step": 169300 + }, + { + "epoch": 56.75048161487562, + "grad_norm": 0.854141116142273, + "learning_rate": 2.1637185929648244e-05, + "loss": 0.20242010116577147, + "step": 169400 + }, + { + "epoch": 56.783985258396854, + "grad_norm": 0.7206624150276184, + "learning_rate": 2.1620435510887773e-05, + "loss": 0.20245513916015626, + "step": 169500 + }, + { + "epoch": 56.81748890191808, + "grad_norm": 0.6744206547737122, + "learning_rate": 2.1603685092127305e-05, + "loss": 0.20179567337036133, + "step": 169600 + }, + { + "epoch": 56.85099254543932, + "grad_norm": 0.7552564740180969, + "learning_rate": 2.1586934673366834e-05, + "loss": 0.20230600357055664, + "step": 169700 + }, + { + "epoch": 56.88449618896055, + "grad_norm": 0.8486445546150208, + "learning_rate": 2.1570184254606366e-05, + "loss": 0.20117643356323242, + "step": 169800 + }, + { + "epoch": 56.91799983248178, + "grad_norm": 0.5880848169326782, + "learning_rate": 2.1553433835845895e-05, + "loss": 0.20292966842651367, + "step": 169900 + }, + { + "epoch": 56.95150347600301, + "grad_norm": 0.7727257013320923, + "learning_rate": 2.153668341708543e-05, + "loss": 0.2035549736022949, + "step": 170000 + }, + { + "epoch": 56.98500711952425, + "grad_norm": 0.7095633745193481, + "learning_rate": 2.151993299832496e-05, + "loss": 0.20257196426391602, + "step": 170100 + }, + { + "epoch": 57.01842700393668, + "grad_norm": 0.5395858883857727, + "learning_rate": 2.150318257956449e-05, + "loss": 0.19870391845703125, + "step": 170200 + }, + { + "epoch": 57.05193064745791, + "grad_norm": 0.6598409414291382, + "learning_rate": 2.148643216080402e-05, + "loss": 0.1953832244873047, + "step": 170300 + }, + { + "epoch": 57.085434290979144, + "grad_norm": 0.9595073461532593, + "learning_rate": 2.1469681742043552e-05, + "loss": 0.19685894012451172, + "step": 170400 + }, + { + "epoch": 57.11893793450038, + "grad_norm": 0.5701305866241455, + "learning_rate": 2.1453098827470688e-05, + "loss": 0.19607532501220704, + "step": 170500 + }, + { + "epoch": 57.15244157802161, + "grad_norm": 0.6835476160049438, + "learning_rate": 2.143634840871022e-05, + "loss": 0.1967610549926758, + "step": 170600 + }, + { + "epoch": 57.185945221542845, + "grad_norm": 0.5928249955177307, + "learning_rate": 2.141959798994975e-05, + "loss": 0.19592588424682617, + "step": 170700 + }, + { + "epoch": 57.219448865064074, + "grad_norm": 0.7820493578910828, + "learning_rate": 2.140284757118928e-05, + "loss": 0.19711441040039063, + "step": 170800 + }, + { + "epoch": 57.25295250858531, + "grad_norm": 0.7720481753349304, + "learning_rate": 2.138609715242881e-05, + "loss": 0.19725584030151366, + "step": 170900 + }, + { + "epoch": 57.28645615210654, + "grad_norm": 0.7418736219406128, + "learning_rate": 2.1369346733668343e-05, + "loss": 0.19777252197265624, + "step": 171000 + }, + { + "epoch": 57.319959795627774, + "grad_norm": 0.7071073055267334, + "learning_rate": 2.1352596314907875e-05, + "loss": 0.19808469772338866, + "step": 171100 + }, + { + "epoch": 57.35346343914901, + "grad_norm": 0.7375087738037109, + "learning_rate": 2.1335845896147404e-05, + "loss": 0.19767127990722655, + "step": 171200 + }, + { + "epoch": 57.38696708267024, + "grad_norm": 0.8487064838409424, + "learning_rate": 2.1319095477386936e-05, + "loss": 0.19986190795898437, + "step": 171300 + }, + { + "epoch": 57.420470726191475, + "grad_norm": 0.8072951436042786, + "learning_rate": 2.1302345058626465e-05, + "loss": 0.19746374130249023, + "step": 171400 + }, + { + "epoch": 57.453974369712704, + "grad_norm": 0.8079342842102051, + "learning_rate": 2.1285594639865997e-05, + "loss": 0.19960382461547851, + "step": 171500 + }, + { + "epoch": 57.48747801323394, + "grad_norm": 0.8104588389396667, + "learning_rate": 2.126884422110553e-05, + "loss": 0.20039827346801758, + "step": 171600 + }, + { + "epoch": 57.520981656755175, + "grad_norm": 0.753643274307251, + "learning_rate": 2.125209380234506e-05, + "loss": 0.1997998046875, + "step": 171700 + }, + { + "epoch": 57.554485300276404, + "grad_norm": 0.8228442668914795, + "learning_rate": 2.123534338358459e-05, + "loss": 0.19931909561157227, + "step": 171800 + }, + { + "epoch": 57.58798894379764, + "grad_norm": 0.8214404582977295, + "learning_rate": 2.1218592964824122e-05, + "loss": 0.19911916732788085, + "step": 171900 + }, + { + "epoch": 57.62149258731887, + "grad_norm": 0.6019760370254517, + "learning_rate": 2.120184254606365e-05, + "loss": 0.2016813850402832, + "step": 172000 + }, + { + "epoch": 57.654996230840105, + "grad_norm": 0.6880699396133423, + "learning_rate": 2.1185092127303183e-05, + "loss": 0.19929651260375977, + "step": 172100 + }, + { + "epoch": 57.688499874361334, + "grad_norm": 0.69806969165802, + "learning_rate": 2.1168341708542712e-05, + "loss": 0.2015073585510254, + "step": 172200 + }, + { + "epoch": 57.72200351788257, + "grad_norm": 0.6724705100059509, + "learning_rate": 2.1151591289782248e-05, + "loss": 0.20101812362670898, + "step": 172300 + }, + { + "epoch": 57.755507161403806, + "grad_norm": 0.8854671716690063, + "learning_rate": 2.1134840871021777e-05, + "loss": 0.20211099624633788, + "step": 172400 + }, + { + "epoch": 57.789010804925034, + "grad_norm": 0.7592790722846985, + "learning_rate": 2.111809045226131e-05, + "loss": 0.20073314666748046, + "step": 172500 + }, + { + "epoch": 57.82251444844627, + "grad_norm": 0.7253840565681458, + "learning_rate": 2.1101340033500838e-05, + "loss": 0.2017323112487793, + "step": 172600 + }, + { + "epoch": 57.8560180919675, + "grad_norm": 0.7471290230751038, + "learning_rate": 2.1084757118927977e-05, + "loss": 0.20244625091552734, + "step": 172700 + }, + { + "epoch": 57.889521735488735, + "grad_norm": 0.8345232009887695, + "learning_rate": 2.1068006700167506e-05, + "loss": 0.20169891357421876, + "step": 172800 + }, + { + "epoch": 57.923025379009964, + "grad_norm": 0.8078505396842957, + "learning_rate": 2.1051256281407038e-05, + "loss": 0.20322864532470702, + "step": 172900 + }, + { + "epoch": 57.9565290225312, + "grad_norm": 0.8274567127227783, + "learning_rate": 2.1034505862646567e-05, + "loss": 0.20089473724365234, + "step": 173000 + }, + { + "epoch": 57.990032666052436, + "grad_norm": 0.6914857029914856, + "learning_rate": 2.10177554438861e-05, + "loss": 0.20304906845092774, + "step": 173100 + }, + { + "epoch": 58.02345255046486, + "grad_norm": 0.6851274371147156, + "learning_rate": 2.1001005025125628e-05, + "loss": 0.1973126220703125, + "step": 173200 + }, + { + "epoch": 58.056956193986096, + "grad_norm": 0.5594986081123352, + "learning_rate": 2.098425460636516e-05, + "loss": 0.19482255935668946, + "step": 173300 + }, + { + "epoch": 58.09045983750733, + "grad_norm": 0.6892759203910828, + "learning_rate": 2.0967504187604692e-05, + "loss": 0.19560087203979493, + "step": 173400 + }, + { + "epoch": 58.12396348102856, + "grad_norm": 0.6023077368736267, + "learning_rate": 2.095075376884422e-05, + "loss": 0.1957664108276367, + "step": 173500 + }, + { + "epoch": 58.1574671245498, + "grad_norm": 0.6524220108985901, + "learning_rate": 2.0934003350083753e-05, + "loss": 0.19625062942504884, + "step": 173600 + }, + { + "epoch": 58.190970768071026, + "grad_norm": 0.9801384806632996, + "learning_rate": 2.0917252931323282e-05, + "loss": 0.1955522346496582, + "step": 173700 + }, + { + "epoch": 58.22447441159226, + "grad_norm": 0.8744773864746094, + "learning_rate": 2.0900502512562814e-05, + "loss": 0.19638490676879883, + "step": 173800 + }, + { + "epoch": 58.25797805511349, + "grad_norm": 0.6583356261253357, + "learning_rate": 2.0883752093802346e-05, + "loss": 0.1966208267211914, + "step": 173900 + }, + { + "epoch": 58.291481698634726, + "grad_norm": 0.6736335754394531, + "learning_rate": 2.086700167504188e-05, + "loss": 0.1969454765319824, + "step": 174000 + }, + { + "epoch": 58.32498534215596, + "grad_norm": 0.9140983819961548, + "learning_rate": 2.0850251256281408e-05, + "loss": 0.19811725616455078, + "step": 174100 + }, + { + "epoch": 58.35848898567719, + "grad_norm": 0.825357973575592, + "learning_rate": 2.083350083752094e-05, + "loss": 0.19800840377807616, + "step": 174200 + }, + { + "epoch": 58.39199262919843, + "grad_norm": 0.8800440430641174, + "learning_rate": 2.081675041876047e-05, + "loss": 0.1982166862487793, + "step": 174300 + }, + { + "epoch": 58.425496272719656, + "grad_norm": 0.7681903839111328, + "learning_rate": 2.08e-05, + "loss": 0.199152889251709, + "step": 174400 + }, + { + "epoch": 58.45899991624089, + "grad_norm": 0.7516371607780457, + "learning_rate": 2.0783249581239533e-05, + "loss": 0.1978353500366211, + "step": 174500 + }, + { + "epoch": 58.49250355976213, + "grad_norm": 0.7671756148338318, + "learning_rate": 2.0766499162479065e-05, + "loss": 0.19854022979736327, + "step": 174600 + }, + { + "epoch": 58.526007203283356, + "grad_norm": 0.6201814413070679, + "learning_rate": 2.0749916247906198e-05, + "loss": 0.19920494079589843, + "step": 174700 + }, + { + "epoch": 58.55951084680459, + "grad_norm": 0.8798500299453735, + "learning_rate": 2.073316582914573e-05, + "loss": 0.20001602172851562, + "step": 174800 + }, + { + "epoch": 58.59301449032582, + "grad_norm": 0.5957375168800354, + "learning_rate": 2.071641541038526e-05, + "loss": 0.1991959571838379, + "step": 174900 + }, + { + "epoch": 58.62651813384706, + "grad_norm": 0.84260493516922, + "learning_rate": 2.069966499162479e-05, + "loss": 0.20048974990844726, + "step": 175000 + }, + { + "epoch": 58.660021777368286, + "grad_norm": 0.6994961500167847, + "learning_rate": 2.0682914572864323e-05, + "loss": 0.19937900543212891, + "step": 175100 + }, + { + "epoch": 58.69352542088952, + "grad_norm": 0.7235148549079895, + "learning_rate": 2.0666164154103852e-05, + "loss": 0.20066232681274415, + "step": 175200 + }, + { + "epoch": 58.72702906441076, + "grad_norm": 0.7542918920516968, + "learning_rate": 2.0649413735343384e-05, + "loss": 0.20042539596557618, + "step": 175300 + }, + { + "epoch": 58.760532707931986, + "grad_norm": 0.6566546559333801, + "learning_rate": 2.0632663316582916e-05, + "loss": 0.20085683822631836, + "step": 175400 + }, + { + "epoch": 58.79403635145322, + "grad_norm": 0.7434055209159851, + "learning_rate": 2.0615912897822445e-05, + "loss": 0.20140844345092773, + "step": 175500 + }, + { + "epoch": 58.82753999497445, + "grad_norm": 0.6652776002883911, + "learning_rate": 2.0599162479061977e-05, + "loss": 0.2017723274230957, + "step": 175600 + }, + { + "epoch": 58.86104363849569, + "grad_norm": 0.7438784837722778, + "learning_rate": 2.058241206030151e-05, + "loss": 0.20224170684814452, + "step": 175700 + }, + { + "epoch": 58.894547282016916, + "grad_norm": 0.842480480670929, + "learning_rate": 2.056566164154104e-05, + "loss": 0.2010243797302246, + "step": 175800 + }, + { + "epoch": 58.92805092553815, + "grad_norm": 0.777508020401001, + "learning_rate": 2.054891122278057e-05, + "loss": 0.20120513916015625, + "step": 175900 + }, + { + "epoch": 58.96155456905939, + "grad_norm": 0.7863830327987671, + "learning_rate": 2.05321608040201e-05, + "loss": 0.20216922760009765, + "step": 176000 + }, + { + "epoch": 58.995058212580616, + "grad_norm": 0.720203161239624, + "learning_rate": 2.051541038525963e-05, + "loss": 0.20130184173583984, + "step": 176100 + }, + { + "epoch": 59.02847809699305, + "grad_norm": 0.7132588028907776, + "learning_rate": 2.0498659966499164e-05, + "loss": 0.1958163070678711, + "step": 176200 + }, + { + "epoch": 59.061981740514284, + "grad_norm": 0.6386404037475586, + "learning_rate": 2.0481909547738696e-05, + "loss": 0.19423696517944336, + "step": 176300 + }, + { + "epoch": 59.09548538403551, + "grad_norm": 0.5817972421646118, + "learning_rate": 2.0465159128978225e-05, + "loss": 0.19470659255981446, + "step": 176400 + }, + { + "epoch": 59.12898902755675, + "grad_norm": 0.5699682831764221, + "learning_rate": 2.0448408710217757e-05, + "loss": 0.19486974716186523, + "step": 176500 + }, + { + "epoch": 59.16249267107798, + "grad_norm": 0.6849201321601868, + "learning_rate": 2.0431658291457286e-05, + "loss": 0.19612747192382812, + "step": 176600 + }, + { + "epoch": 59.19599631459921, + "grad_norm": 0.7165812253952026, + "learning_rate": 2.0414907872696818e-05, + "loss": 0.19578189849853517, + "step": 176700 + }, + { + "epoch": 59.22949995812044, + "grad_norm": 0.7262609004974365, + "learning_rate": 2.0398324958123954e-05, + "loss": 0.19529666900634765, + "step": 176800 + }, + { + "epoch": 59.26300360164168, + "grad_norm": 0.7515226006507874, + "learning_rate": 2.0381574539363486e-05, + "loss": 0.1967916488647461, + "step": 176900 + }, + { + "epoch": 59.296507245162914, + "grad_norm": 0.675984799861908, + "learning_rate": 2.0364824120603015e-05, + "loss": 0.19698150634765624, + "step": 177000 + }, + { + "epoch": 59.33001088868414, + "grad_norm": 0.9520745277404785, + "learning_rate": 2.0348073701842547e-05, + "loss": 0.19764524459838867, + "step": 177100 + }, + { + "epoch": 59.36351453220538, + "grad_norm": 0.6780461072921753, + "learning_rate": 2.033132328308208e-05, + "loss": 0.19658233642578124, + "step": 177200 + }, + { + "epoch": 59.39701817572661, + "grad_norm": 0.6440721750259399, + "learning_rate": 2.031457286432161e-05, + "loss": 0.19660577774047852, + "step": 177300 + }, + { + "epoch": 59.43052181924784, + "grad_norm": 0.7188435196876526, + "learning_rate": 2.029782244556114e-05, + "loss": 0.19726680755615233, + "step": 177400 + }, + { + "epoch": 59.46402546276908, + "grad_norm": 0.680558979511261, + "learning_rate": 2.028107202680067e-05, + "loss": 0.19743047714233397, + "step": 177500 + }, + { + "epoch": 59.49752910629031, + "grad_norm": 0.7961515188217163, + "learning_rate": 2.02643216080402e-05, + "loss": 0.19772005081176758, + "step": 177600 + }, + { + "epoch": 59.531032749811544, + "grad_norm": 0.6180649995803833, + "learning_rate": 2.024757118927973e-05, + "loss": 0.1990138053894043, + "step": 177700 + }, + { + "epoch": 59.56453639333277, + "grad_norm": 0.7766602039337158, + "learning_rate": 2.0230820770519263e-05, + "loss": 0.19866539001464845, + "step": 177800 + }, + { + "epoch": 59.59804003685401, + "grad_norm": 0.7700449824333191, + "learning_rate": 2.0214070351758795e-05, + "loss": 0.198470516204834, + "step": 177900 + }, + { + "epoch": 59.63154368037524, + "grad_norm": 0.7601004838943481, + "learning_rate": 2.0197319932998327e-05, + "loss": 0.20065229415893554, + "step": 178000 + }, + { + "epoch": 59.665047323896474, + "grad_norm": 0.8511313796043396, + "learning_rate": 2.0180569514237856e-05, + "loss": 0.20094491958618163, + "step": 178100 + }, + { + "epoch": 59.69855096741771, + "grad_norm": 0.6393927931785583, + "learning_rate": 2.0163819095477388e-05, + "loss": 0.19916282653808592, + "step": 178200 + }, + { + "epoch": 59.73205461093894, + "grad_norm": 0.8600590229034424, + "learning_rate": 2.0147068676716917e-05, + "loss": 0.19939659118652345, + "step": 178300 + }, + { + "epoch": 59.765558254460174, + "grad_norm": 0.642556369304657, + "learning_rate": 2.013031825795645e-05, + "loss": 0.2003472137451172, + "step": 178400 + }, + { + "epoch": 59.7990618979814, + "grad_norm": 0.7224367260932922, + "learning_rate": 2.011356783919598e-05, + "loss": 0.19969842910766603, + "step": 178500 + }, + { + "epoch": 59.83256554150264, + "grad_norm": 0.7427322268486023, + "learning_rate": 2.0096817420435514e-05, + "loss": 0.19960586547851564, + "step": 178600 + }, + { + "epoch": 59.866069185023875, + "grad_norm": 0.7013212442398071, + "learning_rate": 2.0080067001675042e-05, + "loss": 0.2002570915222168, + "step": 178700 + }, + { + "epoch": 59.899572828545104, + "grad_norm": 0.852935791015625, + "learning_rate": 2.0063484087102178e-05, + "loss": 0.2009134292602539, + "step": 178800 + }, + { + "epoch": 59.93307647206634, + "grad_norm": 0.875970184803009, + "learning_rate": 2.004673366834171e-05, + "loss": 0.20090538024902344, + "step": 178900 + }, + { + "epoch": 59.96658011558757, + "grad_norm": 0.7883792519569397, + "learning_rate": 2.0029983249581243e-05, + "loss": 0.20025901794433593, + "step": 179000 + }, + { + "epoch": 60.0, + "grad_norm": 0.8162919878959656, + "learning_rate": 2.001323283082077e-05, + "loss": 0.2026140022277832, + "step": 179100 + }, + { + "epoch": 60.033503643521236, + "grad_norm": 0.6830130219459534, + "learning_rate": 1.9996482412060304e-05, + "loss": 0.19378650665283204, + "step": 179200 + }, + { + "epoch": 60.067007287042465, + "grad_norm": 0.6668891906738281, + "learning_rate": 1.9979731993299833e-05, + "loss": 0.19362451553344726, + "step": 179300 + }, + { + "epoch": 60.1005109305637, + "grad_norm": 0.7308112382888794, + "learning_rate": 1.9962981574539365e-05, + "loss": 0.19429069519042969, + "step": 179400 + }, + { + "epoch": 60.13401457408493, + "grad_norm": 0.7730607390403748, + "learning_rate": 1.9946231155778897e-05, + "loss": 0.19423646926879884, + "step": 179500 + }, + { + "epoch": 60.167518217606165, + "grad_norm": 0.624254047870636, + "learning_rate": 1.9929480737018426e-05, + "loss": 0.19518238067626953, + "step": 179600 + }, + { + "epoch": 60.201021861127394, + "grad_norm": 0.917464017868042, + "learning_rate": 1.9912730318257958e-05, + "loss": 0.1952109718322754, + "step": 179700 + }, + { + "epoch": 60.23452550464863, + "grad_norm": 0.7360493540763855, + "learning_rate": 1.9895979899497487e-05, + "loss": 0.19446746826171876, + "step": 179800 + }, + { + "epoch": 60.268029148169866, + "grad_norm": 0.7760195732116699, + "learning_rate": 1.987922948073702e-05, + "loss": 0.1961222457885742, + "step": 179900 + }, + { + "epoch": 60.301532791691095, + "grad_norm": 0.7055202126502991, + "learning_rate": 1.9862479061976548e-05, + "loss": 0.19603208541870118, + "step": 180000 + }, + { + "epoch": 60.33503643521233, + "grad_norm": 0.7124981880187988, + "learning_rate": 1.9845728643216083e-05, + "loss": 0.19644119262695312, + "step": 180100 + }, + { + "epoch": 60.36854007873356, + "grad_norm": 0.6831589341163635, + "learning_rate": 1.9828978224455612e-05, + "loss": 0.19591159820556642, + "step": 180200 + }, + { + "epoch": 60.402043722254795, + "grad_norm": 0.6932199001312256, + "learning_rate": 1.9812227805695144e-05, + "loss": 0.19705738067626954, + "step": 180300 + }, + { + "epoch": 60.43554736577603, + "grad_norm": 0.6487602591514587, + "learning_rate": 1.9795477386934673e-05, + "loss": 0.19764183044433595, + "step": 180400 + }, + { + "epoch": 60.46905100929726, + "grad_norm": 0.760643720626831, + "learning_rate": 1.9778726968174205e-05, + "loss": 0.19725812911987306, + "step": 180500 + }, + { + "epoch": 60.502554652818496, + "grad_norm": 0.8425685167312622, + "learning_rate": 1.9761976549413734e-05, + "loss": 0.19825616836547852, + "step": 180600 + }, + { + "epoch": 60.536058296339725, + "grad_norm": 0.7290912866592407, + "learning_rate": 1.9745226130653267e-05, + "loss": 0.19793628692626952, + "step": 180700 + }, + { + "epoch": 60.56956193986096, + "grad_norm": 0.7724213004112244, + "learning_rate": 1.9728643216080402e-05, + "loss": 0.19957996368408204, + "step": 180800 + }, + { + "epoch": 60.60306558338219, + "grad_norm": 0.8002983927726746, + "learning_rate": 1.9711892797319935e-05, + "loss": 0.19841293334960938, + "step": 180900 + }, + { + "epoch": 60.636569226903426, + "grad_norm": 0.8721250295639038, + "learning_rate": 1.9695142378559463e-05, + "loss": 0.1982705307006836, + "step": 181000 + }, + { + "epoch": 60.67007287042466, + "grad_norm": 0.9120819568634033, + "learning_rate": 1.9678391959798996e-05, + "loss": 0.19878549575805665, + "step": 181100 + }, + { + "epoch": 60.70357651394589, + "grad_norm": 0.7080308198928833, + "learning_rate": 1.9661641541038528e-05, + "loss": 0.19935232162475586, + "step": 181200 + }, + { + "epoch": 60.737080157467126, + "grad_norm": 0.7024886012077332, + "learning_rate": 1.964489112227806e-05, + "loss": 0.19872413635253905, + "step": 181300 + }, + { + "epoch": 60.770583800988355, + "grad_norm": 0.6947377324104309, + "learning_rate": 1.962814070351759e-05, + "loss": 0.19973325729370117, + "step": 181400 + }, + { + "epoch": 60.80408744450959, + "grad_norm": 0.7923586964607239, + "learning_rate": 1.961139028475712e-05, + "loss": 0.1994416046142578, + "step": 181500 + }, + { + "epoch": 60.83759108803083, + "grad_norm": 0.7876746654510498, + "learning_rate": 1.959463986599665e-05, + "loss": 0.20001832962036134, + "step": 181600 + }, + { + "epoch": 60.871094731552056, + "grad_norm": 0.6669028401374817, + "learning_rate": 1.9577889447236182e-05, + "loss": 0.19931718826293945, + "step": 181700 + }, + { + "epoch": 60.90459837507329, + "grad_norm": 0.8376245498657227, + "learning_rate": 1.9561139028475714e-05, + "loss": 0.19980306625366212, + "step": 181800 + }, + { + "epoch": 60.93810201859452, + "grad_norm": 0.8353832960128784, + "learning_rate": 1.9544388609715243e-05, + "loss": 0.19981901168823243, + "step": 181900 + }, + { + "epoch": 60.971605662115756, + "grad_norm": 0.7106568217277527, + "learning_rate": 1.9527638190954775e-05, + "loss": 0.19973602294921874, + "step": 182000 + }, + { + "epoch": 61.00502554652819, + "grad_norm": 0.6675083637237549, + "learning_rate": 1.9510887772194304e-05, + "loss": 0.20030658721923827, + "step": 182100 + }, + { + "epoch": 61.03852919004942, + "grad_norm": 0.6827961206436157, + "learning_rate": 1.9494137353433836e-05, + "loss": 0.19295509338378905, + "step": 182200 + }, + { + "epoch": 61.07203283357065, + "grad_norm": 0.8352850675582886, + "learning_rate": 1.9477386934673365e-05, + "loss": 0.19397199630737305, + "step": 182300 + }, + { + "epoch": 61.10553647709188, + "grad_norm": 0.6060226559638977, + "learning_rate": 1.94606365159129e-05, + "loss": 0.19397262573242188, + "step": 182400 + }, + { + "epoch": 61.13904012061312, + "grad_norm": 0.6782211065292358, + "learning_rate": 1.944388609715243e-05, + "loss": 0.1942317581176758, + "step": 182500 + }, + { + "epoch": 61.172543764134346, + "grad_norm": 0.6505800485610962, + "learning_rate": 1.9427135678391962e-05, + "loss": 0.19382064819335937, + "step": 182600 + }, + { + "epoch": 61.20604740765558, + "grad_norm": 0.6470309495925903, + "learning_rate": 1.941038525963149e-05, + "loss": 0.19352495193481445, + "step": 182700 + }, + { + "epoch": 61.23955105117682, + "grad_norm": 0.7394313216209412, + "learning_rate": 1.9393634840871023e-05, + "loss": 0.19527189254760743, + "step": 182800 + }, + { + "epoch": 61.27305469469805, + "grad_norm": 0.6375427842140198, + "learning_rate": 1.937705192629816e-05, + "loss": 0.19507966995239256, + "step": 182900 + }, + { + "epoch": 61.30655833821928, + "grad_norm": 0.7445289492607117, + "learning_rate": 1.936030150753769e-05, + "loss": 0.19499330520629882, + "step": 183000 + }, + { + "epoch": 61.34006198174051, + "grad_norm": 0.6758365631103516, + "learning_rate": 1.934355108877722e-05, + "loss": 0.19620643615722655, + "step": 183100 + }, + { + "epoch": 61.37356562526175, + "grad_norm": 0.682247519493103, + "learning_rate": 1.9326800670016752e-05, + "loss": 0.19641605377197266, + "step": 183200 + }, + { + "epoch": 61.40706926878298, + "grad_norm": 0.6681833267211914, + "learning_rate": 1.931005025125628e-05, + "loss": 0.1975366973876953, + "step": 183300 + }, + { + "epoch": 61.44057291230421, + "grad_norm": 0.6850043535232544, + "learning_rate": 1.9293299832495813e-05, + "loss": 0.1968943405151367, + "step": 183400 + }, + { + "epoch": 61.47407655582545, + "grad_norm": 0.769083559513092, + "learning_rate": 1.9276549413735345e-05, + "loss": 0.19727476119995116, + "step": 183500 + }, + { + "epoch": 61.50758019934668, + "grad_norm": 0.5792109370231628, + "learning_rate": 1.9259798994974878e-05, + "loss": 0.19699573516845703, + "step": 183600 + }, + { + "epoch": 61.54108384286791, + "grad_norm": 0.7564917206764221, + "learning_rate": 1.9243048576214406e-05, + "loss": 0.19748397827148437, + "step": 183700 + }, + { + "epoch": 61.57458748638914, + "grad_norm": 0.6447178721427917, + "learning_rate": 1.922629815745394e-05, + "loss": 0.1989639663696289, + "step": 183800 + }, + { + "epoch": 61.60809112991038, + "grad_norm": 0.5742529034614563, + "learning_rate": 1.9209547738693467e-05, + "loss": 0.19746633529663085, + "step": 183900 + }, + { + "epoch": 61.64159477343161, + "grad_norm": 0.7394194006919861, + "learning_rate": 1.9192797319933e-05, + "loss": 0.19821161270141602, + "step": 184000 + }, + { + "epoch": 61.67509841695284, + "grad_norm": 0.6600359678268433, + "learning_rate": 1.9176046901172532e-05, + "loss": 0.1982976722717285, + "step": 184100 + }, + { + "epoch": 61.70860206047408, + "grad_norm": 0.5898655652999878, + "learning_rate": 1.915929648241206e-05, + "loss": 0.19801706314086914, + "step": 184200 + }, + { + "epoch": 61.74210570399531, + "grad_norm": 0.7864146828651428, + "learning_rate": 1.9142546063651593e-05, + "loss": 0.19834369659423828, + "step": 184300 + }, + { + "epoch": 61.77560934751654, + "grad_norm": 0.783885657787323, + "learning_rate": 1.912579564489112e-05, + "loss": 0.19943191528320312, + "step": 184400 + }, + { + "epoch": 61.80911299103778, + "grad_norm": 0.7565669417381287, + "learning_rate": 1.9109045226130654e-05, + "loss": 0.19939350128173827, + "step": 184500 + }, + { + "epoch": 61.84261663455901, + "grad_norm": 0.663527250289917, + "learning_rate": 1.9092294807370183e-05, + "loss": 0.1986519241333008, + "step": 184600 + }, + { + "epoch": 61.87612027808024, + "grad_norm": 0.7392609715461731, + "learning_rate": 1.9075544388609718e-05, + "loss": 0.19995809555053712, + "step": 184700 + }, + { + "epoch": 61.90962392160147, + "grad_norm": 0.7164571285247803, + "learning_rate": 1.9058793969849247e-05, + "loss": 0.1989099884033203, + "step": 184800 + }, + { + "epoch": 61.94312756512271, + "grad_norm": 0.7456199526786804, + "learning_rate": 1.904204355108878e-05, + "loss": 0.19987648010253906, + "step": 184900 + }, + { + "epoch": 61.97663120864394, + "grad_norm": 0.6419495344161987, + "learning_rate": 1.9025460636515912e-05, + "loss": 0.1988045310974121, + "step": 185000 + }, + { + "epoch": 62.01005109305637, + "grad_norm": 0.6616671085357666, + "learning_rate": 1.9008710217755447e-05, + "loss": 0.19750312805175782, + "step": 185100 + }, + { + "epoch": 62.043554736577605, + "grad_norm": 0.667393147945404, + "learning_rate": 1.8991959798994976e-05, + "loss": 0.19275453567504883, + "step": 185200 + }, + { + "epoch": 62.07705838009883, + "grad_norm": 0.75070720911026, + "learning_rate": 1.897520938023451e-05, + "loss": 0.19383440017700196, + "step": 185300 + }, + { + "epoch": 62.11056202362007, + "grad_norm": 0.6957711577415466, + "learning_rate": 1.8958458961474037e-05, + "loss": 0.19298004150390624, + "step": 185400 + }, + { + "epoch": 62.1440656671413, + "grad_norm": 0.7118070721626282, + "learning_rate": 1.894170854271357e-05, + "loss": 0.19372062683105468, + "step": 185500 + }, + { + "epoch": 62.177569310662534, + "grad_norm": 0.6568797826766968, + "learning_rate": 1.8924958123953098e-05, + "loss": 0.19365182876586914, + "step": 185600 + }, + { + "epoch": 62.21107295418377, + "grad_norm": 0.6880303621292114, + "learning_rate": 1.890820770519263e-05, + "loss": 0.1950899887084961, + "step": 185700 + }, + { + "epoch": 62.244576597705, + "grad_norm": 0.6604440808296204, + "learning_rate": 1.8891457286432163e-05, + "loss": 0.19547990798950196, + "step": 185800 + }, + { + "epoch": 62.278080241226235, + "grad_norm": 0.7336467504501343, + "learning_rate": 1.887470686767169e-05, + "loss": 0.19477594375610352, + "step": 185900 + }, + { + "epoch": 62.31158388474746, + "grad_norm": 0.6443986296653748, + "learning_rate": 1.8857956448911224e-05, + "loss": 0.19533748626708985, + "step": 186000 + }, + { + "epoch": 62.3450875282687, + "grad_norm": 0.617526650428772, + "learning_rate": 1.8841206030150753e-05, + "loss": 0.19593568801879882, + "step": 186100 + }, + { + "epoch": 62.378591171789935, + "grad_norm": 0.6622116565704346, + "learning_rate": 1.8824455611390285e-05, + "loss": 0.19563573837280274, + "step": 186200 + }, + { + "epoch": 62.412094815311164, + "grad_norm": 0.6662573218345642, + "learning_rate": 1.8807705192629817e-05, + "loss": 0.19559219360351562, + "step": 186300 + }, + { + "epoch": 62.4455984588324, + "grad_norm": 0.7779511213302612, + "learning_rate": 1.879095477386935e-05, + "loss": 0.19570056915283204, + "step": 186400 + }, + { + "epoch": 62.47910210235363, + "grad_norm": 0.6488950848579407, + "learning_rate": 1.8774204355108878e-05, + "loss": 0.19671340942382812, + "step": 186500 + }, + { + "epoch": 62.512605745874865, + "grad_norm": 0.6302568316459656, + "learning_rate": 1.875745393634841e-05, + "loss": 0.19646032333374022, + "step": 186600 + }, + { + "epoch": 62.54610938939609, + "grad_norm": 0.6451594829559326, + "learning_rate": 1.874070351758794e-05, + "loss": 0.19605607986450196, + "step": 186700 + }, + { + "epoch": 62.57961303291733, + "grad_norm": 0.7226560711860657, + "learning_rate": 1.872395309882747e-05, + "loss": 0.19651512145996095, + "step": 186800 + }, + { + "epoch": 62.613116676438565, + "grad_norm": 0.7879689335823059, + "learning_rate": 1.8707202680067e-05, + "loss": 0.1969459342956543, + "step": 186900 + }, + { + "epoch": 62.646620319959794, + "grad_norm": 0.859521746635437, + "learning_rate": 1.869061976549414e-05, + "loss": 0.19710365295410157, + "step": 187000 + }, + { + "epoch": 62.68012396348103, + "grad_norm": 0.7182042002677917, + "learning_rate": 1.8673869346733668e-05, + "loss": 0.1975703239440918, + "step": 187100 + }, + { + "epoch": 62.71362760700226, + "grad_norm": 0.7117863893508911, + "learning_rate": 1.86571189279732e-05, + "loss": 0.19800674438476562, + "step": 187200 + }, + { + "epoch": 62.747131250523495, + "grad_norm": 0.8124322295188904, + "learning_rate": 1.864036850921273e-05, + "loss": 0.1976396369934082, + "step": 187300 + }, + { + "epoch": 62.78063489404473, + "grad_norm": 0.8003492951393127, + "learning_rate": 1.8623618090452265e-05, + "loss": 0.19788177490234374, + "step": 187400 + }, + { + "epoch": 62.81413853756596, + "grad_norm": 0.7933449149131775, + "learning_rate": 1.8606867671691794e-05, + "loss": 0.19794113159179688, + "step": 187500 + }, + { + "epoch": 62.847642181087195, + "grad_norm": 0.743191123008728, + "learning_rate": 1.8590117252931326e-05, + "loss": 0.19989189147949218, + "step": 187600 + }, + { + "epoch": 62.881145824608424, + "grad_norm": 0.662010669708252, + "learning_rate": 1.8573366834170855e-05, + "loss": 0.19854124069213866, + "step": 187700 + }, + { + "epoch": 62.91464946812966, + "grad_norm": 0.8278148174285889, + "learning_rate": 1.8556616415410387e-05, + "loss": 0.19968727111816406, + "step": 187800 + }, + { + "epoch": 62.94815311165089, + "grad_norm": 0.804415762424469, + "learning_rate": 1.8539865996649916e-05, + "loss": 0.19895530700683595, + "step": 187900 + }, + { + "epoch": 62.981656755172125, + "grad_norm": 0.7077623605728149, + "learning_rate": 1.8523115577889448e-05, + "loss": 0.19983070373535156, + "step": 188000 + }, + { + "epoch": 63.01507663958456, + "grad_norm": 0.5905118584632874, + "learning_rate": 1.850636515912898e-05, + "loss": 0.1953744888305664, + "step": 188100 + }, + { + "epoch": 63.048580283105785, + "grad_norm": 0.5887221693992615, + "learning_rate": 1.848961474036851e-05, + "loss": 0.19252130508422852, + "step": 188200 + }, + { + "epoch": 63.08208392662702, + "grad_norm": 0.6429964900016785, + "learning_rate": 1.847286432160804e-05, + "loss": 0.1936810302734375, + "step": 188300 + }, + { + "epoch": 63.11558757014826, + "grad_norm": 0.6943151354789734, + "learning_rate": 1.845611390284757e-05, + "loss": 0.1928156280517578, + "step": 188400 + }, + { + "epoch": 63.149091213669486, + "grad_norm": 0.7247923016548157, + "learning_rate": 1.8439363484087102e-05, + "loss": 0.19320756912231446, + "step": 188500 + }, + { + "epoch": 63.18259485719072, + "grad_norm": 0.6283583641052246, + "learning_rate": 1.842261306532663e-05, + "loss": 0.19241600036621093, + "step": 188600 + }, + { + "epoch": 63.21609850071195, + "grad_norm": 0.6737943291664124, + "learning_rate": 1.8405862646566167e-05, + "loss": 0.1937045669555664, + "step": 188700 + }, + { + "epoch": 63.24960214423319, + "grad_norm": 0.6524550914764404, + "learning_rate": 1.8389112227805695e-05, + "loss": 0.1929795265197754, + "step": 188800 + }, + { + "epoch": 63.283105787754415, + "grad_norm": 0.7188290953636169, + "learning_rate": 1.8372361809045228e-05, + "loss": 0.19419048309326173, + "step": 188900 + }, + { + "epoch": 63.31660943127565, + "grad_norm": 0.6564083099365234, + "learning_rate": 1.835577889447236e-05, + "loss": 0.1945943069458008, + "step": 189000 + }, + { + "epoch": 63.35011307479689, + "grad_norm": 0.9156805276870728, + "learning_rate": 1.8339028475711896e-05, + "loss": 0.1947199821472168, + "step": 189100 + }, + { + "epoch": 63.383616718318116, + "grad_norm": 0.6628890633583069, + "learning_rate": 1.8322278056951425e-05, + "loss": 0.19428998947143555, + "step": 189200 + }, + { + "epoch": 63.41712036183935, + "grad_norm": 0.5167578458786011, + "learning_rate": 1.8305527638190957e-05, + "loss": 0.19555074691772462, + "step": 189300 + }, + { + "epoch": 63.45062400536058, + "grad_norm": 0.8341636657714844, + "learning_rate": 1.8288777219430486e-05, + "loss": 0.1958403205871582, + "step": 189400 + }, + { + "epoch": 63.48412764888182, + "grad_norm": 0.7699781656265259, + "learning_rate": 1.8272026800670018e-05, + "loss": 0.1960818099975586, + "step": 189500 + }, + { + "epoch": 63.517631292403046, + "grad_norm": 0.7461984753608704, + "learning_rate": 1.8255276381909547e-05, + "loss": 0.1969795799255371, + "step": 189600 + }, + { + "epoch": 63.55113493592428, + "grad_norm": 0.8196810483932495, + "learning_rate": 1.8238525963149082e-05, + "loss": 0.1966191864013672, + "step": 189700 + }, + { + "epoch": 63.58463857944552, + "grad_norm": 0.7453595399856567, + "learning_rate": 1.822177554438861e-05, + "loss": 0.19745317459106446, + "step": 189800 + }, + { + "epoch": 63.618142222966746, + "grad_norm": 0.638787031173706, + "learning_rate": 1.8205025125628143e-05, + "loss": 0.19748239517211913, + "step": 189900 + }, + { + "epoch": 63.65164586648798, + "grad_norm": 0.8472653031349182, + "learning_rate": 1.8188274706867672e-05, + "loss": 0.19711460113525392, + "step": 190000 + }, + { + "epoch": 63.68514951000921, + "grad_norm": 0.6634200215339661, + "learning_rate": 1.8171524288107204e-05, + "loss": 0.19727699279785157, + "step": 190100 + }, + { + "epoch": 63.71865315353045, + "grad_norm": 0.7622882127761841, + "learning_rate": 1.8154773869346733e-05, + "loss": 0.19806449890136718, + "step": 190200 + }, + { + "epoch": 63.75215679705168, + "grad_norm": 0.6492070555686951, + "learning_rate": 1.8138023450586265e-05, + "loss": 0.19782337188720703, + "step": 190300 + }, + { + "epoch": 63.78566044057291, + "grad_norm": 0.7956305146217346, + "learning_rate": 1.8121273031825798e-05, + "loss": 0.19663129806518553, + "step": 190400 + }, + { + "epoch": 63.81916408409415, + "grad_norm": 0.5923272967338562, + "learning_rate": 1.8104522613065326e-05, + "loss": 0.19800495147705077, + "step": 190500 + }, + { + "epoch": 63.852667727615376, + "grad_norm": 0.6325972676277161, + "learning_rate": 1.808777219430486e-05, + "loss": 0.19802473068237306, + "step": 190600 + }, + { + "epoch": 63.88617137113661, + "grad_norm": 0.7037030458450317, + "learning_rate": 1.8071021775544387e-05, + "loss": 0.19737031936645508, + "step": 190700 + }, + { + "epoch": 63.91967501465784, + "grad_norm": 0.6459951996803284, + "learning_rate": 1.805427135678392e-05, + "loss": 0.19749345779418945, + "step": 190800 + }, + { + "epoch": 63.95317865817908, + "grad_norm": 0.7572121024131775, + "learning_rate": 1.8037520938023452e-05, + "loss": 0.199870548248291, + "step": 190900 + }, + { + "epoch": 63.98668230170031, + "grad_norm": 0.6550577878952026, + "learning_rate": 1.8020938023450588e-05, + "loss": 0.19845205307006836, + "step": 191000 + }, + { + "epoch": 64.02010218611274, + "grad_norm": 0.5528762340545654, + "learning_rate": 1.8004187604690117e-05, + "loss": 0.19315372467041014, + "step": 191100 + }, + { + "epoch": 64.05360582963397, + "grad_norm": 0.7415011525154114, + "learning_rate": 1.798743718592965e-05, + "loss": 0.1906199836730957, + "step": 191200 + }, + { + "epoch": 64.08710947315521, + "grad_norm": 0.5133525729179382, + "learning_rate": 1.797068676716918e-05, + "loss": 0.19169828414916992, + "step": 191300 + }, + { + "epoch": 64.12061311667644, + "grad_norm": 0.7105311155319214, + "learning_rate": 1.7953936348408713e-05, + "loss": 0.19295671463012695, + "step": 191400 + }, + { + "epoch": 64.15411676019767, + "grad_norm": 0.6510593295097351, + "learning_rate": 1.7937185929648242e-05, + "loss": 0.19301687240600585, + "step": 191500 + }, + { + "epoch": 64.18762040371891, + "grad_norm": 0.737304151058197, + "learning_rate": 1.7920435510887774e-05, + "loss": 0.19341800689697267, + "step": 191600 + }, + { + "epoch": 64.22112404724014, + "grad_norm": 0.7213296890258789, + "learning_rate": 1.7903685092127303e-05, + "loss": 0.19339723587036134, + "step": 191700 + }, + { + "epoch": 64.25462769076137, + "grad_norm": 0.6387230157852173, + "learning_rate": 1.7886934673366835e-05, + "loss": 0.19426511764526366, + "step": 191800 + }, + { + "epoch": 64.2881313342826, + "grad_norm": 0.5896677374839783, + "learning_rate": 1.7870184254606364e-05, + "loss": 0.19313657760620118, + "step": 191900 + }, + { + "epoch": 64.32163497780384, + "grad_norm": 0.6253547668457031, + "learning_rate": 1.78534338358459e-05, + "loss": 0.19436355590820312, + "step": 192000 + }, + { + "epoch": 64.35513862132507, + "grad_norm": 0.6272561550140381, + "learning_rate": 1.783668341708543e-05, + "loss": 0.1950385284423828, + "step": 192100 + }, + { + "epoch": 64.3886422648463, + "grad_norm": 0.6820735335350037, + "learning_rate": 1.781993299832496e-05, + "loss": 0.19447114944458008, + "step": 192200 + }, + { + "epoch": 64.42214590836754, + "grad_norm": 0.8564963340759277, + "learning_rate": 1.780318257956449e-05, + "loss": 0.19415367126464844, + "step": 192300 + }, + { + "epoch": 64.45564955188877, + "grad_norm": 0.6703295111656189, + "learning_rate": 1.7786432160804022e-05, + "loss": 0.19531801223754883, + "step": 192400 + }, + { + "epoch": 64.48915319541, + "grad_norm": 0.7819051146507263, + "learning_rate": 1.776968174204355e-05, + "loss": 0.19491588592529296, + "step": 192500 + }, + { + "epoch": 64.52265683893124, + "grad_norm": 0.5364665985107422, + "learning_rate": 1.7752931323283083e-05, + "loss": 0.1953544235229492, + "step": 192600 + }, + { + "epoch": 64.55616048245247, + "grad_norm": 0.5155049562454224, + "learning_rate": 1.7736180904522615e-05, + "loss": 0.19612747192382812, + "step": 192700 + }, + { + "epoch": 64.5896641259737, + "grad_norm": 0.809084951877594, + "learning_rate": 1.7719430485762144e-05, + "loss": 0.1966937255859375, + "step": 192800 + }, + { + "epoch": 64.62316776949493, + "grad_norm": 0.7905207276344299, + "learning_rate": 1.7702680067001676e-05, + "loss": 0.19525121688842773, + "step": 192900 + }, + { + "epoch": 64.65667141301617, + "grad_norm": 0.7242773771286011, + "learning_rate": 1.7686097152428812e-05, + "loss": 0.19637462615966797, + "step": 193000 + }, + { + "epoch": 64.6901750565374, + "grad_norm": 0.696966826915741, + "learning_rate": 1.7669346733668344e-05, + "loss": 0.19756622314453126, + "step": 193100 + }, + { + "epoch": 64.72367870005863, + "grad_norm": 0.6258018612861633, + "learning_rate": 1.7652596314907873e-05, + "loss": 0.19659183502197267, + "step": 193200 + }, + { + "epoch": 64.75718234357987, + "grad_norm": 0.6579128503799438, + "learning_rate": 1.7635845896147405e-05, + "loss": 0.19634262084960938, + "step": 193300 + }, + { + "epoch": 64.7906859871011, + "grad_norm": 0.6634902954101562, + "learning_rate": 1.7619095477386934e-05, + "loss": 0.19719581604003905, + "step": 193400 + }, + { + "epoch": 64.82418963062233, + "grad_norm": 0.7709892988204956, + "learning_rate": 1.7602345058626466e-05, + "loss": 0.19753650665283204, + "step": 193500 + }, + { + "epoch": 64.85769327414356, + "grad_norm": 0.7069748044013977, + "learning_rate": 1.7585594639866e-05, + "loss": 0.19717281341552734, + "step": 193600 + }, + { + "epoch": 64.8911969176648, + "grad_norm": 0.756540060043335, + "learning_rate": 1.756884422110553e-05, + "loss": 0.19797266006469727, + "step": 193700 + }, + { + "epoch": 64.92470056118603, + "grad_norm": 0.8358628749847412, + "learning_rate": 1.755209380234506e-05, + "loss": 0.19739683151245116, + "step": 193800 + }, + { + "epoch": 64.95820420470726, + "grad_norm": 0.7340553998947144, + "learning_rate": 1.753534338358459e-05, + "loss": 0.19825174331665038, + "step": 193900 + }, + { + "epoch": 64.9917078482285, + "grad_norm": 0.7182520627975464, + "learning_rate": 1.751859296482412e-05, + "loss": 0.1992794418334961, + "step": 194000 + }, + { + "epoch": 65.02512773264093, + "grad_norm": 0.7197110652923584, + "learning_rate": 1.7501842546063653e-05, + "loss": 0.19224626541137696, + "step": 194100 + }, + { + "epoch": 65.05863137616215, + "grad_norm": 0.704738199710846, + "learning_rate": 1.7485092127303185e-05, + "loss": 0.1910837173461914, + "step": 194200 + }, + { + "epoch": 65.0921350196834, + "grad_norm": 0.7330573201179504, + "learning_rate": 1.7468341708542714e-05, + "loss": 0.1925986099243164, + "step": 194300 + }, + { + "epoch": 65.12563866320463, + "grad_norm": 0.6279468536376953, + "learning_rate": 1.7451591289782246e-05, + "loss": 0.19241338729858398, + "step": 194400 + }, + { + "epoch": 65.15914230672585, + "grad_norm": 0.7558215856552124, + "learning_rate": 1.7434840871021778e-05, + "loss": 0.19235986709594727, + "step": 194500 + }, + { + "epoch": 65.19264595024708, + "grad_norm": 0.7638766765594482, + "learning_rate": 1.7418090452261307e-05, + "loss": 0.19314172744750976, + "step": 194600 + }, + { + "epoch": 65.22614959376833, + "grad_norm": 0.8271517753601074, + "learning_rate": 1.740134003350084e-05, + "loss": 0.19355636596679687, + "step": 194700 + }, + { + "epoch": 65.25965323728956, + "grad_norm": 0.6696556806564331, + "learning_rate": 1.7384589614740368e-05, + "loss": 0.19400758743286134, + "step": 194800 + }, + { + "epoch": 65.29315688081078, + "grad_norm": 0.6253610849380493, + "learning_rate": 1.73678391959799e-05, + "loss": 0.1946131706237793, + "step": 194900 + }, + { + "epoch": 65.32666052433203, + "grad_norm": 0.7860012054443359, + "learning_rate": 1.7351088777219432e-05, + "loss": 0.19406192779541015, + "step": 195000 + }, + { + "epoch": 65.36016416785326, + "grad_norm": 0.6729128360748291, + "learning_rate": 1.7334505862646565e-05, + "loss": 0.19439397811889647, + "step": 195100 + }, + { + "epoch": 65.39366781137448, + "grad_norm": 0.5755062699317932, + "learning_rate": 1.7317755443886097e-05, + "loss": 0.1932700538635254, + "step": 195200 + }, + { + "epoch": 65.42717145489571, + "grad_norm": 0.726636528968811, + "learning_rate": 1.730100502512563e-05, + "loss": 0.19444786071777342, + "step": 195300 + }, + { + "epoch": 65.46067509841696, + "grad_norm": 0.699719250202179, + "learning_rate": 1.728425460636516e-05, + "loss": 0.19458566665649413, + "step": 195400 + }, + { + "epoch": 65.49417874193819, + "grad_norm": 0.5866639614105225, + "learning_rate": 1.726750418760469e-05, + "loss": 0.19407997131347657, + "step": 195500 + }, + { + "epoch": 65.52768238545941, + "grad_norm": 0.6109085083007812, + "learning_rate": 1.7250753768844223e-05, + "loss": 0.19484548568725585, + "step": 195600 + }, + { + "epoch": 65.56118602898066, + "grad_norm": 0.6569064855575562, + "learning_rate": 1.723400335008375e-05, + "loss": 0.19527423858642579, + "step": 195700 + }, + { + "epoch": 65.59468967250189, + "grad_norm": 0.7762038707733154, + "learning_rate": 1.7217252931323284e-05, + "loss": 0.19620054244995117, + "step": 195800 + }, + { + "epoch": 65.62819331602311, + "grad_norm": 0.7439081072807312, + "learning_rate": 1.7200502512562816e-05, + "loss": 0.19575105667114256, + "step": 195900 + }, + { + "epoch": 65.66169695954434, + "grad_norm": 0.6967695951461792, + "learning_rate": 1.7183752093802348e-05, + "loss": 0.19645559310913085, + "step": 196000 + }, + { + "epoch": 65.69520060306559, + "grad_norm": 0.7349697351455688, + "learning_rate": 1.7167001675041877e-05, + "loss": 0.19642463684082032, + "step": 196100 + }, + { + "epoch": 65.72870424658682, + "grad_norm": 0.6738443970680237, + "learning_rate": 1.715025125628141e-05, + "loss": 0.19574283599853515, + "step": 196200 + }, + { + "epoch": 65.76220789010804, + "grad_norm": 0.6993250250816345, + "learning_rate": 1.7133500837520938e-05, + "loss": 0.19748226165771485, + "step": 196300 + }, + { + "epoch": 65.79571153362929, + "grad_norm": 0.7072445750236511, + "learning_rate": 1.711675041876047e-05, + "loss": 0.19640846252441407, + "step": 196400 + }, + { + "epoch": 65.82921517715052, + "grad_norm": 0.7074381709098816, + "learning_rate": 1.7100000000000002e-05, + "loss": 0.19640003204345702, + "step": 196500 + }, + { + "epoch": 65.86271882067174, + "grad_norm": 0.6643349528312683, + "learning_rate": 1.708324958123953e-05, + "loss": 0.1962619400024414, + "step": 196600 + }, + { + "epoch": 65.89622246419299, + "grad_norm": 0.6393887400627136, + "learning_rate": 1.7066499162479063e-05, + "loss": 0.19662002563476563, + "step": 196700 + }, + { + "epoch": 65.92972610771422, + "grad_norm": 0.6912117600440979, + "learning_rate": 1.7049748743718592e-05, + "loss": 0.19711755752563476, + "step": 196800 + }, + { + "epoch": 65.96322975123545, + "grad_norm": 0.6061841249465942, + "learning_rate": 1.7032998324958124e-05, + "loss": 0.19713987350463869, + "step": 196900 + }, + { + "epoch": 65.99673339475667, + "grad_norm": 0.8009989857673645, + "learning_rate": 1.7016247906197653e-05, + "loss": 0.19686588287353515, + "step": 197000 + }, + { + "epoch": 66.03015327916911, + "grad_norm": 0.5211619734764099, + "learning_rate": 1.6999497487437185e-05, + "loss": 0.19180856704711913, + "step": 197100 + }, + { + "epoch": 66.06365692269034, + "grad_norm": 0.8374447822570801, + "learning_rate": 1.698291457286432e-05, + "loss": 0.1912846565246582, + "step": 197200 + }, + { + "epoch": 66.09716056621157, + "grad_norm": 0.5720506310462952, + "learning_rate": 1.6966164154103854e-05, + "loss": 0.1917406463623047, + "step": 197300 + }, + { + "epoch": 66.13066420973281, + "grad_norm": 0.6164358258247375, + "learning_rate": 1.6949413735343382e-05, + "loss": 0.19152711868286132, + "step": 197400 + }, + { + "epoch": 66.16416785325404, + "grad_norm": 0.6611140370368958, + "learning_rate": 1.6932663316582915e-05, + "loss": 0.1916365623474121, + "step": 197500 + }, + { + "epoch": 66.19767149677527, + "grad_norm": 0.8065768480300903, + "learning_rate": 1.6915912897822447e-05, + "loss": 0.19188701629638671, + "step": 197600 + }, + { + "epoch": 66.23117514029651, + "grad_norm": 0.832007646560669, + "learning_rate": 1.689916247906198e-05, + "loss": 0.19254329681396484, + "step": 197700 + }, + { + "epoch": 66.26467878381774, + "grad_norm": 0.6256246566772461, + "learning_rate": 1.6882412060301508e-05, + "loss": 0.19245880126953124, + "step": 197800 + }, + { + "epoch": 66.29818242733897, + "grad_norm": 0.6906976103782654, + "learning_rate": 1.686566164154104e-05, + "loss": 0.19253412246704102, + "step": 197900 + }, + { + "epoch": 66.3316860708602, + "grad_norm": 0.8333529233932495, + "learning_rate": 1.684891122278057e-05, + "loss": 0.19308279037475587, + "step": 198000 + }, + { + "epoch": 66.36518971438144, + "grad_norm": 0.6668996810913086, + "learning_rate": 1.68321608040201e-05, + "loss": 0.19387590408325195, + "step": 198100 + }, + { + "epoch": 66.39869335790267, + "grad_norm": 0.6531146764755249, + "learning_rate": 1.6815410385259633e-05, + "loss": 0.19346897125244142, + "step": 198200 + }, + { + "epoch": 66.4321970014239, + "grad_norm": 0.5391746163368225, + "learning_rate": 1.6798659966499165e-05, + "loss": 0.19385696411132813, + "step": 198300 + }, + { + "epoch": 66.46570064494514, + "grad_norm": 0.7026568055152893, + "learning_rate": 1.6781909547738694e-05, + "loss": 0.19465816497802735, + "step": 198400 + }, + { + "epoch": 66.49920428846637, + "grad_norm": 0.7220622301101685, + "learning_rate": 1.6765159128978226e-05, + "loss": 0.19388059616088868, + "step": 198500 + }, + { + "epoch": 66.5327079319876, + "grad_norm": 0.6891744136810303, + "learning_rate": 1.6748408710217755e-05, + "loss": 0.1932676887512207, + "step": 198600 + }, + { + "epoch": 66.56621157550883, + "grad_norm": 0.5302000045776367, + "learning_rate": 1.6731658291457288e-05, + "loss": 0.19477445602416993, + "step": 198700 + }, + { + "epoch": 66.59971521903007, + "grad_norm": 0.7118658423423767, + "learning_rate": 1.671490787269682e-05, + "loss": 0.1960425567626953, + "step": 198800 + }, + { + "epoch": 66.6332188625513, + "grad_norm": 0.6674960255622864, + "learning_rate": 1.669815745393635e-05, + "loss": 0.19594356536865234, + "step": 198900 + }, + { + "epoch": 66.66672250607253, + "grad_norm": 0.7001693844795227, + "learning_rate": 1.668140703517588e-05, + "loss": 0.1959066581726074, + "step": 199000 + }, + { + "epoch": 66.70022614959377, + "grad_norm": 0.7504046559333801, + "learning_rate": 1.666465661641541e-05, + "loss": 0.19596036911010742, + "step": 199100 + }, + { + "epoch": 66.733729793115, + "grad_norm": 0.540820837020874, + "learning_rate": 1.6647906197654942e-05, + "loss": 0.19496715545654297, + "step": 199200 + }, + { + "epoch": 66.76723343663623, + "grad_norm": 0.659315288066864, + "learning_rate": 1.6631323283082078e-05, + "loss": 0.19592731475830077, + "step": 199300 + }, + { + "epoch": 66.80073708015746, + "grad_norm": 0.6407586336135864, + "learning_rate": 1.661457286432161e-05, + "loss": 0.1966596221923828, + "step": 199400 + }, + { + "epoch": 66.8342407236787, + "grad_norm": 0.8105034828186035, + "learning_rate": 1.659782244556114e-05, + "loss": 0.19701980590820312, + "step": 199500 + }, + { + "epoch": 66.86774436719993, + "grad_norm": 0.693172812461853, + "learning_rate": 1.658107202680067e-05, + "loss": 0.19503232955932617, + "step": 199600 + }, + { + "epoch": 66.90124801072116, + "grad_norm": 0.7639322876930237, + "learning_rate": 1.65643216080402e-05, + "loss": 0.1977808380126953, + "step": 199700 + }, + { + "epoch": 66.9347516542424, + "grad_norm": 0.7706619501113892, + "learning_rate": 1.6547571189279735e-05, + "loss": 0.19528146743774413, + "step": 199800 + }, + { + "epoch": 66.96825529776363, + "grad_norm": 0.8017984628677368, + "learning_rate": 1.6530820770519264e-05, + "loss": 0.19607614517211913, + "step": 199900 + }, + { + "epoch": 67.00167518217606, + "grad_norm": 0.6076714992523193, + "learning_rate": 1.6514070351758796e-05, + "loss": 0.196212100982666, + "step": 200000 + }, + { + "epoch": 67.0351788256973, + "grad_norm": 0.7155037522315979, + "learning_rate": 1.6497319932998325e-05, + "loss": 0.19083133697509766, + "step": 200100 + }, + { + "epoch": 67.06868246921853, + "grad_norm": 0.6289516687393188, + "learning_rate": 1.6480569514237857e-05, + "loss": 0.19047863006591798, + "step": 200200 + }, + { + "epoch": 67.10218611273976, + "grad_norm": 0.6958616375923157, + "learning_rate": 1.6463819095477386e-05, + "loss": 0.1900768280029297, + "step": 200300 + }, + { + "epoch": 67.13568975626099, + "grad_norm": 0.5616253018379211, + "learning_rate": 1.644706867671692e-05, + "loss": 0.19233095169067382, + "step": 200400 + }, + { + "epoch": 67.16919339978223, + "grad_norm": 0.6665573120117188, + "learning_rate": 1.643031825795645e-05, + "loss": 0.1919367218017578, + "step": 200500 + }, + { + "epoch": 67.20269704330346, + "grad_norm": 0.6951255798339844, + "learning_rate": 1.6413567839195983e-05, + "loss": 0.19197673797607423, + "step": 200600 + }, + { + "epoch": 67.23620068682469, + "grad_norm": 0.6771343946456909, + "learning_rate": 1.639681742043551e-05, + "loss": 0.1921021270751953, + "step": 200700 + }, + { + "epoch": 67.26970433034593, + "grad_norm": 0.6687894463539124, + "learning_rate": 1.6380067001675044e-05, + "loss": 0.19192752838134766, + "step": 200800 + }, + { + "epoch": 67.30320797386716, + "grad_norm": 0.7397539019584656, + "learning_rate": 1.6363316582914573e-05, + "loss": 0.1915091323852539, + "step": 200900 + }, + { + "epoch": 67.33671161738839, + "grad_norm": 0.6094964742660522, + "learning_rate": 1.6346566164154105e-05, + "loss": 0.1940443992614746, + "step": 201000 + }, + { + "epoch": 67.37021526090962, + "grad_norm": 0.5608842372894287, + "learning_rate": 1.6329815745393637e-05, + "loss": 0.19360294342041015, + "step": 201100 + }, + { + "epoch": 67.40371890443086, + "grad_norm": 0.6738369464874268, + "learning_rate": 1.6313065326633166e-05, + "loss": 0.19352413177490235, + "step": 201200 + }, + { + "epoch": 67.43722254795209, + "grad_norm": 0.7028993964195251, + "learning_rate": 1.6296482412060302e-05, + "loss": 0.1933650016784668, + "step": 201300 + }, + { + "epoch": 67.47072619147332, + "grad_norm": 0.5576817989349365, + "learning_rate": 1.627973199329983e-05, + "loss": 0.19390420913696288, + "step": 201400 + }, + { + "epoch": 67.50422983499456, + "grad_norm": 0.6411824226379395, + "learning_rate": 1.6262981574539366e-05, + "loss": 0.1935529899597168, + "step": 201500 + }, + { + "epoch": 67.53773347851579, + "grad_norm": 0.6373094916343689, + "learning_rate": 1.6246231155778895e-05, + "loss": 0.19391347885131835, + "step": 201600 + }, + { + "epoch": 67.57123712203702, + "grad_norm": 0.6556655168533325, + "learning_rate": 1.6229480737018427e-05, + "loss": 0.19495166778564454, + "step": 201700 + }, + { + "epoch": 67.60474076555825, + "grad_norm": 0.6322004199028015, + "learning_rate": 1.6212730318257956e-05, + "loss": 0.1953642463684082, + "step": 201800 + }, + { + "epoch": 67.63824440907949, + "grad_norm": 0.6095288395881653, + "learning_rate": 1.619597989949749e-05, + "loss": 0.19500333786010743, + "step": 201900 + }, + { + "epoch": 67.67174805260072, + "grad_norm": 0.5999951362609863, + "learning_rate": 1.6179229480737017e-05, + "loss": 0.19503114700317384, + "step": 202000 + }, + { + "epoch": 67.70525169612195, + "grad_norm": 0.7297765016555786, + "learning_rate": 1.6162479061976553e-05, + "loss": 0.19440362930297853, + "step": 202100 + }, + { + "epoch": 67.73875533964319, + "grad_norm": 0.7177837491035461, + "learning_rate": 1.614572864321608e-05, + "loss": 0.19499702453613282, + "step": 202200 + }, + { + "epoch": 67.77225898316442, + "grad_norm": 0.8244702219963074, + "learning_rate": 1.6128978224455614e-05, + "loss": 0.19555707931518554, + "step": 202300 + }, + { + "epoch": 67.80576262668565, + "grad_norm": 0.6373338103294373, + "learning_rate": 1.6112227805695143e-05, + "loss": 0.195418758392334, + "step": 202400 + }, + { + "epoch": 67.83926627020689, + "grad_norm": 0.6217545866966248, + "learning_rate": 1.6095477386934675e-05, + "loss": 0.19555667877197266, + "step": 202500 + }, + { + "epoch": 67.87276991372812, + "grad_norm": 0.6853159070014954, + "learning_rate": 1.6078726968174204e-05, + "loss": 0.19608963012695313, + "step": 202600 + }, + { + "epoch": 67.90627355724935, + "grad_norm": 0.6794860363006592, + "learning_rate": 1.6061976549413736e-05, + "loss": 0.19546913146972655, + "step": 202700 + }, + { + "epoch": 67.93977720077058, + "grad_norm": 0.6505772471427917, + "learning_rate": 1.6045226130653268e-05, + "loss": 0.19603317260742187, + "step": 202800 + }, + { + "epoch": 67.97328084429182, + "grad_norm": 0.6339512467384338, + "learning_rate": 1.60284757118928e-05, + "loss": 0.19620756149291993, + "step": 202900 + }, + { + "epoch": 68.00670072870425, + "grad_norm": 0.602581799030304, + "learning_rate": 1.601172529313233e-05, + "loss": 0.19463903427124024, + "step": 203000 + }, + { + "epoch": 68.04020437222547, + "grad_norm": 0.5730949640274048, + "learning_rate": 1.599497487437186e-05, + "loss": 0.19001585006713867, + "step": 203100 + }, + { + "epoch": 68.07370801574672, + "grad_norm": 0.5395110845565796, + "learning_rate": 1.597822445561139e-05, + "loss": 0.19011409759521483, + "step": 203200 + }, + { + "epoch": 68.10721165926795, + "grad_norm": 0.5770024657249451, + "learning_rate": 1.5961474036850922e-05, + "loss": 0.1901267433166504, + "step": 203300 + }, + { + "epoch": 68.14071530278918, + "grad_norm": 0.7738876342773438, + "learning_rate": 1.5944891122278058e-05, + "loss": 0.1905143928527832, + "step": 203400 + }, + { + "epoch": 68.17421894631042, + "grad_norm": 0.7363227605819702, + "learning_rate": 1.5928140703517587e-05, + "loss": 0.19049446105957032, + "step": 203500 + }, + { + "epoch": 68.20772258983165, + "grad_norm": 0.7116740345954895, + "learning_rate": 1.591139028475712e-05, + "loss": 0.19107500076293946, + "step": 203600 + }, + { + "epoch": 68.24122623335288, + "grad_norm": 0.715164840221405, + "learning_rate": 1.5894639865996648e-05, + "loss": 0.19192060470581054, + "step": 203700 + }, + { + "epoch": 68.2747298768741, + "grad_norm": 0.7426648736000061, + "learning_rate": 1.5877889447236184e-05, + "loss": 0.19199298858642577, + "step": 203800 + }, + { + "epoch": 68.30823352039535, + "grad_norm": 0.6598964929580688, + "learning_rate": 1.5861139028475713e-05, + "loss": 0.19214748382568358, + "step": 203900 + }, + { + "epoch": 68.34173716391658, + "grad_norm": 0.7202093601226807, + "learning_rate": 1.5844388609715245e-05, + "loss": 0.191875, + "step": 204000 + }, + { + "epoch": 68.3752408074378, + "grad_norm": 0.7151044607162476, + "learning_rate": 1.5827638190954774e-05, + "loss": 0.1921199607849121, + "step": 204100 + }, + { + "epoch": 68.40874445095905, + "grad_norm": 0.6264718174934387, + "learning_rate": 1.5810887772194306e-05, + "loss": 0.1933818244934082, + "step": 204200 + }, + { + "epoch": 68.44224809448028, + "grad_norm": 0.6225735545158386, + "learning_rate": 1.5794137353433835e-05, + "loss": 0.19361408233642577, + "step": 204300 + }, + { + "epoch": 68.4757517380015, + "grad_norm": 0.7502007484436035, + "learning_rate": 1.577738693467337e-05, + "loss": 0.1928209114074707, + "step": 204400 + }, + { + "epoch": 68.50925538152273, + "grad_norm": 0.6535805463790894, + "learning_rate": 1.57606365159129e-05, + "loss": 0.1925800323486328, + "step": 204500 + }, + { + "epoch": 68.54275902504398, + "grad_norm": 0.6184046864509583, + "learning_rate": 1.574388609715243e-05, + "loss": 0.1938844680786133, + "step": 204600 + }, + { + "epoch": 68.5762626685652, + "grad_norm": 0.642119824886322, + "learning_rate": 1.572713567839196e-05, + "loss": 0.1933103942871094, + "step": 204700 + }, + { + "epoch": 68.60976631208644, + "grad_norm": 0.6790170669555664, + "learning_rate": 1.5710385259631492e-05, + "loss": 0.1948932647705078, + "step": 204800 + }, + { + "epoch": 68.64326995560768, + "grad_norm": 0.647903323173523, + "learning_rate": 1.569363484087102e-05, + "loss": 0.1952429962158203, + "step": 204900 + }, + { + "epoch": 68.67677359912891, + "grad_norm": 0.77556312084198, + "learning_rate": 1.5676884422110553e-05, + "loss": 0.19408275604248046, + "step": 205000 + }, + { + "epoch": 68.71027724265014, + "grad_norm": 0.6710578203201294, + "learning_rate": 1.5660134003350085e-05, + "loss": 0.1949919319152832, + "step": 205100 + }, + { + "epoch": 68.74378088617136, + "grad_norm": 0.6515961289405823, + "learning_rate": 1.5643383584589614e-05, + "loss": 0.19462379455566406, + "step": 205200 + }, + { + "epoch": 68.77728452969261, + "grad_norm": 0.7134996652603149, + "learning_rate": 1.5626633165829147e-05, + "loss": 0.19480768203735352, + "step": 205300 + }, + { + "epoch": 68.81078817321384, + "grad_norm": 0.5678537487983704, + "learning_rate": 1.5610050251256282e-05, + "loss": 0.1956866455078125, + "step": 205400 + }, + { + "epoch": 68.84429181673507, + "grad_norm": 0.627916157245636, + "learning_rate": 1.5593299832495815e-05, + "loss": 0.19494726181030272, + "step": 205500 + }, + { + "epoch": 68.87779546025631, + "grad_norm": 0.5940144062042236, + "learning_rate": 1.5576549413735343e-05, + "loss": 0.19554563522338866, + "step": 205600 + }, + { + "epoch": 68.91129910377754, + "grad_norm": 0.7416447401046753, + "learning_rate": 1.5559798994974876e-05, + "loss": 0.19647571563720703, + "step": 205700 + }, + { + "epoch": 68.94480274729877, + "grad_norm": 0.6104159355163574, + "learning_rate": 1.5543048576214404e-05, + "loss": 0.19543346405029297, + "step": 205800 + }, + { + "epoch": 68.97830639082, + "grad_norm": 0.7064023613929749, + "learning_rate": 1.5526298157453937e-05, + "loss": 0.19565975189208984, + "step": 205900 + }, + { + "epoch": 69.01172627523243, + "grad_norm": 0.6279042363166809, + "learning_rate": 1.5509547738693466e-05, + "loss": 0.1939265251159668, + "step": 206000 + }, + { + "epoch": 69.04522991875366, + "grad_norm": 0.6966283917427063, + "learning_rate": 1.5492797319933e-05, + "loss": 0.18873752593994142, + "step": 206100 + }, + { + "epoch": 69.07873356227489, + "grad_norm": 0.598598062992096, + "learning_rate": 1.547604690117253e-05, + "loss": 0.19044071197509765, + "step": 206200 + }, + { + "epoch": 69.11223720579613, + "grad_norm": 0.6215249300003052, + "learning_rate": 1.5459296482412062e-05, + "loss": 0.18954809188842772, + "step": 206300 + }, + { + "epoch": 69.14574084931736, + "grad_norm": 0.6590831279754639, + "learning_rate": 1.544254606365159e-05, + "loss": 0.1906461524963379, + "step": 206400 + }, + { + "epoch": 69.17924449283859, + "grad_norm": 0.5938999056816101, + "learning_rate": 1.5425795644891123e-05, + "loss": 0.1904694175720215, + "step": 206500 + }, + { + "epoch": 69.21274813635983, + "grad_norm": 0.5933434367179871, + "learning_rate": 1.5409045226130652e-05, + "loss": 0.19135387420654296, + "step": 206600 + }, + { + "epoch": 69.24625177988106, + "grad_norm": 0.7321082353591919, + "learning_rate": 1.5392294807370188e-05, + "loss": 0.19140138626098632, + "step": 206700 + }, + { + "epoch": 69.27975542340229, + "grad_norm": 0.7632362842559814, + "learning_rate": 1.5375544388609716e-05, + "loss": 0.19026206970214843, + "step": 206800 + }, + { + "epoch": 69.31325906692352, + "grad_norm": 0.5204057097434998, + "learning_rate": 1.535879396984925e-05, + "loss": 0.19211410522460937, + "step": 206900 + }, + { + "epoch": 69.34676271044476, + "grad_norm": 0.5607998967170715, + "learning_rate": 1.5342043551088777e-05, + "loss": 0.19179800033569336, + "step": 207000 + }, + { + "epoch": 69.380266353966, + "grad_norm": 0.6838735342025757, + "learning_rate": 1.532529313232831e-05, + "loss": 0.1921243476867676, + "step": 207100 + }, + { + "epoch": 69.41376999748722, + "grad_norm": 0.7290564179420471, + "learning_rate": 1.530854271356784e-05, + "loss": 0.1927803611755371, + "step": 207200 + }, + { + "epoch": 69.44727364100847, + "grad_norm": 0.678501307964325, + "learning_rate": 1.529179229480737e-05, + "loss": 0.19337810516357423, + "step": 207300 + }, + { + "epoch": 69.4807772845297, + "grad_norm": 0.6822425723075867, + "learning_rate": 1.5275041876046903e-05, + "loss": 0.1925121307373047, + "step": 207400 + }, + { + "epoch": 69.51428092805092, + "grad_norm": 0.5909448266029358, + "learning_rate": 1.5258458961474037e-05, + "loss": 0.1932221221923828, + "step": 207500 + }, + { + "epoch": 69.54778457157215, + "grad_norm": 0.5861632823944092, + "learning_rate": 1.5241708542713568e-05, + "loss": 0.19226568222045898, + "step": 207600 + }, + { + "epoch": 69.5812882150934, + "grad_norm": 0.6072438359260559, + "learning_rate": 1.5224958123953102e-05, + "loss": 0.19327423095703125, + "step": 207700 + }, + { + "epoch": 69.61479185861462, + "grad_norm": 0.7752787470817566, + "learning_rate": 1.5208207705192632e-05, + "loss": 0.19411521911621094, + "step": 207800 + }, + { + "epoch": 69.64829550213585, + "grad_norm": 0.604340672492981, + "learning_rate": 1.5191457286432163e-05, + "loss": 0.19500984191894533, + "step": 207900 + }, + { + "epoch": 69.6817991456571, + "grad_norm": 0.5669907331466675, + "learning_rate": 1.5174706867671693e-05, + "loss": 0.19465980529785157, + "step": 208000 + }, + { + "epoch": 69.71530278917832, + "grad_norm": 0.624899685382843, + "learning_rate": 1.5157956448911224e-05, + "loss": 0.1940926742553711, + "step": 208100 + }, + { + "epoch": 69.74880643269955, + "grad_norm": 0.7137749195098877, + "learning_rate": 1.5141206030150754e-05, + "loss": 0.19328271865844726, + "step": 208200 + }, + { + "epoch": 69.7823100762208, + "grad_norm": 0.7387290000915527, + "learning_rate": 1.5124455611390285e-05, + "loss": 0.1953897285461426, + "step": 208300 + }, + { + "epoch": 69.81581371974202, + "grad_norm": 0.5705156326293945, + "learning_rate": 1.5107705192629817e-05, + "loss": 0.194132022857666, + "step": 208400 + }, + { + "epoch": 69.84931736326325, + "grad_norm": 0.6383335590362549, + "learning_rate": 1.5090954773869347e-05, + "loss": 0.1951007652282715, + "step": 208500 + }, + { + "epoch": 69.88282100678448, + "grad_norm": 0.6704970002174377, + "learning_rate": 1.5074204355108878e-05, + "loss": 0.19534845352172853, + "step": 208600 + }, + { + "epoch": 69.91632465030573, + "grad_norm": 0.5984908938407898, + "learning_rate": 1.5057453936348408e-05, + "loss": 0.19434907913208008, + "step": 208700 + }, + { + "epoch": 69.94982829382695, + "grad_norm": 0.6464018821716309, + "learning_rate": 1.5040703517587939e-05, + "loss": 0.19456119537353517, + "step": 208800 + }, + { + "epoch": 69.98333193734818, + "grad_norm": 0.7534891366958618, + "learning_rate": 1.502395309882747e-05, + "loss": 0.1956119155883789, + "step": 208900 + }, + { + "epoch": 70.01675182176062, + "grad_norm": 0.7756277918815613, + "learning_rate": 1.5007202680067003e-05, + "loss": 0.19219749450683593, + "step": 209000 + }, + { + "epoch": 70.05025546528185, + "grad_norm": 0.6661693453788757, + "learning_rate": 1.4990452261306534e-05, + "loss": 0.1881481170654297, + "step": 209100 + }, + { + "epoch": 70.08375910880308, + "grad_norm": 0.6152818202972412, + "learning_rate": 1.4973701842546064e-05, + "loss": 0.18986621856689453, + "step": 209200 + }, + { + "epoch": 70.11726275232432, + "grad_norm": 0.5430614352226257, + "learning_rate": 1.4956951423785595e-05, + "loss": 0.1886882209777832, + "step": 209300 + }, + { + "epoch": 70.15076639584555, + "grad_norm": 0.6443721652030945, + "learning_rate": 1.4940201005025125e-05, + "loss": 0.19037208557128907, + "step": 209400 + }, + { + "epoch": 70.18427003936678, + "grad_norm": 0.6034039855003357, + "learning_rate": 1.4923450586264656e-05, + "loss": 0.18961322784423829, + "step": 209500 + }, + { + "epoch": 70.21777368288801, + "grad_norm": 0.6922727227210999, + "learning_rate": 1.4906867671691794e-05, + "loss": 0.19092901229858397, + "step": 209600 + }, + { + "epoch": 70.25127732640925, + "grad_norm": 0.7775962352752686, + "learning_rate": 1.4890117252931324e-05, + "loss": 0.1911904525756836, + "step": 209700 + }, + { + "epoch": 70.28478096993048, + "grad_norm": 0.6121329665184021, + "learning_rate": 1.4873366834170855e-05, + "loss": 0.19077373504638673, + "step": 209800 + }, + { + "epoch": 70.31828461345171, + "grad_norm": 0.6311072707176208, + "learning_rate": 1.4856616415410385e-05, + "loss": 0.19276874542236327, + "step": 209900 + }, + { + "epoch": 70.35178825697295, + "grad_norm": 0.6190215349197388, + "learning_rate": 1.4839865996649919e-05, + "loss": 0.1920265007019043, + "step": 210000 + }, + { + "epoch": 70.38529190049418, + "grad_norm": 0.7317872047424316, + "learning_rate": 1.482311557788945e-05, + "loss": 0.1915855026245117, + "step": 210100 + }, + { + "epoch": 70.41879554401541, + "grad_norm": 0.5770769715309143, + "learning_rate": 1.480636515912898e-05, + "loss": 0.19160455703735352, + "step": 210200 + }, + { + "epoch": 70.45229918753664, + "grad_norm": 0.4898484945297241, + "learning_rate": 1.478961474036851e-05, + "loss": 0.19282726287841798, + "step": 210300 + }, + { + "epoch": 70.48580283105788, + "grad_norm": 0.7757408618927002, + "learning_rate": 1.4772864321608041e-05, + "loss": 0.19382453918457032, + "step": 210400 + }, + { + "epoch": 70.51930647457911, + "grad_norm": 0.7815673351287842, + "learning_rate": 1.4756113902847572e-05, + "loss": 0.19315202713012694, + "step": 210500 + }, + { + "epoch": 70.55281011810034, + "grad_norm": 0.6631892323493958, + "learning_rate": 1.4739363484087104e-05, + "loss": 0.1935376739501953, + "step": 210600 + }, + { + "epoch": 70.58631376162158, + "grad_norm": 0.6759666204452515, + "learning_rate": 1.4722613065326634e-05, + "loss": 0.19363182067871093, + "step": 210700 + }, + { + "epoch": 70.61981740514281, + "grad_norm": 0.7577219605445862, + "learning_rate": 1.4705862646566165e-05, + "loss": 0.19298139572143555, + "step": 210800 + }, + { + "epoch": 70.65332104866404, + "grad_norm": 0.5035127997398376, + "learning_rate": 1.4689112227805695e-05, + "loss": 0.19403892517089844, + "step": 210900 + }, + { + "epoch": 70.68682469218527, + "grad_norm": 0.6267746090888977, + "learning_rate": 1.4672361809045226e-05, + "loss": 0.19389795303344726, + "step": 211000 + }, + { + "epoch": 70.72032833570651, + "grad_norm": 0.7773340344429016, + "learning_rate": 1.4655611390284756e-05, + "loss": 0.19378913879394533, + "step": 211100 + }, + { + "epoch": 70.75383197922774, + "grad_norm": 0.6656227111816406, + "learning_rate": 1.4638860971524287e-05, + "loss": 0.19349145889282227, + "step": 211200 + }, + { + "epoch": 70.78733562274897, + "grad_norm": 0.5681379437446594, + "learning_rate": 1.462211055276382e-05, + "loss": 0.19408063888549804, + "step": 211300 + }, + { + "epoch": 70.82083926627021, + "grad_norm": 0.7380396127700806, + "learning_rate": 1.4605360134003351e-05, + "loss": 0.19320615768432617, + "step": 211400 + }, + { + "epoch": 70.85434290979144, + "grad_norm": 0.5551620721817017, + "learning_rate": 1.4588609715242882e-05, + "loss": 0.19429174423217774, + "step": 211500 + }, + { + "epoch": 70.88784655331267, + "grad_norm": 0.6880864500999451, + "learning_rate": 1.4572026800670016e-05, + "loss": 0.19458511352539062, + "step": 211600 + }, + { + "epoch": 70.9213501968339, + "grad_norm": 0.6348493099212646, + "learning_rate": 1.455527638190955e-05, + "loss": 0.19401802062988283, + "step": 211700 + }, + { + "epoch": 70.95485384035514, + "grad_norm": 0.8191368579864502, + "learning_rate": 1.453852596314908e-05, + "loss": 0.19446285247802733, + "step": 211800 + }, + { + "epoch": 70.98835748387637, + "grad_norm": 0.7762120366096497, + "learning_rate": 1.4521775544388611e-05, + "loss": 0.19511171340942382, + "step": 211900 + }, + { + "epoch": 71.0217773682888, + "grad_norm": 0.5584473609924316, + "learning_rate": 1.4505025125628141e-05, + "loss": 0.19062902450561522, + "step": 212000 + }, + { + "epoch": 71.05528101181004, + "grad_norm": 0.5374318957328796, + "learning_rate": 1.4488274706867672e-05, + "loss": 0.18799392700195314, + "step": 212100 + }, + { + "epoch": 71.08878465533127, + "grad_norm": 0.5808698534965515, + "learning_rate": 1.4471524288107202e-05, + "loss": 0.18921010971069335, + "step": 212200 + }, + { + "epoch": 71.1222882988525, + "grad_norm": 0.5353220701217651, + "learning_rate": 1.4454773869346735e-05, + "loss": 0.18873760223388672, + "step": 212300 + }, + { + "epoch": 71.15579194237374, + "grad_norm": 0.8585773706436157, + "learning_rate": 1.4438023450586265e-05, + "loss": 0.1902440071105957, + "step": 212400 + }, + { + "epoch": 71.18929558589497, + "grad_norm": 0.5950562357902527, + "learning_rate": 1.4421273031825797e-05, + "loss": 0.19001707077026367, + "step": 212500 + }, + { + "epoch": 71.2227992294162, + "grad_norm": 0.61844801902771, + "learning_rate": 1.4404522613065328e-05, + "loss": 0.1902621269226074, + "step": 212600 + }, + { + "epoch": 71.25630287293743, + "grad_norm": 0.6289156079292297, + "learning_rate": 1.4387772194304858e-05, + "loss": 0.19079328536987306, + "step": 212700 + }, + { + "epoch": 71.28980651645867, + "grad_norm": 0.5846434235572815, + "learning_rate": 1.4371021775544389e-05, + "loss": 0.19066036224365235, + "step": 212800 + }, + { + "epoch": 71.3233101599799, + "grad_norm": 0.5743843913078308, + "learning_rate": 1.4354271356783921e-05, + "loss": 0.19171554565429688, + "step": 212900 + }, + { + "epoch": 71.35681380350113, + "grad_norm": 0.7006944417953491, + "learning_rate": 1.4337520938023452e-05, + "loss": 0.19167909622192383, + "step": 213000 + }, + { + "epoch": 71.39031744702237, + "grad_norm": 0.8413968086242676, + "learning_rate": 1.4320770519262982e-05, + "loss": 0.19105392456054687, + "step": 213100 + }, + { + "epoch": 71.4238210905436, + "grad_norm": 0.5824098587036133, + "learning_rate": 1.4304020100502513e-05, + "loss": 0.1920245933532715, + "step": 213200 + }, + { + "epoch": 71.45732473406483, + "grad_norm": 0.6288939714431763, + "learning_rate": 1.4287269681742043e-05, + "loss": 0.19186897277832032, + "step": 213300 + }, + { + "epoch": 71.49082837758607, + "grad_norm": 0.691856324672699, + "learning_rate": 1.4270519262981574e-05, + "loss": 0.19312944412231445, + "step": 213400 + }, + { + "epoch": 71.5243320211073, + "grad_norm": 0.7578767538070679, + "learning_rate": 1.4253768844221108e-05, + "loss": 0.19235544204711913, + "step": 213500 + }, + { + "epoch": 71.55783566462853, + "grad_norm": 0.6085563898086548, + "learning_rate": 1.4237185929648242e-05, + "loss": 0.1931236457824707, + "step": 213600 + }, + { + "epoch": 71.59133930814976, + "grad_norm": 0.6119518876075745, + "learning_rate": 1.4220435510887772e-05, + "loss": 0.1938382339477539, + "step": 213700 + }, + { + "epoch": 71.624842951671, + "grad_norm": 0.6922339797019958, + "learning_rate": 1.4203685092127303e-05, + "loss": 0.19215814590454103, + "step": 213800 + }, + { + "epoch": 71.65834659519223, + "grad_norm": 0.7278738021850586, + "learning_rate": 1.4186934673366837e-05, + "loss": 0.19262287139892578, + "step": 213900 + }, + { + "epoch": 71.69185023871346, + "grad_norm": 0.6596753597259521, + "learning_rate": 1.4170184254606367e-05, + "loss": 0.19238534927368164, + "step": 214000 + }, + { + "epoch": 71.7253538822347, + "grad_norm": 0.6864719986915588, + "learning_rate": 1.4153433835845898e-05, + "loss": 0.1925214958190918, + "step": 214100 + }, + { + "epoch": 71.75885752575593, + "grad_norm": 0.6517135500907898, + "learning_rate": 1.4136683417085428e-05, + "loss": 0.1944540786743164, + "step": 214200 + }, + { + "epoch": 71.79236116927716, + "grad_norm": 0.7503974437713623, + "learning_rate": 1.4119932998324959e-05, + "loss": 0.1933121109008789, + "step": 214300 + }, + { + "epoch": 71.82586481279839, + "grad_norm": 0.60938960313797, + "learning_rate": 1.410318257956449e-05, + "loss": 0.19333812713623047, + "step": 214400 + }, + { + "epoch": 71.85936845631963, + "grad_norm": 0.659631073474884, + "learning_rate": 1.408643216080402e-05, + "loss": 0.19322057723999023, + "step": 214500 + }, + { + "epoch": 71.89287209984086, + "grad_norm": 0.6466450095176697, + "learning_rate": 1.4069681742043552e-05, + "loss": 0.19311923980712892, + "step": 214600 + }, + { + "epoch": 71.92637574336209, + "grad_norm": 0.6093922853469849, + "learning_rate": 1.4052931323283083e-05, + "loss": 0.19498254776000976, + "step": 214700 + }, + { + "epoch": 71.95987938688333, + "grad_norm": 0.7445212602615356, + "learning_rate": 1.4036180904522613e-05, + "loss": 0.19384960174560548, + "step": 214800 + }, + { + "epoch": 71.99338303040456, + "grad_norm": 0.5651571750640869, + "learning_rate": 1.4019430485762144e-05, + "loss": 0.193801212310791, + "step": 214900 + }, + { + "epoch": 72.02680291481698, + "grad_norm": 0.6022223234176636, + "learning_rate": 1.4002680067001674e-05, + "loss": 0.18981178283691405, + "step": 215000 + }, + { + "epoch": 72.06030655833823, + "grad_norm": 0.6050201058387756, + "learning_rate": 1.3985929648241206e-05, + "loss": 0.18904420852661133, + "step": 215100 + }, + { + "epoch": 72.09381020185945, + "grad_norm": 0.6156114935874939, + "learning_rate": 1.3969179229480739e-05, + "loss": 0.18817174911499024, + "step": 215200 + }, + { + "epoch": 72.12731384538068, + "grad_norm": 0.5546871423721313, + "learning_rate": 1.3952428810720269e-05, + "loss": 0.1889004898071289, + "step": 215300 + }, + { + "epoch": 72.16081748890191, + "grad_norm": 0.6833284497261047, + "learning_rate": 1.39356783919598e-05, + "loss": 0.18958877563476562, + "step": 215400 + }, + { + "epoch": 72.19432113242316, + "grad_norm": 0.6149327754974365, + "learning_rate": 1.391892797319933e-05, + "loss": 0.1900411605834961, + "step": 215500 + }, + { + "epoch": 72.22782477594438, + "grad_norm": 0.7087824940681458, + "learning_rate": 1.3902345058626468e-05, + "loss": 0.1900062370300293, + "step": 215600 + }, + { + "epoch": 72.26132841946561, + "grad_norm": 0.7365740537643433, + "learning_rate": 1.3885594639865998e-05, + "loss": 0.18973686218261718, + "step": 215700 + }, + { + "epoch": 72.29483206298686, + "grad_norm": 0.6139353513717651, + "learning_rate": 1.3868844221105529e-05, + "loss": 0.19053438186645508, + "step": 215800 + }, + { + "epoch": 72.32833570650808, + "grad_norm": 0.5968282222747803, + "learning_rate": 1.385209380234506e-05, + "loss": 0.19114097595214843, + "step": 215900 + }, + { + "epoch": 72.36183935002931, + "grad_norm": 0.6676009893417358, + "learning_rate": 1.383534338358459e-05, + "loss": 0.1919625473022461, + "step": 216000 + }, + { + "epoch": 72.39534299355054, + "grad_norm": 0.7123656272888184, + "learning_rate": 1.381859296482412e-05, + "loss": 0.19244312286376952, + "step": 216100 + }, + { + "epoch": 72.42884663707179, + "grad_norm": 0.6703692078590393, + "learning_rate": 1.3801842546063654e-05, + "loss": 0.1909078025817871, + "step": 216200 + }, + { + "epoch": 72.46235028059301, + "grad_norm": 0.7729817032814026, + "learning_rate": 1.3785092127303185e-05, + "loss": 0.192000789642334, + "step": 216300 + }, + { + "epoch": 72.49585392411424, + "grad_norm": 0.7377496361732483, + "learning_rate": 1.3768341708542715e-05, + "loss": 0.19194664001464845, + "step": 216400 + }, + { + "epoch": 72.52935756763549, + "grad_norm": 0.7420958876609802, + "learning_rate": 1.3751591289782246e-05, + "loss": 0.19183109283447267, + "step": 216500 + }, + { + "epoch": 72.56286121115672, + "grad_norm": 0.5992802381515503, + "learning_rate": 1.3734840871021776e-05, + "loss": 0.19208011627197266, + "step": 216600 + }, + { + "epoch": 72.59636485467794, + "grad_norm": 0.7813421487808228, + "learning_rate": 1.3718090452261307e-05, + "loss": 0.19179468154907225, + "step": 216700 + }, + { + "epoch": 72.62986849819917, + "grad_norm": 0.6775956153869629, + "learning_rate": 1.3701340033500837e-05, + "loss": 0.19274057388305665, + "step": 216800 + }, + { + "epoch": 72.66337214172042, + "grad_norm": 0.7122693657875061, + "learning_rate": 1.368458961474037e-05, + "loss": 0.1917710304260254, + "step": 216900 + }, + { + "epoch": 72.69687578524164, + "grad_norm": 0.7028974890708923, + "learning_rate": 1.36678391959799e-05, + "loss": 0.1918616485595703, + "step": 217000 + }, + { + "epoch": 72.73037942876287, + "grad_norm": 0.6234395503997803, + "learning_rate": 1.365108877721943e-05, + "loss": 0.192793025970459, + "step": 217100 + }, + { + "epoch": 72.76388307228412, + "grad_norm": 0.7795095443725586, + "learning_rate": 1.3634338358458961e-05, + "loss": 0.19276504516601561, + "step": 217200 + }, + { + "epoch": 72.79738671580535, + "grad_norm": 0.5714548230171204, + "learning_rate": 1.3617587939698492e-05, + "loss": 0.19352224349975586, + "step": 217300 + }, + { + "epoch": 72.83089035932657, + "grad_norm": 0.6443431973457336, + "learning_rate": 1.3600837520938022e-05, + "loss": 0.19274961471557617, + "step": 217400 + }, + { + "epoch": 72.8643940028478, + "grad_norm": 0.732292890548706, + "learning_rate": 1.3584087102177556e-05, + "loss": 0.19329883575439452, + "step": 217500 + }, + { + "epoch": 72.89789764636905, + "grad_norm": 0.6586911082267761, + "learning_rate": 1.3567336683417087e-05, + "loss": 0.19275350570678712, + "step": 217600 + }, + { + "epoch": 72.93140128989027, + "grad_norm": 0.4131799638271332, + "learning_rate": 1.355075376884422e-05, + "loss": 0.19394960403442382, + "step": 217700 + }, + { + "epoch": 72.9649049334115, + "grad_norm": 0.720600426197052, + "learning_rate": 1.3534003350083751e-05, + "loss": 0.19370002746582032, + "step": 217800 + }, + { + "epoch": 72.99840857693275, + "grad_norm": 0.7249190211296082, + "learning_rate": 1.3517252931323285e-05, + "loss": 0.19390350341796875, + "step": 217900 + }, + { + "epoch": 73.03182846134517, + "grad_norm": 0.7347325086593628, + "learning_rate": 1.3500502512562816e-05, + "loss": 0.18822053909301759, + "step": 218000 + }, + { + "epoch": 73.0653321048664, + "grad_norm": 0.6100323796272278, + "learning_rate": 1.3483752093802346e-05, + "loss": 0.1878873062133789, + "step": 218100 + }, + { + "epoch": 73.09883574838764, + "grad_norm": 0.6328092217445374, + "learning_rate": 1.3467001675041877e-05, + "loss": 0.18838220596313476, + "step": 218200 + }, + { + "epoch": 73.13233939190887, + "grad_norm": 0.6140354871749878, + "learning_rate": 1.3450251256281407e-05, + "loss": 0.18931222915649415, + "step": 218300 + }, + { + "epoch": 73.1658430354301, + "grad_norm": 0.6713184118270874, + "learning_rate": 1.3433500837520938e-05, + "loss": 0.18979503631591796, + "step": 218400 + }, + { + "epoch": 73.19934667895133, + "grad_norm": 0.5946479439735413, + "learning_rate": 1.3416750418760472e-05, + "loss": 0.19020790100097656, + "step": 218500 + }, + { + "epoch": 73.23285032247257, + "grad_norm": 0.635026216506958, + "learning_rate": 1.3400000000000002e-05, + "loss": 0.19073740005493164, + "step": 218600 + }, + { + "epoch": 73.2663539659938, + "grad_norm": 0.8429803252220154, + "learning_rate": 1.3383249581239533e-05, + "loss": 0.19040184020996093, + "step": 218700 + }, + { + "epoch": 73.29985760951503, + "grad_norm": 0.6116558909416199, + "learning_rate": 1.3366499162479063e-05, + "loss": 0.1910529327392578, + "step": 218800 + }, + { + "epoch": 73.33336125303627, + "grad_norm": 0.6104078888893127, + "learning_rate": 1.3349748743718594e-05, + "loss": 0.19013742446899415, + "step": 218900 + }, + { + "epoch": 73.3668648965575, + "grad_norm": 0.6935064196586609, + "learning_rate": 1.3332998324958124e-05, + "loss": 0.19089607238769532, + "step": 219000 + }, + { + "epoch": 73.40036854007873, + "grad_norm": 0.6205075979232788, + "learning_rate": 1.3316247906197656e-05, + "loss": 0.18985008239746093, + "step": 219100 + }, + { + "epoch": 73.43387218359997, + "grad_norm": 0.6838747262954712, + "learning_rate": 1.3299497487437187e-05, + "loss": 0.19136251449584962, + "step": 219200 + }, + { + "epoch": 73.4673758271212, + "grad_norm": 0.5892935395240784, + "learning_rate": 1.3282747068676717e-05, + "loss": 0.19115791320800782, + "step": 219300 + }, + { + "epoch": 73.50087947064243, + "grad_norm": 0.6625847220420837, + "learning_rate": 1.3265996649916248e-05, + "loss": 0.1914684295654297, + "step": 219400 + }, + { + "epoch": 73.53438311416366, + "grad_norm": 0.5886939764022827, + "learning_rate": 1.3249246231155778e-05, + "loss": 0.19140581130981446, + "step": 219500 + }, + { + "epoch": 73.5678867576849, + "grad_norm": 0.6432992219924927, + "learning_rate": 1.3232495812395309e-05, + "loss": 0.19217498779296874, + "step": 219600 + }, + { + "epoch": 73.60139040120613, + "grad_norm": 0.537247896194458, + "learning_rate": 1.3215912897822447e-05, + "loss": 0.1916472816467285, + "step": 219700 + }, + { + "epoch": 73.63489404472736, + "grad_norm": 0.7746627330780029, + "learning_rate": 1.3199162479061977e-05, + "loss": 0.1921250343322754, + "step": 219800 + }, + { + "epoch": 73.6683976882486, + "grad_norm": 0.6342955827713013, + "learning_rate": 1.3182412060301508e-05, + "loss": 0.19181474685668945, + "step": 219900 + }, + { + "epoch": 73.70190133176983, + "grad_norm": 0.6556417346000671, + "learning_rate": 1.3165661641541038e-05, + "loss": 0.1932265853881836, + "step": 220000 + }, + { + "epoch": 73.73540497529106, + "grad_norm": 0.627204179763794, + "learning_rate": 1.3148911222780569e-05, + "loss": 0.19127828598022462, + "step": 220100 + }, + { + "epoch": 73.76890861881229, + "grad_norm": 0.5481722950935364, + "learning_rate": 1.3132160804020103e-05, + "loss": 0.19317052841186524, + "step": 220200 + }, + { + "epoch": 73.80241226233353, + "grad_norm": 0.6881102323532104, + "learning_rate": 1.3115410385259633e-05, + "loss": 0.1921912384033203, + "step": 220300 + }, + { + "epoch": 73.83591590585476, + "grad_norm": 0.5679818987846375, + "learning_rate": 1.3098659966499164e-05, + "loss": 0.19210420608520506, + "step": 220400 + }, + { + "epoch": 73.86941954937599, + "grad_norm": 0.6412058472633362, + "learning_rate": 1.3081909547738694e-05, + "loss": 0.19206573486328124, + "step": 220500 + }, + { + "epoch": 73.90292319289723, + "grad_norm": 0.586617648601532, + "learning_rate": 1.3065159128978225e-05, + "loss": 0.19283601760864258, + "step": 220600 + }, + { + "epoch": 73.93642683641846, + "grad_norm": 0.6339001655578613, + "learning_rate": 1.3048408710217755e-05, + "loss": 0.19282327651977538, + "step": 220700 + }, + { + "epoch": 73.96993047993969, + "grad_norm": 0.5810698866844177, + "learning_rate": 1.3031658291457289e-05, + "loss": 0.19248931884765624, + "step": 220800 + }, + { + "epoch": 74.00335036435213, + "grad_norm": 0.5315734148025513, + "learning_rate": 1.301490787269682e-05, + "loss": 0.19272197723388673, + "step": 220900 + }, + { + "epoch": 74.03685400787336, + "grad_norm": 0.5988895893096924, + "learning_rate": 1.299815745393635e-05, + "loss": 0.18879865646362304, + "step": 221000 + }, + { + "epoch": 74.07035765139459, + "grad_norm": 0.6475368142127991, + "learning_rate": 1.298140703517588e-05, + "loss": 0.18721097946166992, + "step": 221100 + }, + { + "epoch": 74.10386129491582, + "grad_norm": 0.5875990986824036, + "learning_rate": 1.2964656616415411e-05, + "loss": 0.18884235382080078, + "step": 221200 + }, + { + "epoch": 74.13736493843706, + "grad_norm": 0.7056507468223572, + "learning_rate": 1.2947906197654942e-05, + "loss": 0.1880255889892578, + "step": 221300 + }, + { + "epoch": 74.17086858195829, + "grad_norm": 0.7191376090049744, + "learning_rate": 1.2931155778894474e-05, + "loss": 0.18832271575927734, + "step": 221400 + }, + { + "epoch": 74.20437222547952, + "grad_norm": 0.6161214113235474, + "learning_rate": 1.2914405360134004e-05, + "loss": 0.1886260414123535, + "step": 221500 + }, + { + "epoch": 74.23787586900076, + "grad_norm": 0.6850497126579285, + "learning_rate": 1.2897654941373535e-05, + "loss": 0.18944147109985351, + "step": 221600 + }, + { + "epoch": 74.27137951252199, + "grad_norm": 0.7031293511390686, + "learning_rate": 1.2880904522613065e-05, + "loss": 0.18980978012084962, + "step": 221700 + }, + { + "epoch": 74.30488315604322, + "grad_norm": 0.7116613388061523, + "learning_rate": 1.2864321608040203e-05, + "loss": 0.19084714889526366, + "step": 221800 + }, + { + "epoch": 74.33838679956445, + "grad_norm": 0.6668044328689575, + "learning_rate": 1.2847571189279734e-05, + "loss": 0.1889169120788574, + "step": 221900 + }, + { + "epoch": 74.37189044308569, + "grad_norm": 0.7630614638328552, + "learning_rate": 1.2830820770519264e-05, + "loss": 0.1901887321472168, + "step": 222000 + }, + { + "epoch": 74.40539408660692, + "grad_norm": 0.6210822463035583, + "learning_rate": 1.2814070351758795e-05, + "loss": 0.18958797454833984, + "step": 222100 + }, + { + "epoch": 74.43889773012815, + "grad_norm": 0.674400806427002, + "learning_rate": 1.2797319932998325e-05, + "loss": 0.19211307525634766, + "step": 222200 + }, + { + "epoch": 74.47240137364939, + "grad_norm": 0.5624780058860779, + "learning_rate": 1.2780569514237856e-05, + "loss": 0.19077470779418945, + "step": 222300 + }, + { + "epoch": 74.50590501717062, + "grad_norm": 0.6902910470962524, + "learning_rate": 1.2763819095477386e-05, + "loss": 0.19062641143798828, + "step": 222400 + }, + { + "epoch": 74.53940866069185, + "grad_norm": 0.6203210353851318, + "learning_rate": 1.274706867671692e-05, + "loss": 0.19215831756591797, + "step": 222500 + }, + { + "epoch": 74.57291230421308, + "grad_norm": 0.6973204016685486, + "learning_rate": 1.273031825795645e-05, + "loss": 0.19094465255737306, + "step": 222600 + }, + { + "epoch": 74.60641594773432, + "grad_norm": 0.5848397016525269, + "learning_rate": 1.2713567839195981e-05, + "loss": 0.1918341827392578, + "step": 222700 + }, + { + "epoch": 74.63991959125555, + "grad_norm": 0.5930863618850708, + "learning_rate": 1.2696817420435512e-05, + "loss": 0.19197944641113282, + "step": 222800 + }, + { + "epoch": 74.67342323477678, + "grad_norm": 0.6419515609741211, + "learning_rate": 1.2680067001675042e-05, + "loss": 0.19171865463256835, + "step": 222900 + }, + { + "epoch": 74.70692687829802, + "grad_norm": 0.6278107762336731, + "learning_rate": 1.2663316582914573e-05, + "loss": 0.19249353408813477, + "step": 223000 + }, + { + "epoch": 74.74043052181925, + "grad_norm": 0.5512995719909668, + "learning_rate": 1.2646566164154105e-05, + "loss": 0.19145532608032226, + "step": 223100 + }, + { + "epoch": 74.77393416534048, + "grad_norm": 0.6217749714851379, + "learning_rate": 1.2629815745393635e-05, + "loss": 0.19141609191894532, + "step": 223200 + }, + { + "epoch": 74.8074378088617, + "grad_norm": 0.672197699546814, + "learning_rate": 1.2613065326633166e-05, + "loss": 0.19206232070922852, + "step": 223300 + }, + { + "epoch": 74.84094145238295, + "grad_norm": 0.6256102919578552, + "learning_rate": 1.2596314907872698e-05, + "loss": 0.19332118988037109, + "step": 223400 + }, + { + "epoch": 74.87444509590418, + "grad_norm": 0.5120044350624084, + "learning_rate": 1.2579564489112229e-05, + "loss": 0.19207197189331054, + "step": 223500 + }, + { + "epoch": 74.90794873942541, + "grad_norm": 0.6199808120727539, + "learning_rate": 1.2562814070351759e-05, + "loss": 0.19157859802246094, + "step": 223600 + }, + { + "epoch": 74.94145238294665, + "grad_norm": 0.7454675436019897, + "learning_rate": 1.2546063651591291e-05, + "loss": 0.19300016403198242, + "step": 223700 + }, + { + "epoch": 74.97495602646788, + "grad_norm": 0.5340383052825928, + "learning_rate": 1.2529313232830822e-05, + "loss": 0.1914585304260254, + "step": 223800 + }, + { + "epoch": 75.0083759108803, + "grad_norm": 0.529868483543396, + "learning_rate": 1.2512730318257956e-05, + "loss": 0.19096315383911133, + "step": 223900 + }, + { + "epoch": 75.04187955440155, + "grad_norm": 0.5163419246673584, + "learning_rate": 1.2495979899497488e-05, + "loss": 0.18681686401367187, + "step": 224000 + }, + { + "epoch": 75.07538319792278, + "grad_norm": 0.6350462436676025, + "learning_rate": 1.2479229480737019e-05, + "loss": 0.1882038688659668, + "step": 224100 + }, + { + "epoch": 75.108886841444, + "grad_norm": 0.5319573283195496, + "learning_rate": 1.246247906197655e-05, + "loss": 0.18803632736206055, + "step": 224200 + }, + { + "epoch": 75.14239048496523, + "grad_norm": 0.5288993120193481, + "learning_rate": 1.2445728643216081e-05, + "loss": 0.18808624267578125, + "step": 224300 + }, + { + "epoch": 75.17589412848648, + "grad_norm": 0.6789448261260986, + "learning_rate": 1.2428978224455612e-05, + "loss": 0.18842166900634766, + "step": 224400 + }, + { + "epoch": 75.2093977720077, + "grad_norm": 0.661927342414856, + "learning_rate": 1.2412227805695142e-05, + "loss": 0.18897750854492187, + "step": 224500 + }, + { + "epoch": 75.24290141552893, + "grad_norm": 0.5049561262130737, + "learning_rate": 1.2395477386934675e-05, + "loss": 0.18828922271728515, + "step": 224600 + }, + { + "epoch": 75.27640505905018, + "grad_norm": 0.5841866135597229, + "learning_rate": 1.2378726968174205e-05, + "loss": 0.18943553924560547, + "step": 224700 + }, + { + "epoch": 75.3099087025714, + "grad_norm": 0.6885756254196167, + "learning_rate": 1.2361976549413736e-05, + "loss": 0.18894081115722655, + "step": 224800 + }, + { + "epoch": 75.34341234609263, + "grad_norm": 0.7039951086044312, + "learning_rate": 1.2345226130653268e-05, + "loss": 0.18984657287597656, + "step": 224900 + }, + { + "epoch": 75.37691598961388, + "grad_norm": 0.6714735627174377, + "learning_rate": 1.2328475711892798e-05, + "loss": 0.19007621765136717, + "step": 225000 + }, + { + "epoch": 75.4104196331351, + "grad_norm": 0.637840986251831, + "learning_rate": 1.2311725293132329e-05, + "loss": 0.18986061096191406, + "step": 225100 + }, + { + "epoch": 75.44392327665634, + "grad_norm": 0.5885179042816162, + "learning_rate": 1.2294974874371861e-05, + "loss": 0.18973173141479494, + "step": 225200 + }, + { + "epoch": 75.47742692017756, + "grad_norm": 0.6655402779579163, + "learning_rate": 1.2278224455611392e-05, + "loss": 0.19028383255004883, + "step": 225300 + }, + { + "epoch": 75.5109305636988, + "grad_norm": 0.6711523532867432, + "learning_rate": 1.2261474036850922e-05, + "loss": 0.19036417007446288, + "step": 225400 + }, + { + "epoch": 75.54443420722004, + "grad_norm": 0.7367367744445801, + "learning_rate": 1.2244723618090453e-05, + "loss": 0.1918941307067871, + "step": 225500 + }, + { + "epoch": 75.57793785074126, + "grad_norm": 0.8443908095359802, + "learning_rate": 1.2227973199329983e-05, + "loss": 0.19089139938354494, + "step": 225600 + }, + { + "epoch": 75.61144149426251, + "grad_norm": 0.5808036923408508, + "learning_rate": 1.2211222780569514e-05, + "loss": 0.19058563232421874, + "step": 225700 + }, + { + "epoch": 75.64494513778374, + "grad_norm": 0.5212644934654236, + "learning_rate": 1.2194472361809046e-05, + "loss": 0.19121980667114258, + "step": 225800 + }, + { + "epoch": 75.67844878130497, + "grad_norm": 0.7097404599189758, + "learning_rate": 1.2177889447236182e-05, + "loss": 0.1912353515625, + "step": 225900 + }, + { + "epoch": 75.7119524248262, + "grad_norm": 0.6513300538063049, + "learning_rate": 1.2161139028475712e-05, + "loss": 0.19171392440795898, + "step": 226000 + }, + { + "epoch": 75.74545606834744, + "grad_norm": 0.6188165545463562, + "learning_rate": 1.2144388609715243e-05, + "loss": 0.19226541519165039, + "step": 226100 + }, + { + "epoch": 75.77895971186867, + "grad_norm": 0.6310757994651794, + "learning_rate": 1.2127638190954775e-05, + "loss": 0.1912686538696289, + "step": 226200 + }, + { + "epoch": 75.8124633553899, + "grad_norm": 0.6972214579582214, + "learning_rate": 1.2110887772194306e-05, + "loss": 0.19245899200439454, + "step": 226300 + }, + { + "epoch": 75.84596699891114, + "grad_norm": 0.6156506538391113, + "learning_rate": 1.2094137353433836e-05, + "loss": 0.1912640380859375, + "step": 226400 + }, + { + "epoch": 75.87947064243237, + "grad_norm": 0.627688467502594, + "learning_rate": 1.2077386934673367e-05, + "loss": 0.19346479415893555, + "step": 226500 + }, + { + "epoch": 75.9129742859536, + "grad_norm": 0.620262622833252, + "learning_rate": 1.2060636515912899e-05, + "loss": 0.19184036254882814, + "step": 226600 + }, + { + "epoch": 75.94647792947482, + "grad_norm": 0.6578592658042908, + "learning_rate": 1.204388609715243e-05, + "loss": 0.1920124626159668, + "step": 226700 + }, + { + "epoch": 75.97998157299607, + "grad_norm": 0.4712987542152405, + "learning_rate": 1.202713567839196e-05, + "loss": 0.19146875381469727, + "step": 226800 + }, + { + "epoch": 76.01340145740849, + "grad_norm": 0.5716565251350403, + "learning_rate": 1.2010385259631492e-05, + "loss": 0.19078388214111328, + "step": 226900 + }, + { + "epoch": 76.04690510092972, + "grad_norm": 0.7094972133636475, + "learning_rate": 1.1993634840871023e-05, + "loss": 0.18728803634643554, + "step": 227000 + }, + { + "epoch": 76.08040874445096, + "grad_norm": 0.6303561329841614, + "learning_rate": 1.1976884422110553e-05, + "loss": 0.18724044799804687, + "step": 227100 + }, + { + "epoch": 76.11391238797219, + "grad_norm": 0.7359886765480042, + "learning_rate": 1.1960134003350085e-05, + "loss": 0.1879755973815918, + "step": 227200 + }, + { + "epoch": 76.14741603149342, + "grad_norm": 0.857787013053894, + "learning_rate": 1.1943383584589616e-05, + "loss": 0.18758907318115234, + "step": 227300 + }, + { + "epoch": 76.18091967501466, + "grad_norm": 0.607428252696991, + "learning_rate": 1.1926633165829146e-05, + "loss": 0.18798053741455079, + "step": 227400 + }, + { + "epoch": 76.21442331853589, + "grad_norm": 0.8037320375442505, + "learning_rate": 1.1909882747068679e-05, + "loss": 0.1890050506591797, + "step": 227500 + }, + { + "epoch": 76.24792696205712, + "grad_norm": 0.6359191536903381, + "learning_rate": 1.1893132328308209e-05, + "loss": 0.18898937225341797, + "step": 227600 + }, + { + "epoch": 76.28143060557835, + "grad_norm": 0.6721845269203186, + "learning_rate": 1.187638190954774e-05, + "loss": 0.1883324432373047, + "step": 227700 + }, + { + "epoch": 76.3149342490996, + "grad_norm": 0.6467797756195068, + "learning_rate": 1.185963149078727e-05, + "loss": 0.1888943099975586, + "step": 227800 + }, + { + "epoch": 76.34843789262082, + "grad_norm": 0.7214395999908447, + "learning_rate": 1.1843048576214406e-05, + "loss": 0.1892184829711914, + "step": 227900 + }, + { + "epoch": 76.38194153614205, + "grad_norm": 0.6020253896713257, + "learning_rate": 1.1826298157453937e-05, + "loss": 0.1896377372741699, + "step": 228000 + }, + { + "epoch": 76.4154451796633, + "grad_norm": 0.6029198169708252, + "learning_rate": 1.1809547738693467e-05, + "loss": 0.18889514923095704, + "step": 228100 + }, + { + "epoch": 76.44894882318452, + "grad_norm": 0.7419018745422363, + "learning_rate": 1.1792797319933e-05, + "loss": 0.18998069763183595, + "step": 228200 + }, + { + "epoch": 76.48245246670575, + "grad_norm": 0.6079985499382019, + "learning_rate": 1.177604690117253e-05, + "loss": 0.19057266235351564, + "step": 228300 + }, + { + "epoch": 76.51595611022698, + "grad_norm": 0.6738330125808716, + "learning_rate": 1.175929648241206e-05, + "loss": 0.19021852493286132, + "step": 228400 + }, + { + "epoch": 76.54945975374822, + "grad_norm": 0.6184301376342773, + "learning_rate": 1.1742546063651593e-05, + "loss": 0.19030994415283203, + "step": 228500 + }, + { + "epoch": 76.58296339726945, + "grad_norm": 0.6210246682167053, + "learning_rate": 1.1725795644891123e-05, + "loss": 0.18975492477416991, + "step": 228600 + }, + { + "epoch": 76.61646704079068, + "grad_norm": 0.6398160457611084, + "learning_rate": 1.1709045226130654e-05, + "loss": 0.19056596755981445, + "step": 228700 + }, + { + "epoch": 76.64997068431192, + "grad_norm": 0.5791774392127991, + "learning_rate": 1.1692294807370186e-05, + "loss": 0.19000568389892578, + "step": 228800 + }, + { + "epoch": 76.68347432783315, + "grad_norm": 0.6452813744544983, + "learning_rate": 1.1675544388609716e-05, + "loss": 0.19119565963745117, + "step": 228900 + }, + { + "epoch": 76.71697797135438, + "grad_norm": 0.5637299418449402, + "learning_rate": 1.1658793969849247e-05, + "loss": 0.1906993293762207, + "step": 229000 + }, + { + "epoch": 76.75048161487561, + "grad_norm": 0.6561068892478943, + "learning_rate": 1.1642043551088777e-05, + "loss": 0.1915520668029785, + "step": 229100 + }, + { + "epoch": 76.78398525839685, + "grad_norm": 0.6777018904685974, + "learning_rate": 1.162529313232831e-05, + "loss": 0.19029684066772462, + "step": 229200 + }, + { + "epoch": 76.81748890191808, + "grad_norm": 0.4779558479785919, + "learning_rate": 1.160854271356784e-05, + "loss": 0.19119384765625, + "step": 229300 + }, + { + "epoch": 76.85099254543931, + "grad_norm": 0.5411806106567383, + "learning_rate": 1.159179229480737e-05, + "loss": 0.19078275680541992, + "step": 229400 + }, + { + "epoch": 76.88449618896055, + "grad_norm": 0.623041033744812, + "learning_rate": 1.1575041876046903e-05, + "loss": 0.19250349044799805, + "step": 229500 + }, + { + "epoch": 76.91799983248178, + "grad_norm": 0.5169858336448669, + "learning_rate": 1.1558291457286433e-05, + "loss": 0.19133710861206055, + "step": 229600 + }, + { + "epoch": 76.95150347600301, + "grad_norm": 0.5985132455825806, + "learning_rate": 1.1541541038525964e-05, + "loss": 0.19112289428710938, + "step": 229700 + }, + { + "epoch": 76.98500711952425, + "grad_norm": 0.6158753633499146, + "learning_rate": 1.1524790619765494e-05, + "loss": 0.1921292495727539, + "step": 229800 + }, + { + "epoch": 77.01842700393668, + "grad_norm": 0.5963013172149658, + "learning_rate": 1.1508040201005025e-05, + "loss": 0.18872583389282227, + "step": 229900 + }, + { + "epoch": 77.05193064745791, + "grad_norm": 0.5578435659408569, + "learning_rate": 1.149145728643216e-05, + "loss": 0.1861967658996582, + "step": 230000 + }, + { + "epoch": 77.08543429097914, + "grad_norm": 0.5361016988754272, + "learning_rate": 1.1474706867671691e-05, + "loss": 0.18753931045532227, + "step": 230100 + }, + { + "epoch": 77.11893793450038, + "grad_norm": 0.7023466229438782, + "learning_rate": 1.1457956448911223e-05, + "loss": 0.18739143371582032, + "step": 230200 + }, + { + "epoch": 77.15244157802161, + "grad_norm": 0.5231741666793823, + "learning_rate": 1.1441206030150754e-05, + "loss": 0.1882183074951172, + "step": 230300 + }, + { + "epoch": 77.18594522154284, + "grad_norm": 0.7267812490463257, + "learning_rate": 1.1424455611390284e-05, + "loss": 0.18830036163330077, + "step": 230400 + }, + { + "epoch": 77.21944886506408, + "grad_norm": 0.5698330998420715, + "learning_rate": 1.1407705192629817e-05, + "loss": 0.18730653762817384, + "step": 230500 + }, + { + "epoch": 77.25295250858531, + "grad_norm": 0.6907638907432556, + "learning_rate": 1.1390954773869347e-05, + "loss": 0.18742834091186522, + "step": 230600 + }, + { + "epoch": 77.28645615210654, + "grad_norm": 0.5616415739059448, + "learning_rate": 1.1374204355108878e-05, + "loss": 0.1885102844238281, + "step": 230700 + }, + { + "epoch": 77.31995979562778, + "grad_norm": 0.6362226009368896, + "learning_rate": 1.135745393634841e-05, + "loss": 0.18842847824096678, + "step": 230800 + }, + { + "epoch": 77.35346343914901, + "grad_norm": 0.5648617744445801, + "learning_rate": 1.134070351758794e-05, + "loss": 0.18916454315185546, + "step": 230900 + }, + { + "epoch": 77.38696708267024, + "grad_norm": 0.7212550044059753, + "learning_rate": 1.1323953098827471e-05, + "loss": 0.1888494873046875, + "step": 231000 + }, + { + "epoch": 77.42047072619147, + "grad_norm": 0.8556243777275085, + "learning_rate": 1.1307202680067003e-05, + "loss": 0.18897062301635742, + "step": 231100 + }, + { + "epoch": 77.45397436971271, + "grad_norm": 0.8663336634635925, + "learning_rate": 1.1290452261306534e-05, + "loss": 0.18911514282226563, + "step": 231200 + }, + { + "epoch": 77.48747801323394, + "grad_norm": 0.555095911026001, + "learning_rate": 1.1273701842546064e-05, + "loss": 0.19008974075317384, + "step": 231300 + }, + { + "epoch": 77.52098165675517, + "grad_norm": 0.5795916318893433, + "learning_rate": 1.1256951423785596e-05, + "loss": 0.19058879852294922, + "step": 231400 + }, + { + "epoch": 77.55448530027641, + "grad_norm": 0.6374692916870117, + "learning_rate": 1.1240201005025127e-05, + "loss": 0.19093334197998046, + "step": 231500 + }, + { + "epoch": 77.58798894379764, + "grad_norm": 0.5286735892295837, + "learning_rate": 1.1223450586264657e-05, + "loss": 0.18953340530395507, + "step": 231600 + }, + { + "epoch": 77.62149258731887, + "grad_norm": 0.7152593731880188, + "learning_rate": 1.120670016750419e-05, + "loss": 0.18968648910522462, + "step": 231700 + }, + { + "epoch": 77.6549962308401, + "grad_norm": 0.6775063276290894, + "learning_rate": 1.118994974874372e-05, + "loss": 0.19057016372680663, + "step": 231800 + }, + { + "epoch": 77.68849987436134, + "grad_norm": 0.5843816995620728, + "learning_rate": 1.117319932998325e-05, + "loss": 0.18996496200561525, + "step": 231900 + }, + { + "epoch": 77.72200351788257, + "grad_norm": 0.6201971769332886, + "learning_rate": 1.1156616415410385e-05, + "loss": 0.1909531021118164, + "step": 232000 + }, + { + "epoch": 77.7555071614038, + "grad_norm": 0.6630064249038696, + "learning_rate": 1.1139865996649915e-05, + "loss": 0.18996026992797851, + "step": 232100 + }, + { + "epoch": 77.78901080492504, + "grad_norm": 0.6778659224510193, + "learning_rate": 1.1123115577889448e-05, + "loss": 0.19063941955566407, + "step": 232200 + }, + { + "epoch": 77.82251444844627, + "grad_norm": 0.6163811087608337, + "learning_rate": 1.1106365159128978e-05, + "loss": 0.19099504470825196, + "step": 232300 + }, + { + "epoch": 77.8560180919675, + "grad_norm": 0.5668363571166992, + "learning_rate": 1.1089614740368509e-05, + "loss": 0.1901922607421875, + "step": 232400 + }, + { + "epoch": 77.88952173548873, + "grad_norm": 0.5424449443817139, + "learning_rate": 1.1072864321608041e-05, + "loss": 0.19019113540649413, + "step": 232500 + }, + { + "epoch": 77.92302537900997, + "grad_norm": 0.5976355671882629, + "learning_rate": 1.1056113902847571e-05, + "loss": 0.19223594665527344, + "step": 232600 + }, + { + "epoch": 77.9565290225312, + "grad_norm": 0.586529016494751, + "learning_rate": 1.1039363484087102e-05, + "loss": 0.19147846221923828, + "step": 232700 + }, + { + "epoch": 77.99003266605243, + "grad_norm": 0.478441447019577, + "learning_rate": 1.1022613065326634e-05, + "loss": 0.19069934844970704, + "step": 232800 + }, + { + "epoch": 78.02345255046487, + "grad_norm": 0.595913290977478, + "learning_rate": 1.1005862646566165e-05, + "loss": 0.188853759765625, + "step": 232900 + }, + { + "epoch": 78.0569561939861, + "grad_norm": 0.7776252031326294, + "learning_rate": 1.0989112227805695e-05, + "loss": 0.18635259628295897, + "step": 233000 + }, + { + "epoch": 78.09045983750732, + "grad_norm": 0.5748878717422485, + "learning_rate": 1.0972361809045227e-05, + "loss": 0.18685552597045899, + "step": 233100 + }, + { + "epoch": 78.12396348102857, + "grad_norm": 0.5180676579475403, + "learning_rate": 1.0955611390284758e-05, + "loss": 0.1877056121826172, + "step": 233200 + }, + { + "epoch": 78.1574671245498, + "grad_norm": 0.673117458820343, + "learning_rate": 1.0938860971524288e-05, + "loss": 0.18688018798828124, + "step": 233300 + }, + { + "epoch": 78.19097076807103, + "grad_norm": 0.6519831418991089, + "learning_rate": 1.092211055276382e-05, + "loss": 0.18750722885131835, + "step": 233400 + }, + { + "epoch": 78.22447441159225, + "grad_norm": 0.5309635400772095, + "learning_rate": 1.0905360134003351e-05, + "loss": 0.18738748550415038, + "step": 233500 + }, + { + "epoch": 78.2579780551135, + "grad_norm": 0.6039297580718994, + "learning_rate": 1.0888609715242882e-05, + "loss": 0.18785961151123046, + "step": 233600 + }, + { + "epoch": 78.29148169863473, + "grad_norm": 0.4987012445926666, + "learning_rate": 1.0871859296482414e-05, + "loss": 0.18820880889892577, + "step": 233700 + }, + { + "epoch": 78.32498534215595, + "grad_norm": 0.6190744638442993, + "learning_rate": 1.0855108877721944e-05, + "loss": 0.18877883911132812, + "step": 233800 + }, + { + "epoch": 78.3584889856772, + "grad_norm": 0.6907918453216553, + "learning_rate": 1.0838358458961475e-05, + "loss": 0.18849582672119142, + "step": 233900 + }, + { + "epoch": 78.39199262919843, + "grad_norm": 0.5600749850273132, + "learning_rate": 1.0821608040201005e-05, + "loss": 0.18884668350219727, + "step": 234000 + }, + { + "epoch": 78.42549627271966, + "grad_norm": 0.6390280723571777, + "learning_rate": 1.0805025125628141e-05, + "loss": 0.1880735397338867, + "step": 234100 + }, + { + "epoch": 78.45899991624088, + "grad_norm": 0.6333056688308716, + "learning_rate": 1.0788274706867672e-05, + "loss": 0.18834163665771483, + "step": 234200 + }, + { + "epoch": 78.49250355976213, + "grad_norm": 0.5011644959449768, + "learning_rate": 1.0771524288107202e-05, + "loss": 0.18952463150024415, + "step": 234300 + }, + { + "epoch": 78.52600720328336, + "grad_norm": 0.7219404578208923, + "learning_rate": 1.0754773869346735e-05, + "loss": 0.18985385894775392, + "step": 234400 + }, + { + "epoch": 78.55951084680459, + "grad_norm": 0.6397419571876526, + "learning_rate": 1.0738023450586265e-05, + "loss": 0.18919252395629882, + "step": 234500 + }, + { + "epoch": 78.59301449032583, + "grad_norm": 0.6841224431991577, + "learning_rate": 1.0721273031825796e-05, + "loss": 0.18944778442382812, + "step": 234600 + }, + { + "epoch": 78.62651813384706, + "grad_norm": 0.7453842163085938, + "learning_rate": 1.0704522613065328e-05, + "loss": 0.19007984161376953, + "step": 234700 + }, + { + "epoch": 78.66002177736829, + "grad_norm": 0.5905109643936157, + "learning_rate": 1.0687772194304858e-05, + "loss": 0.18957454681396485, + "step": 234800 + }, + { + "epoch": 78.69352542088953, + "grad_norm": 0.6769446134567261, + "learning_rate": 1.0671021775544389e-05, + "loss": 0.19039548873901369, + "step": 234900 + }, + { + "epoch": 78.72702906441076, + "grad_norm": 0.5825620293617249, + "learning_rate": 1.065427135678392e-05, + "loss": 0.1897379684448242, + "step": 235000 + }, + { + "epoch": 78.76053270793199, + "grad_norm": 0.6064398288726807, + "learning_rate": 1.0637520938023452e-05, + "loss": 0.18956695556640624, + "step": 235100 + }, + { + "epoch": 78.79403635145322, + "grad_norm": 0.5826224088668823, + "learning_rate": 1.0620770519262982e-05, + "loss": 0.19094810485839844, + "step": 235200 + }, + { + "epoch": 78.82753999497446, + "grad_norm": 0.6187439560890198, + "learning_rate": 1.0604020100502513e-05, + "loss": 0.190173397064209, + "step": 235300 + }, + { + "epoch": 78.86104363849569, + "grad_norm": 0.7878564596176147, + "learning_rate": 1.0587269681742045e-05, + "loss": 0.19098638534545898, + "step": 235400 + }, + { + "epoch": 78.89454728201692, + "grad_norm": 0.7218932509422302, + "learning_rate": 1.0570519262981575e-05, + "loss": 0.19098539352416993, + "step": 235500 + }, + { + "epoch": 78.92805092553816, + "grad_norm": 0.5134685635566711, + "learning_rate": 1.0553768844221106e-05, + "loss": 0.19038022994995119, + "step": 235600 + }, + { + "epoch": 78.96155456905939, + "grad_norm": 0.641615092754364, + "learning_rate": 1.0537018425460638e-05, + "loss": 0.1914260482788086, + "step": 235700 + }, + { + "epoch": 78.99505821258062, + "grad_norm": 0.6211548447608948, + "learning_rate": 1.0520268006700169e-05, + "loss": 0.1908476448059082, + "step": 235800 + }, + { + "epoch": 79.02847809699304, + "grad_norm": 0.5376355648040771, + "learning_rate": 1.0503517587939699e-05, + "loss": 0.18590696334838866, + "step": 235900 + }, + { + "epoch": 79.06198174051428, + "grad_norm": 0.5554808974266052, + "learning_rate": 1.0486767169179231e-05, + "loss": 0.18621206283569336, + "step": 236000 + }, + { + "epoch": 79.09548538403551, + "grad_norm": 0.6652063727378845, + "learning_rate": 1.0470184254606365e-05, + "loss": 0.18646297454833985, + "step": 236100 + }, + { + "epoch": 79.12898902755674, + "grad_norm": 0.6671931147575378, + "learning_rate": 1.0453433835845896e-05, + "loss": 0.18682302474975587, + "step": 236200 + }, + { + "epoch": 79.16249267107798, + "grad_norm": 0.6100969910621643, + "learning_rate": 1.0436683417085426e-05, + "loss": 0.18717609405517577, + "step": 236300 + }, + { + "epoch": 79.19599631459921, + "grad_norm": 0.7126432061195374, + "learning_rate": 1.0419932998324959e-05, + "loss": 0.18632455825805663, + "step": 236400 + }, + { + "epoch": 79.22949995812044, + "grad_norm": 0.5226724147796631, + "learning_rate": 1.040318257956449e-05, + "loss": 0.18794141769409178, + "step": 236500 + }, + { + "epoch": 79.26300360164169, + "grad_norm": 0.5243064165115356, + "learning_rate": 1.038643216080402e-05, + "loss": 0.18816068649291992, + "step": 236600 + }, + { + "epoch": 79.29650724516291, + "grad_norm": 0.607912003993988, + "learning_rate": 1.0369681742043552e-05, + "loss": 0.18687108993530274, + "step": 236700 + }, + { + "epoch": 79.33001088868414, + "grad_norm": 0.5773678421974182, + "learning_rate": 1.0352931323283082e-05, + "loss": 0.18846334457397462, + "step": 236800 + }, + { + "epoch": 79.36351453220537, + "grad_norm": 0.6360297203063965, + "learning_rate": 1.0336180904522613e-05, + "loss": 0.18933845520019532, + "step": 236900 + }, + { + "epoch": 79.39701817572661, + "grad_norm": 0.6809837222099304, + "learning_rate": 1.0319430485762145e-05, + "loss": 0.18878520965576173, + "step": 237000 + }, + { + "epoch": 79.43052181924784, + "grad_norm": 0.6212404370307922, + "learning_rate": 1.0302680067001676e-05, + "loss": 0.18835649490356446, + "step": 237100 + }, + { + "epoch": 79.46402546276907, + "grad_norm": 0.5026853680610657, + "learning_rate": 1.0285929648241206e-05, + "loss": 0.18797584533691405, + "step": 237200 + }, + { + "epoch": 79.49752910629032, + "grad_norm": 0.5610924959182739, + "learning_rate": 1.0269179229480738e-05, + "loss": 0.18864788055419923, + "step": 237300 + }, + { + "epoch": 79.53103274981154, + "grad_norm": 0.5812443494796753, + "learning_rate": 1.0252428810720269e-05, + "loss": 0.18857982635498047, + "step": 237400 + }, + { + "epoch": 79.56453639333277, + "grad_norm": 0.5942834615707397, + "learning_rate": 1.02356783919598e-05, + "loss": 0.18995513916015624, + "step": 237500 + }, + { + "epoch": 79.598040036854, + "grad_norm": 0.780934751033783, + "learning_rate": 1.021892797319933e-05, + "loss": 0.1898634147644043, + "step": 237600 + }, + { + "epoch": 79.63154368037524, + "grad_norm": 0.6805693507194519, + "learning_rate": 1.0202177554438862e-05, + "loss": 0.18985597610473634, + "step": 237700 + }, + { + "epoch": 79.66504732389647, + "grad_norm": 0.6133860349655151, + "learning_rate": 1.0185427135678393e-05, + "loss": 0.18866056442260742, + "step": 237800 + }, + { + "epoch": 79.6985509674177, + "grad_norm": 0.509017825126648, + "learning_rate": 1.0168676716917923e-05, + "loss": 0.1894827651977539, + "step": 237900 + }, + { + "epoch": 79.73205461093895, + "grad_norm": 0.7108103036880493, + "learning_rate": 1.0151926298157455e-05, + "loss": 0.18957220077514647, + "step": 238000 + }, + { + "epoch": 79.76555825446017, + "grad_norm": 0.5843678712844849, + "learning_rate": 1.013534338358459e-05, + "loss": 0.1894863700866699, + "step": 238100 + }, + { + "epoch": 79.7990618979814, + "grad_norm": 0.5689200758934021, + "learning_rate": 1.011859296482412e-05, + "loss": 0.189605712890625, + "step": 238200 + }, + { + "epoch": 79.83256554150263, + "grad_norm": 0.5582265257835388, + "learning_rate": 1.010184254606365e-05, + "loss": 0.1899770736694336, + "step": 238300 + }, + { + "epoch": 79.86606918502387, + "grad_norm": 0.7666222453117371, + "learning_rate": 1.0085092127303183e-05, + "loss": 0.19003982543945314, + "step": 238400 + }, + { + "epoch": 79.8995728285451, + "grad_norm": 0.5454803109169006, + "learning_rate": 1.0068341708542713e-05, + "loss": 0.1902810287475586, + "step": 238500 + }, + { + "epoch": 79.93307647206633, + "grad_norm": 0.7217103838920593, + "learning_rate": 1.0051591289782244e-05, + "loss": 0.19129709243774415, + "step": 238600 + }, + { + "epoch": 79.96658011558758, + "grad_norm": 0.5859233140945435, + "learning_rate": 1.0034840871021776e-05, + "loss": 0.19089550018310547, + "step": 238700 + }, + { + "epoch": 80.0, + "grad_norm": 0.7871226072311401, + "learning_rate": 1.0018090452261307e-05, + "loss": 0.19010568618774415, + "step": 238800 + }, + { + "epoch": 80.03350364352123, + "grad_norm": 0.6410444974899292, + "learning_rate": 1.0001340033500837e-05, + "loss": 0.18579286575317383, + "step": 238900 + }, + { + "epoch": 80.06700728704247, + "grad_norm": 0.49249953031539917, + "learning_rate": 9.98458961474037e-06, + "loss": 0.18595710754394532, + "step": 239000 + }, + { + "epoch": 80.1005109305637, + "grad_norm": 0.4707689583301544, + "learning_rate": 9.9678391959799e-06, + "loss": 0.1854451370239258, + "step": 239100 + }, + { + "epoch": 80.13401457408493, + "grad_norm": 0.6049455404281616, + "learning_rate": 9.95108877721943e-06, + "loss": 0.18605972290039063, + "step": 239200 + }, + { + "epoch": 80.16751821760616, + "grad_norm": 0.5813843011856079, + "learning_rate": 9.934338358458963e-06, + "loss": 0.18595891952514648, + "step": 239300 + }, + { + "epoch": 80.2010218611274, + "grad_norm": 0.6518586277961731, + "learning_rate": 9.917587939698493e-06, + "loss": 0.18725431442260743, + "step": 239400 + }, + { + "epoch": 80.23452550464863, + "grad_norm": 0.7379871010780334, + "learning_rate": 9.900837520938024e-06, + "loss": 0.18730653762817384, + "step": 239500 + }, + { + "epoch": 80.26802914816986, + "grad_norm": 0.7457312941551208, + "learning_rate": 9.884087102177556e-06, + "loss": 0.18689844131469727, + "step": 239600 + }, + { + "epoch": 80.3015327916911, + "grad_norm": 0.8484863638877869, + "learning_rate": 9.867336683417086e-06, + "loss": 0.18761758804321288, + "step": 239700 + }, + { + "epoch": 80.33503643521233, + "grad_norm": 0.6102080941200256, + "learning_rate": 9.850586264656617e-06, + "loss": 0.18688488006591797, + "step": 239800 + }, + { + "epoch": 80.36854007873356, + "grad_norm": 0.6622928380966187, + "learning_rate": 9.833835845896149e-06, + "loss": 0.18741252899169922, + "step": 239900 + }, + { + "epoch": 80.40204372225479, + "grad_norm": 0.5935907959938049, + "learning_rate": 9.81708542713568e-06, + "loss": 0.1878078269958496, + "step": 240000 + }, + { + "epoch": 80.43554736577603, + "grad_norm": 0.6074280142784119, + "learning_rate": 9.800502512562816e-06, + "loss": 0.18737226486206054, + "step": 240100 + }, + { + "epoch": 80.46905100929726, + "grad_norm": 0.6889368295669556, + "learning_rate": 9.783752093802346e-06, + "loss": 0.18822650909423827, + "step": 240200 + }, + { + "epoch": 80.50255465281849, + "grad_norm": 0.5317627787590027, + "learning_rate": 9.767001675041877e-06, + "loss": 0.1878480339050293, + "step": 240300 + }, + { + "epoch": 80.53605829633973, + "grad_norm": 0.5207783579826355, + "learning_rate": 9.750251256281407e-06, + "loss": 0.1882781219482422, + "step": 240400 + }, + { + "epoch": 80.56956193986096, + "grad_norm": 0.6113369464874268, + "learning_rate": 9.733500837520938e-06, + "loss": 0.1896601676940918, + "step": 240500 + }, + { + "epoch": 80.60306558338219, + "grad_norm": 0.6112746000289917, + "learning_rate": 9.716750418760468e-06, + "loss": 0.18931255340576172, + "step": 240600 + }, + { + "epoch": 80.63656922690343, + "grad_norm": 0.5978585481643677, + "learning_rate": 9.7e-06, + "loss": 0.18961137771606446, + "step": 240700 + }, + { + "epoch": 80.67007287042466, + "grad_norm": 0.5999939441680908, + "learning_rate": 9.68324958123953e-06, + "loss": 0.1893038558959961, + "step": 240800 + }, + { + "epoch": 80.70357651394589, + "grad_norm": 0.7477551698684692, + "learning_rate": 9.666499162479061e-06, + "loss": 0.19065048217773437, + "step": 240900 + }, + { + "epoch": 80.73708015746712, + "grad_norm": 0.49969878792762756, + "learning_rate": 9.649748743718594e-06, + "loss": 0.18887239456176758, + "step": 241000 + }, + { + "epoch": 80.77058380098836, + "grad_norm": 0.6229384541511536, + "learning_rate": 9.632998324958124e-06, + "loss": 0.18931352615356445, + "step": 241100 + }, + { + "epoch": 80.80408744450959, + "grad_norm": 0.5331135988235474, + "learning_rate": 9.616247906197655e-06, + "loss": 0.18917076110839845, + "step": 241200 + }, + { + "epoch": 80.83759108803082, + "grad_norm": 0.5475077629089355, + "learning_rate": 9.599497487437187e-06, + "loss": 0.18999635696411132, + "step": 241300 + }, + { + "epoch": 80.87109473155206, + "grad_norm": 0.6110318303108215, + "learning_rate": 9.582747068676717e-06, + "loss": 0.18988681793212892, + "step": 241400 + }, + { + "epoch": 80.90459837507329, + "grad_norm": 0.6834789514541626, + "learning_rate": 9.565996649916248e-06, + "loss": 0.18972234725952147, + "step": 241500 + }, + { + "epoch": 80.93810201859452, + "grad_norm": 0.5601489543914795, + "learning_rate": 9.54924623115578e-06, + "loss": 0.1901242446899414, + "step": 241600 + }, + { + "epoch": 80.97160566211575, + "grad_norm": 0.5707966685295105, + "learning_rate": 9.53249581239531e-06, + "loss": 0.19092308044433592, + "step": 241700 + }, + { + "epoch": 81.00502554652819, + "grad_norm": 0.6027684211730957, + "learning_rate": 9.515745393634841e-06, + "loss": 0.18986186981201172, + "step": 241800 + }, + { + "epoch": 81.03852919004942, + "grad_norm": 0.43851712346076965, + "learning_rate": 9.498994974874373e-06, + "loss": 0.1864785385131836, + "step": 241900 + }, + { + "epoch": 81.07203283357065, + "grad_norm": 0.5600922107696533, + "learning_rate": 9.482244556113904e-06, + "loss": 0.18667762756347656, + "step": 242000 + }, + { + "epoch": 81.10553647709189, + "grad_norm": 0.639335036277771, + "learning_rate": 9.46566164154104e-06, + "loss": 0.18642004013061522, + "step": 242100 + }, + { + "epoch": 81.13904012061312, + "grad_norm": 0.6750245690345764, + "learning_rate": 9.44891122278057e-06, + "loss": 0.18629102706909179, + "step": 242200 + }, + { + "epoch": 81.17254376413435, + "grad_norm": 0.5700585842132568, + "learning_rate": 9.4321608040201e-06, + "loss": 0.18613723754882813, + "step": 242300 + }, + { + "epoch": 81.20604740765559, + "grad_norm": 0.6852511167526245, + "learning_rate": 9.415410385259631e-06, + "loss": 0.18597820281982422, + "step": 242400 + }, + { + "epoch": 81.23955105117682, + "grad_norm": 0.5194628834724426, + "learning_rate": 9.398659966499162e-06, + "loss": 0.18753597259521484, + "step": 242500 + }, + { + "epoch": 81.27305469469805, + "grad_norm": 0.6448808312416077, + "learning_rate": 9.381909547738694e-06, + "loss": 0.18645841598510743, + "step": 242600 + }, + { + "epoch": 81.30655833821928, + "grad_norm": 0.4830906391143799, + "learning_rate": 9.365159128978224e-06, + "loss": 0.18598066329956053, + "step": 242700 + }, + { + "epoch": 81.34006198174052, + "grad_norm": 0.5368765592575073, + "learning_rate": 9.348408710217755e-06, + "loss": 0.18756242752075195, + "step": 242800 + }, + { + "epoch": 81.37356562526175, + "grad_norm": 0.7084921598434448, + "learning_rate": 9.331658291457287e-06, + "loss": 0.18713598251342772, + "step": 242900 + }, + { + "epoch": 81.40706926878298, + "grad_norm": 0.5406467318534851, + "learning_rate": 9.314907872696818e-06, + "loss": 0.18767911911010743, + "step": 243000 + }, + { + "epoch": 81.44057291230422, + "grad_norm": 0.6811279654502869, + "learning_rate": 9.298157453936348e-06, + "loss": 0.18792261123657228, + "step": 243100 + }, + { + "epoch": 81.47407655582545, + "grad_norm": 0.6793702244758606, + "learning_rate": 9.281407035175879e-06, + "loss": 0.18808685302734374, + "step": 243200 + }, + { + "epoch": 81.50758019934668, + "grad_norm": 0.5923267006874084, + "learning_rate": 9.264656616415411e-06, + "loss": 0.1878205108642578, + "step": 243300 + }, + { + "epoch": 81.5410838428679, + "grad_norm": 0.5069772005081177, + "learning_rate": 9.247906197654941e-06, + "loss": 0.18798334121704102, + "step": 243400 + }, + { + "epoch": 81.57458748638915, + "grad_norm": 0.6971927881240845, + "learning_rate": 9.231155778894472e-06, + "loss": 0.18779460906982423, + "step": 243500 + }, + { + "epoch": 81.60809112991038, + "grad_norm": 0.4844462275505066, + "learning_rate": 9.214405360134004e-06, + "loss": 0.1885888671875, + "step": 243600 + }, + { + "epoch": 81.6415947734316, + "grad_norm": 0.6287949085235596, + "learning_rate": 9.197654941373535e-06, + "loss": 0.18853179931640626, + "step": 243700 + }, + { + "epoch": 81.67509841695285, + "grad_norm": 0.5208948254585266, + "learning_rate": 9.180904522613065e-06, + "loss": 0.18876758575439453, + "step": 243800 + }, + { + "epoch": 81.70860206047408, + "grad_norm": 0.559596598148346, + "learning_rate": 9.164154103852597e-06, + "loss": 0.18983572006225585, + "step": 243900 + }, + { + "epoch": 81.7421057039953, + "grad_norm": 0.6286110877990723, + "learning_rate": 9.147403685092128e-06, + "loss": 0.18990949630737305, + "step": 244000 + }, + { + "epoch": 81.77560934751654, + "grad_norm": 0.6826990246772766, + "learning_rate": 9.130820770519264e-06, + "loss": 0.18897735595703125, + "step": 244100 + }, + { + "epoch": 81.80911299103778, + "grad_norm": 0.6137732267379761, + "learning_rate": 9.114070351758794e-06, + "loss": 0.1890528106689453, + "step": 244200 + }, + { + "epoch": 81.84261663455901, + "grad_norm": 0.6284852027893066, + "learning_rate": 9.097319932998327e-06, + "loss": 0.18912405014038086, + "step": 244300 + }, + { + "epoch": 81.87612027808024, + "grad_norm": 0.5774878859519958, + "learning_rate": 9.080569514237857e-06, + "loss": 0.18894084930419922, + "step": 244400 + }, + { + "epoch": 81.90962392160148, + "grad_norm": 0.6259322166442871, + "learning_rate": 9.063819095477388e-06, + "loss": 0.1898725700378418, + "step": 244500 + }, + { + "epoch": 81.94312756512271, + "grad_norm": 0.5645041465759277, + "learning_rate": 9.047068676716918e-06, + "loss": 0.18911539077758788, + "step": 244600 + }, + { + "epoch": 81.97663120864394, + "grad_norm": 0.5545311570167542, + "learning_rate": 9.030318257956449e-06, + "loss": 0.18874195098876953, + "step": 244700 + }, + { + "epoch": 82.01005109305638, + "grad_norm": 0.5122572779655457, + "learning_rate": 9.01356783919598e-06, + "loss": 0.1884039306640625, + "step": 244800 + }, + { + "epoch": 82.0435547365776, + "grad_norm": 0.5515125393867493, + "learning_rate": 8.996817420435511e-06, + "loss": 0.18567270278930664, + "step": 244900 + }, + { + "epoch": 82.07705838009883, + "grad_norm": 0.6537274122238159, + "learning_rate": 8.980067001675042e-06, + "loss": 0.18508878707885743, + "step": 245000 + }, + { + "epoch": 82.11056202362006, + "grad_norm": 0.5276825428009033, + "learning_rate": 8.963316582914572e-06, + "loss": 0.18604862213134765, + "step": 245100 + }, + { + "epoch": 82.1440656671413, + "grad_norm": 0.5946404933929443, + "learning_rate": 8.946566164154105e-06, + "loss": 0.18516014099121095, + "step": 245200 + }, + { + "epoch": 82.17756931066253, + "grad_norm": 0.5449401140213013, + "learning_rate": 8.929815745393635e-06, + "loss": 0.18614362716674804, + "step": 245300 + }, + { + "epoch": 82.21107295418376, + "grad_norm": 0.5503102540969849, + "learning_rate": 8.913065326633166e-06, + "loss": 0.18611763000488282, + "step": 245400 + }, + { + "epoch": 82.244576597705, + "grad_norm": 0.6990886330604553, + "learning_rate": 8.896314907872698e-06, + "loss": 0.1872243881225586, + "step": 245500 + }, + { + "epoch": 82.27808024122623, + "grad_norm": 0.5072383880615234, + "learning_rate": 8.879564489112228e-06, + "loss": 0.1860810661315918, + "step": 245600 + }, + { + "epoch": 82.31158388474746, + "grad_norm": 0.5636463165283203, + "learning_rate": 8.862814070351759e-06, + "loss": 0.18700706481933593, + "step": 245700 + }, + { + "epoch": 82.34508752826869, + "grad_norm": 0.5329198837280273, + "learning_rate": 8.84606365159129e-06, + "loss": 0.18637537002563476, + "step": 245800 + }, + { + "epoch": 82.37859117178994, + "grad_norm": 0.7562859654426575, + "learning_rate": 8.829313232830822e-06, + "loss": 0.1869906997680664, + "step": 245900 + }, + { + "epoch": 82.41209481531116, + "grad_norm": 0.642741322517395, + "learning_rate": 8.812562814070352e-06, + "loss": 0.18656137466430664, + "step": 246000 + }, + { + "epoch": 82.4455984588324, + "grad_norm": 0.62885582447052, + "learning_rate": 8.795979899497488e-06, + "loss": 0.18802295684814452, + "step": 246100 + }, + { + "epoch": 82.47910210235364, + "grad_norm": 0.5594859719276428, + "learning_rate": 8.779229480737019e-06, + "loss": 0.18712615966796875, + "step": 246200 + }, + { + "epoch": 82.51260574587486, + "grad_norm": 0.6333134174346924, + "learning_rate": 8.76247906197655e-06, + "loss": 0.18846635818481444, + "step": 246300 + }, + { + "epoch": 82.5461093893961, + "grad_norm": 0.6623076796531677, + "learning_rate": 8.745728643216081e-06, + "loss": 0.1880592155456543, + "step": 246400 + }, + { + "epoch": 82.57961303291734, + "grad_norm": 0.5541040301322937, + "learning_rate": 8.728978224455612e-06, + "loss": 0.1872352409362793, + "step": 246500 + }, + { + "epoch": 82.61311667643857, + "grad_norm": 0.5087713599205017, + "learning_rate": 8.712227805695142e-06, + "loss": 0.1888579559326172, + "step": 246600 + }, + { + "epoch": 82.6466203199598, + "grad_norm": 0.5055890679359436, + "learning_rate": 8.695477386934673e-06, + "loss": 0.18866750717163086, + "step": 246700 + }, + { + "epoch": 82.68012396348102, + "grad_norm": 0.4937209188938141, + "learning_rate": 8.678726968174205e-06, + "loss": 0.18850959777832033, + "step": 246800 + }, + { + "epoch": 82.71362760700227, + "grad_norm": 0.6762095093727112, + "learning_rate": 8.661976549413736e-06, + "loss": 0.1879727554321289, + "step": 246900 + }, + { + "epoch": 82.7471312505235, + "grad_norm": 0.6171196699142456, + "learning_rate": 8.645226130653266e-06, + "loss": 0.18954423904418946, + "step": 247000 + }, + { + "epoch": 82.78063489404472, + "grad_norm": 0.6400672197341919, + "learning_rate": 8.628475711892797e-06, + "loss": 0.18838544845581054, + "step": 247100 + }, + { + "epoch": 82.81413853756597, + "grad_norm": 0.5874627828598022, + "learning_rate": 8.611725293132329e-06, + "loss": 0.18863496780395508, + "step": 247200 + }, + { + "epoch": 82.8476421810872, + "grad_norm": 0.6051297187805176, + "learning_rate": 8.59497487437186e-06, + "loss": 0.1890684509277344, + "step": 247300 + }, + { + "epoch": 82.88114582460842, + "grad_norm": 0.6647644639015198, + "learning_rate": 8.57822445561139e-06, + "loss": 0.18968358993530274, + "step": 247400 + }, + { + "epoch": 82.91464946812965, + "grad_norm": 0.6016401648521423, + "learning_rate": 8.561474036850922e-06, + "loss": 0.18822206497192384, + "step": 247500 + }, + { + "epoch": 82.9481531116509, + "grad_norm": 0.5627951622009277, + "learning_rate": 8.544723618090453e-06, + "loss": 0.18971824645996094, + "step": 247600 + }, + { + "epoch": 82.98165675517212, + "grad_norm": 0.6368587613105774, + "learning_rate": 8.527973199329983e-06, + "loss": 0.18886089324951172, + "step": 247700 + }, + { + "epoch": 83.01507663958455, + "grad_norm": 0.5568286180496216, + "learning_rate": 8.511222780569515e-06, + "loss": 0.18792394638061524, + "step": 247800 + }, + { + "epoch": 83.04858028310579, + "grad_norm": 0.750466525554657, + "learning_rate": 8.494472361809046e-06, + "loss": 0.18552347183227538, + "step": 247900 + }, + { + "epoch": 83.08208392662702, + "grad_norm": 0.5758387446403503, + "learning_rate": 8.477721943048576e-06, + "loss": 0.18548595428466796, + "step": 248000 + }, + { + "epoch": 83.11558757014825, + "grad_norm": 0.6715633273124695, + "learning_rate": 8.461139028475712e-06, + "loss": 0.1856230354309082, + "step": 248100 + }, + { + "epoch": 83.1490912136695, + "grad_norm": 0.6111332178115845, + "learning_rate": 8.444388609715244e-06, + "loss": 0.1855340576171875, + "step": 248200 + }, + { + "epoch": 83.18259485719072, + "grad_norm": 0.5966615676879883, + "learning_rate": 8.427638190954775e-06, + "loss": 0.18604198455810547, + "step": 248300 + }, + { + "epoch": 83.21609850071195, + "grad_norm": 0.612937331199646, + "learning_rate": 8.410887772194305e-06, + "loss": 0.18526275634765624, + "step": 248400 + }, + { + "epoch": 83.24960214423318, + "grad_norm": 0.6167147159576416, + "learning_rate": 8.394137353433838e-06, + "loss": 0.18677328109741212, + "step": 248500 + }, + { + "epoch": 83.28310578775442, + "grad_norm": 0.5629482865333557, + "learning_rate": 8.377386934673368e-06, + "loss": 0.18594594955444335, + "step": 248600 + }, + { + "epoch": 83.31660943127565, + "grad_norm": 0.5856372714042664, + "learning_rate": 8.360636515912899e-06, + "loss": 0.18747835159301757, + "step": 248700 + }, + { + "epoch": 83.35011307479688, + "grad_norm": 0.6533538103103638, + "learning_rate": 8.34388609715243e-06, + "loss": 0.18700716018676758, + "step": 248800 + }, + { + "epoch": 83.38361671831812, + "grad_norm": 0.5694628953933716, + "learning_rate": 8.32713567839196e-06, + "loss": 0.1867087936401367, + "step": 248900 + }, + { + "epoch": 83.41712036183935, + "grad_norm": 0.7100234031677246, + "learning_rate": 8.31038525963149e-06, + "loss": 0.18678861618041992, + "step": 249000 + }, + { + "epoch": 83.45062400536058, + "grad_norm": 0.528014063835144, + "learning_rate": 8.29363484087102e-06, + "loss": 0.18693504333496094, + "step": 249100 + }, + { + "epoch": 83.48412764888181, + "grad_norm": 0.6683924198150635, + "learning_rate": 8.276884422110553e-06, + "loss": 0.18630191802978516, + "step": 249200 + }, + { + "epoch": 83.51763129240305, + "grad_norm": 0.6140015125274658, + "learning_rate": 8.260134003350083e-06, + "loss": 0.18822259902954103, + "step": 249300 + }, + { + "epoch": 83.55113493592428, + "grad_norm": 0.6404419541358948, + "learning_rate": 8.243383584589614e-06, + "loss": 0.18734935760498048, + "step": 249400 + }, + { + "epoch": 83.58463857944551, + "grad_norm": 0.5253821611404419, + "learning_rate": 8.226633165829146e-06, + "loss": 0.18713035583496093, + "step": 249500 + }, + { + "epoch": 83.61814222296675, + "grad_norm": 0.592951774597168, + "learning_rate": 8.209882747068677e-06, + "loss": 0.1879220962524414, + "step": 249600 + }, + { + "epoch": 83.65164586648798, + "grad_norm": 0.6963580846786499, + "learning_rate": 8.193132328308207e-06, + "loss": 0.18711292266845703, + "step": 249700 + }, + { + "epoch": 83.68514951000921, + "grad_norm": 0.5152623653411865, + "learning_rate": 8.17638190954774e-06, + "loss": 0.18781234741210937, + "step": 249800 + }, + { + "epoch": 83.71865315353044, + "grad_norm": 0.6002013087272644, + "learning_rate": 8.15963149078727e-06, + "loss": 0.18788719177246094, + "step": 249900 + }, + { + "epoch": 83.75215679705168, + "grad_norm": 0.7012782692909241, + "learning_rate": 8.1428810720268e-06, + "loss": 0.1878870391845703, + "step": 250000 + }, + { + "epoch": 83.78566044057291, + "grad_norm": 0.5836089849472046, + "learning_rate": 8.126130653266333e-06, + "loss": 0.18869754791259766, + "step": 250100 + }, + { + "epoch": 83.81916408409414, + "grad_norm": 0.5142480134963989, + "learning_rate": 8.109547738693469e-06, + "loss": 0.18811010360717773, + "step": 250200 + }, + { + "epoch": 83.85266772761538, + "grad_norm": 0.5308085083961487, + "learning_rate": 8.092797319932999e-06, + "loss": 0.18894163131713868, + "step": 250300 + }, + { + "epoch": 83.88617137113661, + "grad_norm": 0.5777791142463684, + "learning_rate": 8.07604690117253e-06, + "loss": 0.18823001861572267, + "step": 250400 + }, + { + "epoch": 83.91967501465784, + "grad_norm": 0.5273643732070923, + "learning_rate": 8.059296482412062e-06, + "loss": 0.18896015167236327, + "step": 250500 + }, + { + "epoch": 83.95317865817908, + "grad_norm": 0.5124455094337463, + "learning_rate": 8.042546063651592e-06, + "loss": 0.18926893234252928, + "step": 250600 + }, + { + "epoch": 83.98668230170031, + "grad_norm": 0.6289759278297424, + "learning_rate": 8.025795644891123e-06, + "loss": 0.18870933532714843, + "step": 250700 + }, + { + "epoch": 84.02010218611274, + "grad_norm": 0.6009929776191711, + "learning_rate": 8.009045226130653e-06, + "loss": 0.1856600570678711, + "step": 250800 + }, + { + "epoch": 84.05360582963397, + "grad_norm": 0.6856387257575989, + "learning_rate": 7.992294807370186e-06, + "loss": 0.18487995147705077, + "step": 250900 + }, + { + "epoch": 84.08710947315521, + "grad_norm": 0.5233118534088135, + "learning_rate": 7.975544388609716e-06, + "loss": 0.18613203048706053, + "step": 251000 + }, + { + "epoch": 84.12061311667644, + "grad_norm": 0.6100374460220337, + "learning_rate": 7.958793969849247e-06, + "loss": 0.18532003402709962, + "step": 251100 + }, + { + "epoch": 84.15411676019767, + "grad_norm": 0.5868030786514282, + "learning_rate": 7.942043551088777e-06, + "loss": 0.18455961227416992, + "step": 251200 + }, + { + "epoch": 84.18762040371891, + "grad_norm": 0.6049501299858093, + "learning_rate": 7.925293132328308e-06, + "loss": 0.1862618064880371, + "step": 251300 + }, + { + "epoch": 84.22112404724014, + "grad_norm": 0.6399788856506348, + "learning_rate": 7.90854271356784e-06, + "loss": 0.18547624588012696, + "step": 251400 + }, + { + "epoch": 84.25462769076137, + "grad_norm": 0.6293793320655823, + "learning_rate": 7.89179229480737e-06, + "loss": 0.18608217239379882, + "step": 251500 + }, + { + "epoch": 84.2881313342826, + "grad_norm": 0.5287208557128906, + "learning_rate": 7.875041876046901e-06, + "loss": 0.18579626083374023, + "step": 251600 + }, + { + "epoch": 84.32163497780384, + "grad_norm": 0.5985024571418762, + "learning_rate": 7.858291457286431e-06, + "loss": 0.18519624710083007, + "step": 251700 + }, + { + "epoch": 84.35513862132507, + "grad_norm": 0.594869077205658, + "learning_rate": 7.841541038525964e-06, + "loss": 0.18641794204711915, + "step": 251800 + }, + { + "epoch": 84.3886422648463, + "grad_norm": 0.6310123801231384, + "learning_rate": 7.824790619765494e-06, + "loss": 0.18554765701293946, + "step": 251900 + }, + { + "epoch": 84.42214590836754, + "grad_norm": 0.6834468841552734, + "learning_rate": 7.808040201005025e-06, + "loss": 0.18662025451660155, + "step": 252000 + }, + { + "epoch": 84.45564955188877, + "grad_norm": 0.5541797280311584, + "learning_rate": 7.791289782244557e-06, + "loss": 0.18684375762939454, + "step": 252100 + }, + { + "epoch": 84.48915319541, + "grad_norm": 0.6487085223197937, + "learning_rate": 7.774706867671693e-06, + "loss": 0.18705474853515625, + "step": 252200 + }, + { + "epoch": 84.52265683893124, + "grad_norm": 0.4895366430282593, + "learning_rate": 7.757956448911223e-06, + "loss": 0.18700340270996094, + "step": 252300 + }, + { + "epoch": 84.55616048245247, + "grad_norm": 0.5531443357467651, + "learning_rate": 7.741206030150754e-06, + "loss": 0.18807411193847656, + "step": 252400 + }, + { + "epoch": 84.5896641259737, + "grad_norm": 0.5510408878326416, + "learning_rate": 7.724455611390286e-06, + "loss": 0.18698272705078126, + "step": 252500 + }, + { + "epoch": 84.62316776949493, + "grad_norm": 0.6708593964576721, + "learning_rate": 7.707705192629817e-06, + "loss": 0.1877949905395508, + "step": 252600 + }, + { + "epoch": 84.65667141301617, + "grad_norm": 0.5115278363227844, + "learning_rate": 7.690954773869347e-06, + "loss": 0.1879779052734375, + "step": 252700 + }, + { + "epoch": 84.6901750565374, + "grad_norm": 0.6127870082855225, + "learning_rate": 7.67420435510888e-06, + "loss": 0.18695253372192383, + "step": 252800 + }, + { + "epoch": 84.72367870005863, + "grad_norm": 0.7335399389266968, + "learning_rate": 7.65745393634841e-06, + "loss": 0.18774644851684572, + "step": 252900 + }, + { + "epoch": 84.75718234357987, + "grad_norm": 0.5237014293670654, + "learning_rate": 7.64070351758794e-06, + "loss": 0.1880354881286621, + "step": 253000 + }, + { + "epoch": 84.7906859871011, + "grad_norm": 0.5270113348960876, + "learning_rate": 7.623953098827472e-06, + "loss": 0.18749366760253905, + "step": 253100 + }, + { + "epoch": 84.82418963062233, + "grad_norm": 0.6281821727752686, + "learning_rate": 7.607202680067002e-06, + "loss": 0.1876792335510254, + "step": 253200 + }, + { + "epoch": 84.85769327414356, + "grad_norm": 0.5125153064727783, + "learning_rate": 7.590452261306533e-06, + "loss": 0.18819995880126952, + "step": 253300 + }, + { + "epoch": 84.8911969176648, + "grad_norm": 0.5630070567131042, + "learning_rate": 7.573701842546065e-06, + "loss": 0.18900468826293945, + "step": 253400 + }, + { + "epoch": 84.92470056118603, + "grad_norm": 0.551005482673645, + "learning_rate": 7.556951423785595e-06, + "loss": 0.188682861328125, + "step": 253500 + }, + { + "epoch": 84.95820420470726, + "grad_norm": 0.5519696474075317, + "learning_rate": 7.540201005025126e-06, + "loss": 0.18850210189819336, + "step": 253600 + }, + { + "epoch": 84.9917078482285, + "grad_norm": 0.64322829246521, + "learning_rate": 7.523450586264657e-06, + "loss": 0.18925397872924804, + "step": 253700 + }, + { + "epoch": 85.02512773264093, + "grad_norm": 0.569341778755188, + "learning_rate": 7.506700167504188e-06, + "loss": 0.18594614028930664, + "step": 253800 + }, + { + "epoch": 85.05863137616215, + "grad_norm": 0.5993043184280396, + "learning_rate": 7.489949748743718e-06, + "loss": 0.18460994720458984, + "step": 253900 + }, + { + "epoch": 85.0921350196834, + "grad_norm": 0.4627517759799957, + "learning_rate": 7.4731993299832505e-06, + "loss": 0.18417888641357422, + "step": 254000 + }, + { + "epoch": 85.12563866320463, + "grad_norm": 0.5186675190925598, + "learning_rate": 7.456448911222781e-06, + "loss": 0.18561904907226562, + "step": 254100 + }, + { + "epoch": 85.15914230672585, + "grad_norm": 0.6953118443489075, + "learning_rate": 7.439865996649917e-06, + "loss": 0.18514400482177734, + "step": 254200 + }, + { + "epoch": 85.19264595024708, + "grad_norm": 0.507422685623169, + "learning_rate": 7.4231155778894475e-06, + "loss": 0.18599794387817384, + "step": 254300 + }, + { + "epoch": 85.22614959376833, + "grad_norm": 0.5243151783943176, + "learning_rate": 7.40636515912898e-06, + "loss": 0.18585119247436524, + "step": 254400 + }, + { + "epoch": 85.25965323728956, + "grad_norm": 0.5282275676727295, + "learning_rate": 7.38961474036851e-06, + "loss": 0.18537141799926757, + "step": 254500 + }, + { + "epoch": 85.29315688081078, + "grad_norm": 0.8133143782615662, + "learning_rate": 7.372864321608041e-06, + "loss": 0.18567739486694335, + "step": 254600 + }, + { + "epoch": 85.32666052433203, + "grad_norm": 0.5648775100708008, + "learning_rate": 7.356113902847571e-06, + "loss": 0.1864516830444336, + "step": 254700 + }, + { + "epoch": 85.36016416785326, + "grad_norm": 0.6094685792922974, + "learning_rate": 7.339363484087103e-06, + "loss": 0.1870036506652832, + "step": 254800 + }, + { + "epoch": 85.39366781137448, + "grad_norm": 0.5950913429260254, + "learning_rate": 7.322613065326633e-06, + "loss": 0.18513656616210938, + "step": 254900 + }, + { + "epoch": 85.42717145489571, + "grad_norm": 0.5510959029197693, + "learning_rate": 7.305862646566164e-06, + "loss": 0.18647272109985352, + "step": 255000 + }, + { + "epoch": 85.46067509841696, + "grad_norm": 0.7267409563064575, + "learning_rate": 7.289112227805696e-06, + "loss": 0.1857898712158203, + "step": 255100 + }, + { + "epoch": 85.49417874193819, + "grad_norm": 0.45163479447364807, + "learning_rate": 7.272361809045226e-06, + "loss": 0.18607278823852538, + "step": 255200 + }, + { + "epoch": 85.52768238545941, + "grad_norm": 0.4602172374725342, + "learning_rate": 7.255611390284757e-06, + "loss": 0.18727361679077148, + "step": 255300 + }, + { + "epoch": 85.56118602898066, + "grad_norm": 0.635420024394989, + "learning_rate": 7.238860971524289e-06, + "loss": 0.18634784698486329, + "step": 255400 + }, + { + "epoch": 85.59468967250189, + "grad_norm": 0.7202033996582031, + "learning_rate": 7.22211055276382e-06, + "loss": 0.18726907730102538, + "step": 255500 + }, + { + "epoch": 85.62819331602311, + "grad_norm": 0.5407751798629761, + "learning_rate": 7.20536013400335e-06, + "loss": 0.18667268753051758, + "step": 255600 + }, + { + "epoch": 85.66169695954434, + "grad_norm": 0.5636637806892395, + "learning_rate": 7.188609715242882e-06, + "loss": 0.18750267028808593, + "step": 255700 + }, + { + "epoch": 85.69520060306559, + "grad_norm": 0.4898567199707031, + "learning_rate": 7.171859296482413e-06, + "loss": 0.1871859359741211, + "step": 255800 + }, + { + "epoch": 85.72870424658682, + "grad_norm": 0.5712749361991882, + "learning_rate": 7.155108877721943e-06, + "loss": 0.18638862609863283, + "step": 255900 + }, + { + "epoch": 85.76220789010804, + "grad_norm": 0.46651607751846313, + "learning_rate": 7.138358458961475e-06, + "loss": 0.18812761306762696, + "step": 256000 + }, + { + "epoch": 85.79571153362929, + "grad_norm": 0.5160844326019287, + "learning_rate": 7.121608040201005e-06, + "loss": 0.18870893478393555, + "step": 256100 + }, + { + "epoch": 85.82921517715052, + "grad_norm": 0.5459625124931335, + "learning_rate": 7.105025125628141e-06, + "loss": 0.18762758255004883, + "step": 256200 + }, + { + "epoch": 85.86271882067174, + "grad_norm": 0.5653469562530518, + "learning_rate": 7.088274706867672e-06, + "loss": 0.18779273986816405, + "step": 256300 + }, + { + "epoch": 85.89622246419299, + "grad_norm": 0.6370869278907776, + "learning_rate": 7.071524288107204e-06, + "loss": 0.18751178741455077, + "step": 256400 + }, + { + "epoch": 85.92972610771422, + "grad_norm": 0.5533131957054138, + "learning_rate": 7.054773869346734e-06, + "loss": 0.1884653663635254, + "step": 256500 + }, + { + "epoch": 85.96322975123545, + "grad_norm": 0.6711784601211548, + "learning_rate": 7.038023450586265e-06, + "loss": 0.18683214187622071, + "step": 256600 + }, + { + "epoch": 85.99673339475667, + "grad_norm": 0.5515606999397278, + "learning_rate": 7.021273031825796e-06, + "loss": 0.1888846969604492, + "step": 256700 + }, + { + "epoch": 86.03015327916911, + "grad_norm": 0.5068252086639404, + "learning_rate": 7.004522613065327e-06, + "loss": 0.18496566772460937, + "step": 256800 + }, + { + "epoch": 86.06365692269034, + "grad_norm": 0.47771593928337097, + "learning_rate": 6.987772194304857e-06, + "loss": 0.184095401763916, + "step": 256900 + }, + { + "epoch": 86.09716056621157, + "grad_norm": 0.47911855578422546, + "learning_rate": 6.9710217755443895e-06, + "loss": 0.18482202529907227, + "step": 257000 + }, + { + "epoch": 86.13066420973281, + "grad_norm": 0.5584221482276917, + "learning_rate": 6.95427135678392e-06, + "loss": 0.18487674713134766, + "step": 257100 + }, + { + "epoch": 86.16416785325404, + "grad_norm": 0.47040486335754395, + "learning_rate": 6.9375209380234505e-06, + "loss": 0.18475263595581054, + "step": 257200 + }, + { + "epoch": 86.19767149677527, + "grad_norm": 0.6007068753242493, + "learning_rate": 6.920770519262981e-06, + "loss": 0.18603864669799805, + "step": 257300 + }, + { + "epoch": 86.23117514029651, + "grad_norm": 0.6026456356048584, + "learning_rate": 6.904020100502513e-06, + "loss": 0.18502817153930665, + "step": 257400 + }, + { + "epoch": 86.26467878381774, + "grad_norm": 0.4999913275241852, + "learning_rate": 6.887269681742044e-06, + "loss": 0.1868625259399414, + "step": 257500 + }, + { + "epoch": 86.29818242733897, + "grad_norm": 0.5064532160758972, + "learning_rate": 6.870519262981574e-06, + "loss": 0.18557401657104491, + "step": 257600 + }, + { + "epoch": 86.3316860708602, + "grad_norm": 0.47061556577682495, + "learning_rate": 6.8537688442211065e-06, + "loss": 0.1852064323425293, + "step": 257700 + }, + { + "epoch": 86.36518971438144, + "grad_norm": 0.5401563048362732, + "learning_rate": 6.837018425460637e-06, + "loss": 0.18540374755859376, + "step": 257800 + }, + { + "epoch": 86.39869335790267, + "grad_norm": 0.46041640639305115, + "learning_rate": 6.8202680067001675e-06, + "loss": 0.18596946716308593, + "step": 257900 + }, + { + "epoch": 86.4321970014239, + "grad_norm": 0.597866415977478, + "learning_rate": 6.803517587939699e-06, + "loss": 0.18595813751220702, + "step": 258000 + }, + { + "epoch": 86.46570064494514, + "grad_norm": 0.6081616878509521, + "learning_rate": 6.786767169179229e-06, + "loss": 0.18565729141235351, + "step": 258100 + }, + { + "epoch": 86.49920428846637, + "grad_norm": 0.5523788332939148, + "learning_rate": 6.770184254606365e-06, + "loss": 0.187158260345459, + "step": 258200 + }, + { + "epoch": 86.5327079319876, + "grad_norm": 0.5216212272644043, + "learning_rate": 6.753433835845896e-06, + "loss": 0.1858182144165039, + "step": 258300 + }, + { + "epoch": 86.56621157550883, + "grad_norm": 0.5936647057533264, + "learning_rate": 6.736683417085428e-06, + "loss": 0.1869313621520996, + "step": 258400 + }, + { + "epoch": 86.59971521903007, + "grad_norm": 0.6182869672775269, + "learning_rate": 6.7199329983249586e-06, + "loss": 0.18541063308715822, + "step": 258500 + }, + { + "epoch": 86.6332188625513, + "grad_norm": 0.5022922158241272, + "learning_rate": 6.703182579564489e-06, + "loss": 0.18641475677490235, + "step": 258600 + }, + { + "epoch": 86.66672250607253, + "grad_norm": 0.5892537832260132, + "learning_rate": 6.686432160804021e-06, + "loss": 0.1863780975341797, + "step": 258700 + }, + { + "epoch": 86.70022614959377, + "grad_norm": 0.6023449301719666, + "learning_rate": 6.669681742043552e-06, + "loss": 0.18697059631347657, + "step": 258800 + }, + { + "epoch": 86.733729793115, + "grad_norm": 0.4677959680557251, + "learning_rate": 6.652931323283082e-06, + "loss": 0.1872576904296875, + "step": 258900 + }, + { + "epoch": 86.76723343663623, + "grad_norm": 0.5693555474281311, + "learning_rate": 6.636180904522614e-06, + "loss": 0.18713676452636718, + "step": 259000 + }, + { + "epoch": 86.80073708015746, + "grad_norm": 0.6497491598129272, + "learning_rate": 6.619430485762144e-06, + "loss": 0.1870942497253418, + "step": 259100 + }, + { + "epoch": 86.8342407236787, + "grad_norm": 0.548832356929779, + "learning_rate": 6.602680067001675e-06, + "loss": 0.18688385009765626, + "step": 259200 + }, + { + "epoch": 86.86774436719993, + "grad_norm": 0.596001923084259, + "learning_rate": 6.585929648241207e-06, + "loss": 0.1876131248474121, + "step": 259300 + }, + { + "epoch": 86.90124801072116, + "grad_norm": 0.4879089891910553, + "learning_rate": 6.5691792294807374e-06, + "loss": 0.18763301849365235, + "step": 259400 + }, + { + "epoch": 86.9347516542424, + "grad_norm": 0.637677013874054, + "learning_rate": 6.552428810720268e-06, + "loss": 0.18786365509033204, + "step": 259500 + }, + { + "epoch": 86.96825529776363, + "grad_norm": 0.6771053671836853, + "learning_rate": 6.5356783919598e-06, + "loss": 0.18699560165405274, + "step": 259600 + }, + { + "epoch": 87.00167518217606, + "grad_norm": 0.4932768940925598, + "learning_rate": 6.518927973199331e-06, + "loss": 0.18727890014648438, + "step": 259700 + }, + { + "epoch": 87.0351788256973, + "grad_norm": 0.5554237961769104, + "learning_rate": 6.502177554438861e-06, + "loss": 0.18363922119140624, + "step": 259800 + }, + { + "epoch": 87.06868246921853, + "grad_norm": 0.49361878633499146, + "learning_rate": 6.485427135678392e-06, + "loss": 0.18403356552124023, + "step": 259900 + }, + { + "epoch": 87.10218611273976, + "grad_norm": 0.5164247155189514, + "learning_rate": 6.468676716917924e-06, + "loss": 0.1847250556945801, + "step": 260000 + }, + { + "epoch": 87.13568975626099, + "grad_norm": 0.6231299638748169, + "learning_rate": 6.4519262981574544e-06, + "loss": 0.18410905838012695, + "step": 260100 + }, + { + "epoch": 87.16919339978223, + "grad_norm": 0.510552167892456, + "learning_rate": 6.4353433835845895e-06, + "loss": 0.18483367919921875, + "step": 260200 + }, + { + "epoch": 87.20269704330346, + "grad_norm": 0.5737383961677551, + "learning_rate": 6.41859296482412e-06, + "loss": 0.18470308303833008, + "step": 260300 + }, + { + "epoch": 87.23620068682469, + "grad_norm": 0.5129623413085938, + "learning_rate": 6.401842546063652e-06, + "loss": 0.18547887802124025, + "step": 260400 + }, + { + "epoch": 87.26970433034593, + "grad_norm": 0.6173266172409058, + "learning_rate": 6.385092127303183e-06, + "loss": 0.18598060607910155, + "step": 260500 + }, + { + "epoch": 87.30320797386716, + "grad_norm": 0.544044554233551, + "learning_rate": 6.368341708542713e-06, + "loss": 0.18537967681884765, + "step": 260600 + }, + { + "epoch": 87.33671161738839, + "grad_norm": 0.5292858481407166, + "learning_rate": 6.3515912897822455e-06, + "loss": 0.18521123886108398, + "step": 260700 + }, + { + "epoch": 87.37021526090962, + "grad_norm": 0.594588041305542, + "learning_rate": 6.334840871021776e-06, + "loss": 0.18591339111328126, + "step": 260800 + }, + { + "epoch": 87.40371890443086, + "grad_norm": 0.5692018270492554, + "learning_rate": 6.3180904522613065e-06, + "loss": 0.1846309471130371, + "step": 260900 + }, + { + "epoch": 87.43722254795209, + "grad_norm": 0.6212311387062073, + "learning_rate": 6.301340033500838e-06, + "loss": 0.18584171295166016, + "step": 261000 + }, + { + "epoch": 87.47072619147332, + "grad_norm": 0.6049195528030396, + "learning_rate": 6.284589614740368e-06, + "loss": 0.1861904716491699, + "step": 261100 + }, + { + "epoch": 87.50422983499456, + "grad_norm": 0.5650988221168518, + "learning_rate": 6.2678391959799e-06, + "loss": 0.18642744064331054, + "step": 261200 + }, + { + "epoch": 87.53773347851579, + "grad_norm": 0.6198245286941528, + "learning_rate": 6.251088777219431e-06, + "loss": 0.1867201805114746, + "step": 261300 + }, + { + "epoch": 87.57123712203702, + "grad_norm": 0.6500935554504395, + "learning_rate": 6.234338358458962e-06, + "loss": 0.1860578727722168, + "step": 261400 + }, + { + "epoch": 87.60474076555825, + "grad_norm": 0.5311732888221741, + "learning_rate": 6.217587939698493e-06, + "loss": 0.18565948486328124, + "step": 261500 + }, + { + "epoch": 87.63824440907949, + "grad_norm": 0.736834704875946, + "learning_rate": 6.2008375209380235e-06, + "loss": 0.18650445938110352, + "step": 261600 + }, + { + "epoch": 87.67174805260072, + "grad_norm": 0.567558228969574, + "learning_rate": 6.184087102177555e-06, + "loss": 0.18658845901489257, + "step": 261700 + }, + { + "epoch": 87.70525169612195, + "grad_norm": 0.4581720232963562, + "learning_rate": 6.167336683417086e-06, + "loss": 0.18680118560791015, + "step": 261800 + }, + { + "epoch": 87.73875533964319, + "grad_norm": 0.6665058135986328, + "learning_rate": 6.150586264656617e-06, + "loss": 0.18713037490844728, + "step": 261900 + }, + { + "epoch": 87.77225898316442, + "grad_norm": 0.5811572670936584, + "learning_rate": 6.133835845896148e-06, + "loss": 0.1872100830078125, + "step": 262000 + }, + { + "epoch": 87.80576262668565, + "grad_norm": 0.5392748117446899, + "learning_rate": 6.117085427135679e-06, + "loss": 0.18684432983398438, + "step": 262100 + }, + { + "epoch": 87.83926627020689, + "grad_norm": 0.5572375655174255, + "learning_rate": 6.100502512562814e-06, + "loss": 0.18601211547851562, + "step": 262200 + }, + { + "epoch": 87.87276991372812, + "grad_norm": 0.6901904940605164, + "learning_rate": 6.083752093802345e-06, + "loss": 0.18694435119628905, + "step": 262300 + }, + { + "epoch": 87.90627355724935, + "grad_norm": 0.5973819494247437, + "learning_rate": 6.067001675041876e-06, + "loss": 0.18795061111450195, + "step": 262400 + }, + { + "epoch": 87.93977720077058, + "grad_norm": 0.5847058296203613, + "learning_rate": 6.050251256281407e-06, + "loss": 0.1869793701171875, + "step": 262500 + }, + { + "epoch": 87.97328084429182, + "grad_norm": 0.5993967056274414, + "learning_rate": 6.033500837520938e-06, + "loss": 0.1878180694580078, + "step": 262600 + }, + { + "epoch": 88.00670072870425, + "grad_norm": 0.532988429069519, + "learning_rate": 6.01675041876047e-06, + "loss": 0.18654600143432618, + "step": 262700 + }, + { + "epoch": 88.04020437222547, + "grad_norm": 0.5655828714370728, + "learning_rate": 6e-06, + "loss": 0.18439163208007814, + "step": 262800 + }, + { + "epoch": 88.07370801574672, + "grad_norm": 0.5616503357887268, + "learning_rate": 5.9832495812395315e-06, + "loss": 0.1837614631652832, + "step": 262900 + }, + { + "epoch": 88.10721165926795, + "grad_norm": 0.4429595470428467, + "learning_rate": 5.966499162479063e-06, + "loss": 0.18412097930908203, + "step": 263000 + }, + { + "epoch": 88.14071530278918, + "grad_norm": 0.4846174120903015, + "learning_rate": 5.949748743718593e-06, + "loss": 0.18443714141845702, + "step": 263100 + }, + { + "epoch": 88.17421894631042, + "grad_norm": 0.5053496956825256, + "learning_rate": 5.932998324958124e-06, + "loss": 0.1849221420288086, + "step": 263200 + }, + { + "epoch": 88.20772258983165, + "grad_norm": 0.5732136368751526, + "learning_rate": 5.916247906197655e-06, + "loss": 0.18445537567138673, + "step": 263300 + }, + { + "epoch": 88.24122623335288, + "grad_norm": 0.671688437461853, + "learning_rate": 5.899497487437186e-06, + "loss": 0.18499351501464845, + "step": 263400 + }, + { + "epoch": 88.2747298768741, + "grad_norm": 0.5794471502304077, + "learning_rate": 5.882747068676717e-06, + "loss": 0.18498233795166016, + "step": 263500 + }, + { + "epoch": 88.30823352039535, + "grad_norm": 0.5552869439125061, + "learning_rate": 5.865996649916248e-06, + "loss": 0.18548328399658204, + "step": 263600 + }, + { + "epoch": 88.34173716391658, + "grad_norm": 0.5315948724746704, + "learning_rate": 5.849246231155779e-06, + "loss": 0.18444686889648437, + "step": 263700 + }, + { + "epoch": 88.3752408074378, + "grad_norm": 0.6291096210479736, + "learning_rate": 5.83249581239531e-06, + "loss": 0.18497331619262694, + "step": 263800 + }, + { + "epoch": 88.40874445095905, + "grad_norm": 0.6358299851417542, + "learning_rate": 5.815745393634841e-06, + "loss": 0.1851169967651367, + "step": 263900 + }, + { + "epoch": 88.44224809448028, + "grad_norm": 0.5641636848449707, + "learning_rate": 5.798994974874372e-06, + "loss": 0.18581708908081054, + "step": 264000 + }, + { + "epoch": 88.4757517380015, + "grad_norm": 0.646516740322113, + "learning_rate": 5.782244556113904e-06, + "loss": 0.18616880416870119, + "step": 264100 + }, + { + "epoch": 88.50925538152273, + "grad_norm": 0.5487529635429382, + "learning_rate": 5.765494137353434e-06, + "loss": 0.18532644271850585, + "step": 264200 + }, + { + "epoch": 88.54275902504398, + "grad_norm": 0.5325868129730225, + "learning_rate": 5.748911222780569e-06, + "loss": 0.1863404655456543, + "step": 264300 + }, + { + "epoch": 88.5762626685652, + "grad_norm": 0.5119947195053101, + "learning_rate": 5.7321608040201006e-06, + "loss": 0.1858821678161621, + "step": 264400 + }, + { + "epoch": 88.60976631208644, + "grad_norm": 0.5027479529380798, + "learning_rate": 5.715410385259632e-06, + "loss": 0.18715795516967773, + "step": 264500 + }, + { + "epoch": 88.64326995560768, + "grad_norm": 0.6127695441246033, + "learning_rate": 5.6986599664991625e-06, + "loss": 0.1849302864074707, + "step": 264600 + }, + { + "epoch": 88.67677359912891, + "grad_norm": 0.5115147233009338, + "learning_rate": 5.681909547738694e-06, + "loss": 0.18587541580200195, + "step": 264700 + }, + { + "epoch": 88.71027724265014, + "grad_norm": 0.5533451437950134, + "learning_rate": 5.665159128978225e-06, + "loss": 0.1865237045288086, + "step": 264800 + }, + { + "epoch": 88.74378088617136, + "grad_norm": 0.7907216548919678, + "learning_rate": 5.648408710217756e-06, + "loss": 0.18539291381835937, + "step": 264900 + }, + { + "epoch": 88.77728452969261, + "grad_norm": 0.6062288284301758, + "learning_rate": 5.631658291457287e-06, + "loss": 0.18620302200317382, + "step": 265000 + }, + { + "epoch": 88.81078817321384, + "grad_norm": 0.5403768420219421, + "learning_rate": 5.6149078726968176e-06, + "loss": 0.18627490997314453, + "step": 265100 + }, + { + "epoch": 88.84429181673507, + "grad_norm": 0.47379136085510254, + "learning_rate": 5.598157453936349e-06, + "loss": 0.18624238967895507, + "step": 265200 + }, + { + "epoch": 88.87779546025631, + "grad_norm": 0.6376839280128479, + "learning_rate": 5.5814070351758794e-06, + "loss": 0.18673583984375, + "step": 265300 + }, + { + "epoch": 88.91129910377754, + "grad_norm": 0.5186110138893127, + "learning_rate": 5.564656616415411e-06, + "loss": 0.18633831024169922, + "step": 265400 + }, + { + "epoch": 88.94480274729877, + "grad_norm": 0.5298460721969604, + "learning_rate": 5.547906197654941e-06, + "loss": 0.18666128158569337, + "step": 265500 + }, + { + "epoch": 88.97830639082, + "grad_norm": 0.6699676513671875, + "learning_rate": 5.531155778894473e-06, + "loss": 0.18743110656738282, + "step": 265600 + }, + { + "epoch": 89.01172627523243, + "grad_norm": 0.7564083933830261, + "learning_rate": 5.514405360134003e-06, + "loss": 0.18580760955810546, + "step": 265700 + }, + { + "epoch": 89.04522991875366, + "grad_norm": 0.4524352252483368, + "learning_rate": 5.4976549413735346e-06, + "loss": 0.18369712829589843, + "step": 265800 + }, + { + "epoch": 89.07873356227489, + "grad_norm": 0.5215601325035095, + "learning_rate": 5.480904522613066e-06, + "loss": 0.18392160415649414, + "step": 265900 + }, + { + "epoch": 89.11223720579613, + "grad_norm": 0.5558773875236511, + "learning_rate": 5.4641541038525964e-06, + "loss": 0.18470701217651367, + "step": 266000 + }, + { + "epoch": 89.14574084931736, + "grad_norm": 0.5827058553695679, + "learning_rate": 5.447403685092128e-06, + "loss": 0.18471426010131836, + "step": 266100 + }, + { + "epoch": 89.17924449283859, + "grad_norm": 0.6175124645233154, + "learning_rate": 5.430653266331658e-06, + "loss": 0.18419244766235351, + "step": 266200 + }, + { + "epoch": 89.21274813635983, + "grad_norm": 0.5262554883956909, + "learning_rate": 5.41390284757119e-06, + "loss": 0.18310293197631836, + "step": 266300 + }, + { + "epoch": 89.24625177988106, + "grad_norm": 0.5767905712127686, + "learning_rate": 5.397319932998325e-06, + "loss": 0.1847786521911621, + "step": 266400 + }, + { + "epoch": 89.27975542340229, + "grad_norm": 0.45258834958076477, + "learning_rate": 5.380569514237856e-06, + "loss": 0.18412622451782226, + "step": 266500 + }, + { + "epoch": 89.31325906692352, + "grad_norm": 0.546626091003418, + "learning_rate": 5.363819095477387e-06, + "loss": 0.1842401695251465, + "step": 266600 + }, + { + "epoch": 89.34676271044476, + "grad_norm": 0.48357829451560974, + "learning_rate": 5.347068676716918e-06, + "loss": 0.18534393310546876, + "step": 266700 + }, + { + "epoch": 89.380266353966, + "grad_norm": 0.5069622993469238, + "learning_rate": 5.330318257956449e-06, + "loss": 0.18502262115478516, + "step": 266800 + }, + { + "epoch": 89.41376999748722, + "grad_norm": 0.6336747407913208, + "learning_rate": 5.31356783919598e-06, + "loss": 0.18472951889038086, + "step": 266900 + }, + { + "epoch": 89.44727364100847, + "grad_norm": 0.5919739603996277, + "learning_rate": 5.296817420435511e-06, + "loss": 0.185218505859375, + "step": 267000 + }, + { + "epoch": 89.4807772845297, + "grad_norm": 0.48863354325294495, + "learning_rate": 5.280067001675043e-06, + "loss": 0.18563102722167968, + "step": 267100 + }, + { + "epoch": 89.51428092805092, + "grad_norm": 0.6356630921363831, + "learning_rate": 5.263316582914573e-06, + "loss": 0.18483596801757812, + "step": 267200 + }, + { + "epoch": 89.54778457157215, + "grad_norm": 0.6572123765945435, + "learning_rate": 5.2465661641541045e-06, + "loss": 0.18614835739135743, + "step": 267300 + }, + { + "epoch": 89.5812882150934, + "grad_norm": 0.4905427396297455, + "learning_rate": 5.229815745393636e-06, + "loss": 0.18502700805664063, + "step": 267400 + }, + { + "epoch": 89.61479185861462, + "grad_norm": 0.53782057762146, + "learning_rate": 5.213065326633166e-06, + "loss": 0.1857935905456543, + "step": 267500 + }, + { + "epoch": 89.64829550213585, + "grad_norm": 0.6450851559638977, + "learning_rate": 5.196314907872697e-06, + "loss": 0.18643198013305665, + "step": 267600 + }, + { + "epoch": 89.6817991456571, + "grad_norm": 0.6173422336578369, + "learning_rate": 5.179564489112227e-06, + "loss": 0.1862980079650879, + "step": 267700 + }, + { + "epoch": 89.71530278917832, + "grad_norm": 0.564839243888855, + "learning_rate": 5.162814070351759e-06, + "loss": 0.1857726287841797, + "step": 267800 + }, + { + "epoch": 89.74880643269955, + "grad_norm": 0.5647773742675781, + "learning_rate": 5.14606365159129e-06, + "loss": 0.18673162460327147, + "step": 267900 + }, + { + "epoch": 89.7823100762208, + "grad_norm": 0.5144478678703308, + "learning_rate": 5.129313232830821e-06, + "loss": 0.18588918685913086, + "step": 268000 + }, + { + "epoch": 89.81581371974202, + "grad_norm": 0.47654643654823303, + "learning_rate": 5.112562814070352e-06, + "loss": 0.1857970428466797, + "step": 268100 + }, + { + "epoch": 89.84931736326325, + "grad_norm": 0.6091083288192749, + "learning_rate": 5.095812395309883e-06, + "loss": 0.18509552001953125, + "step": 268200 + }, + { + "epoch": 89.88282100678448, + "grad_norm": 0.5405870676040649, + "learning_rate": 5.079061976549414e-06, + "loss": 0.18604494094848634, + "step": 268300 + }, + { + "epoch": 89.91632465030573, + "grad_norm": 0.5205516815185547, + "learning_rate": 5.06247906197655e-06, + "loss": 0.1859523582458496, + "step": 268400 + }, + { + "epoch": 89.94982829382695, + "grad_norm": 0.5739098787307739, + "learning_rate": 5.04572864321608e-06, + "loss": 0.1862436866760254, + "step": 268500 + }, + { + "epoch": 89.98333193734818, + "grad_norm": 0.6661388278007507, + "learning_rate": 5.028978224455612e-06, + "loss": 0.18580772399902343, + "step": 268600 + }, + { + "epoch": 90.01675182176062, + "grad_norm": 0.5268995761871338, + "learning_rate": 5.012227805695142e-06, + "loss": 0.18514154434204103, + "step": 268700 + }, + { + "epoch": 90.05025546528185, + "grad_norm": 0.752692461013794, + "learning_rate": 4.9954773869346735e-06, + "loss": 0.18381275177001954, + "step": 268800 + }, + { + "epoch": 90.08375910880308, + "grad_norm": 0.6190829873085022, + "learning_rate": 4.978726968174205e-06, + "loss": 0.1839034652709961, + "step": 268900 + }, + { + "epoch": 90.11726275232432, + "grad_norm": 0.5042902827262878, + "learning_rate": 4.961976549413735e-06, + "loss": 0.18465267181396483, + "step": 269000 + }, + { + "epoch": 90.15076639584555, + "grad_norm": 0.5969473719596863, + "learning_rate": 4.945226130653267e-06, + "loss": 0.18303195953369142, + "step": 269100 + }, + { + "epoch": 90.18427003936678, + "grad_norm": 0.6725231409072876, + "learning_rate": 4.928475711892797e-06, + "loss": 0.18475696563720703, + "step": 269200 + }, + { + "epoch": 90.21777368288801, + "grad_norm": 0.456318736076355, + "learning_rate": 4.911725293132329e-06, + "loss": 0.18457313537597655, + "step": 269300 + }, + { + "epoch": 90.25127732640925, + "grad_norm": 0.5855475068092346, + "learning_rate": 4.89497487437186e-06, + "loss": 0.18437076568603517, + "step": 269400 + }, + { + "epoch": 90.28478096993048, + "grad_norm": 0.529436469078064, + "learning_rate": 4.8782244556113905e-06, + "loss": 0.18375736236572265, + "step": 269500 + }, + { + "epoch": 90.31828461345171, + "grad_norm": 0.5961082577705383, + "learning_rate": 4.861474036850922e-06, + "loss": 0.18455684661865235, + "step": 269600 + }, + { + "epoch": 90.35178825697295, + "grad_norm": 0.5185309052467346, + "learning_rate": 4.844723618090452e-06, + "loss": 0.1851878547668457, + "step": 269700 + }, + { + "epoch": 90.38529190049418, + "grad_norm": 0.40312084555625916, + "learning_rate": 4.827973199329983e-06, + "loss": 0.18382146835327148, + "step": 269800 + }, + { + "epoch": 90.41879554401541, + "grad_norm": 0.5168654322624207, + "learning_rate": 4.811222780569514e-06, + "loss": 0.18515111923217772, + "step": 269900 + }, + { + "epoch": 90.45229918753664, + "grad_norm": 0.5459558963775635, + "learning_rate": 4.794472361809046e-06, + "loss": 0.18459436416625977, + "step": 270000 + }, + { + "epoch": 90.48580283105788, + "grad_norm": 0.5190539956092834, + "learning_rate": 4.777721943048576e-06, + "loss": 0.1858159065246582, + "step": 270100 + }, + { + "epoch": 90.51930647457911, + "grad_norm": 0.4919435381889343, + "learning_rate": 4.7609715242881075e-06, + "loss": 0.18439708709716796, + "step": 270200 + }, + { + "epoch": 90.55281011810034, + "grad_norm": 0.4750555157661438, + "learning_rate": 4.744221105527638e-06, + "loss": 0.1842019462585449, + "step": 270300 + }, + { + "epoch": 90.58631376162158, + "grad_norm": 0.6852492690086365, + "learning_rate": 4.727638190954775e-06, + "loss": 0.18526426315307618, + "step": 270400 + }, + { + "epoch": 90.61981740514281, + "grad_norm": 0.6319891810417175, + "learning_rate": 4.710887772194305e-06, + "loss": 0.1851023864746094, + "step": 270500 + }, + { + "epoch": 90.65332104866404, + "grad_norm": 0.49747490882873535, + "learning_rate": 4.694137353433836e-06, + "loss": 0.18547800064086914, + "step": 270600 + }, + { + "epoch": 90.68682469218527, + "grad_norm": 0.4589165151119232, + "learning_rate": 4.677386934673366e-06, + "loss": 0.1850799560546875, + "step": 270700 + }, + { + "epoch": 90.72032833570651, + "grad_norm": 0.647290050983429, + "learning_rate": 4.660636515912898e-06, + "loss": 0.18597793579101562, + "step": 270800 + }, + { + "epoch": 90.75383197922774, + "grad_norm": 0.6682136058807373, + "learning_rate": 4.643886097152429e-06, + "loss": 0.1855238914489746, + "step": 270900 + }, + { + "epoch": 90.78733562274897, + "grad_norm": 0.5782601237297058, + "learning_rate": 4.62713567839196e-06, + "loss": 0.18538637161254884, + "step": 271000 + }, + { + "epoch": 90.82083926627021, + "grad_norm": 0.5579448938369751, + "learning_rate": 4.610385259631491e-06, + "loss": 0.1856587600708008, + "step": 271100 + }, + { + "epoch": 90.85434290979144, + "grad_norm": 0.5620039105415344, + "learning_rate": 4.593634840871022e-06, + "loss": 0.18588842391967775, + "step": 271200 + }, + { + "epoch": 90.88784655331267, + "grad_norm": 0.6530576348304749, + "learning_rate": 4.576884422110553e-06, + "loss": 0.18567676544189454, + "step": 271300 + }, + { + "epoch": 90.9213501968339, + "grad_norm": 0.6144570708274841, + "learning_rate": 4.560134003350084e-06, + "loss": 0.18605300903320313, + "step": 271400 + }, + { + "epoch": 90.95485384035514, + "grad_norm": 0.5530267357826233, + "learning_rate": 4.5433835845896156e-06, + "loss": 0.18595090866088868, + "step": 271500 + }, + { + "epoch": 90.98835748387637, + "grad_norm": 0.5598485469818115, + "learning_rate": 4.526633165829146e-06, + "loss": 0.1865631675720215, + "step": 271600 + }, + { + "epoch": 91.0217773682888, + "grad_norm": 0.4829404652118683, + "learning_rate": 4.5098827470686774e-06, + "loss": 0.18459095001220704, + "step": 271700 + }, + { + "epoch": 91.05528101181004, + "grad_norm": 0.7115753889083862, + "learning_rate": 4.493132328308208e-06, + "loss": 0.1838077163696289, + "step": 271800 + }, + { + "epoch": 91.08878465533127, + "grad_norm": 0.557543158531189, + "learning_rate": 4.4763819095477385e-06, + "loss": 0.1847819519042969, + "step": 271900 + }, + { + "epoch": 91.1222882988525, + "grad_norm": 0.5555517077445984, + "learning_rate": 4.45963149078727e-06, + "loss": 0.18323816299438478, + "step": 272000 + }, + { + "epoch": 91.15579194237374, + "grad_norm": 0.5963297486305237, + "learning_rate": 4.4428810720268e-06, + "loss": 0.1839584732055664, + "step": 272100 + }, + { + "epoch": 91.18929558589497, + "grad_norm": 0.58128821849823, + "learning_rate": 4.426130653266332e-06, + "loss": 0.1841065788269043, + "step": 272200 + }, + { + "epoch": 91.2227992294162, + "grad_norm": 0.4545518457889557, + "learning_rate": 4.409380234505863e-06, + "loss": 0.1835637855529785, + "step": 272300 + }, + { + "epoch": 91.25630287293743, + "grad_norm": 0.5214167237281799, + "learning_rate": 4.392629815745394e-06, + "loss": 0.18443021774291993, + "step": 272400 + }, + { + "epoch": 91.28980651645867, + "grad_norm": 0.46389076113700867, + "learning_rate": 4.3760469011725295e-06, + "loss": 0.18393590927124023, + "step": 272500 + }, + { + "epoch": 91.3233101599799, + "grad_norm": 0.6274188160896301, + "learning_rate": 4.359296482412061e-06, + "loss": 0.18395915985107422, + "step": 272600 + }, + { + "epoch": 91.35681380350113, + "grad_norm": 0.5550768971443176, + "learning_rate": 4.342546063651591e-06, + "loss": 0.18435438156127928, + "step": 272700 + }, + { + "epoch": 91.39031744702237, + "grad_norm": 0.5795305967330933, + "learning_rate": 4.325795644891122e-06, + "loss": 0.18411699295043946, + "step": 272800 + }, + { + "epoch": 91.4238210905436, + "grad_norm": 0.5524510145187378, + "learning_rate": 4.309045226130653e-06, + "loss": 0.18482681274414062, + "step": 272900 + }, + { + "epoch": 91.45732473406483, + "grad_norm": 0.4713156521320343, + "learning_rate": 4.292294807370185e-06, + "loss": 0.18384735107421876, + "step": 273000 + }, + { + "epoch": 91.49082837758607, + "grad_norm": 0.5844002366065979, + "learning_rate": 4.275544388609715e-06, + "loss": 0.1849127197265625, + "step": 273100 + }, + { + "epoch": 91.5243320211073, + "grad_norm": 0.5675417184829712, + "learning_rate": 4.2587939698492465e-06, + "loss": 0.18468017578125, + "step": 273200 + }, + { + "epoch": 91.55783566462853, + "grad_norm": 0.5666652917861938, + "learning_rate": 4.242043551088777e-06, + "loss": 0.18494237899780275, + "step": 273300 + }, + { + "epoch": 91.59133930814976, + "grad_norm": 0.46655622124671936, + "learning_rate": 4.225293132328308e-06, + "loss": 0.18492658615112303, + "step": 273400 + }, + { + "epoch": 91.624842951671, + "grad_norm": 0.5972129106521606, + "learning_rate": 4.20854271356784e-06, + "loss": 0.1859132766723633, + "step": 273500 + }, + { + "epoch": 91.65834659519223, + "grad_norm": 0.5144099593162537, + "learning_rate": 4.19179229480737e-06, + "loss": 0.1850869369506836, + "step": 273600 + }, + { + "epoch": 91.69185023871346, + "grad_norm": 0.46821364760398865, + "learning_rate": 4.175041876046902e-06, + "loss": 0.1852436828613281, + "step": 273700 + }, + { + "epoch": 91.7253538822347, + "grad_norm": 0.6473614573478699, + "learning_rate": 4.158291457286433e-06, + "loss": 0.1850813102722168, + "step": 273800 + }, + { + "epoch": 91.75885752575593, + "grad_norm": 0.7392449378967285, + "learning_rate": 4.1415410385259635e-06, + "loss": 0.18418787002563478, + "step": 273900 + }, + { + "epoch": 91.79236116927716, + "grad_norm": 0.5982920527458191, + "learning_rate": 4.124790619765494e-06, + "loss": 0.18475706100463868, + "step": 274000 + }, + { + "epoch": 91.82586481279839, + "grad_norm": 0.5010756254196167, + "learning_rate": 4.108040201005025e-06, + "loss": 0.18550140380859376, + "step": 274100 + }, + { + "epoch": 91.85936845631963, + "grad_norm": 0.42886313796043396, + "learning_rate": 4.091289782244556e-06, + "loss": 0.1851121711730957, + "step": 274200 + }, + { + "epoch": 91.89287209984086, + "grad_norm": 0.6056686043739319, + "learning_rate": 4.074539363484087e-06, + "loss": 0.18567405700683592, + "step": 274300 + }, + { + "epoch": 91.92637574336209, + "grad_norm": 0.6657816171646118, + "learning_rate": 4.057788944723618e-06, + "loss": 0.185372314453125, + "step": 274400 + }, + { + "epoch": 91.95987938688333, + "grad_norm": 0.7955371737480164, + "learning_rate": 4.041038525963149e-06, + "loss": 0.18559362411499022, + "step": 274500 + }, + { + "epoch": 91.99338303040456, + "grad_norm": 0.5486671924591064, + "learning_rate": 4.024455611390285e-06, + "loss": 0.18554763793945311, + "step": 274600 + }, + { + "epoch": 92.02680291481698, + "grad_norm": 0.4851992130279541, + "learning_rate": 4.007705192629816e-06, + "loss": 0.1837984085083008, + "step": 274700 + }, + { + "epoch": 92.06030655833823, + "grad_norm": 0.6564006805419922, + "learning_rate": 3.990954773869347e-06, + "loss": 0.1828889274597168, + "step": 274800 + }, + { + "epoch": 92.09381020185945, + "grad_norm": 0.4906276762485504, + "learning_rate": 3.974204355108877e-06, + "loss": 0.18224969863891602, + "step": 274900 + }, + { + "epoch": 92.12731384538068, + "grad_norm": 0.47474029660224915, + "learning_rate": 3.957453936348409e-06, + "loss": 0.18334747314453126, + "step": 275000 + }, + { + "epoch": 92.16081748890191, + "grad_norm": 0.5322253704071045, + "learning_rate": 3.940703517587939e-06, + "loss": 0.18336933135986327, + "step": 275100 + }, + { + "epoch": 92.19432113242316, + "grad_norm": 0.6422849297523499, + "learning_rate": 3.923953098827471e-06, + "loss": 0.18472524642944335, + "step": 275200 + }, + { + "epoch": 92.22782477594438, + "grad_norm": 0.555906355381012, + "learning_rate": 3.907202680067002e-06, + "loss": 0.18407018661499022, + "step": 275300 + }, + { + "epoch": 92.26132841946561, + "grad_norm": 0.5680630207061768, + "learning_rate": 3.8904522613065325e-06, + "loss": 0.18363739013671876, + "step": 275400 + }, + { + "epoch": 92.29483206298686, + "grad_norm": 0.5128674507141113, + "learning_rate": 3.873701842546064e-06, + "loss": 0.18399686813354493, + "step": 275500 + }, + { + "epoch": 92.32833570650808, + "grad_norm": 0.6279745697975159, + "learning_rate": 3.856951423785595e-06, + "loss": 0.18378208160400392, + "step": 275600 + }, + { + "epoch": 92.36183935002931, + "grad_norm": 0.601681113243103, + "learning_rate": 3.840201005025126e-06, + "loss": 0.18319509506225587, + "step": 275700 + }, + { + "epoch": 92.39534299355054, + "grad_norm": 0.5092858672142029, + "learning_rate": 3.823450586264657e-06, + "loss": 0.18382539749145507, + "step": 275800 + }, + { + "epoch": 92.42884663707179, + "grad_norm": 0.5969312191009521, + "learning_rate": 3.8067001675041877e-06, + "loss": 0.1847224235534668, + "step": 275900 + }, + { + "epoch": 92.46235028059301, + "grad_norm": 0.49249494075775146, + "learning_rate": 3.7899497487437186e-06, + "loss": 0.18417783737182616, + "step": 276000 + }, + { + "epoch": 92.49585392411424, + "grad_norm": 0.5279737710952759, + "learning_rate": 3.77319932998325e-06, + "loss": 0.18486669540405273, + "step": 276100 + }, + { + "epoch": 92.52935756763549, + "grad_norm": 0.5199563503265381, + "learning_rate": 3.7564489112227805e-06, + "loss": 0.18549766540527343, + "step": 276200 + }, + { + "epoch": 92.56286121115672, + "grad_norm": 0.5814909934997559, + "learning_rate": 3.739698492462312e-06, + "loss": 0.18439958572387696, + "step": 276300 + }, + { + "epoch": 92.59636485467794, + "grad_norm": 0.5165287852287292, + "learning_rate": 3.7229480737018428e-06, + "loss": 0.18408321380615233, + "step": 276400 + }, + { + "epoch": 92.62986849819917, + "grad_norm": 0.47519955039024353, + "learning_rate": 3.7061976549413733e-06, + "loss": 0.18507766723632812, + "step": 276500 + }, + { + "epoch": 92.66337214172042, + "grad_norm": 0.5444027185440063, + "learning_rate": 3.6894472361809047e-06, + "loss": 0.1847231101989746, + "step": 276600 + }, + { + "epoch": 92.69687578524164, + "grad_norm": 0.46999087929725647, + "learning_rate": 3.6728643216080406e-06, + "loss": 0.18614614486694336, + "step": 276700 + }, + { + "epoch": 92.73037942876287, + "grad_norm": 0.8311703205108643, + "learning_rate": 3.6561139028475715e-06, + "loss": 0.18451465606689454, + "step": 276800 + }, + { + "epoch": 92.76388307228412, + "grad_norm": 0.5036934614181519, + "learning_rate": 3.639363484087102e-06, + "loss": 0.18498050689697265, + "step": 276900 + }, + { + "epoch": 92.79738671580535, + "grad_norm": 0.7324947714805603, + "learning_rate": 3.6226130653266334e-06, + "loss": 0.184973087310791, + "step": 277000 + }, + { + "epoch": 92.83089035932657, + "grad_norm": 0.4393749535083771, + "learning_rate": 3.6058626465661647e-06, + "loss": 0.1858364486694336, + "step": 277100 + }, + { + "epoch": 92.8643940028478, + "grad_norm": 0.6435522437095642, + "learning_rate": 3.5891122278056953e-06, + "loss": 0.18547016143798828, + "step": 277200 + }, + { + "epoch": 92.89789764636905, + "grad_norm": 0.4739900529384613, + "learning_rate": 3.572361809045226e-06, + "loss": 0.18432489395141602, + "step": 277300 + }, + { + "epoch": 92.93140128989027, + "grad_norm": 0.5389711856842041, + "learning_rate": 3.555611390284757e-06, + "loss": 0.18447877883911132, + "step": 277400 + }, + { + "epoch": 92.9649049334115, + "grad_norm": 0.5507364869117737, + "learning_rate": 3.538860971524288e-06, + "loss": 0.18475034713745117, + "step": 277500 + }, + { + "epoch": 92.99840857693275, + "grad_norm": 0.6159628629684448, + "learning_rate": 3.5221105527638194e-06, + "loss": 0.18557378768920899, + "step": 277600 + }, + { + "epoch": 93.03182846134517, + "grad_norm": 0.555902361869812, + "learning_rate": 3.50536013400335e-06, + "loss": 0.18302148818969727, + "step": 277700 + }, + { + "epoch": 93.0653321048664, + "grad_norm": 0.6510830521583557, + "learning_rate": 3.4886097152428813e-06, + "loss": 0.18316720962524413, + "step": 277800 + }, + { + "epoch": 93.09883574838764, + "grad_norm": 0.5541417598724365, + "learning_rate": 3.4718592964824123e-06, + "loss": 0.18269014358520508, + "step": 277900 + }, + { + "epoch": 93.13233939190887, + "grad_norm": 0.5546096563339233, + "learning_rate": 3.455108877721943e-06, + "loss": 0.18281387329101562, + "step": 278000 + }, + { + "epoch": 93.1658430354301, + "grad_norm": 0.5906556248664856, + "learning_rate": 3.438358458961474e-06, + "loss": 0.18238527297973633, + "step": 278100 + }, + { + "epoch": 93.19934667895133, + "grad_norm": 0.5291375517845154, + "learning_rate": 3.4216080402010055e-06, + "loss": 0.18321968078613282, + "step": 278200 + }, + { + "epoch": 93.23285032247257, + "grad_norm": 0.49932029843330383, + "learning_rate": 3.404857621440536e-06, + "loss": 0.18250431060791017, + "step": 278300 + }, + { + "epoch": 93.2663539659938, + "grad_norm": 0.5344804525375366, + "learning_rate": 3.3881072026800674e-06, + "loss": 0.18370258331298828, + "step": 278400 + }, + { + "epoch": 93.29985760951503, + "grad_norm": 0.547133207321167, + "learning_rate": 3.371356783919598e-06, + "loss": 0.18311479568481445, + "step": 278500 + }, + { + "epoch": 93.33336125303627, + "grad_norm": 0.6846116185188293, + "learning_rate": 3.354606365159129e-06, + "loss": 0.18370712280273438, + "step": 278600 + }, + { + "epoch": 93.3668648965575, + "grad_norm": 0.5736503005027771, + "learning_rate": 3.33785594639866e-06, + "loss": 0.18427995681762696, + "step": 278700 + }, + { + "epoch": 93.40036854007873, + "grad_norm": 0.5363325476646423, + "learning_rate": 3.321273031825796e-06, + "loss": 0.18477426528930663, + "step": 278800 + }, + { + "epoch": 93.43387218359997, + "grad_norm": 0.5641268491744995, + "learning_rate": 3.3045226130653266e-06, + "loss": 0.18418367385864257, + "step": 278900 + }, + { + "epoch": 93.4673758271212, + "grad_norm": 0.5597323179244995, + "learning_rate": 3.2877721943048576e-06, + "loss": 0.18357982635498046, + "step": 279000 + }, + { + "epoch": 93.50087947064243, + "grad_norm": 0.5814647078514099, + "learning_rate": 3.271021775544389e-06, + "loss": 0.18340383529663085, + "step": 279100 + }, + { + "epoch": 93.53438311416366, + "grad_norm": 0.6923455595970154, + "learning_rate": 3.2542713567839194e-06, + "loss": 0.18384368896484374, + "step": 279200 + }, + { + "epoch": 93.5678867576849, + "grad_norm": 0.5960889458656311, + "learning_rate": 3.237520938023451e-06, + "loss": 0.18405187606811524, + "step": 279300 + }, + { + "epoch": 93.60139040120613, + "grad_norm": 0.4457511305809021, + "learning_rate": 3.2207705192629817e-06, + "loss": 0.1838911247253418, + "step": 279400 + }, + { + "epoch": 93.63489404472736, + "grad_norm": 0.5525141954421997, + "learning_rate": 3.2040201005025127e-06, + "loss": 0.18411317825317383, + "step": 279500 + }, + { + "epoch": 93.6683976882486, + "grad_norm": 0.4308946430683136, + "learning_rate": 3.1872696817420436e-06, + "loss": 0.18421003341674805, + "step": 279600 + }, + { + "epoch": 93.70190133176983, + "grad_norm": 0.4606753885746002, + "learning_rate": 3.170519262981575e-06, + "loss": 0.1856534194946289, + "step": 279700 + }, + { + "epoch": 93.73540497529106, + "grad_norm": 0.5044844150543213, + "learning_rate": 3.1537688442211055e-06, + "loss": 0.1849703598022461, + "step": 279800 + }, + { + "epoch": 93.76890861881229, + "grad_norm": 0.5462206602096558, + "learning_rate": 3.137018425460637e-06, + "loss": 0.18439491271972655, + "step": 279900 + }, + { + "epoch": 93.80241226233353, + "grad_norm": 0.6235095262527466, + "learning_rate": 3.120268006700168e-06, + "loss": 0.18433120727539062, + "step": 280000 + }, + { + "epoch": 93.83591590585476, + "grad_norm": 0.49713248014450073, + "learning_rate": 3.1035175879396987e-06, + "loss": 0.18527395248413087, + "step": 280100 + }, + { + "epoch": 93.86941954937599, + "grad_norm": 0.43499988317489624, + "learning_rate": 3.0867671691792297e-06, + "loss": 0.1845208740234375, + "step": 280200 + }, + { + "epoch": 93.90292319289723, + "grad_norm": 0.5285036563873291, + "learning_rate": 3.0700167504187606e-06, + "loss": 0.1845704460144043, + "step": 280300 + }, + { + "epoch": 93.93642683641846, + "grad_norm": 0.7002624869346619, + "learning_rate": 3.0532663316582916e-06, + "loss": 0.18544256210327148, + "step": 280400 + }, + { + "epoch": 93.96993047993969, + "grad_norm": 0.5086694955825806, + "learning_rate": 3.0365159128978225e-06, + "loss": 0.18481266021728515, + "step": 280500 + }, + { + "epoch": 94.00335036435213, + "grad_norm": 0.541530966758728, + "learning_rate": 3.019765494137354e-06, + "loss": 0.18497087478637694, + "step": 280600 + }, + { + "epoch": 94.03685400787336, + "grad_norm": 0.5113808512687683, + "learning_rate": 3.0030150753768844e-06, + "loss": 0.1830722427368164, + "step": 280700 + }, + { + "epoch": 94.07035765139459, + "grad_norm": 0.578902542591095, + "learning_rate": 2.9864321608040203e-06, + "loss": 0.1829450798034668, + "step": 280800 + }, + { + "epoch": 94.10386129491582, + "grad_norm": 0.47617286443710327, + "learning_rate": 2.9696817420435512e-06, + "loss": 0.18288434982299806, + "step": 280900 + }, + { + "epoch": 94.13736493843706, + "grad_norm": 0.5248568654060364, + "learning_rate": 2.952931323283082e-06, + "loss": 0.18265800476074218, + "step": 281000 + }, + { + "epoch": 94.17086858195829, + "grad_norm": 0.5427269339561462, + "learning_rate": 2.936180904522613e-06, + "loss": 0.1820301628112793, + "step": 281100 + }, + { + "epoch": 94.20437222547952, + "grad_norm": 0.5137001276016235, + "learning_rate": 2.919430485762144e-06, + "loss": 0.18303417205810546, + "step": 281200 + }, + { + "epoch": 94.23787586900076, + "grad_norm": 0.5321929454803467, + "learning_rate": 2.902680067001675e-06, + "loss": 0.1835261344909668, + "step": 281300 + }, + { + "epoch": 94.27137951252199, + "grad_norm": 0.4833122491836548, + "learning_rate": 2.8859296482412063e-06, + "loss": 0.18361148834228516, + "step": 281400 + }, + { + "epoch": 94.30488315604322, + "grad_norm": 0.6427774429321289, + "learning_rate": 2.8691792294807373e-06, + "loss": 0.18336435317993163, + "step": 281500 + }, + { + "epoch": 94.33838679956445, + "grad_norm": 0.45124322175979614, + "learning_rate": 2.8524288107202682e-06, + "loss": 0.1830876350402832, + "step": 281600 + }, + { + "epoch": 94.37189044308569, + "grad_norm": 0.5530322194099426, + "learning_rate": 2.835678391959799e-06, + "loss": 0.18310989379882814, + "step": 281700 + }, + { + "epoch": 94.40539408660692, + "grad_norm": 0.4179496169090271, + "learning_rate": 2.81892797319933e-06, + "loss": 0.18375337600708008, + "step": 281800 + }, + { + "epoch": 94.43889773012815, + "grad_norm": 0.5519108772277832, + "learning_rate": 2.802177554438861e-06, + "loss": 0.1845833969116211, + "step": 281900 + }, + { + "epoch": 94.47240137364939, + "grad_norm": 0.5219084620475769, + "learning_rate": 2.785427135678392e-06, + "loss": 0.18406974792480468, + "step": 282000 + }, + { + "epoch": 94.50590501717062, + "grad_norm": 0.6132789850234985, + "learning_rate": 2.7686767169179233e-06, + "loss": 0.18442945480346679, + "step": 282100 + }, + { + "epoch": 94.53940866069185, + "grad_norm": 0.5181702971458435, + "learning_rate": 2.7519262981574543e-06, + "loss": 0.1834421730041504, + "step": 282200 + }, + { + "epoch": 94.57291230421308, + "grad_norm": 0.549511194229126, + "learning_rate": 2.735175879396985e-06, + "loss": 0.18456022262573243, + "step": 282300 + }, + { + "epoch": 94.60641594773432, + "grad_norm": 0.5756514072418213, + "learning_rate": 2.7184254606365157e-06, + "loss": 0.1831919479370117, + "step": 282400 + }, + { + "epoch": 94.63991959125555, + "grad_norm": 0.5692307949066162, + "learning_rate": 2.701675041876047e-06, + "loss": 0.18358297348022462, + "step": 282500 + }, + { + "epoch": 94.67342323477678, + "grad_norm": 0.6947788596153259, + "learning_rate": 2.684924623115578e-06, + "loss": 0.1838298225402832, + "step": 282600 + }, + { + "epoch": 94.70692687829802, + "grad_norm": 0.5112714767456055, + "learning_rate": 2.668174204355109e-06, + "loss": 0.18363580703735352, + "step": 282700 + }, + { + "epoch": 94.74043052181925, + "grad_norm": 0.6610069274902344, + "learning_rate": 2.6515912897822445e-06, + "loss": 0.184285888671875, + "step": 282800 + }, + { + "epoch": 94.77393416534048, + "grad_norm": 0.5555760860443115, + "learning_rate": 2.634840871021776e-06, + "loss": 0.18415529251098633, + "step": 282900 + }, + { + "epoch": 94.8074378088617, + "grad_norm": 0.6111050844192505, + "learning_rate": 2.6180904522613068e-06, + "loss": 0.18409820556640624, + "step": 283000 + }, + { + "epoch": 94.84094145238295, + "grad_norm": 0.5163633227348328, + "learning_rate": 2.6013400335008377e-06, + "loss": 0.18490222930908204, + "step": 283100 + }, + { + "epoch": 94.87444509590418, + "grad_norm": 0.5600749254226685, + "learning_rate": 2.5845896147403686e-06, + "loss": 0.18375289916992188, + "step": 283200 + }, + { + "epoch": 94.90794873942541, + "grad_norm": 0.49500954151153564, + "learning_rate": 2.5678391959798996e-06, + "loss": 0.18480894088745117, + "step": 283300 + }, + { + "epoch": 94.94145238294665, + "grad_norm": 0.5733513236045837, + "learning_rate": 2.5510887772194305e-06, + "loss": 0.1837126922607422, + "step": 283400 + }, + { + "epoch": 94.97495602646788, + "grad_norm": 0.549117386341095, + "learning_rate": 2.5343383584589615e-06, + "loss": 0.18447158813476563, + "step": 283500 + }, + { + "epoch": 95.0083759108803, + "grad_norm": 0.4763764441013336, + "learning_rate": 2.517587939698493e-06, + "loss": 0.18384462356567383, + "step": 283600 + }, + { + "epoch": 95.04187955440155, + "grad_norm": 0.5236153602600098, + "learning_rate": 2.5008375209380238e-06, + "loss": 0.18261993408203125, + "step": 283700 + }, + { + "epoch": 95.07538319792278, + "grad_norm": 0.4592667818069458, + "learning_rate": 2.4840871021775543e-06, + "loss": 0.18320878982543945, + "step": 283800 + }, + { + "epoch": 95.108886841444, + "grad_norm": 0.506898820400238, + "learning_rate": 2.4673366834170852e-06, + "loss": 0.18264638900756835, + "step": 283900 + }, + { + "epoch": 95.14239048496523, + "grad_norm": 0.619023859500885, + "learning_rate": 2.4505862646566166e-06, + "loss": 0.18314945220947265, + "step": 284000 + }, + { + "epoch": 95.17589412848648, + "grad_norm": 0.48291823267936707, + "learning_rate": 2.4338358458961475e-06, + "loss": 0.18282480239868165, + "step": 284100 + }, + { + "epoch": 95.2093977720077, + "grad_norm": 0.48036035895347595, + "learning_rate": 2.4170854271356785e-06, + "loss": 0.1841721534729004, + "step": 284200 + }, + { + "epoch": 95.24290141552893, + "grad_norm": 0.5450857877731323, + "learning_rate": 2.40033500837521e-06, + "loss": 0.18397005081176757, + "step": 284300 + }, + { + "epoch": 95.27640505905018, + "grad_norm": 0.47729921340942383, + "learning_rate": 2.3835845896147403e-06, + "loss": 0.18345026016235352, + "step": 284400 + }, + { + "epoch": 95.3099087025714, + "grad_norm": 0.6052916646003723, + "learning_rate": 2.3668341708542713e-06, + "loss": 0.1844022560119629, + "step": 284500 + }, + { + "epoch": 95.34341234609263, + "grad_norm": 0.5513006448745728, + "learning_rate": 2.3500837520938022e-06, + "loss": 0.1827683639526367, + "step": 284600 + }, + { + "epoch": 95.37691598961388, + "grad_norm": 0.48488298058509827, + "learning_rate": 2.3333333333333336e-06, + "loss": 0.1831340026855469, + "step": 284700 + }, + { + "epoch": 95.4104196331351, + "grad_norm": 0.5309977531433105, + "learning_rate": 2.316750418760469e-06, + "loss": 0.18309810638427734, + "step": 284800 + }, + { + "epoch": 95.44392327665634, + "grad_norm": 0.43957263231277466, + "learning_rate": 2.3e-06, + "loss": 0.1831692123413086, + "step": 284900 + }, + { + "epoch": 95.47742692017756, + "grad_norm": 0.5356688499450684, + "learning_rate": 2.283249581239531e-06, + "loss": 0.18342973709106444, + "step": 285000 + }, + { + "epoch": 95.5109305636988, + "grad_norm": 0.5657954812049866, + "learning_rate": 2.2664991624790623e-06, + "loss": 0.18340103149414064, + "step": 285100 + }, + { + "epoch": 95.54443420722004, + "grad_norm": 0.5092414617538452, + "learning_rate": 2.2497487437185932e-06, + "loss": 0.18338417053222655, + "step": 285200 + }, + { + "epoch": 95.57793785074126, + "grad_norm": 0.4153210520744324, + "learning_rate": 2.232998324958124e-06, + "loss": 0.1836545181274414, + "step": 285300 + }, + { + "epoch": 95.61144149426251, + "grad_norm": 0.5015280842781067, + "learning_rate": 2.2162479061976547e-06, + "loss": 0.1827981948852539, + "step": 285400 + }, + { + "epoch": 95.64494513778374, + "grad_norm": 0.7179563641548157, + "learning_rate": 2.199497487437186e-06, + "loss": 0.18311439514160155, + "step": 285500 + }, + { + "epoch": 95.67844878130497, + "grad_norm": 0.5288705825805664, + "learning_rate": 2.182747068676717e-06, + "loss": 0.18439481735229493, + "step": 285600 + }, + { + "epoch": 95.7119524248262, + "grad_norm": 0.5110313296318054, + "learning_rate": 2.165996649916248e-06, + "loss": 0.18332534790039062, + "step": 285700 + }, + { + "epoch": 95.74545606834744, + "grad_norm": 0.5360533595085144, + "learning_rate": 2.1492462311557793e-06, + "loss": 0.18395133972167968, + "step": 285800 + }, + { + "epoch": 95.77895971186867, + "grad_norm": 0.534217894077301, + "learning_rate": 2.13249581239531e-06, + "loss": 0.18385652542114259, + "step": 285900 + }, + { + "epoch": 95.8124633553899, + "grad_norm": 0.6536206007003784, + "learning_rate": 2.1157453936348408e-06, + "loss": 0.18364360809326172, + "step": 286000 + }, + { + "epoch": 95.84596699891114, + "grad_norm": 0.5675894618034363, + "learning_rate": 2.0989949748743717e-06, + "loss": 0.18334434509277345, + "step": 286100 + }, + { + "epoch": 95.87947064243237, + "grad_norm": 0.5131775736808777, + "learning_rate": 2.082244556113903e-06, + "loss": 0.18401821136474608, + "step": 286200 + }, + { + "epoch": 95.9129742859536, + "grad_norm": 0.4480537176132202, + "learning_rate": 2.065494137353434e-06, + "loss": 0.18490314483642578, + "step": 286300 + }, + { + "epoch": 95.94647792947482, + "grad_norm": 0.566072404384613, + "learning_rate": 2.048743718592965e-06, + "loss": 0.18334156036376953, + "step": 286400 + }, + { + "epoch": 95.97998157299607, + "grad_norm": 0.5423669815063477, + "learning_rate": 2.031993299832496e-06, + "loss": 0.18419130325317382, + "step": 286500 + }, + { + "epoch": 96.01340145740849, + "grad_norm": 0.5609968900680542, + "learning_rate": 2.015242881072027e-06, + "loss": 0.18358615875244141, + "step": 286600 + }, + { + "epoch": 96.04690510092972, + "grad_norm": 0.4528324604034424, + "learning_rate": 1.9984924623115578e-06, + "loss": 0.18235225677490235, + "step": 286700 + }, + { + "epoch": 96.08040874445096, + "grad_norm": 0.4424758851528168, + "learning_rate": 1.9817420435510887e-06, + "loss": 0.18314834594726562, + "step": 286800 + }, + { + "epoch": 96.11391238797219, + "grad_norm": 0.5286248922348022, + "learning_rate": 1.965159128978224e-06, + "loss": 0.18267539978027345, + "step": 286900 + }, + { + "epoch": 96.14741603149342, + "grad_norm": 0.44464874267578125, + "learning_rate": 1.9484087102177555e-06, + "loss": 0.18318920135498046, + "step": 287000 + }, + { + "epoch": 96.18091967501466, + "grad_norm": 0.5130648016929626, + "learning_rate": 1.9316582914572865e-06, + "loss": 0.18308115005493164, + "step": 287100 + }, + { + "epoch": 96.21442331853589, + "grad_norm": 0.8183990120887756, + "learning_rate": 1.9149078726968174e-06, + "loss": 0.1834044075012207, + "step": 287200 + }, + { + "epoch": 96.24792696205712, + "grad_norm": 0.5199669599533081, + "learning_rate": 1.8981574539363486e-06, + "loss": 0.18283458709716796, + "step": 287300 + }, + { + "epoch": 96.28143060557835, + "grad_norm": 0.4842471778392792, + "learning_rate": 1.8814070351758795e-06, + "loss": 0.18268014907836913, + "step": 287400 + }, + { + "epoch": 96.3149342490996, + "grad_norm": 0.6083213686943054, + "learning_rate": 1.8646566164154105e-06, + "loss": 0.18216041564941407, + "step": 287500 + }, + { + "epoch": 96.34843789262082, + "grad_norm": 0.46411433815956116, + "learning_rate": 1.8479061976549414e-06, + "loss": 0.18271490097045898, + "step": 287600 + }, + { + "epoch": 96.38194153614205, + "grad_norm": 0.5906765460968018, + "learning_rate": 1.8311557788944725e-06, + "loss": 0.18355520248413085, + "step": 287700 + }, + { + "epoch": 96.4154451796633, + "grad_norm": 0.6398022174835205, + "learning_rate": 1.8144053601340035e-06, + "loss": 0.18388975143432618, + "step": 287800 + }, + { + "epoch": 96.44894882318452, + "grad_norm": 0.5343595147132874, + "learning_rate": 1.7976549413735344e-06, + "loss": 0.1829561996459961, + "step": 287900 + }, + { + "epoch": 96.48245246670575, + "grad_norm": 0.5307978987693787, + "learning_rate": 1.7809045226130656e-06, + "loss": 0.1831664276123047, + "step": 288000 + }, + { + "epoch": 96.51595611022698, + "grad_norm": 0.42967861890792847, + "learning_rate": 1.7641541038525965e-06, + "loss": 0.18227174758911133, + "step": 288100 + }, + { + "epoch": 96.54945975374822, + "grad_norm": 0.5349688529968262, + "learning_rate": 1.7474036850921274e-06, + "loss": 0.1833807945251465, + "step": 288200 + }, + { + "epoch": 96.58296339726945, + "grad_norm": 0.5560780167579651, + "learning_rate": 1.7306532663316582e-06, + "loss": 0.1837186622619629, + "step": 288300 + }, + { + "epoch": 96.61646704079068, + "grad_norm": 0.6274934411048889, + "learning_rate": 1.7139028475711895e-06, + "loss": 0.18322343826293946, + "step": 288400 + }, + { + "epoch": 96.64997068431192, + "grad_norm": 0.4825371503829956, + "learning_rate": 1.6971524288107205e-06, + "loss": 0.18326036453247072, + "step": 288500 + }, + { + "epoch": 96.68347432783315, + "grad_norm": 0.6797924041748047, + "learning_rate": 1.6804020100502512e-06, + "loss": 0.18284734725952148, + "step": 288600 + }, + { + "epoch": 96.71697797135438, + "grad_norm": 0.5788692235946655, + "learning_rate": 1.6636515912897821e-06, + "loss": 0.1840299606323242, + "step": 288700 + }, + { + "epoch": 96.75048161487561, + "grad_norm": 0.49273577332496643, + "learning_rate": 1.6469011725293135e-06, + "loss": 0.18266069412231445, + "step": 288800 + }, + { + "epoch": 96.78398525839685, + "grad_norm": 0.5252591967582703, + "learning_rate": 1.630318257956449e-06, + "loss": 0.1839330291748047, + "step": 288900 + }, + { + "epoch": 96.81748890191808, + "grad_norm": 0.6281270980834961, + "learning_rate": 1.61356783919598e-06, + "loss": 0.18259082794189452, + "step": 289000 + }, + { + "epoch": 96.85099254543931, + "grad_norm": 0.589600682258606, + "learning_rate": 1.5968174204355109e-06, + "loss": 0.18413593292236327, + "step": 289100 + }, + { + "epoch": 96.88449618896055, + "grad_norm": 0.52843177318573, + "learning_rate": 1.580067001675042e-06, + "loss": 0.18312227249145507, + "step": 289200 + }, + { + "epoch": 96.91799983248178, + "grad_norm": 0.5499556660652161, + "learning_rate": 1.563316582914573e-06, + "loss": 0.18327688217163085, + "step": 289300 + }, + { + "epoch": 96.95150347600301, + "grad_norm": 0.5910999178886414, + "learning_rate": 1.5465661641541041e-06, + "loss": 0.18362533569335937, + "step": 289400 + }, + { + "epoch": 96.98500711952425, + "grad_norm": 0.47498592734336853, + "learning_rate": 1.5298157453936348e-06, + "loss": 0.18386016845703124, + "step": 289500 + }, + { + "epoch": 97.01842700393668, + "grad_norm": 0.5408181548118591, + "learning_rate": 1.513065326633166e-06, + "loss": 0.18346582412719725, + "step": 289600 + }, + { + "epoch": 97.05193064745791, + "grad_norm": 0.6393353939056396, + "learning_rate": 1.496314907872697e-06, + "loss": 0.18178239822387696, + "step": 289700 + }, + { + "epoch": 97.08543429097914, + "grad_norm": 0.568048894405365, + "learning_rate": 1.4795644891122279e-06, + "loss": 0.1829755973815918, + "step": 289800 + }, + { + "epoch": 97.11893793450038, + "grad_norm": 0.4984806776046753, + "learning_rate": 1.4628140703517588e-06, + "loss": 0.1820225715637207, + "step": 289900 + }, + { + "epoch": 97.15244157802161, + "grad_norm": 0.4840709865093231, + "learning_rate": 1.44606365159129e-06, + "loss": 0.18249683380126952, + "step": 290000 + }, + { + "epoch": 97.18594522154284, + "grad_norm": 0.5016071200370789, + "learning_rate": 1.4293132328308207e-06, + "loss": 0.18231712341308592, + "step": 290100 + }, + { + "epoch": 97.21944886506408, + "grad_norm": 0.6901659965515137, + "learning_rate": 1.4125628140703518e-06, + "loss": 0.18322145462036132, + "step": 290200 + }, + { + "epoch": 97.25295250858531, + "grad_norm": 0.4563469886779785, + "learning_rate": 1.3958123953098828e-06, + "loss": 0.18245380401611327, + "step": 290300 + }, + { + "epoch": 97.28645615210654, + "grad_norm": 0.6341580152511597, + "learning_rate": 1.3790619765494137e-06, + "loss": 0.18248394012451172, + "step": 290400 + }, + { + "epoch": 97.31995979562778, + "grad_norm": 0.681046187877655, + "learning_rate": 1.3623115577889449e-06, + "loss": 0.18289484024047853, + "step": 290500 + }, + { + "epoch": 97.35346343914901, + "grad_norm": 0.5641540884971619, + "learning_rate": 1.3455611390284758e-06, + "loss": 0.18241430282592774, + "step": 290600 + }, + { + "epoch": 97.38696708267024, + "grad_norm": 0.46917444467544556, + "learning_rate": 1.3288107202680067e-06, + "loss": 0.18300029754638672, + "step": 290700 + }, + { + "epoch": 97.42047072619147, + "grad_norm": 0.5886017084121704, + "learning_rate": 1.3120603015075377e-06, + "loss": 0.18347707748413086, + "step": 290800 + }, + { + "epoch": 97.45397436971271, + "grad_norm": 0.5818371772766113, + "learning_rate": 1.2954773869346736e-06, + "loss": 0.1830360221862793, + "step": 290900 + }, + { + "epoch": 97.48747801323394, + "grad_norm": 0.5439379215240479, + "learning_rate": 1.2787269681742043e-06, + "loss": 0.18396745681762694, + "step": 291000 + }, + { + "epoch": 97.52098165675517, + "grad_norm": 0.5070674419403076, + "learning_rate": 1.2619765494137355e-06, + "loss": 0.1832095718383789, + "step": 291100 + }, + { + "epoch": 97.55448530027641, + "grad_norm": 0.4415448307991028, + "learning_rate": 1.2452261306532664e-06, + "loss": 0.18289644241333008, + "step": 291200 + }, + { + "epoch": 97.58798894379764, + "grad_norm": 0.4324808418750763, + "learning_rate": 1.2284757118927973e-06, + "loss": 0.18389009475708007, + "step": 291300 + }, + { + "epoch": 97.62149258731887, + "grad_norm": 0.653737485408783, + "learning_rate": 1.2117252931323283e-06, + "loss": 0.1822391700744629, + "step": 291400 + }, + { + "epoch": 97.6549962308401, + "grad_norm": 0.5741151571273804, + "learning_rate": 1.1949748743718594e-06, + "loss": 0.18301633834838868, + "step": 291500 + }, + { + "epoch": 97.68849987436134, + "grad_norm": 0.526233971118927, + "learning_rate": 1.1782244556113904e-06, + "loss": 0.18326601028442382, + "step": 291600 + }, + { + "epoch": 97.72200351788257, + "grad_norm": 0.4789596498012543, + "learning_rate": 1.1614740368509213e-06, + "loss": 0.18228565216064452, + "step": 291700 + }, + { + "epoch": 97.7555071614038, + "grad_norm": 0.711111307144165, + "learning_rate": 1.1447236180904523e-06, + "loss": 0.18288152694702148, + "step": 291800 + }, + { + "epoch": 97.78901080492504, + "grad_norm": 0.5140437483787537, + "learning_rate": 1.1279731993299832e-06, + "loss": 0.18254825592041016, + "step": 291900 + }, + { + "epoch": 97.82251444844627, + "grad_norm": 0.47034555673599243, + "learning_rate": 1.1112227805695143e-06, + "loss": 0.18244110107421874, + "step": 292000 + }, + { + "epoch": 97.8560180919675, + "grad_norm": 0.5814681053161621, + "learning_rate": 1.0944723618090453e-06, + "loss": 0.1832912254333496, + "step": 292100 + }, + { + "epoch": 97.88952173548873, + "grad_norm": 0.5516090393066406, + "learning_rate": 1.0777219430485762e-06, + "loss": 0.18352859497070312, + "step": 292200 + }, + { + "epoch": 97.92302537900997, + "grad_norm": 0.5123777985572815, + "learning_rate": 1.0609715242881072e-06, + "loss": 0.18379606246948244, + "step": 292300 + }, + { + "epoch": 97.9565290225312, + "grad_norm": 0.6835401654243469, + "learning_rate": 1.0442211055276383e-06, + "loss": 0.18410768508911132, + "step": 292400 + }, + { + "epoch": 97.99003266605243, + "grad_norm": 0.5012428760528564, + "learning_rate": 1.0274706867671693e-06, + "loss": 0.18317014694213868, + "step": 292500 + }, + { + "epoch": 98.02345255046487, + "grad_norm": 0.4708642065525055, + "learning_rate": 1.0107202680067002e-06, + "loss": 0.18331142425537109, + "step": 292600 + }, + { + "epoch": 98.0569561939861, + "grad_norm": 0.5567511320114136, + "learning_rate": 9.939698492462311e-07, + "loss": 0.18246702194213868, + "step": 292700 + }, + { + "epoch": 98.09045983750732, + "grad_norm": 0.7058369517326355, + "learning_rate": 9.772194304857623e-07, + "loss": 0.18259771347045897, + "step": 292800 + }, + { + "epoch": 98.12396348102857, + "grad_norm": 0.6134818196296692, + "learning_rate": 9.604690117252932e-07, + "loss": 0.1822067070007324, + "step": 292900 + }, + { + "epoch": 98.1574671245498, + "grad_norm": 0.4781286418437958, + "learning_rate": 9.438860971524289e-07, + "loss": 0.18297542572021486, + "step": 293000 + }, + { + "epoch": 98.19097076807103, + "grad_norm": 0.49279746413230896, + "learning_rate": 9.271356783919598e-07, + "loss": 0.18277181625366212, + "step": 293100 + }, + { + "epoch": 98.22447441159225, + "grad_norm": 0.5490056276321411, + "learning_rate": 9.103852596314908e-07, + "loss": 0.1828497314453125, + "step": 293200 + }, + { + "epoch": 98.2579780551135, + "grad_norm": 0.6629262566566467, + "learning_rate": 8.936348408710217e-07, + "loss": 0.1831769371032715, + "step": 293300 + }, + { + "epoch": 98.29148169863473, + "grad_norm": 0.6081374883651733, + "learning_rate": 8.768844221105528e-07, + "loss": 0.18234825134277344, + "step": 293400 + }, + { + "epoch": 98.32498534215595, + "grad_norm": 0.5573914051055908, + "learning_rate": 8.601340033500838e-07, + "loss": 0.18284347534179687, + "step": 293500 + }, + { + "epoch": 98.3584889856772, + "grad_norm": 0.4881286025047302, + "learning_rate": 8.433835845896148e-07, + "loss": 0.18250568389892577, + "step": 293600 + }, + { + "epoch": 98.39199262919843, + "grad_norm": 0.5479198694229126, + "learning_rate": 8.266331658291458e-07, + "loss": 0.1822296905517578, + "step": 293700 + }, + { + "epoch": 98.42549627271966, + "grad_norm": 0.48754844069480896, + "learning_rate": 8.098827470686768e-07, + "loss": 0.1824342918395996, + "step": 293800 + }, + { + "epoch": 98.45899991624088, + "grad_norm": 0.5909836292266846, + "learning_rate": 7.931323283082078e-07, + "loss": 0.18264894485473632, + "step": 293900 + }, + { + "epoch": 98.49250355976213, + "grad_norm": 0.6499689817428589, + "learning_rate": 7.763819095477387e-07, + "loss": 0.1826353645324707, + "step": 294000 + }, + { + "epoch": 98.52600720328336, + "grad_norm": 0.5792352557182312, + "learning_rate": 7.596314907872698e-07, + "loss": 0.18250282287597655, + "step": 294100 + }, + { + "epoch": 98.55951084680459, + "grad_norm": 0.6496483087539673, + "learning_rate": 7.428810720268007e-07, + "loss": 0.18278635025024415, + "step": 294200 + }, + { + "epoch": 98.59301449032583, + "grad_norm": 0.5034297704696655, + "learning_rate": 7.261306532663317e-07, + "loss": 0.18362100601196288, + "step": 294300 + }, + { + "epoch": 98.62651813384706, + "grad_norm": 0.4216485917568207, + "learning_rate": 7.093802345058627e-07, + "loss": 0.18190402984619142, + "step": 294400 + }, + { + "epoch": 98.66002177736829, + "grad_norm": 0.4336554706096649, + "learning_rate": 6.926298157453936e-07, + "loss": 0.18188596725463868, + "step": 294500 + }, + { + "epoch": 98.69352542088953, + "grad_norm": 0.557890772819519, + "learning_rate": 6.758793969849246e-07, + "loss": 0.1827729797363281, + "step": 294600 + }, + { + "epoch": 98.72702906441076, + "grad_norm": 0.5158662796020508, + "learning_rate": 6.591289782244556e-07, + "loss": 0.18270872116088868, + "step": 294700 + }, + { + "epoch": 98.76053270793199, + "grad_norm": 0.5574226975440979, + "learning_rate": 6.423785594639867e-07, + "loss": 0.18279212951660156, + "step": 294800 + }, + { + "epoch": 98.79403635145322, + "grad_norm": 0.6103866696357727, + "learning_rate": 6.256281407035176e-07, + "loss": 0.18242774963378905, + "step": 294900 + }, + { + "epoch": 98.82753999497446, + "grad_norm": 0.6679960489273071, + "learning_rate": 6.088777219430487e-07, + "loss": 0.18265195846557616, + "step": 295000 + }, + { + "epoch": 98.86104363849569, + "grad_norm": 0.5146142244338989, + "learning_rate": 5.922948073701842e-07, + "loss": 0.1826561737060547, + "step": 295100 + }, + { + "epoch": 98.89454728201692, + "grad_norm": 0.4862828850746155, + "learning_rate": 5.755443886097152e-07, + "loss": 0.1830119514465332, + "step": 295200 + }, + { + "epoch": 98.92805092553816, + "grad_norm": 0.5384283661842346, + "learning_rate": 5.587939698492462e-07, + "loss": 0.18346889495849608, + "step": 295300 + }, + { + "epoch": 98.96155456905939, + "grad_norm": 0.5220957398414612, + "learning_rate": 5.420435510887773e-07, + "loss": 0.18368080139160156, + "step": 295400 + }, + { + "epoch": 98.99505821258062, + "grad_norm": 0.4835510849952698, + "learning_rate": 5.252931323283082e-07, + "loss": 0.1819740867614746, + "step": 295500 + }, + { + "epoch": 99.02847809699304, + "grad_norm": 0.599375307559967, + "learning_rate": 5.085427135678393e-07, + "loss": 0.18192974090576172, + "step": 295600 + }, + { + "epoch": 99.06198174051428, + "grad_norm": 0.7051849365234375, + "learning_rate": 4.917922948073702e-07, + "loss": 0.1823443603515625, + "step": 295700 + }, + { + "epoch": 99.09548538403551, + "grad_norm": 0.503696858882904, + "learning_rate": 4.750418760469012e-07, + "loss": 0.18231864929199218, + "step": 295800 + }, + { + "epoch": 99.12898902755674, + "grad_norm": 0.48068055510520935, + "learning_rate": 4.582914572864322e-07, + "loss": 0.1825026512145996, + "step": 295900 + }, + { + "epoch": 99.16249267107798, + "grad_norm": 0.5054277777671814, + "learning_rate": 4.415410385259632e-07, + "loss": 0.18171930313110352, + "step": 296000 + }, + { + "epoch": 99.19599631459921, + "grad_norm": 0.4834759831428528, + "learning_rate": 4.247906197654941e-07, + "loss": 0.18209936141967772, + "step": 296100 + }, + { + "epoch": 99.22949995812044, + "grad_norm": 0.5204523205757141, + "learning_rate": 4.080402010050251e-07, + "loss": 0.18290546417236328, + "step": 296200 + }, + { + "epoch": 99.26300360164169, + "grad_norm": 0.4851609766483307, + "learning_rate": 3.9128978224455616e-07, + "loss": 0.18262216567993164, + "step": 296300 + }, + { + "epoch": 99.29650724516291, + "grad_norm": 0.506882905960083, + "learning_rate": 3.745393634840871e-07, + "loss": 0.18311552047729493, + "step": 296400 + }, + { + "epoch": 99.33001088868414, + "grad_norm": 0.4979182183742523, + "learning_rate": 3.577889447236181e-07, + "loss": 0.18193258285522462, + "step": 296500 + }, + { + "epoch": 99.36351453220537, + "grad_norm": 0.41721171140670776, + "learning_rate": 3.4103852596314913e-07, + "loss": 0.18166379928588866, + "step": 296600 + }, + { + "epoch": 99.39701817572661, + "grad_norm": 0.5125341415405273, + "learning_rate": 3.2428810720268007e-07, + "loss": 0.1818573760986328, + "step": 296700 + }, + { + "epoch": 99.43052181924784, + "grad_norm": 0.5992101430892944, + "learning_rate": 3.0753768844221106e-07, + "loss": 0.1827593421936035, + "step": 296800 + }, + { + "epoch": 99.46402546276907, + "grad_norm": 0.551201343536377, + "learning_rate": 2.9078726968174206e-07, + "loss": 0.18226703643798828, + "step": 296900 + }, + { + "epoch": 99.49752910629032, + "grad_norm": 0.4715881645679474, + "learning_rate": 2.7403685092127305e-07, + "loss": 0.18271636962890625, + "step": 297000 + }, + { + "epoch": 99.53103274981154, + "grad_norm": 0.48507949709892273, + "learning_rate": 2.5728643216080404e-07, + "loss": 0.18286649703979493, + "step": 297100 + }, + { + "epoch": 99.56453639333277, + "grad_norm": 0.5795986652374268, + "learning_rate": 2.4070351758793973e-07, + "loss": 0.18219593048095703, + "step": 297200 + }, + { + "epoch": 99.598040036854, + "grad_norm": 0.4794217646121979, + "learning_rate": 2.239530988274707e-07, + "loss": 0.18355159759521483, + "step": 297300 + }, + { + "epoch": 99.63154368037524, + "grad_norm": 0.5386576056480408, + "learning_rate": 2.0720268006700167e-07, + "loss": 0.1827494430541992, + "step": 297400 + }, + { + "epoch": 99.66504732389647, + "grad_norm": 0.5734672546386719, + "learning_rate": 1.9045226130653268e-07, + "loss": 0.18233570098876953, + "step": 297500 + }, + { + "epoch": 99.6985509674177, + "grad_norm": 0.49709200859069824, + "learning_rate": 1.7370184254606365e-07, + "loss": 0.18292242050170898, + "step": 297600 + }, + { + "epoch": 99.73205461093895, + "grad_norm": 0.46515047550201416, + "learning_rate": 1.5695142378559464e-07, + "loss": 0.18247623443603517, + "step": 297700 + }, + { + "epoch": 99.76555825446017, + "grad_norm": 0.5647607445716858, + "learning_rate": 1.4020100502512564e-07, + "loss": 0.18333343505859376, + "step": 297800 + }, + { + "epoch": 99.7990618979814, + "grad_norm": 0.5439239144325256, + "learning_rate": 1.2345058626465663e-07, + "loss": 0.1823881721496582, + "step": 297900 + }, + { + "epoch": 99.83256554150263, + "grad_norm": 0.5171498656272888, + "learning_rate": 1.067001675041876e-07, + "loss": 0.18236944198608399, + "step": 298000 + }, + { + "epoch": 99.86606918502387, + "grad_norm": 0.5662410259246826, + "learning_rate": 8.99497487437186e-08, + "loss": 0.18176408767700195, + "step": 298100 + } + ], + "logging_steps": 100, + "max_steps": 298500, + "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.5090430762273997e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/training_args.bin b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..4243bd5e526d7e7d0d142ff9063a8e0096d948ea --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.0.0", + "use_cache": false, + "vocab_size": 1534 +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/generation_config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/model.safetensors b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d97b55dbc7abb3be4ec27695ee0bdf36cbc05102 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dac94b0dab5da54ff053bdd9ac64044e789aa21c4a1610bcbf7cc80a07f74b9 +size 177980872 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/optimizer.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..1cbb92b33247cdb46217cf1c5c77b81487743508 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f454591e3c6d4b9ca971a2e6f759806d047b1a21340b63b35432f522bb443dec +size 356010827 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/rng_state.pth b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c733b300d022d7161fbf88bf7d0a19bd996dd2d1 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3862d6f1e0442e6027119a90bab3385b56b680eac4fcac48eedac9562cbf478 +size 14645 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/scaler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..354077234a8a4a6c82d48a2fecc784a7de7e2dde --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cfff0760218b746d8201685f0af98100174916c3e533c66d69b3d17d8ab38c +size 1383 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/scheduler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..eebd9ca4bfb07b9d2793cdafe089cdd552962699 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53cec1b2217b46295303ad5001a736e6dba13b737cc01c1d6333abe7f298f5d +size 1465 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/trainer_state.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b8e308aa4875ad26e10da9569725dc30422972c9 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/trainer_state.json @@ -0,0 +1,20908 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.8995728285451, + "eval_steps": 100, + "global_step": 298200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.03350364352123293, + "grad_norm": 0.8461591005325317, + "learning_rate": 4.9983417085427135e-05, + "loss": 1.800863037109375, + "step": 100 + }, + { + "epoch": 0.06700728704246586, + "grad_norm": 0.7391623258590698, + "learning_rate": 4.996666666666667e-05, + "loss": 0.8150953674316406, + "step": 200 + }, + { + "epoch": 0.10051093056369881, + "grad_norm": 0.6344850659370422, + "learning_rate": 4.99499162479062e-05, + "loss": 0.7532137298583984, + "step": 300 + }, + { + "epoch": 0.13401457408493173, + "grad_norm": 0.6711709499359131, + "learning_rate": 4.993316582914573e-05, + "loss": 0.7202082061767578, + "step": 400 + }, + { + "epoch": 0.16751821760616467, + "grad_norm": 0.6779165267944336, + "learning_rate": 4.9916415410385264e-05, + "loss": 0.7091973114013672, + "step": 500 + }, + { + "epoch": 0.20102186112739762, + "grad_norm": 0.6654858589172363, + "learning_rate": 4.989966499162479e-05, + "loss": 0.685182876586914, + "step": 600 + }, + { + "epoch": 0.23452550464863053, + "grad_norm": 0.6182253956794739, + "learning_rate": 4.988291457286433e-05, + "loss": 0.6745145416259766, + "step": 700 + }, + { + "epoch": 0.26802914816986345, + "grad_norm": 0.6512383818626404, + "learning_rate": 4.986616415410386e-05, + "loss": 0.6662254333496094, + "step": 800 + }, + { + "epoch": 0.3015327916910964, + "grad_norm": 0.6715951561927795, + "learning_rate": 4.9849413735343386e-05, + "loss": 0.6557020568847656, + "step": 900 + }, + { + "epoch": 0.33503643521232934, + "grad_norm": 0.5785344839096069, + "learning_rate": 4.9832663316582915e-05, + "loss": 0.6456297302246093, + "step": 1000 + }, + { + "epoch": 0.36854007873356226, + "grad_norm": 0.6495988368988037, + "learning_rate": 4.981591289782245e-05, + "loss": 0.6365409851074219, + "step": 1100 + }, + { + "epoch": 0.40204372225479523, + "grad_norm": 0.634831428527832, + "learning_rate": 4.979916247906198e-05, + "loss": 0.6296848678588867, + "step": 1200 + }, + { + "epoch": 0.43554736577602815, + "grad_norm": 0.5968198180198669, + "learning_rate": 4.978241206030151e-05, + "loss": 0.6211205673217773, + "step": 1300 + }, + { + "epoch": 0.46905100929726107, + "grad_norm": 0.634230375289917, + "learning_rate": 4.976566164154104e-05, + "loss": 0.6164393997192383, + "step": 1400 + }, + { + "epoch": 0.502554652818494, + "grad_norm": 0.5891489386558533, + "learning_rate": 4.974891122278057e-05, + "loss": 0.6082125854492187, + "step": 1500 + }, + { + "epoch": 0.5360582963397269, + "grad_norm": 0.6446542739868164, + "learning_rate": 4.97321608040201e-05, + "loss": 0.611778564453125, + "step": 1600 + }, + { + "epoch": 0.5695619398609599, + "grad_norm": 0.6366457343101501, + "learning_rate": 4.971541038525964e-05, + "loss": 0.6013064193725586, + "step": 1700 + }, + { + "epoch": 0.6030655833821928, + "grad_norm": 0.6310938596725464, + "learning_rate": 4.9698659966499166e-05, + "loss": 0.5960189819335937, + "step": 1800 + }, + { + "epoch": 0.6365692269034258, + "grad_norm": 0.6312111616134644, + "learning_rate": 4.9681909547738694e-05, + "loss": 0.5902027511596679, + "step": 1900 + }, + { + "epoch": 0.6700728704246587, + "grad_norm": 0.6359553337097168, + "learning_rate": 4.966515912897823e-05, + "loss": 0.5884978485107422, + "step": 2000 + }, + { + "epoch": 0.7035765139458916, + "grad_norm": 0.6602451205253601, + "learning_rate": 4.964840871021776e-05, + "loss": 0.58427734375, + "step": 2100 + }, + { + "epoch": 0.7370801574671245, + "grad_norm": 0.6105899810791016, + "learning_rate": 4.963165829145729e-05, + "loss": 0.5838186645507812, + "step": 2200 + }, + { + "epoch": 0.7705838009883574, + "grad_norm": 0.5694506764411926, + "learning_rate": 4.9614907872696816e-05, + "loss": 0.5781952667236329, + "step": 2300 + }, + { + "epoch": 0.8040874445095905, + "grad_norm": 0.6220190525054932, + "learning_rate": 4.959815745393635e-05, + "loss": 0.5734509658813477, + "step": 2400 + }, + { + "epoch": 0.8375910880308234, + "grad_norm": 0.5669824481010437, + "learning_rate": 4.958140703517588e-05, + "loss": 0.573906478881836, + "step": 2500 + }, + { + "epoch": 0.8710947315520563, + "grad_norm": 0.6178188920021057, + "learning_rate": 4.956465661641541e-05, + "loss": 0.5677206802368164, + "step": 2600 + }, + { + "epoch": 0.9045983750732892, + "grad_norm": 0.5571620464324951, + "learning_rate": 4.9547906197654945e-05, + "loss": 0.5622820663452148, + "step": 2700 + }, + { + "epoch": 0.9381020185945221, + "grad_norm": 0.5818703770637512, + "learning_rate": 4.9531155778894474e-05, + "loss": 0.5609216690063477, + "step": 2800 + }, + { + "epoch": 0.971605662115755, + "grad_norm": 0.5967586040496826, + "learning_rate": 4.9514405360134e-05, + "loss": 0.5596435165405274, + "step": 2900 + }, + { + "epoch": 1.005025546528185, + "grad_norm": 0.6468071937561035, + "learning_rate": 4.949765494137354e-05, + "loss": 0.5584405899047852, + "step": 3000 + }, + { + "epoch": 1.0385291900494178, + "grad_norm": 0.6350861191749573, + "learning_rate": 4.948090452261307e-05, + "loss": 0.5500188446044922, + "step": 3100 + }, + { + "epoch": 1.0720328335706508, + "grad_norm": 0.6933004260063171, + "learning_rate": 4.94641541038526e-05, + "loss": 0.546169662475586, + "step": 3200 + }, + { + "epoch": 1.1055364770918836, + "grad_norm": 0.6557233333587646, + "learning_rate": 4.944740368509213e-05, + "loss": 0.5476358795166015, + "step": 3300 + }, + { + "epoch": 1.1390401206131167, + "grad_norm": 0.6253458857536316, + "learning_rate": 4.943065326633166e-05, + "loss": 0.544293212890625, + "step": 3400 + }, + { + "epoch": 1.1725437641343497, + "grad_norm": 0.6146714091300964, + "learning_rate": 4.941390284757119e-05, + "loss": 0.5420544052124023, + "step": 3500 + }, + { + "epoch": 1.2060474076555825, + "grad_norm": 0.6168274879455566, + "learning_rate": 4.9397152428810725e-05, + "loss": 0.5440950775146485, + "step": 3600 + }, + { + "epoch": 1.2395510511768155, + "grad_norm": 0.6314318180084229, + "learning_rate": 4.9380402010050254e-05, + "loss": 0.5422676086425782, + "step": 3700 + }, + { + "epoch": 1.2730546946980486, + "grad_norm": 0.6257957816123962, + "learning_rate": 4.936365159128978e-05, + "loss": 0.5370346069335937, + "step": 3800 + }, + { + "epoch": 1.3065583382192814, + "grad_norm": 0.6324900984764099, + "learning_rate": 4.934690117252931e-05, + "loss": 0.5346813583374024, + "step": 3900 + }, + { + "epoch": 1.3400619817405142, + "grad_norm": 0.6128197312355042, + "learning_rate": 4.933015075376885e-05, + "loss": 0.5321989822387695, + "step": 4000 + }, + { + "epoch": 1.3735656252617472, + "grad_norm": 0.5664730072021484, + "learning_rate": 4.9313400335008376e-05, + "loss": 0.5304061126708984, + "step": 4100 + }, + { + "epoch": 1.4070692687829802, + "grad_norm": 0.5894239544868469, + "learning_rate": 4.929664991624791e-05, + "loss": 0.5285339736938477, + "step": 4200 + }, + { + "epoch": 1.440572912304213, + "grad_norm": 0.6181634068489075, + "learning_rate": 4.927989949748744e-05, + "loss": 0.5315813446044921, + "step": 4300 + }, + { + "epoch": 1.474076555825446, + "grad_norm": 0.6103029251098633, + "learning_rate": 4.926314907872697e-05, + "loss": 0.5283493423461914, + "step": 4400 + }, + { + "epoch": 1.507580199346679, + "grad_norm": 0.5960842967033386, + "learning_rate": 4.9246398659966505e-05, + "loss": 0.5253337097167968, + "step": 4500 + }, + { + "epoch": 1.541083842867912, + "grad_norm": 0.6720269918441772, + "learning_rate": 4.9229648241206034e-05, + "loss": 0.5257507705688477, + "step": 4600 + }, + { + "epoch": 1.5745874863891447, + "grad_norm": 0.6651366949081421, + "learning_rate": 4.921289782244556e-05, + "loss": 0.5222479248046875, + "step": 4700 + }, + { + "epoch": 1.6080911299103777, + "grad_norm": 0.6316231489181519, + "learning_rate": 4.919614740368509e-05, + "loss": 0.5179043197631836, + "step": 4800 + }, + { + "epoch": 1.6415947734316108, + "grad_norm": 0.5880525708198547, + "learning_rate": 4.917939698492463e-05, + "loss": 0.5151556777954102, + "step": 4900 + }, + { + "epoch": 1.6750984169528436, + "grad_norm": 0.6046984195709229, + "learning_rate": 4.9162646566164156e-05, + "loss": 0.5172126007080078, + "step": 5000 + }, + { + "epoch": 1.7086020604740766, + "grad_norm": 0.6584818959236145, + "learning_rate": 4.9145896147403684e-05, + "loss": 0.5168862533569336, + "step": 5100 + }, + { + "epoch": 1.7421057039953096, + "grad_norm": 0.644334077835083, + "learning_rate": 4.912914572864321e-05, + "loss": 0.516330337524414, + "step": 5200 + }, + { + "epoch": 1.7756093475165424, + "grad_norm": 0.6277704834938049, + "learning_rate": 4.911239530988275e-05, + "loss": 0.5101805114746094, + "step": 5300 + }, + { + "epoch": 1.8091129910377752, + "grad_norm": 0.6398980617523193, + "learning_rate": 4.909564489112228e-05, + "loss": 0.5114438247680664, + "step": 5400 + }, + { + "epoch": 1.8426166345590083, + "grad_norm": 0.6116181015968323, + "learning_rate": 4.907889447236181e-05, + "loss": 0.5063412094116211, + "step": 5500 + }, + { + "epoch": 1.8761202780802413, + "grad_norm": 0.6046104431152344, + "learning_rate": 4.906214405360134e-05, + "loss": 0.5081657409667969, + "step": 5600 + }, + { + "epoch": 1.909623921601474, + "grad_norm": 0.5920073390007019, + "learning_rate": 4.904539363484088e-05, + "loss": 0.5051012802124023, + "step": 5700 + }, + { + "epoch": 1.9431275651227071, + "grad_norm": 0.6170016527175903, + "learning_rate": 4.9028643216080407e-05, + "loss": 0.5026112747192383, + "step": 5800 + }, + { + "epoch": 1.9766312086439402, + "grad_norm": 0.6302964091300964, + "learning_rate": 4.9011892797319935e-05, + "loss": 0.501869125366211, + "step": 5900 + }, + { + "epoch": 2.01005109305637, + "grad_norm": 0.6208528280258179, + "learning_rate": 4.8995142378559464e-05, + "loss": 0.49743770599365233, + "step": 6000 + }, + { + "epoch": 2.043554736577603, + "grad_norm": 0.6439351439476013, + "learning_rate": 4.8978391959799e-05, + "loss": 0.49052135467529295, + "step": 6100 + }, + { + "epoch": 2.0770583800988356, + "grad_norm": 0.6153578162193298, + "learning_rate": 4.896164154103853e-05, + "loss": 0.4963309860229492, + "step": 6200 + }, + { + "epoch": 2.110562023620069, + "grad_norm": 0.5905429720878601, + "learning_rate": 4.894489112227806e-05, + "loss": 0.4935873413085938, + "step": 6300 + }, + { + "epoch": 2.1440656671413016, + "grad_norm": 0.5844092965126038, + "learning_rate": 4.8928140703517586e-05, + "loss": 0.49054019927978515, + "step": 6400 + }, + { + "epoch": 2.1775693106625345, + "grad_norm": 0.6116010546684265, + "learning_rate": 4.891139028475712e-05, + "loss": 0.4881373596191406, + "step": 6500 + }, + { + "epoch": 2.2110729541837673, + "grad_norm": 0.5920172333717346, + "learning_rate": 4.889463986599665e-05, + "loss": 0.48111820220947266, + "step": 6600 + }, + { + "epoch": 2.2445765977050005, + "grad_norm": 0.6223201155662537, + "learning_rate": 4.8877889447236186e-05, + "loss": 0.4858921813964844, + "step": 6700 + }, + { + "epoch": 2.2780802412262333, + "grad_norm": 0.679458737373352, + "learning_rate": 4.8861139028475715e-05, + "loss": 0.4880897903442383, + "step": 6800 + }, + { + "epoch": 2.311583884747466, + "grad_norm": 0.6320315003395081, + "learning_rate": 4.8844388609715244e-05, + "loss": 0.4870236587524414, + "step": 6900 + }, + { + "epoch": 2.3450875282686994, + "grad_norm": 0.6325832009315491, + "learning_rate": 4.882763819095478e-05, + "loss": 0.4866282272338867, + "step": 7000 + }, + { + "epoch": 2.378591171789932, + "grad_norm": 0.6240285634994507, + "learning_rate": 4.881088777219431e-05, + "loss": 0.48300540924072266, + "step": 7100 + }, + { + "epoch": 2.412094815311165, + "grad_norm": 0.6501027941703796, + "learning_rate": 4.879413735343384e-05, + "loss": 0.48553779602050784, + "step": 7200 + }, + { + "epoch": 2.4455984588323982, + "grad_norm": 0.6311469078063965, + "learning_rate": 4.8777386934673366e-05, + "loss": 0.4865619659423828, + "step": 7300 + }, + { + "epoch": 2.479102102353631, + "grad_norm": 0.6794814467430115, + "learning_rate": 4.87606365159129e-05, + "loss": 0.4808743286132813, + "step": 7400 + }, + { + "epoch": 2.512605745874864, + "grad_norm": 0.5595630407333374, + "learning_rate": 4.874388609715243e-05, + "loss": 0.48029510498046873, + "step": 7500 + }, + { + "epoch": 2.546109389396097, + "grad_norm": 0.6712229251861572, + "learning_rate": 4.872713567839196e-05, + "loss": 0.476650276184082, + "step": 7600 + }, + { + "epoch": 2.57961303291733, + "grad_norm": 0.6312442421913147, + "learning_rate": 4.871038525963149e-05, + "loss": 0.4794431686401367, + "step": 7700 + }, + { + "epoch": 2.6131166764385627, + "grad_norm": 0.6586233377456665, + "learning_rate": 4.8693634840871024e-05, + "loss": 0.4789765930175781, + "step": 7800 + }, + { + "epoch": 2.6466203199597955, + "grad_norm": 0.6464796662330627, + "learning_rate": 4.867688442211055e-05, + "loss": 0.4760271072387695, + "step": 7900 + }, + { + "epoch": 2.6801239634810283, + "grad_norm": 0.6250919103622437, + "learning_rate": 4.866013400335009e-05, + "loss": 0.47466728210449216, + "step": 8000 + }, + { + "epoch": 2.7136276070022616, + "grad_norm": 0.6650984287261963, + "learning_rate": 4.864338358458962e-05, + "loss": 0.4735995864868164, + "step": 8100 + }, + { + "epoch": 2.7471312505234944, + "grad_norm": 0.6536551713943481, + "learning_rate": 4.862663316582915e-05, + "loss": 0.47292491912841794, + "step": 8200 + }, + { + "epoch": 2.780634894044727, + "grad_norm": 0.6191151142120361, + "learning_rate": 4.860988274706868e-05, + "loss": 0.4695613479614258, + "step": 8300 + }, + { + "epoch": 2.8141385375659604, + "grad_norm": 0.6110975742340088, + "learning_rate": 4.859313232830821e-05, + "loss": 0.47242835998535154, + "step": 8400 + }, + { + "epoch": 2.8476421810871932, + "grad_norm": 0.6511522531509399, + "learning_rate": 4.857638190954774e-05, + "loss": 0.46818080902099607, + "step": 8500 + }, + { + "epoch": 2.881145824608426, + "grad_norm": 0.640023410320282, + "learning_rate": 4.8559631490787275e-05, + "loss": 0.4684713745117188, + "step": 8600 + }, + { + "epoch": 2.9146494681296593, + "grad_norm": 0.6558462381362915, + "learning_rate": 4.85428810720268e-05, + "loss": 0.47039485931396485, + "step": 8700 + }, + { + "epoch": 2.948153111650892, + "grad_norm": 0.64987713098526, + "learning_rate": 4.852613065326633e-05, + "loss": 0.46639087677001956, + "step": 8800 + }, + { + "epoch": 2.981656755172125, + "grad_norm": 0.6003667712211609, + "learning_rate": 4.850938023450586e-05, + "loss": 0.4636190795898438, + "step": 8900 + }, + { + "epoch": 3.0150766395845547, + "grad_norm": 0.6194270253181458, + "learning_rate": 4.8492629815745397e-05, + "loss": 0.4602717590332031, + "step": 9000 + }, + { + "epoch": 3.0485802831057875, + "grad_norm": 0.6473113894462585, + "learning_rate": 4.8475879396984925e-05, + "loss": 0.4513474655151367, + "step": 9100 + }, + { + "epoch": 3.082083926627021, + "grad_norm": 0.581709086894989, + "learning_rate": 4.845912897822446e-05, + "loss": 0.45967998504638674, + "step": 9200 + }, + { + "epoch": 3.1155875701482536, + "grad_norm": 0.6870703101158142, + "learning_rate": 4.844237855946399e-05, + "loss": 0.4573031997680664, + "step": 9300 + }, + { + "epoch": 3.1490912136694864, + "grad_norm": 0.6703235507011414, + "learning_rate": 4.842562814070352e-05, + "loss": 0.45413665771484374, + "step": 9400 + }, + { + "epoch": 3.1825948571907197, + "grad_norm": 0.6165799498558044, + "learning_rate": 4.8408877721943054e-05, + "loss": 0.4570289993286133, + "step": 9500 + }, + { + "epoch": 3.2160985007119525, + "grad_norm": 0.6460033059120178, + "learning_rate": 4.839212730318258e-05, + "loss": 0.4591374969482422, + "step": 9600 + }, + { + "epoch": 3.2496021442331853, + "grad_norm": 0.6148829460144043, + "learning_rate": 4.837537688442211e-05, + "loss": 0.4580984115600586, + "step": 9700 + }, + { + "epoch": 3.283105787754418, + "grad_norm": 0.6245681047439575, + "learning_rate": 4.835862646566164e-05, + "loss": 0.4545408248901367, + "step": 9800 + }, + { + "epoch": 3.3166094312756513, + "grad_norm": 0.6586223840713501, + "learning_rate": 4.8341876046901176e-05, + "loss": 0.4529739761352539, + "step": 9900 + }, + { + "epoch": 3.350113074796884, + "grad_norm": 0.6357883810997009, + "learning_rate": 4.8325125628140705e-05, + "loss": 0.4568283843994141, + "step": 10000 + }, + { + "epoch": 3.383616718318117, + "grad_norm": 0.6078239679336548, + "learning_rate": 4.8308375209380234e-05, + "loss": 0.45651729583740236, + "step": 10100 + }, + { + "epoch": 3.41712036183935, + "grad_norm": 0.6468596458435059, + "learning_rate": 4.829162479061976e-05, + "loss": 0.45133846282958984, + "step": 10200 + }, + { + "epoch": 3.450624005360583, + "grad_norm": 0.6487044095993042, + "learning_rate": 4.82748743718593e-05, + "loss": 0.4508181381225586, + "step": 10300 + }, + { + "epoch": 3.484127648881816, + "grad_norm": 0.642910897731781, + "learning_rate": 4.825812395309883e-05, + "loss": 0.45145717620849607, + "step": 10400 + }, + { + "epoch": 3.517631292403049, + "grad_norm": 0.6625356674194336, + "learning_rate": 4.824137353433836e-05, + "loss": 0.45529659271240236, + "step": 10500 + }, + { + "epoch": 3.551134935924282, + "grad_norm": 0.6431829929351807, + "learning_rate": 4.822462311557789e-05, + "loss": 0.4476095962524414, + "step": 10600 + }, + { + "epoch": 3.5846385794455147, + "grad_norm": 0.6072223782539368, + "learning_rate": 4.820787269681743e-05, + "loss": 0.4495735168457031, + "step": 10700 + }, + { + "epoch": 3.6181422229667475, + "grad_norm": 0.586395800113678, + "learning_rate": 4.8191122278056956e-05, + "loss": 0.44253528594970704, + "step": 10800 + }, + { + "epoch": 3.6516458664879807, + "grad_norm": 0.5829164981842041, + "learning_rate": 4.8174371859296485e-05, + "loss": 0.44407268524169924, + "step": 10900 + }, + { + "epoch": 3.6851495100092135, + "grad_norm": 0.612237274646759, + "learning_rate": 4.8157621440536014e-05, + "loss": 0.44537506103515623, + "step": 11000 + }, + { + "epoch": 3.7186531535304463, + "grad_norm": 0.5877944827079773, + "learning_rate": 4.814087102177555e-05, + "loss": 0.44692161560058596, + "step": 11100 + }, + { + "epoch": 3.752156797051679, + "grad_norm": 0.6447933316230774, + "learning_rate": 4.812412060301508e-05, + "loss": 0.44803882598876954, + "step": 11200 + }, + { + "epoch": 3.7856604405729124, + "grad_norm": 0.6374318599700928, + "learning_rate": 4.810737018425461e-05, + "loss": 0.4482523345947266, + "step": 11300 + }, + { + "epoch": 3.819164084094145, + "grad_norm": 0.7126030921936035, + "learning_rate": 4.8090619765494136e-05, + "loss": 0.44646026611328127, + "step": 11400 + }, + { + "epoch": 3.852667727615378, + "grad_norm": 0.6466185450553894, + "learning_rate": 4.807386934673367e-05, + "loss": 0.44249160766601564, + "step": 11500 + }, + { + "epoch": 3.8861713711366113, + "grad_norm": 0.6428183913230896, + "learning_rate": 4.80571189279732e-05, + "loss": 0.44268692016601563, + "step": 11600 + }, + { + "epoch": 3.919675014657844, + "grad_norm": 0.5706833600997925, + "learning_rate": 4.8040368509212736e-05, + "loss": 0.4477870559692383, + "step": 11700 + }, + { + "epoch": 3.953178658179077, + "grad_norm": 0.6583021879196167, + "learning_rate": 4.8023618090452265e-05, + "loss": 0.44658790588378905, + "step": 11800 + }, + { + "epoch": 3.98668230170031, + "grad_norm": 0.6143375039100647, + "learning_rate": 4.800686767169179e-05, + "loss": 0.4439199447631836, + "step": 11900 + }, + { + "epoch": 4.02010218611274, + "grad_norm": 0.5873826146125793, + "learning_rate": 4.799011725293133e-05, + "loss": 0.43299171447753904, + "step": 12000 + }, + { + "epoch": 4.053605829633972, + "grad_norm": 0.652965247631073, + "learning_rate": 4.797336683417086e-05, + "loss": 0.43379459381103513, + "step": 12100 + }, + { + "epoch": 4.087109473155206, + "grad_norm": 0.6809676885604858, + "learning_rate": 4.795661641541039e-05, + "loss": 0.434725341796875, + "step": 12200 + }, + { + "epoch": 4.120613116676439, + "grad_norm": 0.7001864314079285, + "learning_rate": 4.7939865996649915e-05, + "loss": 0.4402421188354492, + "step": 12300 + }, + { + "epoch": 4.154116760197671, + "grad_norm": 0.5879281759262085, + "learning_rate": 4.792311557788945e-05, + "loss": 0.436952018737793, + "step": 12400 + }, + { + "epoch": 4.187620403718904, + "grad_norm": 0.6814981698989868, + "learning_rate": 4.790636515912898e-05, + "loss": 0.43582103729248045, + "step": 12500 + }, + { + "epoch": 4.221124047240138, + "grad_norm": 0.6850152611732483, + "learning_rate": 4.788961474036851e-05, + "loss": 0.4337678527832031, + "step": 12600 + }, + { + "epoch": 4.25462769076137, + "grad_norm": 0.6886492967605591, + "learning_rate": 4.787286432160804e-05, + "loss": 0.4366899108886719, + "step": 12700 + }, + { + "epoch": 4.288131334282603, + "grad_norm": 0.6915615797042847, + "learning_rate": 4.785611390284757e-05, + "loss": 0.4344156265258789, + "step": 12800 + }, + { + "epoch": 4.3216349778038365, + "grad_norm": 0.6565848588943481, + "learning_rate": 4.78393634840871e-05, + "loss": 0.43212577819824216, + "step": 12900 + }, + { + "epoch": 4.355138621325069, + "grad_norm": 0.6957235336303711, + "learning_rate": 4.782261306532664e-05, + "loss": 0.4340908432006836, + "step": 13000 + }, + { + "epoch": 4.388642264846302, + "grad_norm": 0.6763550043106079, + "learning_rate": 4.7805862646566166e-05, + "loss": 0.43744525909423826, + "step": 13100 + }, + { + "epoch": 4.4221459083675345, + "grad_norm": 0.6657949090003967, + "learning_rate": 4.77891122278057e-05, + "loss": 0.4336092758178711, + "step": 13200 + }, + { + "epoch": 4.455649551888768, + "grad_norm": 0.6623894572257996, + "learning_rate": 4.777236180904523e-05, + "loss": 0.43067619323730466, + "step": 13300 + }, + { + "epoch": 4.489153195410001, + "grad_norm": 0.7518236041069031, + "learning_rate": 4.775561139028476e-05, + "loss": 0.4269240951538086, + "step": 13400 + }, + { + "epoch": 4.522656838931233, + "grad_norm": 0.6672277450561523, + "learning_rate": 4.773886097152429e-05, + "loss": 0.42989879608154297, + "step": 13500 + }, + { + "epoch": 4.556160482452467, + "grad_norm": 0.6400379538536072, + "learning_rate": 4.7722110552763824e-05, + "loss": 0.4264271926879883, + "step": 13600 + }, + { + "epoch": 4.5896641259737, + "grad_norm": 0.5992236733436584, + "learning_rate": 4.770536013400335e-05, + "loss": 0.4286244964599609, + "step": 13700 + }, + { + "epoch": 4.623167769494932, + "grad_norm": 0.674788773059845, + "learning_rate": 4.768860971524288e-05, + "loss": 0.42616188049316406, + "step": 13800 + }, + { + "epoch": 4.6566714130161655, + "grad_norm": 0.6788604259490967, + "learning_rate": 4.767185929648241e-05, + "loss": 0.4273800277709961, + "step": 13900 + }, + { + "epoch": 4.690175056537399, + "grad_norm": 0.6140567064285278, + "learning_rate": 4.7655108877721946e-05, + "loss": 0.43147178649902346, + "step": 14000 + }, + { + "epoch": 4.723678700058631, + "grad_norm": 0.6155766248703003, + "learning_rate": 4.7638525963149085e-05, + "loss": 0.4265935134887695, + "step": 14100 + }, + { + "epoch": 4.757182343579864, + "grad_norm": 0.6408616304397583, + "learning_rate": 4.7621775544388614e-05, + "loss": 0.4271296691894531, + "step": 14200 + }, + { + "epoch": 4.790685987101098, + "grad_norm": 0.6060003638267517, + "learning_rate": 4.760502512562814e-05, + "loss": 0.42877567291259766, + "step": 14300 + }, + { + "epoch": 4.82418963062233, + "grad_norm": 0.594854474067688, + "learning_rate": 4.758827470686767e-05, + "loss": 0.42625518798828127, + "step": 14400 + }, + { + "epoch": 4.857693274143563, + "grad_norm": 0.7048496007919312, + "learning_rate": 4.757152428810721e-05, + "loss": 0.4247948455810547, + "step": 14500 + }, + { + "epoch": 4.8911969176647965, + "grad_norm": 0.6743406057357788, + "learning_rate": 4.7554773869346736e-05, + "loss": 0.42869789123535157, + "step": 14600 + }, + { + "epoch": 4.924700561186029, + "grad_norm": 0.6159805059432983, + "learning_rate": 4.7538023450586265e-05, + "loss": 0.42471588134765625, + "step": 14700 + }, + { + "epoch": 4.958204204707262, + "grad_norm": 0.6490402817726135, + "learning_rate": 4.7521273031825794e-05, + "loss": 0.42407047271728515, + "step": 14800 + }, + { + "epoch": 4.991707848228495, + "grad_norm": 0.6755446791648865, + "learning_rate": 4.750452261306533e-05, + "loss": 0.42307563781738283, + "step": 14900 + }, + { + "epoch": 5.025127732640924, + "grad_norm": 0.6245474219322205, + "learning_rate": 4.748777219430486e-05, + "loss": 0.4140509796142578, + "step": 15000 + }, + { + "epoch": 5.0586313761621575, + "grad_norm": 0.6199154257774353, + "learning_rate": 4.747102177554439e-05, + "loss": 0.4141695785522461, + "step": 15100 + }, + { + "epoch": 5.092135019683391, + "grad_norm": 0.6318620443344116, + "learning_rate": 4.7454271356783916e-05, + "loss": 0.4133845520019531, + "step": 15200 + }, + { + "epoch": 5.125638663204623, + "grad_norm": 0.6261297464370728, + "learning_rate": 4.743752093802346e-05, + "loss": 0.41985397338867186, + "step": 15300 + }, + { + "epoch": 5.159142306725856, + "grad_norm": 0.6642125248908997, + "learning_rate": 4.742077051926299e-05, + "loss": 0.41414112091064453, + "step": 15400 + }, + { + "epoch": 5.19264595024709, + "grad_norm": 0.7118062973022461, + "learning_rate": 4.7404020100502516e-05, + "loss": 0.4157746505737305, + "step": 15500 + }, + { + "epoch": 5.226149593768322, + "grad_norm": 0.6888347268104553, + "learning_rate": 4.7387269681742045e-05, + "loss": 0.41798015594482424, + "step": 15600 + }, + { + "epoch": 5.259653237289555, + "grad_norm": 0.6572776436805725, + "learning_rate": 4.737051926298158e-05, + "loss": 0.4158905029296875, + "step": 15700 + }, + { + "epoch": 5.2931568808107885, + "grad_norm": 0.6731371283531189, + "learning_rate": 4.735376884422111e-05, + "loss": 0.4200982666015625, + "step": 15800 + }, + { + "epoch": 5.326660524332021, + "grad_norm": 0.6026290655136108, + "learning_rate": 4.733701842546064e-05, + "loss": 0.4160591125488281, + "step": 15900 + }, + { + "epoch": 5.360164167853254, + "grad_norm": 0.6480405926704407, + "learning_rate": 4.732026800670017e-05, + "loss": 0.4141067123413086, + "step": 16000 + }, + { + "epoch": 5.393667811374487, + "grad_norm": 0.7435486912727356, + "learning_rate": 4.7303685092127306e-05, + "loss": 0.4195803451538086, + "step": 16100 + }, + { + "epoch": 5.42717145489572, + "grad_norm": 0.6561776995658875, + "learning_rate": 4.7286934673366835e-05, + "loss": 0.41183818817138673, + "step": 16200 + }, + { + "epoch": 5.460675098416953, + "grad_norm": 0.637554407119751, + "learning_rate": 4.727018425460637e-05, + "loss": 0.41124614715576174, + "step": 16300 + }, + { + "epoch": 5.494178741938185, + "grad_norm": 0.6575638055801392, + "learning_rate": 4.72534338358459e-05, + "loss": 0.41794925689697265, + "step": 16400 + }, + { + "epoch": 5.527682385459419, + "grad_norm": 0.678394079208374, + "learning_rate": 4.723668341708543e-05, + "loss": 0.4172962188720703, + "step": 16500 + }, + { + "epoch": 5.561186028980652, + "grad_norm": 0.6401932835578918, + "learning_rate": 4.7219932998324964e-05, + "loss": 0.4176398468017578, + "step": 16600 + }, + { + "epoch": 5.594689672501884, + "grad_norm": 0.7197437286376953, + "learning_rate": 4.720318257956449e-05, + "loss": 0.4155929183959961, + "step": 16700 + }, + { + "epoch": 5.6281933160231175, + "grad_norm": 0.6697796583175659, + "learning_rate": 4.718643216080402e-05, + "loss": 0.41755367279052735, + "step": 16800 + }, + { + "epoch": 5.661696959544351, + "grad_norm": 0.6090868711471558, + "learning_rate": 4.716968174204355e-05, + "loss": 0.4136951446533203, + "step": 16900 + }, + { + "epoch": 5.695200603065583, + "grad_norm": 0.6004068851470947, + "learning_rate": 4.7152931323283086e-05, + "loss": 0.4162490463256836, + "step": 17000 + }, + { + "epoch": 5.728704246586816, + "grad_norm": 0.6552139520645142, + "learning_rate": 4.7136180904522615e-05, + "loss": 0.4109830856323242, + "step": 17100 + }, + { + "epoch": 5.76220789010805, + "grad_norm": 0.7132771015167236, + "learning_rate": 4.7119430485762144e-05, + "loss": 0.4129109573364258, + "step": 17200 + }, + { + "epoch": 5.795711533629282, + "grad_norm": 0.6571471095085144, + "learning_rate": 4.710268006700167e-05, + "loss": 0.4140293121337891, + "step": 17300 + }, + { + "epoch": 5.829215177150515, + "grad_norm": 0.6521652936935425, + "learning_rate": 4.708592964824121e-05, + "loss": 0.41335311889648435, + "step": 17400 + }, + { + "epoch": 5.862718820671748, + "grad_norm": 0.6223021149635315, + "learning_rate": 4.706917922948074e-05, + "loss": 0.41415943145751954, + "step": 17500 + }, + { + "epoch": 5.896222464192981, + "grad_norm": 0.6671064496040344, + "learning_rate": 4.705242881072027e-05, + "loss": 0.4121688461303711, + "step": 17600 + }, + { + "epoch": 5.929726107714214, + "grad_norm": 0.6168386340141296, + "learning_rate": 4.70356783919598e-05, + "loss": 0.40964771270751954, + "step": 17700 + }, + { + "epoch": 5.963229751235447, + "grad_norm": 0.6829288601875305, + "learning_rate": 4.701892797319934e-05, + "loss": 0.4161583709716797, + "step": 17800 + }, + { + "epoch": 5.99673339475668, + "grad_norm": 0.6415479183197021, + "learning_rate": 4.7002177554438866e-05, + "loss": 0.4163412857055664, + "step": 17900 + }, + { + "epoch": 6.0301532791691095, + "grad_norm": 0.6762277483940125, + "learning_rate": 4.6985427135678394e-05, + "loss": 0.40404136657714845, + "step": 18000 + }, + { + "epoch": 6.063656922690343, + "grad_norm": 0.7215397357940674, + "learning_rate": 4.696884422110553e-05, + "loss": 0.40555873870849607, + "step": 18100 + }, + { + "epoch": 6.097160566211575, + "grad_norm": 0.6093649864196777, + "learning_rate": 4.695209380234506e-05, + "loss": 0.3959674072265625, + "step": 18200 + }, + { + "epoch": 6.130664209732808, + "grad_norm": 0.6576215624809265, + "learning_rate": 4.693534338358459e-05, + "loss": 0.4000381851196289, + "step": 18300 + }, + { + "epoch": 6.164167853254042, + "grad_norm": 0.6869475841522217, + "learning_rate": 4.691859296482412e-05, + "loss": 0.40716861724853515, + "step": 18400 + }, + { + "epoch": 6.197671496775274, + "grad_norm": 0.6864603161811829, + "learning_rate": 4.690184254606365e-05, + "loss": 0.4014585494995117, + "step": 18500 + }, + { + "epoch": 6.231175140296507, + "grad_norm": 0.68086177110672, + "learning_rate": 4.6885092127303185e-05, + "loss": 0.3985603713989258, + "step": 18600 + }, + { + "epoch": 6.2646787838177405, + "grad_norm": 0.700307309627533, + "learning_rate": 4.686834170854272e-05, + "loss": 0.3990879440307617, + "step": 18700 + }, + { + "epoch": 6.298182427338973, + "grad_norm": 0.7301186919212341, + "learning_rate": 4.685159128978225e-05, + "loss": 0.4010288619995117, + "step": 18800 + }, + { + "epoch": 6.331686070860206, + "grad_norm": 0.6819117069244385, + "learning_rate": 4.683484087102178e-05, + "loss": 0.4012245941162109, + "step": 18900 + }, + { + "epoch": 6.365189714381439, + "grad_norm": 0.6428888440132141, + "learning_rate": 4.681809045226131e-05, + "loss": 0.40439247131347655, + "step": 19000 + }, + { + "epoch": 6.398693357902672, + "grad_norm": 0.6879697442054749, + "learning_rate": 4.680134003350084e-05, + "loss": 0.4002133560180664, + "step": 19100 + }, + { + "epoch": 6.432197001423905, + "grad_norm": 0.7050502300262451, + "learning_rate": 4.678458961474037e-05, + "loss": 0.40451095581054686, + "step": 19200 + }, + { + "epoch": 6.465700644945138, + "grad_norm": 0.6575663685798645, + "learning_rate": 4.67678391959799e-05, + "loss": 0.40367134094238283, + "step": 19300 + }, + { + "epoch": 6.4992042884663705, + "grad_norm": 0.725883424282074, + "learning_rate": 4.675108877721943e-05, + "loss": 0.40375911712646484, + "step": 19400 + }, + { + "epoch": 6.532707931987604, + "grad_norm": 0.6960121989250183, + "learning_rate": 4.6734338358458964e-05, + "loss": 0.39711700439453124, + "step": 19500 + }, + { + "epoch": 6.566211575508836, + "grad_norm": 0.6402387022972107, + "learning_rate": 4.671758793969849e-05, + "loss": 0.40309242248535154, + "step": 19600 + }, + { + "epoch": 6.599715219030069, + "grad_norm": 0.6541135311126709, + "learning_rate": 4.670083752093802e-05, + "loss": 0.3986012268066406, + "step": 19700 + }, + { + "epoch": 6.633218862551303, + "grad_norm": 0.7802708745002747, + "learning_rate": 4.668408710217756e-05, + "loss": 0.4055080795288086, + "step": 19800 + }, + { + "epoch": 6.666722506072535, + "grad_norm": 0.7293182015419006, + "learning_rate": 4.666733668341709e-05, + "loss": 0.39762969970703127, + "step": 19900 + }, + { + "epoch": 6.700226149593768, + "grad_norm": 0.6476279497146606, + "learning_rate": 4.665058626465662e-05, + "loss": 0.39965827941894533, + "step": 20000 + }, + { + "epoch": 6.7337297931150015, + "grad_norm": 0.7234406471252441, + "learning_rate": 4.663383584589615e-05, + "loss": 0.40417919158935545, + "step": 20100 + }, + { + "epoch": 6.767233436636234, + "grad_norm": 0.6661069989204407, + "learning_rate": 4.661725293132328e-05, + "loss": 0.40048927307128906, + "step": 20200 + }, + { + "epoch": 6.800737080157467, + "grad_norm": 0.6745995283126831, + "learning_rate": 4.660050251256282e-05, + "loss": 0.40084247589111327, + "step": 20300 + }, + { + "epoch": 6.8342407236787, + "grad_norm": 0.6546103954315186, + "learning_rate": 4.658375209380235e-05, + "loss": 0.40273414611816405, + "step": 20400 + }, + { + "epoch": 6.867744367199933, + "grad_norm": 0.6249874830245972, + "learning_rate": 4.6567001675041877e-05, + "loss": 0.4047482299804688, + "step": 20500 + }, + { + "epoch": 6.901248010721166, + "grad_norm": 0.621865451335907, + "learning_rate": 4.6550251256281405e-05, + "loss": 0.40309608459472657, + "step": 20600 + }, + { + "epoch": 6.934751654242399, + "grad_norm": 0.664582371711731, + "learning_rate": 4.653350083752094e-05, + "loss": 0.402041015625, + "step": 20700 + }, + { + "epoch": 6.968255297763632, + "grad_norm": 0.6802883148193359, + "learning_rate": 4.651675041876047e-05, + "loss": 0.40645900726318357, + "step": 20800 + }, + { + "epoch": 7.001675182176061, + "grad_norm": 0.6586912870407104, + "learning_rate": 4.6500000000000005e-05, + "loss": 0.3996978759765625, + "step": 20900 + }, + { + "epoch": 7.035178825697295, + "grad_norm": 0.6849681735038757, + "learning_rate": 4.6483249581239534e-05, + "loss": 0.38614749908447266, + "step": 21000 + }, + { + "epoch": 7.068682469218528, + "grad_norm": 0.694872260093689, + "learning_rate": 4.646649916247906e-05, + "loss": 0.38619533538818357, + "step": 21100 + }, + { + "epoch": 7.10218611273976, + "grad_norm": 0.7047699689865112, + "learning_rate": 4.64497487437186e-05, + "loss": 0.38167682647705076, + "step": 21200 + }, + { + "epoch": 7.1356897562609936, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.643299832495813e-05, + "loss": 0.3932147979736328, + "step": 21300 + }, + { + "epoch": 7.169193399782226, + "grad_norm": 0.6869648098945618, + "learning_rate": 4.6416247906197656e-05, + "loss": 0.38886920928955077, + "step": 21400 + }, + { + "epoch": 7.202697043303459, + "grad_norm": 0.7238380908966064, + "learning_rate": 4.6399497487437185e-05, + "loss": 0.3933087158203125, + "step": 21500 + }, + { + "epoch": 7.236200686824692, + "grad_norm": 0.708855152130127, + "learning_rate": 4.638274706867672e-05, + "loss": 0.3932600784301758, + "step": 21600 + }, + { + "epoch": 7.269704330345925, + "grad_norm": 0.6577633619308472, + "learning_rate": 4.636599664991625e-05, + "loss": 0.38899864196777345, + "step": 21700 + }, + { + "epoch": 7.303207973867158, + "grad_norm": 0.7226035594940186, + "learning_rate": 4.634924623115578e-05, + "loss": 0.3912385559082031, + "step": 21800 + }, + { + "epoch": 7.336711617388391, + "grad_norm": 0.7393138408660889, + "learning_rate": 4.633249581239531e-05, + "loss": 0.38804672241210936, + "step": 21900 + }, + { + "epoch": 7.370215260909624, + "grad_norm": 0.7591322660446167, + "learning_rate": 4.631574539363484e-05, + "loss": 0.39187992095947266, + "step": 22000 + }, + { + "epoch": 7.403718904430857, + "grad_norm": 0.7180842757225037, + "learning_rate": 4.629899497487438e-05, + "loss": 0.3885354232788086, + "step": 22100 + }, + { + "epoch": 7.43722254795209, + "grad_norm": 0.5701187252998352, + "learning_rate": 4.628241206030151e-05, + "loss": 0.3929626083374023, + "step": 22200 + }, + { + "epoch": 7.4707261914733225, + "grad_norm": 0.6831353902816772, + "learning_rate": 4.626566164154104e-05, + "loss": 0.3864256286621094, + "step": 22300 + }, + { + "epoch": 7.504229834994556, + "grad_norm": 0.7295540571212769, + "learning_rate": 4.6248911222780575e-05, + "loss": 0.3930975341796875, + "step": 22400 + }, + { + "epoch": 7.537733478515788, + "grad_norm": 0.6555300951004028, + "learning_rate": 4.6232160804020104e-05, + "loss": 0.39193412780761716, + "step": 22500 + }, + { + "epoch": 7.571237122037021, + "grad_norm": 0.6836072206497192, + "learning_rate": 4.621541038525963e-05, + "loss": 0.39321327209472656, + "step": 22600 + }, + { + "epoch": 7.604740765558255, + "grad_norm": 0.7344244122505188, + "learning_rate": 4.619865996649916e-05, + "loss": 0.39178211212158204, + "step": 22700 + }, + { + "epoch": 7.638244409079487, + "grad_norm": 0.6757531762123108, + "learning_rate": 4.61819095477387e-05, + "loss": 0.3929476547241211, + "step": 22800 + }, + { + "epoch": 7.67174805260072, + "grad_norm": 0.790185272693634, + "learning_rate": 4.6165159128978226e-05, + "loss": 0.388702392578125, + "step": 22900 + }, + { + "epoch": 7.7052516961219535, + "grad_norm": 0.6090592741966248, + "learning_rate": 4.6148408710217755e-05, + "loss": 0.39199878692626955, + "step": 23000 + }, + { + "epoch": 7.738755339643186, + "grad_norm": 0.7253360152244568, + "learning_rate": 4.6131658291457284e-05, + "loss": 0.39112945556640627, + "step": 23100 + }, + { + "epoch": 7.772258983164419, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.611490787269682e-05, + "loss": 0.39291053771972656, + "step": 23200 + }, + { + "epoch": 7.805762626685652, + "grad_norm": 0.6961659789085388, + "learning_rate": 4.6098157453936355e-05, + "loss": 0.39124824523925783, + "step": 23300 + }, + { + "epoch": 7.839266270206885, + "grad_norm": 0.7136702537536621, + "learning_rate": 4.6081407035175884e-05, + "loss": 0.39080577850341797, + "step": 23400 + }, + { + "epoch": 7.872769913728118, + "grad_norm": 0.7133346199989319, + "learning_rate": 4.606465661641541e-05, + "loss": 0.3894335174560547, + "step": 23500 + }, + { + "epoch": 7.906273557249351, + "grad_norm": 0.7279176115989685, + "learning_rate": 4.604790619765494e-05, + "loss": 0.3878567886352539, + "step": 23600 + }, + { + "epoch": 7.939777200770584, + "grad_norm": 0.6854584217071533, + "learning_rate": 4.603115577889448e-05, + "loss": 0.3958644104003906, + "step": 23700 + }, + { + "epoch": 7.973280844291817, + "grad_norm": 0.7134712934494019, + "learning_rate": 4.6014405360134006e-05, + "loss": 0.39134223937988283, + "step": 23800 + }, + { + "epoch": 8.006700728704246, + "grad_norm": 0.7242705821990967, + "learning_rate": 4.5997654941373535e-05, + "loss": 0.38787689208984377, + "step": 23900 + }, + { + "epoch": 8.04020437222548, + "grad_norm": 0.6507485508918762, + "learning_rate": 4.5980904522613064e-05, + "loss": 0.3778019332885742, + "step": 24000 + }, + { + "epoch": 8.073708015746712, + "grad_norm": 0.6936424374580383, + "learning_rate": 4.59641541038526e-05, + "loss": 0.3767805862426758, + "step": 24100 + }, + { + "epoch": 8.107211659267945, + "grad_norm": 0.6715813279151917, + "learning_rate": 4.594757118927974e-05, + "loss": 0.37527366638183596, + "step": 24200 + }, + { + "epoch": 8.140715302789179, + "grad_norm": 0.7407135367393494, + "learning_rate": 4.593082077051927e-05, + "loss": 0.37779621124267576, + "step": 24300 + }, + { + "epoch": 8.174218946310411, + "grad_norm": 0.7536392211914062, + "learning_rate": 4.5914070351758796e-05, + "loss": 0.3771663665771484, + "step": 24400 + }, + { + "epoch": 8.207722589831643, + "grad_norm": 0.7159863114356995, + "learning_rate": 4.589731993299833e-05, + "loss": 0.3789206314086914, + "step": 24500 + }, + { + "epoch": 8.241226233352878, + "grad_norm": 0.7217793464660645, + "learning_rate": 4.588056951423786e-05, + "loss": 0.37845233917236326, + "step": 24600 + }, + { + "epoch": 8.27472987687411, + "grad_norm": 0.6689481139183044, + "learning_rate": 4.586381909547739e-05, + "loss": 0.3793601989746094, + "step": 24700 + }, + { + "epoch": 8.308233520395342, + "grad_norm": 0.6575570702552795, + "learning_rate": 4.584706867671692e-05, + "loss": 0.3798051452636719, + "step": 24800 + }, + { + "epoch": 8.341737163916576, + "grad_norm": 0.7236769795417786, + "learning_rate": 4.5830318257956454e-05, + "loss": 0.3808049011230469, + "step": 24900 + }, + { + "epoch": 8.375240807437809, + "grad_norm": 0.7543460130691528, + "learning_rate": 4.581356783919598e-05, + "loss": 0.3847679138183594, + "step": 25000 + }, + { + "epoch": 8.408744450959041, + "grad_norm": 0.7130107879638672, + "learning_rate": 4.579681742043551e-05, + "loss": 0.37841434478759767, + "step": 25100 + }, + { + "epoch": 8.442248094480275, + "grad_norm": 0.6971204876899719, + "learning_rate": 4.578006700167504e-05, + "loss": 0.3828566360473633, + "step": 25200 + }, + { + "epoch": 8.475751738001508, + "grad_norm": 0.7880971431732178, + "learning_rate": 4.5763316582914576e-05, + "loss": 0.37794727325439453, + "step": 25300 + }, + { + "epoch": 8.50925538152274, + "grad_norm": 0.795606255531311, + "learning_rate": 4.574656616415411e-05, + "loss": 0.3807938003540039, + "step": 25400 + }, + { + "epoch": 8.542759025043974, + "grad_norm": 0.662270724773407, + "learning_rate": 4.572981574539364e-05, + "loss": 0.38113510131835937, + "step": 25500 + }, + { + "epoch": 8.576262668565207, + "grad_norm": 0.7585960626602173, + "learning_rate": 4.571306532663317e-05, + "loss": 0.3807952880859375, + "step": 25600 + }, + { + "epoch": 8.609766312086439, + "grad_norm": 0.7054327726364136, + "learning_rate": 4.56963149078727e-05, + "loss": 0.3791161346435547, + "step": 25700 + }, + { + "epoch": 8.643269955607673, + "grad_norm": 0.7529199719429016, + "learning_rate": 4.5679564489112233e-05, + "loss": 0.3771999359130859, + "step": 25800 + }, + { + "epoch": 8.676773599128905, + "grad_norm": 0.7693551182746887, + "learning_rate": 4.566281407035176e-05, + "loss": 0.37909912109375, + "step": 25900 + }, + { + "epoch": 8.710277242650138, + "grad_norm": 0.7142516374588013, + "learning_rate": 4.564606365159129e-05, + "loss": 0.38215831756591795, + "step": 26000 + }, + { + "epoch": 8.743780886171372, + "grad_norm": 0.7293452024459839, + "learning_rate": 4.562931323283082e-05, + "loss": 0.38390281677246096, + "step": 26100 + }, + { + "epoch": 8.777284529692604, + "grad_norm": 0.725549578666687, + "learning_rate": 4.561273031825796e-05, + "loss": 0.37903385162353515, + "step": 26200 + }, + { + "epoch": 8.810788173213837, + "grad_norm": 0.7497493028640747, + "learning_rate": 4.559597989949749e-05, + "loss": 0.3807545852661133, + "step": 26300 + }, + { + "epoch": 8.844291816735069, + "grad_norm": 0.6810445189476013, + "learning_rate": 4.557922948073702e-05, + "loss": 0.38407058715820314, + "step": 26400 + }, + { + "epoch": 8.877795460256303, + "grad_norm": 0.6970882415771484, + "learning_rate": 4.556247906197655e-05, + "loss": 0.377288818359375, + "step": 26500 + }, + { + "epoch": 8.911299103777536, + "grad_norm": 0.6579902768135071, + "learning_rate": 4.554572864321608e-05, + "loss": 0.3823952484130859, + "step": 26600 + }, + { + "epoch": 8.94480274729877, + "grad_norm": 0.7329373359680176, + "learning_rate": 4.552897822445562e-05, + "loss": 0.38345798492431643, + "step": 26700 + }, + { + "epoch": 8.978306390820002, + "grad_norm": 0.7462034821510315, + "learning_rate": 4.5512227805695146e-05, + "loss": 0.38348892211914065, + "step": 26800 + }, + { + "epoch": 9.011726275232432, + "grad_norm": 0.6734225153923035, + "learning_rate": 4.5495477386934675e-05, + "loss": 0.37156158447265625, + "step": 26900 + }, + { + "epoch": 9.045229918753664, + "grad_norm": 0.7718762159347534, + "learning_rate": 4.54787269681742e-05, + "loss": 0.3672407913208008, + "step": 27000 + }, + { + "epoch": 9.078733562274897, + "grad_norm": 0.7702797055244446, + "learning_rate": 4.546197654941374e-05, + "loss": 0.36319580078125, + "step": 27100 + }, + { + "epoch": 9.11223720579613, + "grad_norm": 0.7608715891838074, + "learning_rate": 4.544522613065327e-05, + "loss": 0.3686368179321289, + "step": 27200 + }, + { + "epoch": 9.145740849317363, + "grad_norm": 0.6544201970100403, + "learning_rate": 4.54284757118928e-05, + "loss": 0.3657124710083008, + "step": 27300 + }, + { + "epoch": 9.179244492838595, + "grad_norm": 0.7948552370071411, + "learning_rate": 4.541172529313233e-05, + "loss": 0.3642101669311523, + "step": 27400 + }, + { + "epoch": 9.21274813635983, + "grad_norm": 0.7283180356025696, + "learning_rate": 4.539497487437186e-05, + "loss": 0.36608253479003905, + "step": 27500 + }, + { + "epoch": 9.246251779881062, + "grad_norm": 0.7535043358802795, + "learning_rate": 4.537822445561139e-05, + "loss": 0.3699675750732422, + "step": 27600 + }, + { + "epoch": 9.279755423402294, + "grad_norm": 0.7893076539039612, + "learning_rate": 4.5361474036850925e-05, + "loss": 0.3712180709838867, + "step": 27700 + }, + { + "epoch": 9.313259066923528, + "grad_norm": 0.7542401552200317, + "learning_rate": 4.5344723618090454e-05, + "loss": 0.36577003479003906, + "step": 27800 + }, + { + "epoch": 9.34676271044476, + "grad_norm": 0.7122746706008911, + "learning_rate": 4.532797319932999e-05, + "loss": 0.3700094985961914, + "step": 27900 + }, + { + "epoch": 9.380266353965993, + "grad_norm": 0.7706195116043091, + "learning_rate": 4.531122278056952e-05, + "loss": 0.3662248229980469, + "step": 28000 + }, + { + "epoch": 9.413769997487227, + "grad_norm": 0.7564675211906433, + "learning_rate": 4.529447236180905e-05, + "loss": 0.37131824493408205, + "step": 28100 + }, + { + "epoch": 9.44727364100846, + "grad_norm": 0.7425429224967957, + "learning_rate": 4.5277721943048576e-05, + "loss": 0.3740149688720703, + "step": 28200 + }, + { + "epoch": 9.480777284529692, + "grad_norm": 0.7587184906005859, + "learning_rate": 4.5261139028475716e-05, + "loss": 0.3699770736694336, + "step": 28300 + }, + { + "epoch": 9.514280928050926, + "grad_norm": 0.7541705369949341, + "learning_rate": 4.5244388609715244e-05, + "loss": 0.37311084747314455, + "step": 28400 + }, + { + "epoch": 9.547784571572159, + "grad_norm": 0.7311919331550598, + "learning_rate": 4.522763819095477e-05, + "loss": 0.3715859603881836, + "step": 28500 + }, + { + "epoch": 9.581288215093391, + "grad_norm": 0.700539767742157, + "learning_rate": 4.52108877721943e-05, + "loss": 0.3688846206665039, + "step": 28600 + }, + { + "epoch": 9.614791858614625, + "grad_norm": 0.6238375306129456, + "learning_rate": 4.519413735343384e-05, + "loss": 0.3701490020751953, + "step": 28700 + }, + { + "epoch": 9.648295502135857, + "grad_norm": 0.6758601069450378, + "learning_rate": 4.517738693467337e-05, + "loss": 0.37076793670654296, + "step": 28800 + }, + { + "epoch": 9.68179914565709, + "grad_norm": 0.7019829750061035, + "learning_rate": 4.51606365159129e-05, + "loss": 0.3690201187133789, + "step": 28900 + }, + { + "epoch": 9.715302789178324, + "grad_norm": 0.8280263543128967, + "learning_rate": 4.514388609715243e-05, + "loss": 0.3725156402587891, + "step": 29000 + }, + { + "epoch": 9.748806432699556, + "grad_norm": 0.6962838172912598, + "learning_rate": 4.512713567839196e-05, + "loss": 0.3695372009277344, + "step": 29100 + }, + { + "epoch": 9.782310076220789, + "grad_norm": 0.6678254008293152, + "learning_rate": 4.5110385259631495e-05, + "loss": 0.36981796264648437, + "step": 29200 + }, + { + "epoch": 9.815813719742023, + "grad_norm": 0.7574114799499512, + "learning_rate": 4.5093634840871024e-05, + "loss": 0.3735762023925781, + "step": 29300 + }, + { + "epoch": 9.849317363263255, + "grad_norm": 0.6498548984527588, + "learning_rate": 4.507688442211055e-05, + "loss": 0.36818092346191406, + "step": 29400 + }, + { + "epoch": 9.882821006784487, + "grad_norm": 0.6784448623657227, + "learning_rate": 4.506013400335008e-05, + "loss": 0.3738037872314453, + "step": 29500 + }, + { + "epoch": 9.916324650305722, + "grad_norm": 0.748648464679718, + "learning_rate": 4.504338358458962e-05, + "loss": 0.3744197463989258, + "step": 29600 + }, + { + "epoch": 9.949828293826954, + "grad_norm": 0.7319295406341553, + "learning_rate": 4.5026633165829146e-05, + "loss": 0.3747980499267578, + "step": 29700 + }, + { + "epoch": 9.983331937348186, + "grad_norm": 0.7425316572189331, + "learning_rate": 4.5009882747068675e-05, + "loss": 0.37337436676025393, + "step": 29800 + }, + { + "epoch": 10.016751821760616, + "grad_norm": 0.6705507040023804, + "learning_rate": 4.499313232830821e-05, + "loss": 0.36580001831054687, + "step": 29900 + }, + { + "epoch": 10.050255465281849, + "grad_norm": 0.7338049411773682, + "learning_rate": 4.4976381909547746e-05, + "loss": 0.35635528564453123, + "step": 30000 + }, + { + "epoch": 10.083759108803083, + "grad_norm": 0.7279812693595886, + "learning_rate": 4.4959631490787275e-05, + "loss": 0.3529629898071289, + "step": 30100 + }, + { + "epoch": 10.117262752324315, + "grad_norm": 0.7696557641029358, + "learning_rate": 4.4942881072026804e-05, + "loss": 0.354565315246582, + "step": 30200 + }, + { + "epoch": 10.150766395845547, + "grad_norm": 0.728212833404541, + "learning_rate": 4.4926298157453936e-05, + "loss": 0.3530071258544922, + "step": 30300 + }, + { + "epoch": 10.184270039366782, + "grad_norm": 0.7012603878974915, + "learning_rate": 4.490954773869347e-05, + "loss": 0.3573540496826172, + "step": 30400 + }, + { + "epoch": 10.217773682888014, + "grad_norm": 0.7446846961975098, + "learning_rate": 4.4892797319933e-05, + "loss": 0.35920669555664064, + "step": 30500 + }, + { + "epoch": 10.251277326409246, + "grad_norm": 0.792353630065918, + "learning_rate": 4.487604690117253e-05, + "loss": 0.3555112075805664, + "step": 30600 + }, + { + "epoch": 10.28478096993048, + "grad_norm": 0.6799439787864685, + "learning_rate": 4.485929648241206e-05, + "loss": 0.36326725006103516, + "step": 30700 + }, + { + "epoch": 10.318284613451713, + "grad_norm": 0.7877249121665955, + "learning_rate": 4.4842546063651594e-05, + "loss": 0.36337570190429686, + "step": 30800 + }, + { + "epoch": 10.351788256972945, + "grad_norm": 0.8450521230697632, + "learning_rate": 4.482579564489112e-05, + "loss": 0.3597735595703125, + "step": 30900 + }, + { + "epoch": 10.38529190049418, + "grad_norm": 0.7301276922225952, + "learning_rate": 4.480904522613066e-05, + "loss": 0.3627984619140625, + "step": 31000 + }, + { + "epoch": 10.418795544015412, + "grad_norm": 0.7038715481758118, + "learning_rate": 4.479229480737019e-05, + "loss": 0.356929817199707, + "step": 31100 + }, + { + "epoch": 10.452299187536644, + "grad_norm": 0.7955334782600403, + "learning_rate": 4.4775544388609716e-05, + "loss": 0.35474601745605466, + "step": 31200 + }, + { + "epoch": 10.485802831057878, + "grad_norm": 0.7089738249778748, + "learning_rate": 4.475879396984925e-05, + "loss": 0.36358638763427736, + "step": 31300 + }, + { + "epoch": 10.51930647457911, + "grad_norm": 0.8143360018730164, + "learning_rate": 4.474204355108878e-05, + "loss": 0.3624624252319336, + "step": 31400 + }, + { + "epoch": 10.552810118100343, + "grad_norm": 0.8367409706115723, + "learning_rate": 4.472529313232831e-05, + "loss": 0.36308753967285157, + "step": 31500 + }, + { + "epoch": 10.586313761621577, + "grad_norm": 0.7856859564781189, + "learning_rate": 4.470854271356784e-05, + "loss": 0.362791862487793, + "step": 31600 + }, + { + "epoch": 10.61981740514281, + "grad_norm": 0.8061284422874451, + "learning_rate": 4.4691792294807374e-05, + "loss": 0.3634458541870117, + "step": 31700 + }, + { + "epoch": 10.653321048664042, + "grad_norm": 0.785724401473999, + "learning_rate": 4.46750418760469e-05, + "loss": 0.36115474700927735, + "step": 31800 + }, + { + "epoch": 10.686824692185276, + "grad_norm": 0.7530859112739563, + "learning_rate": 4.465829145728643e-05, + "loss": 0.36017478942871095, + "step": 31900 + }, + { + "epoch": 10.720328335706508, + "grad_norm": 0.7640136480331421, + "learning_rate": 4.464154103852596e-05, + "loss": 0.36370697021484377, + "step": 32000 + }, + { + "epoch": 10.75383197922774, + "grad_norm": 0.7125088572502136, + "learning_rate": 4.4624790619765496e-05, + "loss": 0.36396575927734376, + "step": 32100 + }, + { + "epoch": 10.787335622748975, + "grad_norm": 0.8106554746627808, + "learning_rate": 4.4608040201005025e-05, + "loss": 0.3571950912475586, + "step": 32200 + }, + { + "epoch": 10.820839266270207, + "grad_norm": 0.768183708190918, + "learning_rate": 4.4591457286432164e-05, + "loss": 0.3580643844604492, + "step": 32300 + }, + { + "epoch": 10.85434290979144, + "grad_norm": 0.7329164743423462, + "learning_rate": 4.457470686767169e-05, + "loss": 0.36159816741943357, + "step": 32400 + }, + { + "epoch": 10.887846553312674, + "grad_norm": 0.7993727922439575, + "learning_rate": 4.455795644891123e-05, + "loss": 0.3672108840942383, + "step": 32500 + }, + { + "epoch": 10.921350196833906, + "grad_norm": 0.7389618754386902, + "learning_rate": 4.454120603015076e-05, + "loss": 0.3596214294433594, + "step": 32600 + }, + { + "epoch": 10.954853840355138, + "grad_norm": 0.6745049953460693, + "learning_rate": 4.4524455611390286e-05, + "loss": 0.36047595977783203, + "step": 32700 + }, + { + "epoch": 10.98835748387637, + "grad_norm": 0.7832050919532776, + "learning_rate": 4.4507705192629815e-05, + "loss": 0.3599930953979492, + "step": 32800 + }, + { + "epoch": 11.021777368288802, + "grad_norm": 0.7236883044242859, + "learning_rate": 4.449095477386935e-05, + "loss": 0.3518721771240234, + "step": 32900 + }, + { + "epoch": 11.055281011810035, + "grad_norm": 0.6951456069946289, + "learning_rate": 4.447420435510888e-05, + "loss": 0.3448529815673828, + "step": 33000 + }, + { + "epoch": 11.088784655331267, + "grad_norm": 0.8174095749855042, + "learning_rate": 4.445745393634841e-05, + "loss": 0.3480173873901367, + "step": 33100 + }, + { + "epoch": 11.1222882988525, + "grad_norm": 0.8361256122589111, + "learning_rate": 4.444070351758794e-05, + "loss": 0.3429459762573242, + "step": 33200 + }, + { + "epoch": 11.155791942373734, + "grad_norm": 0.8620163202285767, + "learning_rate": 4.442395309882747e-05, + "loss": 0.3492248916625977, + "step": 33300 + }, + { + "epoch": 11.189295585894966, + "grad_norm": 0.7246844172477722, + "learning_rate": 4.440720268006701e-05, + "loss": 0.3458073043823242, + "step": 33400 + }, + { + "epoch": 11.222799229416198, + "grad_norm": 0.7091465592384338, + "learning_rate": 4.439045226130654e-05, + "loss": 0.34752788543701174, + "step": 33500 + }, + { + "epoch": 11.256302872937432, + "grad_norm": 0.7573132514953613, + "learning_rate": 4.4373701842546066e-05, + "loss": 0.3496548080444336, + "step": 33600 + }, + { + "epoch": 11.289806516458665, + "grad_norm": 0.7986613512039185, + "learning_rate": 4.4356951423785595e-05, + "loss": 0.34697345733642576, + "step": 33700 + }, + { + "epoch": 11.323310159979897, + "grad_norm": 0.7822960615158081, + "learning_rate": 4.434020100502513e-05, + "loss": 0.35006622314453123, + "step": 33800 + }, + { + "epoch": 11.356813803501131, + "grad_norm": 0.8444114327430725, + "learning_rate": 4.432345058626466e-05, + "loss": 0.3496244430541992, + "step": 33900 + }, + { + "epoch": 11.390317447022364, + "grad_norm": 0.7642440795898438, + "learning_rate": 4.430670016750419e-05, + "loss": 0.350846061706543, + "step": 34000 + }, + { + "epoch": 11.423821090543596, + "grad_norm": 0.7518153190612793, + "learning_rate": 4.428994974874372e-05, + "loss": 0.3499641036987305, + "step": 34100 + }, + { + "epoch": 11.45732473406483, + "grad_norm": 0.8707530498504639, + "learning_rate": 4.427319932998325e-05, + "loss": 0.3532308578491211, + "step": 34200 + }, + { + "epoch": 11.490828377586062, + "grad_norm": 0.7227981686592102, + "learning_rate": 4.4256616415410385e-05, + "loss": 0.35490013122558595, + "step": 34300 + }, + { + "epoch": 11.524332021107295, + "grad_norm": 0.7735912203788757, + "learning_rate": 4.423986599664992e-05, + "loss": 0.3542043304443359, + "step": 34400 + }, + { + "epoch": 11.557835664628529, + "grad_norm": 0.8353047370910645, + "learning_rate": 4.422311557788945e-05, + "loss": 0.34967689514160155, + "step": 34500 + }, + { + "epoch": 11.591339308149761, + "grad_norm": 0.7564737200737, + "learning_rate": 4.4206365159128985e-05, + "loss": 0.35371181488037107, + "step": 34600 + }, + { + "epoch": 11.624842951670994, + "grad_norm": 0.656694233417511, + "learning_rate": 4.4189614740368514e-05, + "loss": 0.3496272277832031, + "step": 34700 + }, + { + "epoch": 11.658346595192228, + "grad_norm": 0.8337951302528381, + "learning_rate": 4.417286432160804e-05, + "loss": 0.35147029876708985, + "step": 34800 + }, + { + "epoch": 11.69185023871346, + "grad_norm": 0.779253363609314, + "learning_rate": 4.415611390284757e-05, + "loss": 0.3496464920043945, + "step": 34900 + }, + { + "epoch": 11.725353882234693, + "grad_norm": 0.8846334218978882, + "learning_rate": 4.413936348408711e-05, + "loss": 0.3506482696533203, + "step": 35000 + }, + { + "epoch": 11.758857525755927, + "grad_norm": 0.7678661346435547, + "learning_rate": 4.4122613065326636e-05, + "loss": 0.35182670593261717, + "step": 35100 + }, + { + "epoch": 11.792361169277159, + "grad_norm": 0.779376745223999, + "learning_rate": 4.4105862646566165e-05, + "loss": 0.3535502624511719, + "step": 35200 + }, + { + "epoch": 11.825864812798391, + "grad_norm": 0.8054938316345215, + "learning_rate": 4.408911222780569e-05, + "loss": 0.35151683807373046, + "step": 35300 + }, + { + "epoch": 11.859368456319626, + "grad_norm": 0.7657700181007385, + "learning_rate": 4.407236180904523e-05, + "loss": 0.3521769714355469, + "step": 35400 + }, + { + "epoch": 11.892872099840858, + "grad_norm": 0.7825794219970703, + "learning_rate": 4.405561139028476e-05, + "loss": 0.3515496826171875, + "step": 35500 + }, + { + "epoch": 11.92637574336209, + "grad_norm": 0.811125636100769, + "learning_rate": 4.403886097152429e-05, + "loss": 0.35637962341308593, + "step": 35600 + }, + { + "epoch": 11.959879386883323, + "grad_norm": 0.7954035401344299, + "learning_rate": 4.402211055276382e-05, + "loss": 0.3535337066650391, + "step": 35700 + }, + { + "epoch": 11.993383030404557, + "grad_norm": 0.9039795994758606, + "learning_rate": 4.400536013400335e-05, + "loss": 0.351923828125, + "step": 35800 + }, + { + "epoch": 12.026802914816987, + "grad_norm": 0.7764714360237122, + "learning_rate": 4.3988609715242887e-05, + "loss": 0.3385712432861328, + "step": 35900 + }, + { + "epoch": 12.060306558338219, + "grad_norm": 0.8632619380950928, + "learning_rate": 4.3971859296482415e-05, + "loss": 0.3341633605957031, + "step": 36000 + }, + { + "epoch": 12.093810201859451, + "grad_norm": 0.7242739200592041, + "learning_rate": 4.3955108877721944e-05, + "loss": 0.33580013275146486, + "step": 36100 + }, + { + "epoch": 12.127313845380685, + "grad_norm": 0.8469365239143372, + "learning_rate": 4.393835845896147e-05, + "loss": 0.33277801513671873, + "step": 36200 + }, + { + "epoch": 12.160817488901918, + "grad_norm": 0.8422605991363525, + "learning_rate": 4.392177554438861e-05, + "loss": 0.33413345336914063, + "step": 36300 + }, + { + "epoch": 12.19432113242315, + "grad_norm": 0.7811619639396667, + "learning_rate": 4.390502512562814e-05, + "loss": 0.33585643768310547, + "step": 36400 + }, + { + "epoch": 12.227824775944384, + "grad_norm": 0.7483822703361511, + "learning_rate": 4.388827470686767e-05, + "loss": 0.33689048767089846, + "step": 36500 + }, + { + "epoch": 12.261328419465617, + "grad_norm": 0.8344827890396118, + "learning_rate": 4.3871524288107206e-05, + "loss": 0.33572166442871093, + "step": 36600 + }, + { + "epoch": 12.294832062986849, + "grad_norm": 0.8680643439292908, + "learning_rate": 4.385477386934674e-05, + "loss": 0.3416824722290039, + "step": 36700 + }, + { + "epoch": 12.328335706508083, + "grad_norm": 0.8696274757385254, + "learning_rate": 4.383802345058627e-05, + "loss": 0.33966796875, + "step": 36800 + }, + { + "epoch": 12.361839350029316, + "grad_norm": 0.8183309435844421, + "learning_rate": 4.38212730318258e-05, + "loss": 0.3437775039672852, + "step": 36900 + }, + { + "epoch": 12.395342993550548, + "grad_norm": 0.8513368368148804, + "learning_rate": 4.380452261306533e-05, + "loss": 0.3392060470581055, + "step": 37000 + }, + { + "epoch": 12.428846637071782, + "grad_norm": 0.799085259437561, + "learning_rate": 4.378777219430486e-05, + "loss": 0.34548038482666016, + "step": 37100 + }, + { + "epoch": 12.462350280593014, + "grad_norm": 0.8001937866210938, + "learning_rate": 4.377102177554439e-05, + "loss": 0.3440947723388672, + "step": 37200 + }, + { + "epoch": 12.495853924114247, + "grad_norm": 0.7208882570266724, + "learning_rate": 4.375427135678392e-05, + "loss": 0.33991405487060544, + "step": 37300 + }, + { + "epoch": 12.529357567635481, + "grad_norm": 0.7442817687988281, + "learning_rate": 4.373752093802345e-05, + "loss": 0.3403905487060547, + "step": 37400 + }, + { + "epoch": 12.562861211156713, + "grad_norm": 0.8188682794570923, + "learning_rate": 4.3720770519262985e-05, + "loss": 0.3432355499267578, + "step": 37500 + }, + { + "epoch": 12.596364854677946, + "grad_norm": 0.8770096302032471, + "learning_rate": 4.3704020100502514e-05, + "loss": 0.3425747299194336, + "step": 37600 + }, + { + "epoch": 12.62986849819918, + "grad_norm": 0.6969801187515259, + "learning_rate": 4.368726968174204e-05, + "loss": 0.3424406051635742, + "step": 37700 + }, + { + "epoch": 12.663372141720412, + "grad_norm": 0.7996489405632019, + "learning_rate": 4.367051926298157e-05, + "loss": 0.34474189758300783, + "step": 37800 + }, + { + "epoch": 12.696875785241645, + "grad_norm": 0.8017092943191528, + "learning_rate": 4.365376884422111e-05, + "loss": 0.3453398895263672, + "step": 37900 + }, + { + "epoch": 12.730379428762879, + "grad_norm": 0.8389545679092407, + "learning_rate": 4.363701842546064e-05, + "loss": 0.3442976760864258, + "step": 38000 + }, + { + "epoch": 12.763883072284111, + "grad_norm": 0.829469621181488, + "learning_rate": 4.362026800670017e-05, + "loss": 0.3431151580810547, + "step": 38100 + }, + { + "epoch": 12.797386715805343, + "grad_norm": 0.747890055179596, + "learning_rate": 4.36035175879397e-05, + "loss": 0.3406733322143555, + "step": 38200 + }, + { + "epoch": 12.830890359326578, + "grad_norm": 0.8428831100463867, + "learning_rate": 4.358693467336683e-05, + "loss": 0.34296836853027346, + "step": 38300 + }, + { + "epoch": 12.86439400284781, + "grad_norm": 0.837282121181488, + "learning_rate": 4.357018425460637e-05, + "loss": 0.3470125579833984, + "step": 38400 + }, + { + "epoch": 12.897897646369042, + "grad_norm": 0.7993006706237793, + "learning_rate": 4.35534338358459e-05, + "loss": 0.3433689117431641, + "step": 38500 + }, + { + "epoch": 12.931401289890276, + "grad_norm": 0.7729536294937134, + "learning_rate": 4.3536683417085426e-05, + "loss": 0.34415348052978517, + "step": 38600 + }, + { + "epoch": 12.964904933411509, + "grad_norm": 0.8379591107368469, + "learning_rate": 4.3519932998324955e-05, + "loss": 0.3490380096435547, + "step": 38700 + }, + { + "epoch": 12.998408576932741, + "grad_norm": 0.8118153214454651, + "learning_rate": 4.350318257956449e-05, + "loss": 0.3449933624267578, + "step": 38800 + }, + { + "epoch": 13.031828461345171, + "grad_norm": 0.7350383400917053, + "learning_rate": 4.3486432160804026e-05, + "loss": 0.3230305862426758, + "step": 38900 + }, + { + "epoch": 13.065332104866405, + "grad_norm": 0.844278872013092, + "learning_rate": 4.3469681742043555e-05, + "loss": 0.3269623565673828, + "step": 39000 + }, + { + "epoch": 13.098835748387637, + "grad_norm": 0.7997421622276306, + "learning_rate": 4.3452931323283084e-05, + "loss": 0.32578598022460936, + "step": 39100 + }, + { + "epoch": 13.13233939190887, + "grad_norm": 0.830944299697876, + "learning_rate": 4.343618090452262e-05, + "loss": 0.32753429412841795, + "step": 39200 + }, + { + "epoch": 13.165843035430104, + "grad_norm": 0.7835378646850586, + "learning_rate": 4.341943048576215e-05, + "loss": 0.32705738067626955, + "step": 39300 + }, + { + "epoch": 13.199346678951336, + "grad_norm": 0.9184708595275879, + "learning_rate": 4.340268006700168e-05, + "loss": 0.32659355163574216, + "step": 39400 + }, + { + "epoch": 13.232850322472569, + "grad_norm": 0.9233602285385132, + "learning_rate": 4.3385929648241206e-05, + "loss": 0.3316535186767578, + "step": 39500 + }, + { + "epoch": 13.266353965993801, + "grad_norm": 0.8355572819709778, + "learning_rate": 4.336917922948074e-05, + "loss": 0.3265563583374023, + "step": 39600 + }, + { + "epoch": 13.299857609515035, + "grad_norm": 0.8072609901428223, + "learning_rate": 4.335242881072027e-05, + "loss": 0.329896354675293, + "step": 39700 + }, + { + "epoch": 13.333361253036268, + "grad_norm": 0.7573186159133911, + "learning_rate": 4.33356783919598e-05, + "loss": 0.3345551300048828, + "step": 39800 + }, + { + "epoch": 13.3668648965575, + "grad_norm": 0.7736772894859314, + "learning_rate": 4.331892797319933e-05, + "loss": 0.32930431365966795, + "step": 39900 + }, + { + "epoch": 13.400368540078734, + "grad_norm": 0.6786108016967773, + "learning_rate": 4.3302177554438864e-05, + "loss": 0.3282357406616211, + "step": 40000 + }, + { + "epoch": 13.433872183599966, + "grad_norm": 0.9429032206535339, + "learning_rate": 4.328542713567839e-05, + "loss": 0.33234012603759766, + "step": 40100 + }, + { + "epoch": 13.467375827121199, + "grad_norm": 0.8342773914337158, + "learning_rate": 4.326867671691793e-05, + "loss": 0.33062789916992186, + "step": 40200 + }, + { + "epoch": 13.500879470642433, + "grad_norm": 0.8285291194915771, + "learning_rate": 4.325209380234506e-05, + "loss": 0.33372978210449217, + "step": 40300 + }, + { + "epoch": 13.534383114163665, + "grad_norm": 0.9048053622245789, + "learning_rate": 4.323534338358459e-05, + "loss": 0.3388665771484375, + "step": 40400 + }, + { + "epoch": 13.567886757684898, + "grad_norm": 0.8660252690315247, + "learning_rate": 4.3218592964824125e-05, + "loss": 0.33297966003417967, + "step": 40500 + }, + { + "epoch": 13.601390401206132, + "grad_norm": 0.8536561727523804, + "learning_rate": 4.3201842546063654e-05, + "loss": 0.3336554718017578, + "step": 40600 + }, + { + "epoch": 13.634894044727364, + "grad_norm": 0.8385009765625, + "learning_rate": 4.318509212730318e-05, + "loss": 0.3373324203491211, + "step": 40700 + }, + { + "epoch": 13.668397688248596, + "grad_norm": 0.8286055326461792, + "learning_rate": 4.316834170854271e-05, + "loss": 0.3344192886352539, + "step": 40800 + }, + { + "epoch": 13.70190133176983, + "grad_norm": 0.8716219067573547, + "learning_rate": 4.315159128978225e-05, + "loss": 0.3346976089477539, + "step": 40900 + }, + { + "epoch": 13.735404975291063, + "grad_norm": 0.9002569317817688, + "learning_rate": 4.3134840871021776e-05, + "loss": 0.33477676391601563, + "step": 41000 + }, + { + "epoch": 13.768908618812295, + "grad_norm": 0.7407629489898682, + "learning_rate": 4.3118090452261305e-05, + "loss": 0.3335411071777344, + "step": 41100 + }, + { + "epoch": 13.80241226233353, + "grad_norm": 0.8391560316085815, + "learning_rate": 4.310134003350084e-05, + "loss": 0.33270046234130857, + "step": 41200 + }, + { + "epoch": 13.835915905854762, + "grad_norm": 0.8274234533309937, + "learning_rate": 4.3084589614740376e-05, + "loss": 0.3338147735595703, + "step": 41300 + }, + { + "epoch": 13.869419549375994, + "grad_norm": 0.7722423672676086, + "learning_rate": 4.3067839195979905e-05, + "loss": 0.3329287338256836, + "step": 41400 + }, + { + "epoch": 13.902923192897228, + "grad_norm": 0.8129300475120544, + "learning_rate": 4.3051088777219434e-05, + "loss": 0.3391679000854492, + "step": 41500 + }, + { + "epoch": 13.93642683641846, + "grad_norm": 0.7851378917694092, + "learning_rate": 4.303433835845896e-05, + "loss": 0.33578712463378907, + "step": 41600 + }, + { + "epoch": 13.969930479939693, + "grad_norm": 0.8963794708251953, + "learning_rate": 4.30175879396985e-05, + "loss": 0.3370305252075195, + "step": 41700 + }, + { + "epoch": 14.003350364352123, + "grad_norm": 0.7511172890663147, + "learning_rate": 4.300083752093803e-05, + "loss": 0.3332187652587891, + "step": 41800 + }, + { + "epoch": 14.036854007873357, + "grad_norm": 0.8411696553230286, + "learning_rate": 4.2984087102177556e-05, + "loss": 0.3142329978942871, + "step": 41900 + }, + { + "epoch": 14.07035765139459, + "grad_norm": 0.8463764190673828, + "learning_rate": 4.2967336683417085e-05, + "loss": 0.31400049209594727, + "step": 42000 + }, + { + "epoch": 14.103861294915822, + "grad_norm": 0.8349206447601318, + "learning_rate": 4.295058626465662e-05, + "loss": 0.3154226112365723, + "step": 42100 + }, + { + "epoch": 14.137364938437056, + "grad_norm": 0.8107666373252869, + "learning_rate": 4.293383584589615e-05, + "loss": 0.31885833740234376, + "step": 42200 + }, + { + "epoch": 14.170868581958288, + "grad_norm": 0.8954828381538391, + "learning_rate": 4.291725293132329e-05, + "loss": 0.3197479820251465, + "step": 42300 + }, + { + "epoch": 14.20437222547952, + "grad_norm": 0.8605073094367981, + "learning_rate": 4.290050251256282e-05, + "loss": 0.32168098449707033, + "step": 42400 + }, + { + "epoch": 14.237875869000753, + "grad_norm": 0.8864564299583435, + "learning_rate": 4.2883752093802346e-05, + "loss": 0.31901069641113283, + "step": 42500 + }, + { + "epoch": 14.271379512521987, + "grad_norm": 0.8231778144836426, + "learning_rate": 4.286700167504188e-05, + "loss": 0.3223213577270508, + "step": 42600 + }, + { + "epoch": 14.30488315604322, + "grad_norm": 0.8360753059387207, + "learning_rate": 4.285025125628141e-05, + "loss": 0.32040260314941404, + "step": 42700 + }, + { + "epoch": 14.338386799564452, + "grad_norm": 0.8900824785232544, + "learning_rate": 4.283350083752094e-05, + "loss": 0.32190364837646485, + "step": 42800 + }, + { + "epoch": 14.371890443085686, + "grad_norm": 0.8233429193496704, + "learning_rate": 4.281675041876047e-05, + "loss": 0.32389614105224607, + "step": 42900 + }, + { + "epoch": 14.405394086606918, + "grad_norm": 0.7868608236312866, + "learning_rate": 4.2800000000000004e-05, + "loss": 0.3197458839416504, + "step": 43000 + }, + { + "epoch": 14.43889773012815, + "grad_norm": 0.9061699509620667, + "learning_rate": 4.278324958123953e-05, + "loss": 0.32365760803222654, + "step": 43100 + }, + { + "epoch": 14.472401373649385, + "grad_norm": 0.8254518508911133, + "learning_rate": 4.276649916247906e-05, + "loss": 0.32395694732666014, + "step": 43200 + }, + { + "epoch": 14.505905017170617, + "grad_norm": 0.8711475729942322, + "learning_rate": 4.274974874371859e-05, + "loss": 0.32183242797851563, + "step": 43300 + }, + { + "epoch": 14.53940866069185, + "grad_norm": 0.8801646828651428, + "learning_rate": 4.2732998324958126e-05, + "loss": 0.3255552673339844, + "step": 43400 + }, + { + "epoch": 14.572912304213084, + "grad_norm": 0.9780988693237305, + "learning_rate": 4.271624790619766e-05, + "loss": 0.32349624633789065, + "step": 43500 + }, + { + "epoch": 14.606415947734316, + "grad_norm": 0.7670713663101196, + "learning_rate": 4.269949748743719e-05, + "loss": 0.325313720703125, + "step": 43600 + }, + { + "epoch": 14.639919591255548, + "grad_norm": 0.8528743386268616, + "learning_rate": 4.268274706867672e-05, + "loss": 0.3246849822998047, + "step": 43700 + }, + { + "epoch": 14.673423234776783, + "grad_norm": 0.8485456109046936, + "learning_rate": 4.2665996649916254e-05, + "loss": 0.3302822494506836, + "step": 43800 + }, + { + "epoch": 14.706926878298015, + "grad_norm": 0.7821197509765625, + "learning_rate": 4.264924623115578e-05, + "loss": 0.3271540451049805, + "step": 43900 + }, + { + "epoch": 14.740430521819247, + "grad_norm": 0.8672188520431519, + "learning_rate": 4.263249581239531e-05, + "loss": 0.32373977661132813, + "step": 44000 + }, + { + "epoch": 14.773934165340481, + "grad_norm": 0.8280694484710693, + "learning_rate": 4.261574539363484e-05, + "loss": 0.3241862106323242, + "step": 44100 + }, + { + "epoch": 14.807437808861714, + "grad_norm": 0.8599796891212463, + "learning_rate": 4.2598994974874377e-05, + "loss": 0.32549205780029294, + "step": 44200 + }, + { + "epoch": 14.840941452382946, + "grad_norm": 0.8781849145889282, + "learning_rate": 4.258241206030151e-05, + "loss": 0.331417121887207, + "step": 44300 + }, + { + "epoch": 14.87444509590418, + "grad_norm": 0.9023721814155579, + "learning_rate": 4.256566164154104e-05, + "loss": 0.33159866333007815, + "step": 44400 + }, + { + "epoch": 14.907948739425413, + "grad_norm": 0.8109947443008423, + "learning_rate": 4.2548911222780573e-05, + "loss": 0.3285139846801758, + "step": 44500 + }, + { + "epoch": 14.941452382946645, + "grad_norm": 0.9133332371711731, + "learning_rate": 4.25321608040201e-05, + "loss": 0.3285633850097656, + "step": 44600 + }, + { + "epoch": 14.97495602646788, + "grad_norm": 0.897939145565033, + "learning_rate": 4.251541038525964e-05, + "loss": 0.3268856430053711, + "step": 44700 + }, + { + "epoch": 15.008375910880309, + "grad_norm": 0.8286980986595154, + "learning_rate": 4.249865996649917e-05, + "loss": 0.31992229461669924, + "step": 44800 + }, + { + "epoch": 15.041879554401541, + "grad_norm": 0.8173639178276062, + "learning_rate": 4.2481909547738696e-05, + "loss": 0.3056914710998535, + "step": 44900 + }, + { + "epoch": 15.075383197922774, + "grad_norm": 0.7765247821807861, + "learning_rate": 4.2465159128978224e-05, + "loss": 0.30892095565795896, + "step": 45000 + }, + { + "epoch": 15.108886841444008, + "grad_norm": 0.9506803750991821, + "learning_rate": 4.244840871021776e-05, + "loss": 0.31020853042602536, + "step": 45100 + }, + { + "epoch": 15.14239048496524, + "grad_norm": 0.855025053024292, + "learning_rate": 4.243165829145729e-05, + "loss": 0.30636240005493165, + "step": 45200 + }, + { + "epoch": 15.175894128486473, + "grad_norm": 0.8373168110847473, + "learning_rate": 4.241490787269682e-05, + "loss": 0.3096147537231445, + "step": 45300 + }, + { + "epoch": 15.209397772007707, + "grad_norm": 0.8214793801307678, + "learning_rate": 4.2398157453936346e-05, + "loss": 0.3086151885986328, + "step": 45400 + }, + { + "epoch": 15.242901415528939, + "grad_norm": 0.8581687211990356, + "learning_rate": 4.238140703517588e-05, + "loss": 0.3079892349243164, + "step": 45500 + }, + { + "epoch": 15.276405059050171, + "grad_norm": 0.8844295740127563, + "learning_rate": 4.236465661641541e-05, + "loss": 0.31047849655151366, + "step": 45600 + }, + { + "epoch": 15.309908702571404, + "grad_norm": 0.8439965844154358, + "learning_rate": 4.234790619765494e-05, + "loss": 0.3138412094116211, + "step": 45700 + }, + { + "epoch": 15.343412346092638, + "grad_norm": 0.903762698173523, + "learning_rate": 4.2331155778894475e-05, + "loss": 0.3122879219055176, + "step": 45800 + }, + { + "epoch": 15.37691598961387, + "grad_norm": 0.8018752932548523, + "learning_rate": 4.2314405360134004e-05, + "loss": 0.3170251655578613, + "step": 45900 + }, + { + "epoch": 15.410419633135103, + "grad_norm": 0.92534339427948, + "learning_rate": 4.229765494137354e-05, + "loss": 0.3110039138793945, + "step": 46000 + }, + { + "epoch": 15.443923276656337, + "grad_norm": 0.9206555485725403, + "learning_rate": 4.228090452261307e-05, + "loss": 0.31349218368530274, + "step": 46100 + }, + { + "epoch": 15.47742692017757, + "grad_norm": 0.9693331122398376, + "learning_rate": 4.22641541038526e-05, + "loss": 0.3193240737915039, + "step": 46200 + }, + { + "epoch": 15.510930563698802, + "grad_norm": 0.8420470952987671, + "learning_rate": 4.224757118927974e-05, + "loss": 0.3151701354980469, + "step": 46300 + }, + { + "epoch": 15.544434207220036, + "grad_norm": 0.9353216290473938, + "learning_rate": 4.2230820770519265e-05, + "loss": 0.3188944435119629, + "step": 46400 + }, + { + "epoch": 15.577937850741268, + "grad_norm": 0.9871792197227478, + "learning_rate": 4.2214070351758794e-05, + "loss": 0.31723602294921877, + "step": 46500 + }, + { + "epoch": 15.6114414942625, + "grad_norm": 0.7518536448478699, + "learning_rate": 4.219731993299832e-05, + "loss": 0.31692527770996093, + "step": 46600 + }, + { + "epoch": 15.644945137783735, + "grad_norm": 0.8153543472290039, + "learning_rate": 4.218056951423786e-05, + "loss": 0.3178220748901367, + "step": 46700 + }, + { + "epoch": 15.678448781304967, + "grad_norm": 0.9253189563751221, + "learning_rate": 4.2163819095477394e-05, + "loss": 0.31681758880615235, + "step": 46800 + }, + { + "epoch": 15.7119524248262, + "grad_norm": 0.9607227444648743, + "learning_rate": 4.214706867671692e-05, + "loss": 0.31734546661376956, + "step": 46900 + }, + { + "epoch": 15.745456068347433, + "grad_norm": 0.9105275273323059, + "learning_rate": 4.213031825795645e-05, + "loss": 0.3183962059020996, + "step": 47000 + }, + { + "epoch": 15.778959711868666, + "grad_norm": 0.943592369556427, + "learning_rate": 4.211356783919598e-05, + "loss": 0.3173214912414551, + "step": 47100 + }, + { + "epoch": 15.812463355389898, + "grad_norm": 0.8281202912330627, + "learning_rate": 4.2096817420435516e-05, + "loss": 0.31825736999511717, + "step": 47200 + }, + { + "epoch": 15.845966998911132, + "grad_norm": 0.9243564009666443, + "learning_rate": 4.2080067001675045e-05, + "loss": 0.31478778839111327, + "step": 47300 + }, + { + "epoch": 15.879470642432365, + "grad_norm": 0.9413986206054688, + "learning_rate": 4.2063316582914574e-05, + "loss": 0.3212542343139648, + "step": 47400 + }, + { + "epoch": 15.912974285953597, + "grad_norm": 0.7720843553543091, + "learning_rate": 4.20465661641541e-05, + "loss": 0.3203662109375, + "step": 47500 + }, + { + "epoch": 15.946477929474831, + "grad_norm": 0.9300262331962585, + "learning_rate": 4.202981574539364e-05, + "loss": 0.31860551834106443, + "step": 47600 + }, + { + "epoch": 15.979981572996063, + "grad_norm": 0.9552218317985535, + "learning_rate": 4.201306532663317e-05, + "loss": 0.32005401611328127, + "step": 47700 + }, + { + "epoch": 16.01340145740849, + "grad_norm": 0.9004557132720947, + "learning_rate": 4.1996314907872696e-05, + "loss": 0.30930152893066404, + "step": 47800 + }, + { + "epoch": 16.046905100929727, + "grad_norm": 0.8685380220413208, + "learning_rate": 4.1979564489112225e-05, + "loss": 0.2990193176269531, + "step": 47900 + }, + { + "epoch": 16.08040874445096, + "grad_norm": 0.9357792735099792, + "learning_rate": 4.196281407035176e-05, + "loss": 0.3014987373352051, + "step": 48000 + }, + { + "epoch": 16.113912387972192, + "grad_norm": 0.8524284362792969, + "learning_rate": 4.1946063651591296e-05, + "loss": 0.29952068328857423, + "step": 48100 + }, + { + "epoch": 16.147416031493425, + "grad_norm": 0.8511279225349426, + "learning_rate": 4.1929313232830825e-05, + "loss": 0.2990330505371094, + "step": 48200 + }, + { + "epoch": 16.180919675014657, + "grad_norm": 0.9268020987510681, + "learning_rate": 4.191273031825796e-05, + "loss": 0.2993707275390625, + "step": 48300 + }, + { + "epoch": 16.21442331853589, + "grad_norm": 0.9302972555160522, + "learning_rate": 4.1895979899497486e-05, + "loss": 0.30082115173339846, + "step": 48400 + }, + { + "epoch": 16.247926962057125, + "grad_norm": 0.7517661452293396, + "learning_rate": 4.187922948073702e-05, + "loss": 0.29987972259521484, + "step": 48500 + }, + { + "epoch": 16.281430605578358, + "grad_norm": 0.9238623976707458, + "learning_rate": 4.186247906197655e-05, + "loss": 0.30625816345214846, + "step": 48600 + }, + { + "epoch": 16.31493424909959, + "grad_norm": 0.8699862360954285, + "learning_rate": 4.184572864321608e-05, + "loss": 0.3052105522155762, + "step": 48700 + }, + { + "epoch": 16.348437892620822, + "grad_norm": 0.8557946085929871, + "learning_rate": 4.182897822445561e-05, + "loss": 0.30761667251586916, + "step": 48800 + }, + { + "epoch": 16.381941536142055, + "grad_norm": 0.9344996213912964, + "learning_rate": 4.1812227805695144e-05, + "loss": 0.3052439498901367, + "step": 48900 + }, + { + "epoch": 16.415445179663287, + "grad_norm": 0.8814606070518494, + "learning_rate": 4.179547738693467e-05, + "loss": 0.3072672843933105, + "step": 49000 + }, + { + "epoch": 16.448948823184523, + "grad_norm": 0.847149670124054, + "learning_rate": 4.177872696817421e-05, + "loss": 0.3086087226867676, + "step": 49100 + }, + { + "epoch": 16.482452466705755, + "grad_norm": 0.8724634051322937, + "learning_rate": 4.176197654941374e-05, + "loss": 0.3087570571899414, + "step": 49200 + }, + { + "epoch": 16.515956110226988, + "grad_norm": 0.909691572189331, + "learning_rate": 4.174522613065327e-05, + "loss": 0.3070098495483398, + "step": 49300 + }, + { + "epoch": 16.54945975374822, + "grad_norm": 0.9307814240455627, + "learning_rate": 4.17284757118928e-05, + "loss": 0.305695915222168, + "step": 49400 + }, + { + "epoch": 16.582963397269452, + "grad_norm": 0.7699813842773438, + "learning_rate": 4.171172529313233e-05, + "loss": 0.30605703353881836, + "step": 49500 + }, + { + "epoch": 16.616467040790685, + "grad_norm": 1.0044174194335938, + "learning_rate": 4.169497487437186e-05, + "loss": 0.3084003257751465, + "step": 49600 + }, + { + "epoch": 16.64997068431192, + "grad_norm": 0.8166942000389099, + "learning_rate": 4.1678224455611395e-05, + "loss": 0.307757682800293, + "step": 49700 + }, + { + "epoch": 16.683474327833153, + "grad_norm": 0.8853956460952759, + "learning_rate": 4.1661474036850924e-05, + "loss": 0.3071472358703613, + "step": 49800 + }, + { + "epoch": 16.716977971354385, + "grad_norm": 0.8246440291404724, + "learning_rate": 4.164472361809045e-05, + "loss": 0.3088929557800293, + "step": 49900 + }, + { + "epoch": 16.750481614875618, + "grad_norm": 0.9108903408050537, + "learning_rate": 4.162797319932998e-05, + "loss": 0.3075083541870117, + "step": 50000 + }, + { + "epoch": 16.78398525839685, + "grad_norm": 0.9037117958068848, + "learning_rate": 4.161122278056952e-05, + "loss": 0.31276445388793944, + "step": 50100 + }, + { + "epoch": 16.817488901918082, + "grad_norm": 0.9087954759597778, + "learning_rate": 4.1594472361809046e-05, + "loss": 0.30919795989990234, + "step": 50200 + }, + { + "epoch": 16.85099254543932, + "grad_norm": Infinity, + "learning_rate": 4.157772194304858e-05, + "loss": 0.3113286209106445, + "step": 50300 + }, + { + "epoch": 16.88449618896055, + "grad_norm": 0.9613434076309204, + "learning_rate": 4.1561139028475714e-05, + "loss": 0.31487524032592773, + "step": 50400 + }, + { + "epoch": 16.917999832481783, + "grad_norm": 0.9458907246589661, + "learning_rate": 4.154438860971524e-05, + "loss": 0.3127643394470215, + "step": 50500 + }, + { + "epoch": 16.951503476003015, + "grad_norm": 0.9252173900604248, + "learning_rate": 4.152763819095478e-05, + "loss": 0.3084212112426758, + "step": 50600 + }, + { + "epoch": 16.985007119524248, + "grad_norm": 0.9816356897354126, + "learning_rate": 4.151088777219431e-05, + "loss": 0.31181251525878906, + "step": 50700 + }, + { + "epoch": 17.01842700393668, + "grad_norm": 0.8120167851448059, + "learning_rate": 4.1494137353433836e-05, + "loss": 0.2999544906616211, + "step": 50800 + }, + { + "epoch": 17.05193064745791, + "grad_norm": 0.7779452800750732, + "learning_rate": 4.1477386934673365e-05, + "loss": 0.2881363487243652, + "step": 50900 + }, + { + "epoch": 17.085434290979144, + "grad_norm": 0.8800045847892761, + "learning_rate": 4.14606365159129e-05, + "loss": 0.29184545516967775, + "step": 51000 + }, + { + "epoch": 17.118937934500376, + "grad_norm": 0.8309177160263062, + "learning_rate": 4.144388609715243e-05, + "loss": 0.293133430480957, + "step": 51100 + }, + { + "epoch": 17.15244157802161, + "grad_norm": 0.8549261093139648, + "learning_rate": 4.142713567839196e-05, + "loss": 0.29502378463745116, + "step": 51200 + }, + { + "epoch": 17.18594522154284, + "grad_norm": 0.9220601916313171, + "learning_rate": 4.141038525963149e-05, + "loss": 0.29487173080444334, + "step": 51300 + }, + { + "epoch": 17.219448865064077, + "grad_norm": 0.8818517327308655, + "learning_rate": 4.139363484087103e-05, + "loss": 0.2922089767456055, + "step": 51400 + }, + { + "epoch": 17.25295250858531, + "grad_norm": 0.9325298070907593, + "learning_rate": 4.137688442211056e-05, + "loss": 0.2953068351745605, + "step": 51500 + }, + { + "epoch": 17.286456152106542, + "grad_norm": 0.842454731464386, + "learning_rate": 4.136013400335009e-05, + "loss": 0.29264474868774415, + "step": 51600 + }, + { + "epoch": 17.319959795627774, + "grad_norm": 0.9482097029685974, + "learning_rate": 4.1343383584589616e-05, + "loss": 0.2976564979553223, + "step": 51700 + }, + { + "epoch": 17.353463439149007, + "grad_norm": 0.9430213570594788, + "learning_rate": 4.132663316582915e-05, + "loss": 0.29929805755615235, + "step": 51800 + }, + { + "epoch": 17.38696708267024, + "grad_norm": 0.9468767642974854, + "learning_rate": 4.130988274706868e-05, + "loss": 0.2957676124572754, + "step": 51900 + }, + { + "epoch": 17.420470726191475, + "grad_norm": 0.9603669047355652, + "learning_rate": 4.129313232830821e-05, + "loss": 0.2980274963378906, + "step": 52000 + }, + { + "epoch": 17.453974369712707, + "grad_norm": 0.8796602487564087, + "learning_rate": 4.127638190954774e-05, + "loss": 0.3016574096679687, + "step": 52100 + }, + { + "epoch": 17.48747801323394, + "grad_norm": 0.9244174957275391, + "learning_rate": 4.125963149078727e-05, + "loss": 0.2988929748535156, + "step": 52200 + }, + { + "epoch": 17.520981656755172, + "grad_norm": 0.7938122749328613, + "learning_rate": 4.12428810720268e-05, + "loss": 0.29994075775146484, + "step": 52300 + }, + { + "epoch": 17.554485300276404, + "grad_norm": 0.9149840474128723, + "learning_rate": 4.122629815745394e-05, + "loss": 0.29651493072509766, + "step": 52400 + }, + { + "epoch": 17.587988943797637, + "grad_norm": 0.96629399061203, + "learning_rate": 4.120954773869347e-05, + "loss": 0.30109855651855466, + "step": 52500 + }, + { + "epoch": 17.621492587318873, + "grad_norm": 0.8029501438140869, + "learning_rate": 4.1192797319933e-05, + "loss": 0.3032656478881836, + "step": 52600 + }, + { + "epoch": 17.654996230840105, + "grad_norm": 0.831659734249115, + "learning_rate": 4.1176046901172535e-05, + "loss": 0.2977634048461914, + "step": 52700 + }, + { + "epoch": 17.688499874361337, + "grad_norm": 0.8770350813865662, + "learning_rate": 4.1159296482412063e-05, + "loss": 0.3002130317687988, + "step": 52800 + }, + { + "epoch": 17.72200351788257, + "grad_norm": 0.9197613596916199, + "learning_rate": 4.114254606365159e-05, + "loss": 0.30171897888183596, + "step": 52900 + }, + { + "epoch": 17.755507161403802, + "grad_norm": 0.8716971278190613, + "learning_rate": 4.112579564489112e-05, + "loss": 0.3020934104919434, + "step": 53000 + }, + { + "epoch": 17.789010804925034, + "grad_norm": 0.9348130226135254, + "learning_rate": 4.110904522613066e-05, + "loss": 0.30243810653686526, + "step": 53100 + }, + { + "epoch": 17.82251444844627, + "grad_norm": 1.0112886428833008, + "learning_rate": 4.1092294807370185e-05, + "loss": 0.3036368370056152, + "step": 53200 + }, + { + "epoch": 17.856018091967503, + "grad_norm": 0.9333941340446472, + "learning_rate": 4.1075544388609714e-05, + "loss": 0.30571670532226564, + "step": 53300 + }, + { + "epoch": 17.889521735488735, + "grad_norm": 0.8895190358161926, + "learning_rate": 4.105879396984924e-05, + "loss": 0.3056245040893555, + "step": 53400 + }, + { + "epoch": 17.923025379009967, + "grad_norm": 0.953789472579956, + "learning_rate": 4.104204355108878e-05, + "loss": 0.30313159942626955, + "step": 53500 + }, + { + "epoch": 17.9565290225312, + "grad_norm": 0.8885256052017212, + "learning_rate": 4.102529313232831e-05, + "loss": 0.3018374061584473, + "step": 53600 + }, + { + "epoch": 17.990032666052432, + "grad_norm": 1.043843388557434, + "learning_rate": 4.100854271356784e-05, + "loss": 0.30093835830688476, + "step": 53700 + }, + { + "epoch": 18.023452550464864, + "grad_norm": 0.8944602012634277, + "learning_rate": 4.099179229480737e-05, + "loss": 0.28485956192016604, + "step": 53800 + }, + { + "epoch": 18.056956193986096, + "grad_norm": 0.9355315566062927, + "learning_rate": 4.097504187604691e-05, + "loss": 0.28318214416503906, + "step": 53900 + }, + { + "epoch": 18.09045983750733, + "grad_norm": 0.7996422052383423, + "learning_rate": 4.0958291457286436e-05, + "loss": 0.2806725120544434, + "step": 54000 + }, + { + "epoch": 18.12396348102856, + "grad_norm": 0.9255834817886353, + "learning_rate": 4.0941541038525965e-05, + "loss": 0.2835847473144531, + "step": 54100 + }, + { + "epoch": 18.157467124549793, + "grad_norm": 0.9625722169876099, + "learning_rate": 4.0924790619765494e-05, + "loss": 0.28318588256835936, + "step": 54200 + }, + { + "epoch": 18.19097076807103, + "grad_norm": 0.9195216298103333, + "learning_rate": 4.090804020100503e-05, + "loss": 0.2873989105224609, + "step": 54300 + }, + { + "epoch": 18.22447441159226, + "grad_norm": 0.9396908283233643, + "learning_rate": 4.089145728643216e-05, + "loss": 0.2853095054626465, + "step": 54400 + }, + { + "epoch": 18.257978055113494, + "grad_norm": 0.8911498188972473, + "learning_rate": 4.087470686767169e-05, + "loss": 0.2902779769897461, + "step": 54500 + }, + { + "epoch": 18.291481698634726, + "grad_norm": 0.995733916759491, + "learning_rate": 4.085795644891122e-05, + "loss": 0.28672319412231445, + "step": 54600 + }, + { + "epoch": 18.32498534215596, + "grad_norm": 1.0607621669769287, + "learning_rate": 4.0841206030150755e-05, + "loss": 0.288260498046875, + "step": 54700 + }, + { + "epoch": 18.35848898567719, + "grad_norm": 0.9770358204841614, + "learning_rate": 4.082445561139029e-05, + "loss": 0.2871124267578125, + "step": 54800 + }, + { + "epoch": 18.391992629198427, + "grad_norm": 0.7948865294456482, + "learning_rate": 4.080770519262982e-05, + "loss": 0.2901685333251953, + "step": 54900 + }, + { + "epoch": 18.42549627271966, + "grad_norm": 0.829538106918335, + "learning_rate": 4.079095477386935e-05, + "loss": 0.29097063064575196, + "step": 55000 + }, + { + "epoch": 18.45899991624089, + "grad_norm": 0.972334086894989, + "learning_rate": 4.077420435510888e-05, + "loss": 0.2907312965393066, + "step": 55100 + }, + { + "epoch": 18.492503559762124, + "grad_norm": 1.0088402032852173, + "learning_rate": 4.075745393634841e-05, + "loss": 0.2925748634338379, + "step": 55200 + }, + { + "epoch": 18.526007203283356, + "grad_norm": 1.0144375562667847, + "learning_rate": 4.074070351758794e-05, + "loss": 0.29165184020996093, + "step": 55300 + }, + { + "epoch": 18.55951084680459, + "grad_norm": 0.9276221394538879, + "learning_rate": 4.072395309882747e-05, + "loss": 0.2919579887390137, + "step": 55400 + }, + { + "epoch": 18.593014490325825, + "grad_norm": 0.9088070392608643, + "learning_rate": 4.0707202680067e-05, + "loss": 0.29476572036743165, + "step": 55500 + }, + { + "epoch": 18.626518133847057, + "grad_norm": 0.8358734846115112, + "learning_rate": 4.0690452261306535e-05, + "loss": 0.29323875427246093, + "step": 55600 + }, + { + "epoch": 18.66002177736829, + "grad_norm": 0.9234775304794312, + "learning_rate": 4.0673701842546064e-05, + "loss": 0.295458984375, + "step": 55700 + }, + { + "epoch": 18.69352542088952, + "grad_norm": 1.033413052558899, + "learning_rate": 4.065695142378559e-05, + "loss": 0.29363622665405276, + "step": 55800 + }, + { + "epoch": 18.727029064410754, + "grad_norm": 0.8682520389556885, + "learning_rate": 4.064020100502513e-05, + "loss": 0.2977585220336914, + "step": 55900 + }, + { + "epoch": 18.760532707931986, + "grad_norm": 1.0640672445297241, + "learning_rate": 4.0623450586264664e-05, + "loss": 0.2952461051940918, + "step": 56000 + }, + { + "epoch": 18.794036351453222, + "grad_norm": 0.9460969567298889, + "learning_rate": 4.060670016750419e-05, + "loss": 0.2973412322998047, + "step": 56100 + }, + { + "epoch": 18.827539994974455, + "grad_norm": 0.9299043416976929, + "learning_rate": 4.058994974874372e-05, + "loss": 0.29550174713134764, + "step": 56200 + }, + { + "epoch": 18.861043638495687, + "grad_norm": 1.0823304653167725, + "learning_rate": 4.057319932998325e-05, + "loss": 0.2938914680480957, + "step": 56300 + }, + { + "epoch": 18.89454728201692, + "grad_norm": 0.9436834454536438, + "learning_rate": 4.055661641541039e-05, + "loss": 0.29774511337280274, + "step": 56400 + }, + { + "epoch": 18.92805092553815, + "grad_norm": 0.9670146107673645, + "learning_rate": 4.053986599664992e-05, + "loss": 0.29711448669433593, + "step": 56500 + }, + { + "epoch": 18.961554569059384, + "grad_norm": 0.971251368522644, + "learning_rate": 4.052311557788945e-05, + "loss": 0.29909347534179687, + "step": 56600 + }, + { + "epoch": 18.995058212580616, + "grad_norm": 0.8543409705162048, + "learning_rate": 4.0506365159128976e-05, + "loss": 0.29678007125854494, + "step": 56700 + }, + { + "epoch": 19.028478096993048, + "grad_norm": 0.9036636352539062, + "learning_rate": 4.048961474036851e-05, + "loss": 0.2788318824768066, + "step": 56800 + }, + { + "epoch": 19.06198174051428, + "grad_norm": 1.0365597009658813, + "learning_rate": 4.047286432160804e-05, + "loss": 0.2757110023498535, + "step": 56900 + }, + { + "epoch": 19.095485384035513, + "grad_norm": 0.8653129935264587, + "learning_rate": 4.0456113902847576e-05, + "loss": 0.2768836402893066, + "step": 57000 + }, + { + "epoch": 19.128989027556745, + "grad_norm": 0.8460621237754822, + "learning_rate": 4.0439363484087105e-05, + "loss": 0.2755991363525391, + "step": 57100 + }, + { + "epoch": 19.16249267107798, + "grad_norm": 0.8957028985023499, + "learning_rate": 4.0422613065326634e-05, + "loss": 0.27972606658935545, + "step": 57200 + }, + { + "epoch": 19.195996314599213, + "grad_norm": 0.9295471906661987, + "learning_rate": 4.040586264656617e-05, + "loss": 0.2782594871520996, + "step": 57300 + }, + { + "epoch": 19.229499958120446, + "grad_norm": 0.8899731636047363, + "learning_rate": 4.03891122278057e-05, + "loss": 0.2778139877319336, + "step": 57400 + }, + { + "epoch": 19.263003601641678, + "grad_norm": 0.9683830142021179, + "learning_rate": 4.037236180904523e-05, + "loss": 0.28136295318603516, + "step": 57500 + }, + { + "epoch": 19.29650724516291, + "grad_norm": 0.8920564651489258, + "learning_rate": 4.0355611390284756e-05, + "loss": 0.28040409088134766, + "step": 57600 + }, + { + "epoch": 19.330010888684143, + "grad_norm": 0.9366307854652405, + "learning_rate": 4.033886097152429e-05, + "loss": 0.28461326599121095, + "step": 57700 + }, + { + "epoch": 19.36351453220538, + "grad_norm": 0.9464457035064697, + "learning_rate": 4.032211055276382e-05, + "loss": 0.28297006607055664, + "step": 57800 + }, + { + "epoch": 19.39701817572661, + "grad_norm": 1.0350395441055298, + "learning_rate": 4.030536013400335e-05, + "loss": 0.2860834503173828, + "step": 57900 + }, + { + "epoch": 19.430521819247843, + "grad_norm": 0.8994850516319275, + "learning_rate": 4.028860971524288e-05, + "loss": 0.28455873489379885, + "step": 58000 + }, + { + "epoch": 19.464025462769076, + "grad_norm": 1.0085395574569702, + "learning_rate": 4.0271859296482414e-05, + "loss": 0.28580081939697266, + "step": 58100 + }, + { + "epoch": 19.497529106290308, + "grad_norm": 0.9378731846809387, + "learning_rate": 4.025510887772195e-05, + "loss": 0.28492233276367185, + "step": 58200 + }, + { + "epoch": 19.53103274981154, + "grad_norm": 1.1039483547210693, + "learning_rate": 4.023835845896148e-05, + "loss": 0.28393068313598635, + "step": 58300 + }, + { + "epoch": 19.564536393332776, + "grad_norm": 1.0000792741775513, + "learning_rate": 4.022177554438861e-05, + "loss": 0.28428964614868163, + "step": 58400 + }, + { + "epoch": 19.59804003685401, + "grad_norm": 0.9822189211845398, + "learning_rate": 4.0205025125628146e-05, + "loss": 0.28679338455200193, + "step": 58500 + }, + { + "epoch": 19.63154368037524, + "grad_norm": 1.008216142654419, + "learning_rate": 4.0188274706867675e-05, + "loss": 0.2877239990234375, + "step": 58600 + }, + { + "epoch": 19.665047323896474, + "grad_norm": 0.8709893822669983, + "learning_rate": 4.0171524288107204e-05, + "loss": 0.28736095428466796, + "step": 58700 + }, + { + "epoch": 19.698550967417706, + "grad_norm": 1.0486055612564087, + "learning_rate": 4.015477386934673e-05, + "loss": 0.2875706672668457, + "step": 58800 + }, + { + "epoch": 19.73205461093894, + "grad_norm": 0.9718714952468872, + "learning_rate": 4.013802345058627e-05, + "loss": 0.2887088394165039, + "step": 58900 + }, + { + "epoch": 19.765558254460174, + "grad_norm": 0.9496104717254639, + "learning_rate": 4.01212730318258e-05, + "loss": 0.2863414573669434, + "step": 59000 + }, + { + "epoch": 19.799061897981407, + "grad_norm": 1.0247166156768799, + "learning_rate": 4.0104522613065326e-05, + "loss": 0.287678165435791, + "step": 59100 + }, + { + "epoch": 19.83256554150264, + "grad_norm": 0.9370303153991699, + "learning_rate": 4.008777219430486e-05, + "loss": 0.28977474212646487, + "step": 59200 + }, + { + "epoch": 19.86606918502387, + "grad_norm": 0.8732765316963196, + "learning_rate": 4.007102177554439e-05, + "loss": 0.2899479293823242, + "step": 59300 + }, + { + "epoch": 19.899572828545104, + "grad_norm": 0.9661251306533813, + "learning_rate": 4.0054271356783926e-05, + "loss": 0.28924821853637694, + "step": 59400 + }, + { + "epoch": 19.933076472066336, + "grad_norm": 0.9300135374069214, + "learning_rate": 4.0037520938023455e-05, + "loss": 0.2898877716064453, + "step": 59500 + }, + { + "epoch": 19.96658011558757, + "grad_norm": 1.0985535383224487, + "learning_rate": 4.0020770519262983e-05, + "loss": 0.28800737380981445, + "step": 59600 + }, + { + "epoch": 20.0, + "grad_norm": 1.0769129991531372, + "learning_rate": 4.000402010050251e-05, + "loss": 0.2884260940551758, + "step": 59700 + }, + { + "epoch": 20.033503643521232, + "grad_norm": 0.9619253277778625, + "learning_rate": 3.998726968174205e-05, + "loss": 0.2721578788757324, + "step": 59800 + }, + { + "epoch": 20.067007287042465, + "grad_norm": 0.9351584911346436, + "learning_rate": 3.997051926298158e-05, + "loss": 0.2715591049194336, + "step": 59900 + }, + { + "epoch": 20.100510930563697, + "grad_norm": 0.957760214805603, + "learning_rate": 3.9953768844221106e-05, + "loss": 0.2707101821899414, + "step": 60000 + }, + { + "epoch": 20.134014574084933, + "grad_norm": 0.8414269089698792, + "learning_rate": 3.9937018425460634e-05, + "loss": 0.27344297409057616, + "step": 60100 + }, + { + "epoch": 20.167518217606165, + "grad_norm": 1.0471901893615723, + "learning_rate": 3.992026800670017e-05, + "loss": 0.2716003227233887, + "step": 60200 + }, + { + "epoch": 20.201021861127398, + "grad_norm": 0.9024125933647156, + "learning_rate": 3.99035175879397e-05, + "loss": 0.27117115020751953, + "step": 60300 + }, + { + "epoch": 20.23452550464863, + "grad_norm": 0.8774855136871338, + "learning_rate": 3.988693467336684e-05, + "loss": 0.2748865509033203, + "step": 60400 + }, + { + "epoch": 20.268029148169862, + "grad_norm": 0.9664554595947266, + "learning_rate": 3.987018425460637e-05, + "loss": 0.27406461715698244, + "step": 60500 + }, + { + "epoch": 20.301532791691095, + "grad_norm": 1.035376787185669, + "learning_rate": 3.98534338358459e-05, + "loss": 0.2735789489746094, + "step": 60600 + }, + { + "epoch": 20.33503643521233, + "grad_norm": 0.9546007513999939, + "learning_rate": 3.983668341708543e-05, + "loss": 0.2764925956726074, + "step": 60700 + }, + { + "epoch": 20.368540078733563, + "grad_norm": 1.0165990591049194, + "learning_rate": 3.981993299832496e-05, + "loss": 0.27297565460205075, + "step": 60800 + }, + { + "epoch": 20.402043722254795, + "grad_norm": 0.9471421241760254, + "learning_rate": 3.980318257956449e-05, + "loss": 0.27823368072509763, + "step": 60900 + }, + { + "epoch": 20.435547365776028, + "grad_norm": 0.9725298285484314, + "learning_rate": 3.9786432160804025e-05, + "loss": 0.2764093208312988, + "step": 61000 + }, + { + "epoch": 20.46905100929726, + "grad_norm": 0.8394715189933777, + "learning_rate": 3.976968174204355e-05, + "loss": 0.2772574996948242, + "step": 61100 + }, + { + "epoch": 20.502554652818493, + "grad_norm": 0.8922716975212097, + "learning_rate": 3.975293132328308e-05, + "loss": 0.27750770568847655, + "step": 61200 + }, + { + "epoch": 20.53605829633973, + "grad_norm": 0.9844845533370972, + "learning_rate": 3.973618090452261e-05, + "loss": 0.2779910278320312, + "step": 61300 + }, + { + "epoch": 20.56956193986096, + "grad_norm": 0.8804232478141785, + "learning_rate": 3.971943048576215e-05, + "loss": 0.2776468086242676, + "step": 61400 + }, + { + "epoch": 20.603065583382193, + "grad_norm": 0.9889972805976868, + "learning_rate": 3.970268006700168e-05, + "loss": 0.27890708923339846, + "step": 61500 + }, + { + "epoch": 20.636569226903426, + "grad_norm": 0.980644166469574, + "learning_rate": 3.968592964824121e-05, + "loss": 0.28234588623046875, + "step": 61600 + }, + { + "epoch": 20.670072870424658, + "grad_norm": 0.9484408497810364, + "learning_rate": 3.966917922948074e-05, + "loss": 0.28126981735229495, + "step": 61700 + }, + { + "epoch": 20.70357651394589, + "grad_norm": 1.055678367614746, + "learning_rate": 3.965242881072027e-05, + "loss": 0.2830071067810059, + "step": 61800 + }, + { + "epoch": 20.737080157467126, + "grad_norm": 0.8886085748672485, + "learning_rate": 3.9635678391959804e-05, + "loss": 0.27813196182250977, + "step": 61900 + }, + { + "epoch": 20.77058380098836, + "grad_norm": 1.0629770755767822, + "learning_rate": 3.961892797319933e-05, + "loss": 0.2837041664123535, + "step": 62000 + }, + { + "epoch": 20.80408744450959, + "grad_norm": 0.8154080510139465, + "learning_rate": 3.960217755443886e-05, + "loss": 0.2794221115112305, + "step": 62100 + }, + { + "epoch": 20.837591088030823, + "grad_norm": 0.9643964171409607, + "learning_rate": 3.958542713567839e-05, + "loss": 0.2807983207702637, + "step": 62200 + }, + { + "epoch": 20.871094731552056, + "grad_norm": 1.0410659313201904, + "learning_rate": 3.9568676716917926e-05, + "loss": 0.27797990798950195, + "step": 62300 + }, + { + "epoch": 20.904598375073288, + "grad_norm": 0.9507243633270264, + "learning_rate": 3.955209380234506e-05, + "loss": 0.2836384010314941, + "step": 62400 + }, + { + "epoch": 20.93810201859452, + "grad_norm": 1.0288045406341553, + "learning_rate": 3.953534338358459e-05, + "loss": 0.28449560165405274, + "step": 62500 + }, + { + "epoch": 20.971605662115756, + "grad_norm": 0.9709306359291077, + "learning_rate": 3.951859296482412e-05, + "loss": 0.282686824798584, + "step": 62600 + }, + { + "epoch": 21.005025546528184, + "grad_norm": 0.8715474009513855, + "learning_rate": 3.950184254606365e-05, + "loss": 0.2808470153808594, + "step": 62700 + }, + { + "epoch": 21.038529190049417, + "grad_norm": 0.9847482442855835, + "learning_rate": 3.948509212730319e-05, + "loss": 0.2635519218444824, + "step": 62800 + }, + { + "epoch": 21.07203283357065, + "grad_norm": 0.945732057094574, + "learning_rate": 3.9468341708542717e-05, + "loss": 0.26160152435302736, + "step": 62900 + }, + { + "epoch": 21.105536477091885, + "grad_norm": 0.9310206174850464, + "learning_rate": 3.945175879396985e-05, + "loss": 0.26616928100585935, + "step": 63000 + }, + { + "epoch": 21.139040120613117, + "grad_norm": 0.8321387767791748, + "learning_rate": 3.9435008375209385e-05, + "loss": 0.2665995216369629, + "step": 63100 + }, + { + "epoch": 21.17254376413435, + "grad_norm": 0.9247589707374573, + "learning_rate": 3.9418257956448913e-05, + "loss": 0.2642600440979004, + "step": 63200 + }, + { + "epoch": 21.206047407655582, + "grad_norm": 0.9166206121444702, + "learning_rate": 3.940150753768844e-05, + "loss": 0.2661565208435059, + "step": 63300 + }, + { + "epoch": 21.239551051176814, + "grad_norm": 1.0146381855010986, + "learning_rate": 3.938475711892797e-05, + "loss": 0.26595497131347656, + "step": 63400 + }, + { + "epoch": 21.273054694698047, + "grad_norm": 0.8782115578651428, + "learning_rate": 3.936800670016751e-05, + "loss": 0.2683505821228027, + "step": 63500 + }, + { + "epoch": 21.306558338219283, + "grad_norm": 0.8348855376243591, + "learning_rate": 3.935125628140704e-05, + "loss": 0.27002309799194335, + "step": 63600 + }, + { + "epoch": 21.340061981740515, + "grad_norm": 1.0207946300506592, + "learning_rate": 3.933450586264657e-05, + "loss": 0.2727695083618164, + "step": 63700 + }, + { + "epoch": 21.373565625261747, + "grad_norm": 0.9709821939468384, + "learning_rate": 3.93177554438861e-05, + "loss": 0.2713334655761719, + "step": 63800 + }, + { + "epoch": 21.40706926878298, + "grad_norm": 0.9931967258453369, + "learning_rate": 3.930100502512563e-05, + "loss": 0.2715752029418945, + "step": 63900 + }, + { + "epoch": 21.440572912304212, + "grad_norm": 1.002032995223999, + "learning_rate": 3.9284254606365164e-05, + "loss": 0.27039655685424807, + "step": 64000 + }, + { + "epoch": 21.474076555825445, + "grad_norm": 1.011479377746582, + "learning_rate": 3.926750418760469e-05, + "loss": 0.27180171966552735, + "step": 64100 + }, + { + "epoch": 21.50758019934668, + "grad_norm": 0.8830493092536926, + "learning_rate": 3.925075376884422e-05, + "loss": 0.27189735412597654, + "step": 64200 + }, + { + "epoch": 21.541083842867913, + "grad_norm": 0.957878828048706, + "learning_rate": 3.923400335008375e-05, + "loss": 0.27135616302490234, + "step": 64300 + }, + { + "epoch": 21.574587486389145, + "grad_norm": 0.9988912343978882, + "learning_rate": 3.9217252931323286e-05, + "loss": 0.2725925064086914, + "step": 64400 + }, + { + "epoch": 21.608091129910378, + "grad_norm": 0.9891326427459717, + "learning_rate": 3.9200502512562815e-05, + "loss": 0.27440677642822264, + "step": 64500 + }, + { + "epoch": 21.64159477343161, + "grad_norm": 1.0808324813842773, + "learning_rate": 3.9183752093802344e-05, + "loss": 0.27411041259765623, + "step": 64600 + }, + { + "epoch": 21.675098416952842, + "grad_norm": 0.9373248219490051, + "learning_rate": 3.916700167504187e-05, + "loss": 0.2749940490722656, + "step": 64700 + }, + { + "epoch": 21.708602060474078, + "grad_norm": 1.165182113647461, + "learning_rate": 3.915025125628141e-05, + "loss": 0.27408443450927733, + "step": 64800 + }, + { + "epoch": 21.74210570399531, + "grad_norm": 0.9180405139923096, + "learning_rate": 3.9133500837520944e-05, + "loss": 0.27541778564453123, + "step": 64900 + }, + { + "epoch": 21.775609347516543, + "grad_norm": 1.0415167808532715, + "learning_rate": 3.911675041876047e-05, + "loss": 0.2752027893066406, + "step": 65000 + }, + { + "epoch": 21.809112991037775, + "grad_norm": 0.996279239654541, + "learning_rate": 3.91e-05, + "loss": 0.27856874465942383, + "step": 65100 + }, + { + "epoch": 21.842616634559008, + "grad_norm": 0.8467832207679749, + "learning_rate": 3.908324958123953e-05, + "loss": 0.2744846153259277, + "step": 65200 + }, + { + "epoch": 21.87612027808024, + "grad_norm": 0.9609348177909851, + "learning_rate": 3.9066499162479066e-05, + "loss": 0.27501155853271486, + "step": 65300 + }, + { + "epoch": 21.909623921601476, + "grad_norm": 1.0232717990875244, + "learning_rate": 3.9049748743718595e-05, + "loss": 0.2766411590576172, + "step": 65400 + }, + { + "epoch": 21.94312756512271, + "grad_norm": 0.9764308333396912, + "learning_rate": 3.9032998324958124e-05, + "loss": 0.27579292297363284, + "step": 65500 + }, + { + "epoch": 21.97663120864394, + "grad_norm": 0.8772796392440796, + "learning_rate": 3.901624790619766e-05, + "loss": 0.27892873764038084, + "step": 65600 + }, + { + "epoch": 22.01005109305637, + "grad_norm": 0.9070359468460083, + "learning_rate": 3.899949748743719e-05, + "loss": 0.27117897033691407, + "step": 65700 + }, + { + "epoch": 22.043554736577605, + "grad_norm": 0.9539000988006592, + "learning_rate": 3.898274706867672e-05, + "loss": 0.2588020706176758, + "step": 65800 + }, + { + "epoch": 22.077058380098837, + "grad_norm": 0.7974834442138672, + "learning_rate": 3.8965996649916246e-05, + "loss": 0.2590653610229492, + "step": 65900 + }, + { + "epoch": 22.11056202362007, + "grad_norm": 0.9373714327812195, + "learning_rate": 3.894924623115578e-05, + "loss": 0.25843637466430663, + "step": 66000 + }, + { + "epoch": 22.1440656671413, + "grad_norm": 0.9088506698608398, + "learning_rate": 3.893249581239532e-05, + "loss": 0.2609646987915039, + "step": 66100 + }, + { + "epoch": 22.177569310662534, + "grad_norm": 0.7560039162635803, + "learning_rate": 3.8915745393634846e-05, + "loss": 0.25976266860961916, + "step": 66200 + }, + { + "epoch": 22.211072954183766, + "grad_norm": 1.0187093019485474, + "learning_rate": 3.8898994974874375e-05, + "loss": 0.2626813507080078, + "step": 66300 + }, + { + "epoch": 22.244576597705, + "grad_norm": 0.9864270687103271, + "learning_rate": 3.8882244556113904e-05, + "loss": 0.26082069396972657, + "step": 66400 + }, + { + "epoch": 22.278080241226235, + "grad_norm": 0.9238985776901245, + "learning_rate": 3.886549413735344e-05, + "loss": 0.26303247451782225, + "step": 66500 + }, + { + "epoch": 22.311583884747467, + "grad_norm": 1.06230628490448, + "learning_rate": 3.884874371859297e-05, + "loss": 0.2636404609680176, + "step": 66600 + }, + { + "epoch": 22.3450875282687, + "grad_norm": 0.8938685655593872, + "learning_rate": 3.88319932998325e-05, + "loss": 0.26432344436645505, + "step": 66700 + }, + { + "epoch": 22.37859117178993, + "grad_norm": 0.9398422837257385, + "learning_rate": 3.8815242881072026e-05, + "loss": 0.2664291763305664, + "step": 66800 + }, + { + "epoch": 22.412094815311164, + "grad_norm": 0.9452701210975647, + "learning_rate": 3.879849246231156e-05, + "loss": 0.26500213623046875, + "step": 66900 + }, + { + "epoch": 22.445598458832396, + "grad_norm": 1.0754152536392212, + "learning_rate": 3.8781909547738694e-05, + "loss": 0.266211051940918, + "step": 67000 + }, + { + "epoch": 22.479102102353632, + "grad_norm": 0.966921329498291, + "learning_rate": 3.876515912897823e-05, + "loss": 0.26374603271484376, + "step": 67100 + }, + { + "epoch": 22.512605745874865, + "grad_norm": 0.979242742061615, + "learning_rate": 3.874840871021776e-05, + "loss": 0.266760082244873, + "step": 67200 + }, + { + "epoch": 22.546109389396097, + "grad_norm": 1.169141173362732, + "learning_rate": 3.873165829145729e-05, + "loss": 0.2670201873779297, + "step": 67300 + }, + { + "epoch": 22.57961303291733, + "grad_norm": 0.9599239230155945, + "learning_rate": 3.871490787269682e-05, + "loss": 0.2680745315551758, + "step": 67400 + }, + { + "epoch": 22.613116676438562, + "grad_norm": 1.0141677856445312, + "learning_rate": 3.869815745393635e-05, + "loss": 0.26869884490966794, + "step": 67500 + }, + { + "epoch": 22.646620319959794, + "grad_norm": 0.9633665084838867, + "learning_rate": 3.868140703517588e-05, + "loss": 0.26763187408447264, + "step": 67600 + }, + { + "epoch": 22.68012396348103, + "grad_norm": 1.046339750289917, + "learning_rate": 3.866465661641541e-05, + "loss": 0.271055965423584, + "step": 67700 + }, + { + "epoch": 22.713627607002262, + "grad_norm": 1.0029908418655396, + "learning_rate": 3.8647906197654945e-05, + "loss": 0.26755489349365236, + "step": 67800 + }, + { + "epoch": 22.747131250523495, + "grad_norm": 0.9917793273925781, + "learning_rate": 3.8631155778894473e-05, + "loss": 0.26893938064575196, + "step": 67900 + }, + { + "epoch": 22.780634894044727, + "grad_norm": 0.921280026435852, + "learning_rate": 3.8614405360134e-05, + "loss": 0.26891294479370115, + "step": 68000 + }, + { + "epoch": 22.81413853756596, + "grad_norm": 0.9776479601860046, + "learning_rate": 3.859765494137353e-05, + "loss": 0.2671005058288574, + "step": 68100 + }, + { + "epoch": 22.847642181087192, + "grad_norm": 0.8705649375915527, + "learning_rate": 3.858090452261307e-05, + "loss": 0.2690028762817383, + "step": 68200 + }, + { + "epoch": 22.881145824608428, + "grad_norm": 0.8992595076560974, + "learning_rate": 3.8564154103852595e-05, + "loss": 0.26913272857666015, + "step": 68300 + }, + { + "epoch": 22.91464946812966, + "grad_norm": 0.8897244334220886, + "learning_rate": 3.854740368509213e-05, + "loss": 0.27021236419677735, + "step": 68400 + }, + { + "epoch": 22.948153111650893, + "grad_norm": 0.9646697044372559, + "learning_rate": 3.853065326633166e-05, + "loss": 0.27057441711425784, + "step": 68500 + }, + { + "epoch": 22.981656755172125, + "grad_norm": 0.9705012440681458, + "learning_rate": 3.8513902847571195e-05, + "loss": 0.27003257751464843, + "step": 68600 + }, + { + "epoch": 23.015076639584557, + "grad_norm": 0.9501924514770508, + "learning_rate": 3.8497152428810724e-05, + "loss": 0.2624375915527344, + "step": 68700 + }, + { + "epoch": 23.04858028310579, + "grad_norm": 0.9246262311935425, + "learning_rate": 3.848040201005025e-05, + "loss": 0.2510771560668945, + "step": 68800 + }, + { + "epoch": 23.08208392662702, + "grad_norm": 1.0363575220108032, + "learning_rate": 3.846365159128978e-05, + "loss": 0.2513089370727539, + "step": 68900 + }, + { + "epoch": 23.115587570148254, + "grad_norm": 1.0965619087219238, + "learning_rate": 3.844706867671692e-05, + "loss": 0.2531783103942871, + "step": 69000 + }, + { + "epoch": 23.149091213669486, + "grad_norm": 0.7851601839065552, + "learning_rate": 3.843031825795645e-05, + "loss": 0.25430681228637697, + "step": 69100 + }, + { + "epoch": 23.18259485719072, + "grad_norm": 0.8714056611061096, + "learning_rate": 3.841356783919598e-05, + "loss": 0.2563682746887207, + "step": 69200 + }, + { + "epoch": 23.21609850071195, + "grad_norm": 0.9404228925704956, + "learning_rate": 3.839681742043551e-05, + "loss": 0.25634672164916994, + "step": 69300 + }, + { + "epoch": 23.249602144233187, + "grad_norm": 1.04526948928833, + "learning_rate": 3.838006700167504e-05, + "loss": 0.2558123779296875, + "step": 69400 + }, + { + "epoch": 23.28310578775442, + "grad_norm": 1.0145646333694458, + "learning_rate": 3.836331658291458e-05, + "loss": 0.25761409759521486, + "step": 69500 + }, + { + "epoch": 23.31660943127565, + "grad_norm": 1.0709373950958252, + "learning_rate": 3.834656616415411e-05, + "loss": 0.25936553955078123, + "step": 69600 + }, + { + "epoch": 23.350113074796884, + "grad_norm": 1.0656367540359497, + "learning_rate": 3.8329815745393637e-05, + "loss": 0.25993459701538085, + "step": 69700 + }, + { + "epoch": 23.383616718318116, + "grad_norm": 0.9517690539360046, + "learning_rate": 3.8313065326633165e-05, + "loss": 0.2593793296813965, + "step": 69800 + }, + { + "epoch": 23.41712036183935, + "grad_norm": 0.9651705026626587, + "learning_rate": 3.82963149078727e-05, + "loss": 0.2592854309082031, + "step": 69900 + }, + { + "epoch": 23.450624005360584, + "grad_norm": 0.9077875018119812, + "learning_rate": 3.827956448911223e-05, + "loss": 0.2614713668823242, + "step": 70000 + }, + { + "epoch": 23.484127648881817, + "grad_norm": 0.9982284307479858, + "learning_rate": 3.826281407035176e-05, + "loss": 0.2588504219055176, + "step": 70100 + }, + { + "epoch": 23.51763129240305, + "grad_norm": 0.9539495706558228, + "learning_rate": 3.824606365159129e-05, + "loss": 0.26046722412109374, + "step": 70200 + }, + { + "epoch": 23.55113493592428, + "grad_norm": 1.0776108503341675, + "learning_rate": 3.822931323283082e-05, + "loss": 0.2608753776550293, + "step": 70300 + }, + { + "epoch": 23.584638579445514, + "grad_norm": 1.0306613445281982, + "learning_rate": 3.821256281407035e-05, + "loss": 0.26188905715942384, + "step": 70400 + }, + { + "epoch": 23.618142222966746, + "grad_norm": 0.9900612831115723, + "learning_rate": 3.819581239530988e-05, + "loss": 0.26530147552490235, + "step": 70500 + }, + { + "epoch": 23.651645866487982, + "grad_norm": 1.047272801399231, + "learning_rate": 3.817906197654941e-05, + "loss": 0.26567121505737307, + "step": 70600 + }, + { + "epoch": 23.685149510009214, + "grad_norm": 0.9837287068367004, + "learning_rate": 3.816231155778895e-05, + "loss": 0.2618439865112305, + "step": 70700 + }, + { + "epoch": 23.718653153530447, + "grad_norm": 1.0495308637619019, + "learning_rate": 3.814556113902848e-05, + "loss": 0.2637239646911621, + "step": 70800 + }, + { + "epoch": 23.75215679705168, + "grad_norm": 0.9998559951782227, + "learning_rate": 3.812881072026801e-05, + "loss": 0.2645314788818359, + "step": 70900 + }, + { + "epoch": 23.78566044057291, + "grad_norm": 1.0041533708572388, + "learning_rate": 3.811222780569514e-05, + "loss": 0.26535621643066404, + "step": 71000 + }, + { + "epoch": 23.819164084094144, + "grad_norm": 0.8790546655654907, + "learning_rate": 3.809547738693468e-05, + "loss": 0.26744958877563474, + "step": 71100 + }, + { + "epoch": 23.85266772761538, + "grad_norm": 1.0044236183166504, + "learning_rate": 3.8078726968174206e-05, + "loss": 0.2647633171081543, + "step": 71200 + }, + { + "epoch": 23.886171371136612, + "grad_norm": 0.9612513184547424, + "learning_rate": 3.8061976549413735e-05, + "loss": 0.2649590682983398, + "step": 71300 + }, + { + "epoch": 23.919675014657845, + "grad_norm": 0.8713734745979309, + "learning_rate": 3.8045226130653264e-05, + "loss": 0.266021728515625, + "step": 71400 + }, + { + "epoch": 23.953178658179077, + "grad_norm": 1.0584930181503296, + "learning_rate": 3.80284757118928e-05, + "loss": 0.2661307907104492, + "step": 71500 + }, + { + "epoch": 23.98668230170031, + "grad_norm": 1.003209114074707, + "learning_rate": 3.801172529313233e-05, + "loss": 0.26575571060180664, + "step": 71600 + }, + { + "epoch": 24.02010218611274, + "grad_norm": 1.0001593828201294, + "learning_rate": 3.7994974874371864e-05, + "loss": 0.25387475967407225, + "step": 71700 + }, + { + "epoch": 24.053605829633973, + "grad_norm": 1.0081121921539307, + "learning_rate": 3.797822445561139e-05, + "loss": 0.24931825637817384, + "step": 71800 + }, + { + "epoch": 24.087109473155206, + "grad_norm": 0.969540536403656, + "learning_rate": 3.796147403685092e-05, + "loss": 0.24639154434204102, + "step": 71900 + }, + { + "epoch": 24.120613116676438, + "grad_norm": 0.9975810050964355, + "learning_rate": 3.794472361809046e-05, + "loss": 0.24772171020507813, + "step": 72000 + }, + { + "epoch": 24.15411676019767, + "grad_norm": 1.0242449045181274, + "learning_rate": 3.7927973199329986e-05, + "loss": 0.24881784439086915, + "step": 72100 + }, + { + "epoch": 24.187620403718903, + "grad_norm": 0.9321593642234802, + "learning_rate": 3.7911222780569515e-05, + "loss": 0.250980339050293, + "step": 72200 + }, + { + "epoch": 24.22112404724014, + "grad_norm": 0.8362423181533813, + "learning_rate": 3.7894472361809044e-05, + "loss": 0.2504695320129395, + "step": 72300 + }, + { + "epoch": 24.25462769076137, + "grad_norm": 1.0577383041381836, + "learning_rate": 3.787772194304858e-05, + "loss": 0.25103809356689455, + "step": 72400 + }, + { + "epoch": 24.288131334282603, + "grad_norm": 0.9327830672264099, + "learning_rate": 3.786097152428811e-05, + "loss": 0.2529195785522461, + "step": 72500 + }, + { + "epoch": 24.321634977803836, + "grad_norm": 0.941429078578949, + "learning_rate": 3.784422110552764e-05, + "loss": 0.25365312576293947, + "step": 72600 + }, + { + "epoch": 24.355138621325068, + "grad_norm": 0.9718444347381592, + "learning_rate": 3.7827470686767166e-05, + "loss": 0.25447874069213866, + "step": 72700 + }, + { + "epoch": 24.3886422648463, + "grad_norm": 1.0243566036224365, + "learning_rate": 3.78107202680067e-05, + "loss": 0.2550676727294922, + "step": 72800 + }, + { + "epoch": 24.422145908367536, + "grad_norm": 1.0174282789230347, + "learning_rate": 3.779396984924624e-05, + "loss": 0.25832677841186524, + "step": 72900 + }, + { + "epoch": 24.45564955188877, + "grad_norm": 0.9675871133804321, + "learning_rate": 3.777738693467337e-05, + "loss": 0.2548235511779785, + "step": 73000 + }, + { + "epoch": 24.48915319541, + "grad_norm": 1.095906138420105, + "learning_rate": 3.77606365159129e-05, + "loss": 0.2557443809509277, + "step": 73100 + }, + { + "epoch": 24.522656838931233, + "grad_norm": 0.8963753581047058, + "learning_rate": 3.7743886097152434e-05, + "loss": 0.25586761474609376, + "step": 73200 + }, + { + "epoch": 24.556160482452466, + "grad_norm": 0.8457279801368713, + "learning_rate": 3.772713567839196e-05, + "loss": 0.2581898307800293, + "step": 73300 + }, + { + "epoch": 24.589664125973698, + "grad_norm": 1.0806199312210083, + "learning_rate": 3.771038525963149e-05, + "loss": 0.25776454925537107, + "step": 73400 + }, + { + "epoch": 24.623167769494934, + "grad_norm": 1.117748737335205, + "learning_rate": 3.769363484087102e-05, + "loss": 0.25891387939453125, + "step": 73500 + }, + { + "epoch": 24.656671413016166, + "grad_norm": 1.022865653038025, + "learning_rate": 3.7676884422110556e-05, + "loss": 0.25816925048828127, + "step": 73600 + }, + { + "epoch": 24.6901750565374, + "grad_norm": 1.0696437358856201, + "learning_rate": 3.7660134003350085e-05, + "loss": 0.2563637351989746, + "step": 73700 + }, + { + "epoch": 24.72367870005863, + "grad_norm": 0.9979215860366821, + "learning_rate": 3.7643383584589614e-05, + "loss": 0.25864744186401367, + "step": 73800 + }, + { + "epoch": 24.757182343579863, + "grad_norm": 1.0636203289031982, + "learning_rate": 3.762663316582914e-05, + "loss": 0.25936466217041015, + "step": 73900 + }, + { + "epoch": 24.790685987101096, + "grad_norm": 1.0561468601226807, + "learning_rate": 3.760988274706868e-05, + "loss": 0.2596282005310059, + "step": 74000 + }, + { + "epoch": 24.82418963062233, + "grad_norm": 1.0279403924942017, + "learning_rate": 3.7593132328308214e-05, + "loss": 0.25866455078125, + "step": 74100 + }, + { + "epoch": 24.857693274143564, + "grad_norm": 1.0280523300170898, + "learning_rate": 3.757638190954774e-05, + "loss": 0.2624567985534668, + "step": 74200 + }, + { + "epoch": 24.891196917664796, + "grad_norm": 1.0582387447357178, + "learning_rate": 3.755963149078727e-05, + "loss": 0.26197324752807616, + "step": 74300 + }, + { + "epoch": 24.92470056118603, + "grad_norm": 0.9122918248176575, + "learning_rate": 3.75428810720268e-05, + "loss": 0.25970455169677736, + "step": 74400 + }, + { + "epoch": 24.95820420470726, + "grad_norm": 1.223061442375183, + "learning_rate": 3.7526130653266336e-05, + "loss": 0.2615465927124023, + "step": 74500 + }, + { + "epoch": 24.991707848228494, + "grad_norm": 0.9313095808029175, + "learning_rate": 3.7509380234505865e-05, + "loss": 0.26078268051147463, + "step": 74600 + }, + { + "epoch": 25.025127732640925, + "grad_norm": 0.9277160167694092, + "learning_rate": 3.7492629815745393e-05, + "loss": 0.2467232322692871, + "step": 74700 + }, + { + "epoch": 25.058631376162158, + "grad_norm": 0.8967624306678772, + "learning_rate": 3.747587939698492e-05, + "loss": 0.2427264404296875, + "step": 74800 + }, + { + "epoch": 25.09213501968339, + "grad_norm": 0.9991577863693237, + "learning_rate": 3.745912897822446e-05, + "loss": 0.24398237228393554, + "step": 74900 + }, + { + "epoch": 25.125638663204622, + "grad_norm": 0.9068632125854492, + "learning_rate": 3.74425460636516e-05, + "loss": 0.24407464981079102, + "step": 75000 + }, + { + "epoch": 25.159142306725858, + "grad_norm": 0.9610689878463745, + "learning_rate": 3.7425795644891126e-05, + "loss": 0.2451825523376465, + "step": 75100 + }, + { + "epoch": 25.19264595024709, + "grad_norm": 1.0655577182769775, + "learning_rate": 3.7409045226130655e-05, + "loss": 0.24775781631469726, + "step": 75200 + }, + { + "epoch": 25.226149593768323, + "grad_norm": 0.9166316390037537, + "learning_rate": 3.739229480737019e-05, + "loss": 0.24586162567138672, + "step": 75300 + }, + { + "epoch": 25.259653237289555, + "grad_norm": 1.0330859422683716, + "learning_rate": 3.737554438860972e-05, + "loss": 0.2476130485534668, + "step": 75400 + }, + { + "epoch": 25.293156880810788, + "grad_norm": 0.9790452122688293, + "learning_rate": 3.735879396984925e-05, + "loss": 0.24896875381469727, + "step": 75500 + }, + { + "epoch": 25.32666052433202, + "grad_norm": 0.9078829288482666, + "learning_rate": 3.734204355108878e-05, + "loss": 0.25146854400634766, + "step": 75600 + }, + { + "epoch": 25.360164167853252, + "grad_norm": 1.0172176361083984, + "learning_rate": 3.732529313232831e-05, + "loss": 0.24892644882202147, + "step": 75700 + }, + { + "epoch": 25.39366781137449, + "grad_norm": 0.8392038941383362, + "learning_rate": 3.730854271356784e-05, + "loss": 0.2486979866027832, + "step": 75800 + }, + { + "epoch": 25.42717145489572, + "grad_norm": 1.120992660522461, + "learning_rate": 3.729179229480737e-05, + "loss": 0.2500802612304687, + "step": 75900 + }, + { + "epoch": 25.460675098416953, + "grad_norm": 0.9740986227989197, + "learning_rate": 3.727520938023451e-05, + "loss": 0.2497385025024414, + "step": 76000 + }, + { + "epoch": 25.494178741938185, + "grad_norm": 1.1447396278381348, + "learning_rate": 3.725845896147404e-05, + "loss": 0.2524580001831055, + "step": 76100 + }, + { + "epoch": 25.527682385459418, + "grad_norm": 0.8573219776153564, + "learning_rate": 3.7241708542713574e-05, + "loss": 0.2522186470031738, + "step": 76200 + }, + { + "epoch": 25.56118602898065, + "grad_norm": 1.0129204988479614, + "learning_rate": 3.72249581239531e-05, + "loss": 0.2548684501647949, + "step": 76300 + }, + { + "epoch": 25.594689672501886, + "grad_norm": 0.9877455830574036, + "learning_rate": 3.720820770519263e-05, + "loss": 0.2520929527282715, + "step": 76400 + }, + { + "epoch": 25.62819331602312, + "grad_norm": 0.9686979651451111, + "learning_rate": 3.719145728643216e-05, + "loss": 0.25263065338134766, + "step": 76500 + }, + { + "epoch": 25.66169695954435, + "grad_norm": 0.9908387660980225, + "learning_rate": 3.7174706867671696e-05, + "loss": 0.25347740173339844, + "step": 76600 + }, + { + "epoch": 25.695200603065583, + "grad_norm": 1.006608009338379, + "learning_rate": 3.7157956448911225e-05, + "loss": 0.2546247863769531, + "step": 76700 + }, + { + "epoch": 25.728704246586815, + "grad_norm": 1.003769874572754, + "learning_rate": 3.7141206030150754e-05, + "loss": 0.253816089630127, + "step": 76800 + }, + { + "epoch": 25.762207890108048, + "grad_norm": 1.0374062061309814, + "learning_rate": 3.712445561139028e-05, + "loss": 0.25663318634033205, + "step": 76900 + }, + { + "epoch": 25.795711533629284, + "grad_norm": 1.0362064838409424, + "learning_rate": 3.710770519262982e-05, + "loss": 0.2567397880554199, + "step": 77000 + }, + { + "epoch": 25.829215177150516, + "grad_norm": 1.0892760753631592, + "learning_rate": 3.709095477386935e-05, + "loss": 0.25798879623413085, + "step": 77100 + }, + { + "epoch": 25.86271882067175, + "grad_norm": 1.049902081489563, + "learning_rate": 3.7074204355108876e-05, + "loss": 0.25775598526000976, + "step": 77200 + }, + { + "epoch": 25.89622246419298, + "grad_norm": 0.8818158507347107, + "learning_rate": 3.705745393634841e-05, + "loss": 0.2554671287536621, + "step": 77300 + }, + { + "epoch": 25.929726107714213, + "grad_norm": 1.0922232866287231, + "learning_rate": 3.704070351758795e-05, + "loss": 0.25704565048217776, + "step": 77400 + }, + { + "epoch": 25.963229751235446, + "grad_norm": 0.9811676144599915, + "learning_rate": 3.7023953098827476e-05, + "loss": 0.25583274841308595, + "step": 77500 + }, + { + "epoch": 25.99673339475668, + "grad_norm": 1.044572353363037, + "learning_rate": 3.7007202680067004e-05, + "loss": 0.25744909286499024, + "step": 77600 + }, + { + "epoch": 26.03015327916911, + "grad_norm": 0.790084958076477, + "learning_rate": 3.699045226130653e-05, + "loss": 0.23935884475708008, + "step": 77700 + }, + { + "epoch": 26.063656922690342, + "grad_norm": 0.9131903052330017, + "learning_rate": 3.697370184254607e-05, + "loss": 0.2395966339111328, + "step": 77800 + }, + { + "epoch": 26.097160566211574, + "grad_norm": 1.0206575393676758, + "learning_rate": 3.69569514237856e-05, + "loss": 0.23894302368164064, + "step": 77900 + }, + { + "epoch": 26.13066420973281, + "grad_norm": 0.9167901873588562, + "learning_rate": 3.6940201005025127e-05, + "loss": 0.24095657348632812, + "step": 78000 + }, + { + "epoch": 26.164167853254042, + "grad_norm": 0.9756499528884888, + "learning_rate": 3.6923450586264655e-05, + "loss": 0.24229476928710938, + "step": 78100 + }, + { + "epoch": 26.197671496775275, + "grad_norm": 1.1261674165725708, + "learning_rate": 3.690670016750419e-05, + "loss": 0.24467144012451172, + "step": 78200 + }, + { + "epoch": 26.231175140296507, + "grad_norm": 0.8712000846862793, + "learning_rate": 3.688994974874372e-05, + "loss": 0.2426918601989746, + "step": 78300 + }, + { + "epoch": 26.26467878381774, + "grad_norm": 0.9853079915046692, + "learning_rate": 3.687319932998325e-05, + "loss": 0.2432308578491211, + "step": 78400 + }, + { + "epoch": 26.298182427338972, + "grad_norm": 0.9844798445701599, + "learning_rate": 3.6856448911222784e-05, + "loss": 0.24566902160644533, + "step": 78500 + }, + { + "epoch": 26.331686070860208, + "grad_norm": 0.991397500038147, + "learning_rate": 3.683969849246231e-05, + "loss": 0.24585660934448242, + "step": 78600 + }, + { + "epoch": 26.36518971438144, + "grad_norm": 0.9551209211349487, + "learning_rate": 3.682294807370185e-05, + "loss": 0.24546436309814454, + "step": 78700 + }, + { + "epoch": 26.398693357902673, + "grad_norm": 1.0218653678894043, + "learning_rate": 3.680619765494138e-05, + "loss": 0.2468564987182617, + "step": 78800 + }, + { + "epoch": 26.432197001423905, + "grad_norm": 0.879303514957428, + "learning_rate": 3.6789447236180906e-05, + "loss": 0.24688074111938477, + "step": 78900 + }, + { + "epoch": 26.465700644945137, + "grad_norm": 0.9550554156303406, + "learning_rate": 3.6772696817420435e-05, + "loss": 0.24929559707641602, + "step": 79000 + }, + { + "epoch": 26.49920428846637, + "grad_norm": 1.092371940612793, + "learning_rate": 3.675594639865997e-05, + "loss": 0.2490665817260742, + "step": 79100 + }, + { + "epoch": 26.532707931987602, + "grad_norm": 0.9425039887428284, + "learning_rate": 3.67391959798995e-05, + "loss": 0.24648136138916016, + "step": 79200 + }, + { + "epoch": 26.566211575508838, + "grad_norm": 0.9212557077407837, + "learning_rate": 3.672244556113903e-05, + "loss": 0.24588151931762695, + "step": 79300 + }, + { + "epoch": 26.59971521903007, + "grad_norm": 1.0376055240631104, + "learning_rate": 3.670569514237856e-05, + "loss": 0.24943052291870116, + "step": 79400 + }, + { + "epoch": 26.633218862551303, + "grad_norm": 0.9473478198051453, + "learning_rate": 3.668894472361809e-05, + "loss": 0.24888269424438478, + "step": 79500 + }, + { + "epoch": 26.666722506072535, + "grad_norm": 1.052951455116272, + "learning_rate": 3.667219430485762e-05, + "loss": 0.24891986846923828, + "step": 79600 + }, + { + "epoch": 26.700226149593767, + "grad_norm": 1.1100990772247314, + "learning_rate": 3.665544388609715e-05, + "loss": 0.2513142776489258, + "step": 79700 + }, + { + "epoch": 26.733729793115, + "grad_norm": 0.9589593410491943, + "learning_rate": 3.6638693467336686e-05, + "loss": 0.24993154525756836, + "step": 79800 + }, + { + "epoch": 26.767233436636236, + "grad_norm": 0.9308981895446777, + "learning_rate": 3.662194304857622e-05, + "loss": 0.2495902442932129, + "step": 79900 + }, + { + "epoch": 26.800737080157468, + "grad_norm": 1.0080679655075073, + "learning_rate": 3.6605360134003354e-05, + "loss": 0.25091459274291994, + "step": 80000 + }, + { + "epoch": 26.8342407236787, + "grad_norm": 0.965578556060791, + "learning_rate": 3.658860971524288e-05, + "loss": 0.2524791526794434, + "step": 80100 + }, + { + "epoch": 26.867744367199933, + "grad_norm": 1.0109574794769287, + "learning_rate": 3.657185929648241e-05, + "loss": 0.2515005111694336, + "step": 80200 + }, + { + "epoch": 26.901248010721165, + "grad_norm": 1.0662031173706055, + "learning_rate": 3.655510887772195e-05, + "loss": 0.25569900512695315, + "step": 80300 + }, + { + "epoch": 26.934751654242397, + "grad_norm": 1.0011720657348633, + "learning_rate": 3.6538358458961476e-05, + "loss": 0.25127042770385744, + "step": 80400 + }, + { + "epoch": 26.968255297763633, + "grad_norm": 1.0007758140563965, + "learning_rate": 3.6521608040201005e-05, + "loss": 0.25374698638916016, + "step": 80500 + }, + { + "epoch": 27.00167518217606, + "grad_norm": 0.8360596895217896, + "learning_rate": 3.6504857621440534e-05, + "loss": 0.2519091033935547, + "step": 80600 + }, + { + "epoch": 27.035178825697294, + "grad_norm": 0.772354781627655, + "learning_rate": 3.648810720268007e-05, + "loss": 0.2350589370727539, + "step": 80700 + }, + { + "epoch": 27.068682469218526, + "grad_norm": 0.9291853904724121, + "learning_rate": 3.6471356783919605e-05, + "loss": 0.23687738418579102, + "step": 80800 + }, + { + "epoch": 27.102186112739762, + "grad_norm": 0.8280290365219116, + "learning_rate": 3.6454606365159134e-05, + "loss": 0.23724706649780272, + "step": 80900 + }, + { + "epoch": 27.135689756260994, + "grad_norm": 1.0114185810089111, + "learning_rate": 3.643785594639866e-05, + "loss": 0.2386191940307617, + "step": 81000 + }, + { + "epoch": 27.169193399782227, + "grad_norm": 0.8960608839988708, + "learning_rate": 3.642110552763819e-05, + "loss": 0.23746776580810547, + "step": 81100 + }, + { + "epoch": 27.20269704330346, + "grad_norm": 0.9211316704750061, + "learning_rate": 3.640435510887773e-05, + "loss": 0.24118051528930665, + "step": 81200 + }, + { + "epoch": 27.23620068682469, + "grad_norm": 0.9914082884788513, + "learning_rate": 3.6387604690117256e-05, + "loss": 0.2407957649230957, + "step": 81300 + }, + { + "epoch": 27.269704330345924, + "grad_norm": 0.8905548453330994, + "learning_rate": 3.6370854271356785e-05, + "loss": 0.23928272247314453, + "step": 81400 + }, + { + "epoch": 27.30320797386716, + "grad_norm": 0.8846296072006226, + "learning_rate": 3.635427135678392e-05, + "loss": 0.24042049407958985, + "step": 81500 + }, + { + "epoch": 27.336711617388392, + "grad_norm": 0.9076329469680786, + "learning_rate": 3.633752093802345e-05, + "loss": 0.24250953674316406, + "step": 81600 + }, + { + "epoch": 27.370215260909625, + "grad_norm": 1.1054998636245728, + "learning_rate": 3.632077051926298e-05, + "loss": 0.2428689956665039, + "step": 81700 + }, + { + "epoch": 27.403718904430857, + "grad_norm": 0.9182295799255371, + "learning_rate": 3.630402010050251e-05, + "loss": 0.24241937637329103, + "step": 81800 + }, + { + "epoch": 27.43722254795209, + "grad_norm": 1.0540192127227783, + "learning_rate": 3.6287269681742046e-05, + "loss": 0.24241340637207032, + "step": 81900 + }, + { + "epoch": 27.47072619147332, + "grad_norm": 0.9639661312103271, + "learning_rate": 3.6270519262981575e-05, + "loss": 0.24282842636108398, + "step": 82000 + }, + { + "epoch": 27.504229834994554, + "grad_norm": 0.8837372064590454, + "learning_rate": 3.625376884422111e-05, + "loss": 0.24227666854858398, + "step": 82100 + }, + { + "epoch": 27.53773347851579, + "grad_norm": 0.8825430274009705, + "learning_rate": 3.623701842546064e-05, + "loss": 0.24317176818847655, + "step": 82200 + }, + { + "epoch": 27.571237122037022, + "grad_norm": 1.0860276222229004, + "learning_rate": 3.622026800670017e-05, + "loss": 0.2448468780517578, + "step": 82300 + }, + { + "epoch": 27.604740765558255, + "grad_norm": 1.0138317346572876, + "learning_rate": 3.6203517587939704e-05, + "loss": 0.24316675186157227, + "step": 82400 + }, + { + "epoch": 27.638244409079487, + "grad_norm": 1.0941250324249268, + "learning_rate": 3.618676716917923e-05, + "loss": 0.2473929786682129, + "step": 82500 + }, + { + "epoch": 27.67174805260072, + "grad_norm": 0.8989108800888062, + "learning_rate": 3.617001675041876e-05, + "loss": 0.247222900390625, + "step": 82600 + }, + { + "epoch": 27.70525169612195, + "grad_norm": 1.0026638507843018, + "learning_rate": 3.615326633165829e-05, + "loss": 0.24576572418212891, + "step": 82700 + }, + { + "epoch": 27.738755339643188, + "grad_norm": 1.0626496076583862, + "learning_rate": 3.6136515912897826e-05, + "loss": 0.2481866455078125, + "step": 82800 + }, + { + "epoch": 27.77225898316442, + "grad_norm": 0.8049838542938232, + "learning_rate": 3.6119765494137355e-05, + "loss": 0.24766799926757813, + "step": 82900 + }, + { + "epoch": 27.805762626685652, + "grad_norm": 1.0565505027770996, + "learning_rate": 3.6103015075376883e-05, + "loss": 0.24823820114135742, + "step": 83000 + }, + { + "epoch": 27.839266270206885, + "grad_norm": 1.0819406509399414, + "learning_rate": 3.608626465661642e-05, + "loss": 0.24928997039794923, + "step": 83100 + }, + { + "epoch": 27.872769913728117, + "grad_norm": 1.014066457748413, + "learning_rate": 3.606951423785595e-05, + "loss": 0.24671865463256837, + "step": 83200 + }, + { + "epoch": 27.90627355724935, + "grad_norm": 1.002631425857544, + "learning_rate": 3.6052763819095483e-05, + "loss": 0.24837955474853515, + "step": 83300 + }, + { + "epoch": 27.939777200770585, + "grad_norm": 1.0699118375778198, + "learning_rate": 3.603601340033501e-05, + "loss": 0.25022062301635745, + "step": 83400 + }, + { + "epoch": 27.973280844291818, + "grad_norm": 0.9003764986991882, + "learning_rate": 3.601926298157454e-05, + "loss": 0.24779138565063477, + "step": 83500 + }, + { + "epoch": 28.006700728704246, + "grad_norm": 0.7831597924232483, + "learning_rate": 3.600251256281407e-05, + "loss": 0.24304958343505859, + "step": 83600 + }, + { + "epoch": 28.040204372225478, + "grad_norm": 0.8876057267189026, + "learning_rate": 3.5985762144053605e-05, + "loss": 0.23251798629760742, + "step": 83700 + }, + { + "epoch": 28.073708015746714, + "grad_norm": 0.8161166906356812, + "learning_rate": 3.5969011725293134e-05, + "loss": 0.23175537109375, + "step": 83800 + }, + { + "epoch": 28.107211659267946, + "grad_norm": 1.0348833799362183, + "learning_rate": 3.595226130653266e-05, + "loss": 0.23300014495849608, + "step": 83900 + }, + { + "epoch": 28.14071530278918, + "grad_norm": 0.9496212601661682, + "learning_rate": 3.5935678391959796e-05, + "loss": 0.23465946197509766, + "step": 84000 + }, + { + "epoch": 28.17421894631041, + "grad_norm": 0.8523275256156921, + "learning_rate": 3.591892797319933e-05, + "loss": 0.23583173751831055, + "step": 84100 + }, + { + "epoch": 28.207722589831643, + "grad_norm": 0.9591325521469116, + "learning_rate": 3.590217755443887e-05, + "loss": 0.2353810691833496, + "step": 84200 + }, + { + "epoch": 28.241226233352876, + "grad_norm": 0.876011312007904, + "learning_rate": 3.5885427135678396e-05, + "loss": 0.23749792098999023, + "step": 84300 + }, + { + "epoch": 28.27472987687411, + "grad_norm": 0.9948890209197998, + "learning_rate": 3.5868676716917924e-05, + "loss": 0.23812158584594725, + "step": 84400 + }, + { + "epoch": 28.308233520395344, + "grad_norm": 0.99249267578125, + "learning_rate": 3.585192629815745e-05, + "loss": 0.23765924453735351, + "step": 84500 + }, + { + "epoch": 28.341737163916576, + "grad_norm": 0.8422896265983582, + "learning_rate": 3.583517587939699e-05, + "loss": 0.2388518714904785, + "step": 84600 + }, + { + "epoch": 28.37524080743781, + "grad_norm": 1.0225242376327515, + "learning_rate": 3.581842546063652e-05, + "loss": 0.2379816436767578, + "step": 84700 + }, + { + "epoch": 28.40874445095904, + "grad_norm": 0.9493758082389832, + "learning_rate": 3.5801675041876047e-05, + "loss": 0.23900142669677735, + "step": 84800 + }, + { + "epoch": 28.442248094480274, + "grad_norm": 1.0754547119140625, + "learning_rate": 3.578492462311558e-05, + "loss": 0.2420096778869629, + "step": 84900 + }, + { + "epoch": 28.475751738001506, + "grad_norm": 1.1404248476028442, + "learning_rate": 3.576817420435511e-05, + "loss": 0.2387169647216797, + "step": 85000 + }, + { + "epoch": 28.509255381522742, + "grad_norm": 1.0831667184829712, + "learning_rate": 3.575142378559464e-05, + "loss": 0.23977863311767578, + "step": 85100 + }, + { + "epoch": 28.542759025043974, + "grad_norm": 0.9713730812072754, + "learning_rate": 3.573467336683417e-05, + "loss": 0.24276636123657228, + "step": 85200 + }, + { + "epoch": 28.576262668565207, + "grad_norm": 0.8892617225646973, + "learning_rate": 3.5717922948073704e-05, + "loss": 0.24079540252685547, + "step": 85300 + }, + { + "epoch": 28.60976631208644, + "grad_norm": 0.90485680103302, + "learning_rate": 3.570117252931324e-05, + "loss": 0.23991119384765625, + "step": 85400 + }, + { + "epoch": 28.64326995560767, + "grad_norm": 0.8535875678062439, + "learning_rate": 3.568442211055277e-05, + "loss": 0.24252616882324218, + "step": 85500 + }, + { + "epoch": 28.676773599128904, + "grad_norm": 1.1108918190002441, + "learning_rate": 3.56676716917923e-05, + "loss": 0.24145748138427733, + "step": 85600 + }, + { + "epoch": 28.71027724265014, + "grad_norm": 1.0389022827148438, + "learning_rate": 3.5650921273031826e-05, + "loss": 0.24423345565795898, + "step": 85700 + }, + { + "epoch": 28.743780886171372, + "grad_norm": 1.0552116632461548, + "learning_rate": 3.563417085427136e-05, + "loss": 0.24410188674926758, + "step": 85800 + }, + { + "epoch": 28.777284529692604, + "grad_norm": 0.9229023456573486, + "learning_rate": 3.561742043551089e-05, + "loss": 0.24257204055786133, + "step": 85900 + }, + { + "epoch": 28.810788173213837, + "grad_norm": 1.0788532495498657, + "learning_rate": 3.560067001675042e-05, + "loss": 0.24557861328125, + "step": 86000 + }, + { + "epoch": 28.84429181673507, + "grad_norm": 0.8226192593574524, + "learning_rate": 3.558391959798995e-05, + "loss": 0.24487424850463868, + "step": 86100 + }, + { + "epoch": 28.8777954602563, + "grad_norm": 0.9678732752799988, + "learning_rate": 3.5567169179229484e-05, + "loss": 0.24371047973632812, + "step": 86200 + }, + { + "epoch": 28.911299103777537, + "grad_norm": 0.9942400455474854, + "learning_rate": 3.555041876046901e-05, + "loss": 0.24467437744140624, + "step": 86300 + }, + { + "epoch": 28.94480274729877, + "grad_norm": 1.050825595855713, + "learning_rate": 3.553366834170854e-05, + "loss": 0.2451385498046875, + "step": 86400 + }, + { + "epoch": 28.978306390820002, + "grad_norm": 0.9947119951248169, + "learning_rate": 3.551691792294807e-05, + "loss": 0.24689924240112304, + "step": 86500 + }, + { + "epoch": 29.01172627523243, + "grad_norm": 0.7659996151924133, + "learning_rate": 3.5500167504187606e-05, + "loss": 0.23850542068481445, + "step": 86600 + }, + { + "epoch": 29.045229918753666, + "grad_norm": 0.7991949915885925, + "learning_rate": 3.548341708542714e-05, + "loss": 0.23052330017089845, + "step": 86700 + }, + { + "epoch": 29.0787335622749, + "grad_norm": 0.9375367760658264, + "learning_rate": 3.546666666666667e-05, + "loss": 0.228839168548584, + "step": 86800 + }, + { + "epoch": 29.11223720579613, + "grad_norm": 1.0139492750167847, + "learning_rate": 3.54499162479062e-05, + "loss": 0.2321438217163086, + "step": 86900 + }, + { + "epoch": 29.145740849317363, + "grad_norm": 0.8823564648628235, + "learning_rate": 3.543316582914573e-05, + "loss": 0.23002294540405274, + "step": 87000 + }, + { + "epoch": 29.179244492838595, + "grad_norm": 0.8460071086883545, + "learning_rate": 3.5416415410385264e-05, + "loss": 0.23179996490478516, + "step": 87100 + }, + { + "epoch": 29.212748136359828, + "grad_norm": 0.9480848908424377, + "learning_rate": 3.539966499162479e-05, + "loss": 0.23330198287963866, + "step": 87200 + }, + { + "epoch": 29.246251779881064, + "grad_norm": 0.9003339409828186, + "learning_rate": 3.538291457286432e-05, + "loss": 0.2348067855834961, + "step": 87300 + }, + { + "epoch": 29.279755423402296, + "grad_norm": 0.9011369943618774, + "learning_rate": 3.536616415410386e-05, + "loss": 0.23475120544433595, + "step": 87400 + }, + { + "epoch": 29.31325906692353, + "grad_norm": 1.102575421333313, + "learning_rate": 3.5349413735343386e-05, + "loss": 0.23566722869873047, + "step": 87500 + }, + { + "epoch": 29.34676271044476, + "grad_norm": 1.0036569833755493, + "learning_rate": 3.5332663316582915e-05, + "loss": 0.2358757209777832, + "step": 87600 + }, + { + "epoch": 29.380266353965993, + "grad_norm": 0.9289223551750183, + "learning_rate": 3.531591289782244e-05, + "loss": 0.23525848388671874, + "step": 87700 + }, + { + "epoch": 29.413769997487226, + "grad_norm": 0.9896803498268127, + "learning_rate": 3.529916247906198e-05, + "loss": 0.23644231796264648, + "step": 87800 + }, + { + "epoch": 29.447273641008458, + "grad_norm": 0.9522982239723206, + "learning_rate": 3.5282412060301515e-05, + "loss": 0.23636116027832033, + "step": 87900 + }, + { + "epoch": 29.480777284529694, + "grad_norm": 0.9571079611778259, + "learning_rate": 3.526582914572865e-05, + "loss": 0.23850887298583984, + "step": 88000 + }, + { + "epoch": 29.514280928050926, + "grad_norm": 1.0205976963043213, + "learning_rate": 3.5249078726968176e-05, + "loss": 0.23928991317749024, + "step": 88100 + }, + { + "epoch": 29.54778457157216, + "grad_norm": 1.0385000705718994, + "learning_rate": 3.5232328308207705e-05, + "loss": 0.2364453125, + "step": 88200 + }, + { + "epoch": 29.58128821509339, + "grad_norm": 0.8799936771392822, + "learning_rate": 3.521557788944724e-05, + "loss": 0.2379269027709961, + "step": 88300 + }, + { + "epoch": 29.614791858614623, + "grad_norm": 1.0788037776947021, + "learning_rate": 3.519882747068677e-05, + "loss": 0.23958860397338866, + "step": 88400 + }, + { + "epoch": 29.648295502135856, + "grad_norm": 0.8725781440734863, + "learning_rate": 3.51820770519263e-05, + "loss": 0.23952722549438477, + "step": 88500 + }, + { + "epoch": 29.68179914565709, + "grad_norm": 1.0508238077163696, + "learning_rate": 3.516532663316583e-05, + "loss": 0.2397722053527832, + "step": 88600 + }, + { + "epoch": 29.715302789178324, + "grad_norm": 1.098661184310913, + "learning_rate": 3.514857621440536e-05, + "loss": 0.2380986213684082, + "step": 88700 + }, + { + "epoch": 29.748806432699556, + "grad_norm": 1.1082944869995117, + "learning_rate": 3.513182579564489e-05, + "loss": 0.2417365074157715, + "step": 88800 + }, + { + "epoch": 29.78231007622079, + "grad_norm": 0.9109951853752136, + "learning_rate": 3.511507537688443e-05, + "loss": 0.23964044570922852, + "step": 88900 + }, + { + "epoch": 29.81581371974202, + "grad_norm": 1.106863021850586, + "learning_rate": 3.5098324958123956e-05, + "loss": 0.24028875350952147, + "step": 89000 + }, + { + "epoch": 29.849317363263253, + "grad_norm": 0.9252721667289734, + "learning_rate": 3.5081574539363484e-05, + "loss": 0.24027196884155275, + "step": 89100 + }, + { + "epoch": 29.88282100678449, + "grad_norm": 1.18505859375, + "learning_rate": 3.506482412060302e-05, + "loss": 0.2418280601501465, + "step": 89200 + }, + { + "epoch": 29.91632465030572, + "grad_norm": 0.956193745136261, + "learning_rate": 3.504807370184255e-05, + "loss": 0.24323488235473634, + "step": 89300 + }, + { + "epoch": 29.949828293826954, + "grad_norm": 0.9459329843521118, + "learning_rate": 3.503132328308208e-05, + "loss": 0.24398193359375, + "step": 89400 + }, + { + "epoch": 29.983331937348186, + "grad_norm": 0.9862803816795349, + "learning_rate": 3.5014572864321607e-05, + "loss": 0.2418046760559082, + "step": 89500 + }, + { + "epoch": 30.016751821760618, + "grad_norm": 0.9011918902397156, + "learning_rate": 3.499782244556114e-05, + "loss": 0.23376155853271485, + "step": 89600 + }, + { + "epoch": 30.05025546528185, + "grad_norm": 0.9960854649543762, + "learning_rate": 3.498107202680067e-05, + "loss": 0.22885730743408203, + "step": 89700 + }, + { + "epoch": 30.083759108803083, + "grad_norm": 0.953056275844574, + "learning_rate": 3.49643216080402e-05, + "loss": 0.22713994979858398, + "step": 89800 + }, + { + "epoch": 30.117262752324315, + "grad_norm": 0.8877431154251099, + "learning_rate": 3.494757118927973e-05, + "loss": 0.22972366333007813, + "step": 89900 + }, + { + "epoch": 30.150766395845547, + "grad_norm": 0.9188148379325867, + "learning_rate": 3.493115577889448e-05, + "loss": 0.22967748641967772, + "step": 90000 + }, + { + "epoch": 30.18427003936678, + "grad_norm": 0.8880020380020142, + "learning_rate": 3.491440536013401e-05, + "loss": 0.22878494262695312, + "step": 90100 + }, + { + "epoch": 30.217773682888016, + "grad_norm": 0.9602766036987305, + "learning_rate": 3.4897654941373536e-05, + "loss": 0.23181842803955077, + "step": 90200 + }, + { + "epoch": 30.251277326409248, + "grad_norm": 0.8411327600479126, + "learning_rate": 3.4880904522613065e-05, + "loss": 0.23128870010375976, + "step": 90300 + }, + { + "epoch": 30.28478096993048, + "grad_norm": 0.9455945491790771, + "learning_rate": 3.48641541038526e-05, + "loss": 0.22971813201904298, + "step": 90400 + }, + { + "epoch": 30.318284613451713, + "grad_norm": 1.0151312351226807, + "learning_rate": 3.484740368509213e-05, + "loss": 0.2330830955505371, + "step": 90500 + }, + { + "epoch": 30.351788256972945, + "grad_norm": 0.9535360932350159, + "learning_rate": 3.483065326633166e-05, + "loss": 0.2313951873779297, + "step": 90600 + }, + { + "epoch": 30.385291900494177, + "grad_norm": 1.0460865497589111, + "learning_rate": 3.481390284757119e-05, + "loss": 0.23312372207641602, + "step": 90700 + }, + { + "epoch": 30.418795544015413, + "grad_norm": 0.9364484548568726, + "learning_rate": 3.479715242881072e-05, + "loss": 0.2326444625854492, + "step": 90800 + }, + { + "epoch": 30.452299187536646, + "grad_norm": 1.133334994316101, + "learning_rate": 3.478040201005025e-05, + "loss": 0.23389068603515625, + "step": 90900 + }, + { + "epoch": 30.485802831057878, + "grad_norm": 0.9046189188957214, + "learning_rate": 3.476365159128979e-05, + "loss": 0.23185604095458984, + "step": 91000 + }, + { + "epoch": 30.51930647457911, + "grad_norm": 0.7889045476913452, + "learning_rate": 3.4746901172529316e-05, + "loss": 0.23226310729980468, + "step": 91100 + }, + { + "epoch": 30.552810118100343, + "grad_norm": 0.8806297183036804, + "learning_rate": 3.4730150753768845e-05, + "loss": 0.23628852844238282, + "step": 91200 + }, + { + "epoch": 30.586313761621575, + "grad_norm": 0.8764693737030029, + "learning_rate": 3.471340033500838e-05, + "loss": 0.23575132369995117, + "step": 91300 + }, + { + "epoch": 30.619817405142808, + "grad_norm": 0.8656399846076965, + "learning_rate": 3.469664991624791e-05, + "loss": 0.23674060821533202, + "step": 91400 + }, + { + "epoch": 30.653321048664044, + "grad_norm": 1.0599033832550049, + "learning_rate": 3.467989949748744e-05, + "loss": 0.23605079650878907, + "step": 91500 + }, + { + "epoch": 30.686824692185276, + "grad_norm": 0.994979202747345, + "learning_rate": 3.4663149078726967e-05, + "loss": 0.23578712463378906, + "step": 91600 + }, + { + "epoch": 30.72032833570651, + "grad_norm": 0.9587284326553345, + "learning_rate": 3.46463986599665e-05, + "loss": 0.23613155364990235, + "step": 91700 + }, + { + "epoch": 30.75383197922774, + "grad_norm": 0.8443505764007568, + "learning_rate": 3.462964824120603e-05, + "loss": 0.23871355056762694, + "step": 91800 + }, + { + "epoch": 30.787335622748973, + "grad_norm": 1.099453091621399, + "learning_rate": 3.461289782244556e-05, + "loss": 0.24006723403930663, + "step": 91900 + }, + { + "epoch": 30.820839266270205, + "grad_norm": 1.0319575071334839, + "learning_rate": 3.459614740368509e-05, + "loss": 0.23815488815307617, + "step": 92000 + }, + { + "epoch": 30.85434290979144, + "grad_norm": 1.0333192348480225, + "learning_rate": 3.4579396984924624e-05, + "loss": 0.23808452606201172, + "step": 92100 + }, + { + "epoch": 30.887846553312674, + "grad_norm": 0.9881009459495544, + "learning_rate": 3.456264656616416e-05, + "loss": 0.2392608642578125, + "step": 92200 + }, + { + "epoch": 30.921350196833906, + "grad_norm": 1.0562998056411743, + "learning_rate": 3.454589614740369e-05, + "loss": 0.2401527976989746, + "step": 92300 + }, + { + "epoch": 30.95485384035514, + "grad_norm": 1.0023164749145508, + "learning_rate": 3.452914572864322e-05, + "loss": 0.23784709930419923, + "step": 92400 + }, + { + "epoch": 30.98835748387637, + "grad_norm": 0.8636544942855835, + "learning_rate": 3.451239530988275e-05, + "loss": 0.2380337142944336, + "step": 92500 + }, + { + "epoch": 31.021777368288802, + "grad_norm": 0.9277747273445129, + "learning_rate": 3.449564489112228e-05, + "loss": 0.22985034942626953, + "step": 92600 + }, + { + "epoch": 31.055281011810035, + "grad_norm": 0.8739263415336609, + "learning_rate": 3.4479061976549414e-05, + "loss": 0.22400131225585937, + "step": 92700 + }, + { + "epoch": 31.088784655331267, + "grad_norm": 0.8611975908279419, + "learning_rate": 3.446231155778894e-05, + "loss": 0.22545413970947265, + "step": 92800 + }, + { + "epoch": 31.1222882988525, + "grad_norm": 0.8462928533554077, + "learning_rate": 3.444556113902848e-05, + "loss": 0.22551637649536133, + "step": 92900 + }, + { + "epoch": 31.15579194237373, + "grad_norm": 1.022512435913086, + "learning_rate": 3.442881072026801e-05, + "loss": 0.22650592803955077, + "step": 93000 + }, + { + "epoch": 31.189295585894968, + "grad_norm": 0.9026772975921631, + "learning_rate": 3.4412060301507537e-05, + "loss": 0.22779397964477538, + "step": 93100 + }, + { + "epoch": 31.2227992294162, + "grad_norm": 1.0489071607589722, + "learning_rate": 3.4395309882747065e-05, + "loss": 0.22914936065673827, + "step": 93200 + }, + { + "epoch": 31.256302872937432, + "grad_norm": 0.9933543801307678, + "learning_rate": 3.43785594639866e-05, + "loss": 0.2292425537109375, + "step": 93300 + }, + { + "epoch": 31.289806516458665, + "grad_norm": 0.9085004329681396, + "learning_rate": 3.4361809045226137e-05, + "loss": 0.22929515838623046, + "step": 93400 + }, + { + "epoch": 31.323310159979897, + "grad_norm": 1.075490117073059, + "learning_rate": 3.4345058626465665e-05, + "loss": 0.22939607620239258, + "step": 93500 + }, + { + "epoch": 31.35681380350113, + "grad_norm": 0.9651515483856201, + "learning_rate": 3.4328308207705194e-05, + "loss": 0.22934986114501954, + "step": 93600 + }, + { + "epoch": 31.390317447022365, + "grad_norm": 0.8695613145828247, + "learning_rate": 3.431155778894472e-05, + "loss": 0.22976022720336914, + "step": 93700 + }, + { + "epoch": 31.423821090543598, + "grad_norm": 0.844338595867157, + "learning_rate": 3.429480737018426e-05, + "loss": 0.2312468147277832, + "step": 93800 + }, + { + "epoch": 31.45732473406483, + "grad_norm": 1.0382046699523926, + "learning_rate": 3.427805695142379e-05, + "loss": 0.2319161796569824, + "step": 93900 + }, + { + "epoch": 31.490828377586062, + "grad_norm": 0.9150004386901855, + "learning_rate": 3.4261306532663316e-05, + "loss": 0.23153928756713868, + "step": 94000 + }, + { + "epoch": 31.524332021107295, + "grad_norm": 0.9382134079933167, + "learning_rate": 3.4244556113902845e-05, + "loss": 0.23179262161254882, + "step": 94100 + }, + { + "epoch": 31.557835664628527, + "grad_norm": 1.003744125366211, + "learning_rate": 3.422780569514238e-05, + "loss": 0.2336377716064453, + "step": 94200 + }, + { + "epoch": 31.591339308149763, + "grad_norm": 1.0066591501235962, + "learning_rate": 3.421105527638191e-05, + "loss": 0.23306447982788087, + "step": 94300 + }, + { + "epoch": 31.624842951670995, + "grad_norm": 0.9587600827217102, + "learning_rate": 3.419430485762144e-05, + "loss": 0.23304904937744142, + "step": 94400 + }, + { + "epoch": 31.658346595192228, + "grad_norm": 0.9264236092567444, + "learning_rate": 3.4177554438860974e-05, + "loss": 0.23374231338500975, + "step": 94500 + }, + { + "epoch": 31.69185023871346, + "grad_norm": 0.9786285758018494, + "learning_rate": 3.416080402010051e-05, + "loss": 0.23288776397705077, + "step": 94600 + }, + { + "epoch": 31.725353882234693, + "grad_norm": 1.0406526327133179, + "learning_rate": 3.414405360134004e-05, + "loss": 0.23135658264160155, + "step": 94700 + }, + { + "epoch": 31.758857525755925, + "grad_norm": 1.0150673389434814, + "learning_rate": 3.412730318257957e-05, + "loss": 0.23329238891601561, + "step": 94800 + }, + { + "epoch": 31.792361169277157, + "grad_norm": 1.039716124534607, + "learning_rate": 3.4110552763819096e-05, + "loss": 0.23622480392456055, + "step": 94900 + }, + { + "epoch": 31.825864812798393, + "grad_norm": 0.8796889185905457, + "learning_rate": 3.409380234505863e-05, + "loss": 0.23527551651000977, + "step": 95000 + }, + { + "epoch": 31.859368456319626, + "grad_norm": 1.0430560111999512, + "learning_rate": 3.407705192629816e-05, + "loss": 0.23613218307495118, + "step": 95100 + }, + { + "epoch": 31.892872099840858, + "grad_norm": 0.934065043926239, + "learning_rate": 3.406030150753769e-05, + "loss": 0.23549306869506836, + "step": 95200 + }, + { + "epoch": 31.92637574336209, + "grad_norm": 0.9562022089958191, + "learning_rate": 3.404355108877722e-05, + "loss": 0.23596378326416015, + "step": 95300 + }, + { + "epoch": 31.959879386883323, + "grad_norm": 0.9484182000160217, + "learning_rate": 3.4026800670016754e-05, + "loss": 0.23749320983886718, + "step": 95400 + }, + { + "epoch": 31.993383030404555, + "grad_norm": 0.9226858615875244, + "learning_rate": 3.401005025125628e-05, + "loss": 0.23577556610107422, + "step": 95500 + }, + { + "epoch": 32.02680291481698, + "grad_norm": 0.8082904815673828, + "learning_rate": 3.399346733668342e-05, + "loss": 0.2252376174926758, + "step": 95600 + }, + { + "epoch": 32.06030655833822, + "grad_norm": 0.8369967341423035, + "learning_rate": 3.397671691792295e-05, + "loss": 0.22338224411010743, + "step": 95700 + }, + { + "epoch": 32.093810201859455, + "grad_norm": 0.8281686305999756, + "learning_rate": 3.395996649916248e-05, + "loss": 0.22212993621826171, + "step": 95800 + }, + { + "epoch": 32.127313845380684, + "grad_norm": 0.9705724716186523, + "learning_rate": 3.3943216080402015e-05, + "loss": 0.22465606689453124, + "step": 95900 + }, + { + "epoch": 32.16081748890192, + "grad_norm": 0.8423786163330078, + "learning_rate": 3.3926465661641544e-05, + "loss": 0.2250945281982422, + "step": 96000 + }, + { + "epoch": 32.19432113242315, + "grad_norm": 0.8339988589286804, + "learning_rate": 3.390971524288107e-05, + "loss": 0.22318048477172853, + "step": 96100 + }, + { + "epoch": 32.227824775944384, + "grad_norm": 0.8893176913261414, + "learning_rate": 3.38929648241206e-05, + "loss": 0.22539207458496094, + "step": 96200 + }, + { + "epoch": 32.26132841946562, + "grad_norm": 0.9052960276603699, + "learning_rate": 3.387621440536014e-05, + "loss": 0.22607305526733398, + "step": 96300 + }, + { + "epoch": 32.29483206298685, + "grad_norm": 1.0362404584884644, + "learning_rate": 3.3859463986599666e-05, + "loss": 0.22683595657348632, + "step": 96400 + }, + { + "epoch": 32.328335706508085, + "grad_norm": 0.9416490793228149, + "learning_rate": 3.3842713567839195e-05, + "loss": 0.22825729370117187, + "step": 96500 + }, + { + "epoch": 32.361839350029314, + "grad_norm": 0.8258299827575684, + "learning_rate": 3.3825963149078724e-05, + "loss": 0.2302044677734375, + "step": 96600 + }, + { + "epoch": 32.39534299355055, + "grad_norm": 0.8278768062591553, + "learning_rate": 3.380921273031826e-05, + "loss": 0.22817007064819336, + "step": 96700 + }, + { + "epoch": 32.42884663707178, + "grad_norm": 0.9295879006385803, + "learning_rate": 3.3792462311557795e-05, + "loss": 0.22796960830688476, + "step": 96800 + }, + { + "epoch": 32.462350280593014, + "grad_norm": 0.9297919273376465, + "learning_rate": 3.3775711892797324e-05, + "loss": 0.2300715446472168, + "step": 96900 + }, + { + "epoch": 32.49585392411425, + "grad_norm": 0.9032301902770996, + "learning_rate": 3.375896147403685e-05, + "loss": 0.22858844757080077, + "step": 97000 + }, + { + "epoch": 32.52935756763548, + "grad_norm": 0.9087026119232178, + "learning_rate": 3.374221105527639e-05, + "loss": 0.2282412528991699, + "step": 97100 + }, + { + "epoch": 32.562861211156715, + "grad_norm": 0.846002995967865, + "learning_rate": 3.372546063651592e-05, + "loss": 0.2312621307373047, + "step": 97200 + }, + { + "epoch": 32.596364854677944, + "grad_norm": 1.1084449291229248, + "learning_rate": 3.3708710217755446e-05, + "loss": 0.23065135955810548, + "step": 97300 + }, + { + "epoch": 32.62986849819918, + "grad_norm": 1.00586998462677, + "learning_rate": 3.3691959798994974e-05, + "loss": 0.2318124580383301, + "step": 97400 + }, + { + "epoch": 32.663372141720416, + "grad_norm": 1.010598063468933, + "learning_rate": 3.367520938023451e-05, + "loss": 0.22885004043579102, + "step": 97500 + }, + { + "epoch": 32.696875785241645, + "grad_norm": 0.9496275186538696, + "learning_rate": 3.365845896147404e-05, + "loss": 0.2315340232849121, + "step": 97600 + }, + { + "epoch": 32.73037942876288, + "grad_norm": 0.9502295255661011, + "learning_rate": 3.364170854271357e-05, + "loss": 0.2300456428527832, + "step": 97700 + }, + { + "epoch": 32.76388307228411, + "grad_norm": 0.8757120370864868, + "learning_rate": 3.3624958123953096e-05, + "loss": 0.2325787353515625, + "step": 97800 + }, + { + "epoch": 32.797386715805345, + "grad_norm": 1.086429476737976, + "learning_rate": 3.360820770519263e-05, + "loss": 0.23413005828857422, + "step": 97900 + }, + { + "epoch": 32.830890359326574, + "grad_norm": 0.9264597296714783, + "learning_rate": 3.359145728643216e-05, + "loss": 0.23220701217651368, + "step": 98000 + }, + { + "epoch": 32.86439400284781, + "grad_norm": 1.1024547815322876, + "learning_rate": 3.3574706867671696e-05, + "loss": 0.2337321662902832, + "step": 98100 + }, + { + "epoch": 32.897897646369046, + "grad_norm": 1.0790379047393799, + "learning_rate": 3.355812395309883e-05, + "loss": 0.23275186538696288, + "step": 98200 + }, + { + "epoch": 32.931401289890275, + "grad_norm": 1.0850489139556885, + "learning_rate": 3.354137353433836e-05, + "loss": 0.2350110626220703, + "step": 98300 + }, + { + "epoch": 32.96490493341151, + "grad_norm": 1.0384962558746338, + "learning_rate": 3.3524623115577893e-05, + "loss": 0.23315866470336913, + "step": 98400 + }, + { + "epoch": 32.99840857693274, + "grad_norm": 0.9511744379997253, + "learning_rate": 3.350787269681742e-05, + "loss": 0.23335418701171876, + "step": 98500 + }, + { + "epoch": 33.03182846134517, + "grad_norm": 0.9015313386917114, + "learning_rate": 3.349112227805695e-05, + "loss": 0.2207508850097656, + "step": 98600 + }, + { + "epoch": 33.06533210486641, + "grad_norm": 0.9277299046516418, + "learning_rate": 3.347437185929648e-05, + "loss": 0.2212068557739258, + "step": 98700 + }, + { + "epoch": 33.098835748387636, + "grad_norm": 0.9584958553314209, + "learning_rate": 3.3457621440536015e-05, + "loss": 0.2199711036682129, + "step": 98800 + }, + { + "epoch": 33.13233939190887, + "grad_norm": 0.788788378238678, + "learning_rate": 3.3440871021775544e-05, + "loss": 0.222060546875, + "step": 98900 + }, + { + "epoch": 33.1658430354301, + "grad_norm": 0.7377296090126038, + "learning_rate": 3.342412060301507e-05, + "loss": 0.2214929962158203, + "step": 99000 + }, + { + "epoch": 33.199346678951336, + "grad_norm": 0.9132254719734192, + "learning_rate": 3.340737018425461e-05, + "loss": 0.22287454605102539, + "step": 99100 + }, + { + "epoch": 33.23285032247257, + "grad_norm": 0.8702635169029236, + "learning_rate": 3.3390619765494144e-05, + "loss": 0.2249801254272461, + "step": 99200 + }, + { + "epoch": 33.2663539659938, + "grad_norm": 1.008585810661316, + "learning_rate": 3.337386934673367e-05, + "loss": 0.22441143035888672, + "step": 99300 + }, + { + "epoch": 33.29985760951504, + "grad_norm": 0.9218880534172058, + "learning_rate": 3.33571189279732e-05, + "loss": 0.22384666442871093, + "step": 99400 + }, + { + "epoch": 33.333361253036266, + "grad_norm": 0.8806573748588562, + "learning_rate": 3.334036850921273e-05, + "loss": 0.22616491317749024, + "step": 99500 + }, + { + "epoch": 33.3668648965575, + "grad_norm": 0.9997828602790833, + "learning_rate": 3.3323618090452266e-05, + "loss": 0.2251066780090332, + "step": 99600 + }, + { + "epoch": 33.40036854007873, + "grad_norm": 0.80961012840271, + "learning_rate": 3.3306867671691795e-05, + "loss": 0.22590801239013672, + "step": 99700 + }, + { + "epoch": 33.433872183599966, + "grad_norm": 0.8894720077514648, + "learning_rate": 3.3290117252931324e-05, + "loss": 0.2253563690185547, + "step": 99800 + }, + { + "epoch": 33.4673758271212, + "grad_norm": 0.9108457565307617, + "learning_rate": 3.327336683417085e-05, + "loss": 0.22678316116333008, + "step": 99900 + }, + { + "epoch": 33.50087947064243, + "grad_norm": 0.9380918145179749, + "learning_rate": 3.325661641541039e-05, + "loss": 0.22538763046264648, + "step": 100000 + }, + { + "epoch": 33.53438311416367, + "grad_norm": 0.9901800155639648, + "learning_rate": 3.323986599664992e-05, + "loss": 0.2280316734313965, + "step": 100100 + }, + { + "epoch": 33.567886757684896, + "grad_norm": 0.9266390204429626, + "learning_rate": 3.3223115577889446e-05, + "loss": 0.22870094299316407, + "step": 100200 + }, + { + "epoch": 33.60139040120613, + "grad_norm": 1.033541202545166, + "learning_rate": 3.3206365159128975e-05, + "loss": 0.22756708145141602, + "step": 100300 + }, + { + "epoch": 33.63489404472736, + "grad_norm": 0.9486100673675537, + "learning_rate": 3.318961474036851e-05, + "loss": 0.23031322479248048, + "step": 100400 + }, + { + "epoch": 33.6683976882486, + "grad_norm": 1.0127127170562744, + "learning_rate": 3.3172864321608046e-05, + "loss": 0.22845163345336914, + "step": 100500 + }, + { + "epoch": 33.70190133176983, + "grad_norm": 0.8763633966445923, + "learning_rate": 3.3156113902847575e-05, + "loss": 0.22902427673339842, + "step": 100600 + }, + { + "epoch": 33.73540497529106, + "grad_norm": 1.1065373420715332, + "learning_rate": 3.3139363484087104e-05, + "loss": 0.23073022842407226, + "step": 100700 + }, + { + "epoch": 33.7689086188123, + "grad_norm": 0.9771313071250916, + "learning_rate": 3.3122780569514236e-05, + "loss": 0.23011575698852538, + "step": 100800 + }, + { + "epoch": 33.802412262333526, + "grad_norm": 0.8843592405319214, + "learning_rate": 3.310603015075377e-05, + "loss": 0.23142065048217775, + "step": 100900 + }, + { + "epoch": 33.83591590585476, + "grad_norm": 0.8456923961639404, + "learning_rate": 3.30892797319933e-05, + "loss": 0.23063251495361328, + "step": 101000 + }, + { + "epoch": 33.869419549376, + "grad_norm": 0.8443148732185364, + "learning_rate": 3.307252931323283e-05, + "loss": 0.23091581344604492, + "step": 101100 + }, + { + "epoch": 33.90292319289723, + "grad_norm": 0.960616409778595, + "learning_rate": 3.305577889447236e-05, + "loss": 0.2316324806213379, + "step": 101200 + }, + { + "epoch": 33.93642683641846, + "grad_norm": 0.9722175002098083, + "learning_rate": 3.3039028475711894e-05, + "loss": 0.23007387161254883, + "step": 101300 + }, + { + "epoch": 33.96993047993969, + "grad_norm": 0.8240259289741516, + "learning_rate": 3.302227805695143e-05, + "loss": 0.2318846321105957, + "step": 101400 + }, + { + "epoch": 34.00335036435212, + "grad_norm": 0.9287110567092896, + "learning_rate": 3.300552763819096e-05, + "loss": 0.23206823348999023, + "step": 101500 + }, + { + "epoch": 34.03685400787336, + "grad_norm": 0.9008814692497253, + "learning_rate": 3.298877721943049e-05, + "loss": 0.21785154342651367, + "step": 101600 + }, + { + "epoch": 34.07035765139459, + "grad_norm": 0.9070394039154053, + "learning_rate": 3.297202680067002e-05, + "loss": 0.2177290725708008, + "step": 101700 + }, + { + "epoch": 34.10386129491582, + "grad_norm": 0.9032074809074402, + "learning_rate": 3.295527638190955e-05, + "loss": 0.21938394546508788, + "step": 101800 + }, + { + "epoch": 34.13736493843705, + "grad_norm": 0.9069404006004333, + "learning_rate": 3.293852596314908e-05, + "loss": 0.2203085708618164, + "step": 101900 + }, + { + "epoch": 34.17086858195829, + "grad_norm": 0.9074708819389343, + "learning_rate": 3.292177554438861e-05, + "loss": 0.2204928970336914, + "step": 102000 + }, + { + "epoch": 34.204372225479524, + "grad_norm": 0.9713619351387024, + "learning_rate": 3.2905025125628145e-05, + "loss": 0.22204416275024413, + "step": 102100 + }, + { + "epoch": 34.23787586900075, + "grad_norm": 0.9323224425315857, + "learning_rate": 3.2888274706867674e-05, + "loss": 0.22052072525024413, + "step": 102200 + }, + { + "epoch": 34.27137951252199, + "grad_norm": 0.8843114376068115, + "learning_rate": 3.28715242881072e-05, + "loss": 0.22254072189331053, + "step": 102300 + }, + { + "epoch": 34.30488315604322, + "grad_norm": 1.0152033567428589, + "learning_rate": 3.285477386934673e-05, + "loss": 0.2236959457397461, + "step": 102400 + }, + { + "epoch": 34.338386799564454, + "grad_norm": 0.9482904672622681, + "learning_rate": 3.283802345058627e-05, + "loss": 0.224102725982666, + "step": 102500 + }, + { + "epoch": 34.37189044308568, + "grad_norm": 0.8699772953987122, + "learning_rate": 3.28212730318258e-05, + "loss": 0.22381122589111327, + "step": 102600 + }, + { + "epoch": 34.40539408660692, + "grad_norm": 0.9056621193885803, + "learning_rate": 3.280452261306533e-05, + "loss": 0.22394416809082032, + "step": 102700 + }, + { + "epoch": 34.438897730128154, + "grad_norm": 1.0373077392578125, + "learning_rate": 3.2787939698492464e-05, + "loss": 0.22495691299438478, + "step": 102800 + }, + { + "epoch": 34.47240137364938, + "grad_norm": 1.0134550333023071, + "learning_rate": 3.277118927973199e-05, + "loss": 0.22408302307128905, + "step": 102900 + }, + { + "epoch": 34.50590501717062, + "grad_norm": 0.9845434427261353, + "learning_rate": 3.275443886097153e-05, + "loss": 0.22512359619140626, + "step": 103000 + }, + { + "epoch": 34.53940866069185, + "grad_norm": 1.0372213125228882, + "learning_rate": 3.273768844221106e-05, + "loss": 0.22693737030029296, + "step": 103100 + }, + { + "epoch": 34.572912304213084, + "grad_norm": 0.8394227027893066, + "learning_rate": 3.2720938023450586e-05, + "loss": 0.22773279190063478, + "step": 103200 + }, + { + "epoch": 34.60641594773432, + "grad_norm": 0.9733761548995972, + "learning_rate": 3.2704187604690115e-05, + "loss": 0.2269156265258789, + "step": 103300 + }, + { + "epoch": 34.63991959125555, + "grad_norm": 0.9194538593292236, + "learning_rate": 3.268743718592965e-05, + "loss": 0.22706941604614259, + "step": 103400 + }, + { + "epoch": 34.673423234776784, + "grad_norm": 0.9639450311660767, + "learning_rate": 3.267068676716918e-05, + "loss": 0.22622791290283203, + "step": 103500 + }, + { + "epoch": 34.70692687829801, + "grad_norm": 1.0700583457946777, + "learning_rate": 3.265393634840871e-05, + "loss": 0.2273421859741211, + "step": 103600 + }, + { + "epoch": 34.74043052181925, + "grad_norm": 0.9843416810035706, + "learning_rate": 3.2637185929648244e-05, + "loss": 0.22782588958740235, + "step": 103700 + }, + { + "epoch": 34.77393416534048, + "grad_norm": 0.9237584471702576, + "learning_rate": 3.262043551088777e-05, + "loss": 0.22874467849731445, + "step": 103800 + }, + { + "epoch": 34.807437808861714, + "grad_norm": 0.8710795640945435, + "learning_rate": 3.260368509212731e-05, + "loss": 0.22824941635131835, + "step": 103900 + }, + { + "epoch": 34.84094145238295, + "grad_norm": 0.8803784847259521, + "learning_rate": 3.258693467336684e-05, + "loss": 0.225937442779541, + "step": 104000 + }, + { + "epoch": 34.87444509590418, + "grad_norm": 0.9234800338745117, + "learning_rate": 3.2570184254606366e-05, + "loss": 0.22656524658203125, + "step": 104100 + }, + { + "epoch": 34.907948739425414, + "grad_norm": 0.9999638795852661, + "learning_rate": 3.25534338358459e-05, + "loss": 0.2282132911682129, + "step": 104200 + }, + { + "epoch": 34.94145238294664, + "grad_norm": 1.1694445610046387, + "learning_rate": 3.253668341708543e-05, + "loss": 0.22793378829956054, + "step": 104300 + }, + { + "epoch": 34.97495602646788, + "grad_norm": 0.8837403655052185, + "learning_rate": 3.251993299832496e-05, + "loss": 0.22847984313964845, + "step": 104400 + }, + { + "epoch": 35.00837591088031, + "grad_norm": 0.8809188604354858, + "learning_rate": 3.250318257956449e-05, + "loss": 0.22692270278930665, + "step": 104500 + }, + { + "epoch": 35.04187955440154, + "grad_norm": 1.0068167448043823, + "learning_rate": 3.248643216080402e-05, + "loss": 0.21723543167114256, + "step": 104600 + }, + { + "epoch": 35.075383197922775, + "grad_norm": 0.8723959922790527, + "learning_rate": 3.246968174204355e-05, + "loss": 0.21555179595947266, + "step": 104700 + }, + { + "epoch": 35.108886841444004, + "grad_norm": 0.8103620409965515, + "learning_rate": 3.245293132328308e-05, + "loss": 0.21831268310546875, + "step": 104800 + }, + { + "epoch": 35.14239048496524, + "grad_norm": 0.9336848855018616, + "learning_rate": 3.2436180904522617e-05, + "loss": 0.21713750839233398, + "step": 104900 + }, + { + "epoch": 35.175894128486476, + "grad_norm": 0.7471016049385071, + "learning_rate": 3.2419430485762145e-05, + "loss": 0.21997308731079102, + "step": 105000 + }, + { + "epoch": 35.209397772007705, + "grad_norm": 0.8775885105133057, + "learning_rate": 3.240268006700168e-05, + "loss": 0.21831626892089845, + "step": 105100 + }, + { + "epoch": 35.24290141552894, + "grad_norm": 0.8458008170127869, + "learning_rate": 3.238592964824121e-05, + "loss": 0.21945228576660156, + "step": 105200 + }, + { + "epoch": 35.27640505905017, + "grad_norm": 0.8437234163284302, + "learning_rate": 3.236917922948074e-05, + "loss": 0.2186195182800293, + "step": 105300 + }, + { + "epoch": 35.309908702571406, + "grad_norm": 0.7865097522735596, + "learning_rate": 3.235259631490787e-05, + "loss": 0.22217554092407227, + "step": 105400 + }, + { + "epoch": 35.343412346092634, + "grad_norm": 0.866061806678772, + "learning_rate": 3.233584589614741e-05, + "loss": 0.22084756851196288, + "step": 105500 + }, + { + "epoch": 35.37691598961387, + "grad_norm": 0.9198658466339111, + "learning_rate": 3.2319095477386936e-05, + "loss": 0.21991580963134766, + "step": 105600 + }, + { + "epoch": 35.410419633135106, + "grad_norm": 0.8831592202186584, + "learning_rate": 3.2302345058626464e-05, + "loss": 0.22320646286010742, + "step": 105700 + }, + { + "epoch": 35.443923276656335, + "grad_norm": 0.9197396636009216, + "learning_rate": 3.228559463986599e-05, + "loss": 0.22325061798095702, + "step": 105800 + }, + { + "epoch": 35.47742692017757, + "grad_norm": 0.8785274624824524, + "learning_rate": 3.226884422110553e-05, + "loss": 0.22299362182617188, + "step": 105900 + }, + { + "epoch": 35.5109305636988, + "grad_norm": 0.8461816310882568, + "learning_rate": 3.2252093802345064e-05, + "loss": 0.2225216484069824, + "step": 106000 + }, + { + "epoch": 35.544434207220036, + "grad_norm": 1.063522219657898, + "learning_rate": 3.223534338358459e-05, + "loss": 0.2242141342163086, + "step": 106100 + }, + { + "epoch": 35.57793785074127, + "grad_norm": 0.867465615272522, + "learning_rate": 3.221859296482412e-05, + "loss": 0.2223381805419922, + "step": 106200 + }, + { + "epoch": 35.6114414942625, + "grad_norm": 0.9031139016151428, + "learning_rate": 3.220184254606365e-05, + "loss": 0.22474571228027343, + "step": 106300 + }, + { + "epoch": 35.644945137783736, + "grad_norm": 1.0108989477157593, + "learning_rate": 3.2185092127303186e-05, + "loss": 0.22544246673583984, + "step": 106400 + }, + { + "epoch": 35.678448781304965, + "grad_norm": 1.0109949111938477, + "learning_rate": 3.2168341708542715e-05, + "loss": 0.22579713821411132, + "step": 106500 + }, + { + "epoch": 35.7119524248262, + "grad_norm": 0.9123691916465759, + "learning_rate": 3.2151591289782244e-05, + "loss": 0.22499269485473633, + "step": 106600 + }, + { + "epoch": 35.74545606834743, + "grad_norm": 0.951260507106781, + "learning_rate": 3.213484087102178e-05, + "loss": 0.22552137374877929, + "step": 106700 + }, + { + "epoch": 35.778959711868666, + "grad_norm": 0.8786386251449585, + "learning_rate": 3.211809045226131e-05, + "loss": 0.22638605117797853, + "step": 106800 + }, + { + "epoch": 35.8124633553899, + "grad_norm": 0.9864464998245239, + "learning_rate": 3.210134003350084e-05, + "loss": 0.2277699089050293, + "step": 106900 + }, + { + "epoch": 35.84596699891113, + "grad_norm": 1.0679579973220825, + "learning_rate": 3.2084589614740366e-05, + "loss": 0.22652555465698243, + "step": 107000 + }, + { + "epoch": 35.879470642432366, + "grad_norm": 1.0075697898864746, + "learning_rate": 3.20678391959799e-05, + "loss": 0.22713031768798828, + "step": 107100 + }, + { + "epoch": 35.912974285953595, + "grad_norm": 0.9335576891899109, + "learning_rate": 3.205108877721944e-05, + "loss": 0.22596691131591798, + "step": 107200 + }, + { + "epoch": 35.94647792947483, + "grad_norm": 0.7710935473442078, + "learning_rate": 3.2034338358458966e-05, + "loss": 0.22641992568969727, + "step": 107300 + }, + { + "epoch": 35.97998157299606, + "grad_norm": 1.083516001701355, + "learning_rate": 3.2017587939698495e-05, + "loss": 0.22827293395996093, + "step": 107400 + }, + { + "epoch": 36.01340145740849, + "grad_norm": 0.8612881302833557, + "learning_rate": 3.2000837520938024e-05, + "loss": 0.22379323959350586, + "step": 107500 + }, + { + "epoch": 36.04690510092973, + "grad_norm": 0.7906754016876221, + "learning_rate": 3.198408710217756e-05, + "loss": 0.21393178939819335, + "step": 107600 + }, + { + "epoch": 36.080408744450956, + "grad_norm": 0.6994041800498962, + "learning_rate": 3.196733668341709e-05, + "loss": 0.2150893211364746, + "step": 107700 + }, + { + "epoch": 36.11391238797219, + "grad_norm": 0.7304232120513916, + "learning_rate": 3.195058626465662e-05, + "loss": 0.21509407043457032, + "step": 107800 + }, + { + "epoch": 36.14741603149343, + "grad_norm": 0.8723782896995544, + "learning_rate": 3.1933835845896146e-05, + "loss": 0.21703847885131836, + "step": 107900 + }, + { + "epoch": 36.18091967501466, + "grad_norm": 0.8350656628608704, + "learning_rate": 3.191708542713568e-05, + "loss": 0.21680261611938476, + "step": 108000 + }, + { + "epoch": 36.21442331853589, + "grad_norm": 0.8917808532714844, + "learning_rate": 3.190033500837521e-05, + "loss": 0.21753547668457032, + "step": 108100 + }, + { + "epoch": 36.24792696205712, + "grad_norm": 0.9806150197982788, + "learning_rate": 3.188358458961474e-05, + "loss": 0.21905086517333985, + "step": 108200 + }, + { + "epoch": 36.28143060557836, + "grad_norm": 0.8857609033584595, + "learning_rate": 3.186700167504188e-05, + "loss": 0.21918514251708984, + "step": 108300 + }, + { + "epoch": 36.314934249099586, + "grad_norm": 0.910219669342041, + "learning_rate": 3.185025125628141e-05, + "loss": 0.2200949287414551, + "step": 108400 + }, + { + "epoch": 36.34843789262082, + "grad_norm": 1.0122119188308716, + "learning_rate": 3.183350083752094e-05, + "loss": 0.2193107795715332, + "step": 108500 + }, + { + "epoch": 36.38194153614206, + "grad_norm": 0.9494280815124512, + "learning_rate": 3.181675041876047e-05, + "loss": 0.2197030258178711, + "step": 108600 + }, + { + "epoch": 36.41544517966329, + "grad_norm": 0.9605288505554199, + "learning_rate": 3.18e-05, + "loss": 0.22033754348754883, + "step": 108700 + }, + { + "epoch": 36.44894882318452, + "grad_norm": 0.7704981565475464, + "learning_rate": 3.178324958123953e-05, + "loss": 0.22123022079467775, + "step": 108800 + }, + { + "epoch": 36.48245246670575, + "grad_norm": 0.9490818381309509, + "learning_rate": 3.1766499162479065e-05, + "loss": 0.22183971405029296, + "step": 108900 + }, + { + "epoch": 36.51595611022699, + "grad_norm": 0.9417729377746582, + "learning_rate": 3.1749748743718594e-05, + "loss": 0.22279998779296875, + "step": 109000 + }, + { + "epoch": 36.54945975374822, + "grad_norm": 0.933033287525177, + "learning_rate": 3.173299832495812e-05, + "loss": 0.22310422897338866, + "step": 109100 + }, + { + "epoch": 36.58296339726945, + "grad_norm": 0.8921425342559814, + "learning_rate": 3.171624790619765e-05, + "loss": 0.2227332878112793, + "step": 109200 + }, + { + "epoch": 36.61646704079069, + "grad_norm": 0.8272472023963928, + "learning_rate": 3.169949748743719e-05, + "loss": 0.22220718383789062, + "step": 109300 + }, + { + "epoch": 36.64997068431192, + "grad_norm": 0.9517436027526855, + "learning_rate": 3.1682747068676716e-05, + "loss": 0.22240093231201172, + "step": 109400 + }, + { + "epoch": 36.68347432783315, + "grad_norm": 0.869287371635437, + "learning_rate": 3.166599664991625e-05, + "loss": 0.22267683029174803, + "step": 109500 + }, + { + "epoch": 36.71697797135438, + "grad_norm": 0.8402668237686157, + "learning_rate": 3.164924623115578e-05, + "loss": 0.22277099609375, + "step": 109600 + }, + { + "epoch": 36.75048161487562, + "grad_norm": 0.7411085367202759, + "learning_rate": 3.1632495812395316e-05, + "loss": 0.22394742965698242, + "step": 109700 + }, + { + "epoch": 36.783985258396854, + "grad_norm": 0.9969924092292786, + "learning_rate": 3.1615745393634845e-05, + "loss": 0.22464384078979494, + "step": 109800 + }, + { + "epoch": 36.81748890191808, + "grad_norm": 1.0667954683303833, + "learning_rate": 3.1598994974874373e-05, + "loss": 0.22305191040039063, + "step": 109900 + }, + { + "epoch": 36.85099254543932, + "grad_norm": 0.9248315095901489, + "learning_rate": 3.15822445561139e-05, + "loss": 0.22483558654785157, + "step": 110000 + }, + { + "epoch": 36.88449618896055, + "grad_norm": 0.921510636806488, + "learning_rate": 3.156549413735344e-05, + "loss": 0.22462337493896484, + "step": 110100 + }, + { + "epoch": 36.91799983248178, + "grad_norm": 0.9513688683509827, + "learning_rate": 3.154874371859297e-05, + "loss": 0.22469757080078126, + "step": 110200 + }, + { + "epoch": 36.95150347600301, + "grad_norm": 0.9634213447570801, + "learning_rate": 3.1531993299832495e-05, + "loss": 0.22559005737304688, + "step": 110300 + }, + { + "epoch": 36.98500711952425, + "grad_norm": 0.8968513607978821, + "learning_rate": 3.1515242881072024e-05, + "loss": 0.22452268600463868, + "step": 110400 + }, + { + "epoch": 37.01842700393668, + "grad_norm": 0.9366862773895264, + "learning_rate": 3.149849246231156e-05, + "loss": 0.21873317718505858, + "step": 110500 + }, + { + "epoch": 37.05193064745791, + "grad_norm": 0.9117385149002075, + "learning_rate": 3.148174204355109e-05, + "loss": 0.21297582626342773, + "step": 110600 + }, + { + "epoch": 37.085434290979144, + "grad_norm": 0.8058609962463379, + "learning_rate": 3.1464991624790624e-05, + "loss": 0.21399580001831053, + "step": 110700 + }, + { + "epoch": 37.11893793450038, + "grad_norm": 0.9793832302093506, + "learning_rate": 3.144824120603015e-05, + "loss": 0.21349397659301758, + "step": 110800 + }, + { + "epoch": 37.15244157802161, + "grad_norm": 0.7564776539802551, + "learning_rate": 3.143149078726968e-05, + "loss": 0.2160548210144043, + "step": 110900 + }, + { + "epoch": 37.185945221542845, + "grad_norm": 0.9561526775360107, + "learning_rate": 3.141474036850922e-05, + "loss": 0.21727354049682618, + "step": 111000 + }, + { + "epoch": 37.219448865064074, + "grad_norm": 0.8852317929267883, + "learning_rate": 3.1397989949748746e-05, + "loss": 0.2165077018737793, + "step": 111100 + }, + { + "epoch": 37.25295250858531, + "grad_norm": 0.9445819854736328, + "learning_rate": 3.1381239530988275e-05, + "loss": 0.21671443939208984, + "step": 111200 + }, + { + "epoch": 37.28645615210654, + "grad_norm": 0.8414257168769836, + "learning_rate": 3.136465661641541e-05, + "loss": 0.2156463623046875, + "step": 111300 + }, + { + "epoch": 37.319959795627774, + "grad_norm": 0.9724504351615906, + "learning_rate": 3.134790619765494e-05, + "loss": 0.21695276260375976, + "step": 111400 + }, + { + "epoch": 37.35346343914901, + "grad_norm": 0.8939653038978577, + "learning_rate": 3.133115577889447e-05, + "loss": 0.21864233016967774, + "step": 111500 + }, + { + "epoch": 37.38696708267024, + "grad_norm": 0.7889378070831299, + "learning_rate": 3.1314405360134e-05, + "loss": 0.2170688056945801, + "step": 111600 + }, + { + "epoch": 37.420470726191475, + "grad_norm": 0.9483622312545776, + "learning_rate": 3.129765494137353e-05, + "loss": 0.2190123176574707, + "step": 111700 + }, + { + "epoch": 37.453974369712704, + "grad_norm": 0.8011330366134644, + "learning_rate": 3.128090452261307e-05, + "loss": 0.22048694610595704, + "step": 111800 + }, + { + "epoch": 37.48747801323394, + "grad_norm": 0.8247294425964355, + "learning_rate": 3.12641541038526e-05, + "loss": 0.21904251098632813, + "step": 111900 + }, + { + "epoch": 37.520981656755175, + "grad_norm": 0.750112771987915, + "learning_rate": 3.124740368509213e-05, + "loss": 0.21833335876464843, + "step": 112000 + }, + { + "epoch": 37.554485300276404, + "grad_norm": 0.9256598353385925, + "learning_rate": 3.123065326633166e-05, + "loss": 0.21966569900512695, + "step": 112100 + }, + { + "epoch": 37.58798894379764, + "grad_norm": 0.9734209775924683, + "learning_rate": 3.1213902847571194e-05, + "loss": 0.22099735260009765, + "step": 112200 + }, + { + "epoch": 37.62149258731887, + "grad_norm": 0.990144670009613, + "learning_rate": 3.119715242881072e-05, + "loss": 0.22192005157470704, + "step": 112300 + }, + { + "epoch": 37.654996230840105, + "grad_norm": 0.6585299372673035, + "learning_rate": 3.118040201005025e-05, + "loss": 0.22165678024291993, + "step": 112400 + }, + { + "epoch": 37.688499874361334, + "grad_norm": 0.9786301255226135, + "learning_rate": 3.116365159128978e-05, + "loss": 0.22310081481933594, + "step": 112500 + }, + { + "epoch": 37.72200351788257, + "grad_norm": 0.8770159482955933, + "learning_rate": 3.1146901172529316e-05, + "loss": 0.22149917602539063, + "step": 112600 + }, + { + "epoch": 37.755507161403806, + "grad_norm": 0.9303070306777954, + "learning_rate": 3.1130150753768845e-05, + "loss": 0.22284337997436524, + "step": 112700 + }, + { + "epoch": 37.789010804925034, + "grad_norm": 0.9092078804969788, + "learning_rate": 3.1113400335008374e-05, + "loss": 0.2229990005493164, + "step": 112800 + }, + { + "epoch": 37.82251444844627, + "grad_norm": 0.9219861626625061, + "learning_rate": 3.10966499162479e-05, + "loss": 0.2217073631286621, + "step": 112900 + }, + { + "epoch": 37.8560180919675, + "grad_norm": 0.7435413002967834, + "learning_rate": 3.107989949748744e-05, + "loss": 0.22171833038330077, + "step": 113000 + }, + { + "epoch": 37.889521735488735, + "grad_norm": 0.9068054556846619, + "learning_rate": 3.1063149078726974e-05, + "loss": 0.22258939743041992, + "step": 113100 + }, + { + "epoch": 37.923025379009964, + "grad_norm": 1.0471735000610352, + "learning_rate": 3.10463986599665e-05, + "loss": 0.2234604263305664, + "step": 113200 + }, + { + "epoch": 37.9565290225312, + "grad_norm": 1.0463248491287231, + "learning_rate": 3.102964824120603e-05, + "loss": 0.22215925216674803, + "step": 113300 + }, + { + "epoch": 37.990032666052436, + "grad_norm": 0.9165071845054626, + "learning_rate": 3.101289782244556e-05, + "loss": 0.22422847747802735, + "step": 113400 + }, + { + "epoch": 38.02345255046486, + "grad_norm": 0.8414464592933655, + "learning_rate": 3.09963149078727e-05, + "loss": 0.21486921310424806, + "step": 113500 + }, + { + "epoch": 38.056956193986096, + "grad_norm": 0.8961010575294495, + "learning_rate": 3.097956448911223e-05, + "loss": 0.21109798431396484, + "step": 113600 + }, + { + "epoch": 38.09045983750733, + "grad_norm": 0.9100089073181152, + "learning_rate": 3.096281407035176e-05, + "loss": 0.21328540802001952, + "step": 113700 + }, + { + "epoch": 38.12396348102856, + "grad_norm": 0.9186659455299377, + "learning_rate": 3.0946063651591286e-05, + "loss": 0.21333318710327148, + "step": 113800 + }, + { + "epoch": 38.1574671245498, + "grad_norm": 0.7723438143730164, + "learning_rate": 3.092931323283082e-05, + "loss": 0.21231781005859374, + "step": 113900 + }, + { + "epoch": 38.190970768071026, + "grad_norm": 0.8304508328437805, + "learning_rate": 3.091256281407035e-05, + "loss": 0.21468320846557618, + "step": 114000 + }, + { + "epoch": 38.22447441159226, + "grad_norm": 0.8922227025032043, + "learning_rate": 3.0895812395309886e-05, + "loss": 0.21428609848022462, + "step": 114100 + }, + { + "epoch": 38.25797805511349, + "grad_norm": 0.7371033430099487, + "learning_rate": 3.0879061976549415e-05, + "loss": 0.2143361473083496, + "step": 114200 + }, + { + "epoch": 38.291481698634726, + "grad_norm": 0.8409704566001892, + "learning_rate": 3.086231155778895e-05, + "loss": 0.21631322860717772, + "step": 114300 + }, + { + "epoch": 38.32498534215596, + "grad_norm": 0.7273088097572327, + "learning_rate": 3.084556113902848e-05, + "loss": 0.2163697624206543, + "step": 114400 + }, + { + "epoch": 38.35848898567719, + "grad_norm": 0.8249197602272034, + "learning_rate": 3.082881072026801e-05, + "loss": 0.2180681800842285, + "step": 114500 + }, + { + "epoch": 38.39199262919843, + "grad_norm": 0.7984412312507629, + "learning_rate": 3.081206030150754e-05, + "loss": 0.21718357086181642, + "step": 114600 + }, + { + "epoch": 38.425496272719656, + "grad_norm": 1.08668851852417, + "learning_rate": 3.079530988274707e-05, + "loss": 0.21632287979125978, + "step": 114700 + }, + { + "epoch": 38.45899991624089, + "grad_norm": 0.7324666976928711, + "learning_rate": 3.07785594639866e-05, + "loss": 0.2178202438354492, + "step": 114800 + }, + { + "epoch": 38.49250355976213, + "grad_norm": 0.8047093749046326, + "learning_rate": 3.076180904522613e-05, + "loss": 0.21611106872558594, + "step": 114900 + }, + { + "epoch": 38.526007203283356, + "grad_norm": 0.8086637854576111, + "learning_rate": 3.074505862646566e-05, + "loss": 0.21893905639648437, + "step": 115000 + }, + { + "epoch": 38.55951084680459, + "grad_norm": 0.9299573302268982, + "learning_rate": 3.0728308207705195e-05, + "loss": 0.21941152572631836, + "step": 115100 + }, + { + "epoch": 38.59301449032582, + "grad_norm": 0.921328067779541, + "learning_rate": 3.0711557788944724e-05, + "loss": 0.21848363876342775, + "step": 115200 + }, + { + "epoch": 38.62651813384706, + "grad_norm": 0.8732923865318298, + "learning_rate": 3.069480737018426e-05, + "loss": 0.2199881935119629, + "step": 115300 + }, + { + "epoch": 38.660021777368286, + "grad_norm": 0.8334107995033264, + "learning_rate": 3.067805695142379e-05, + "loss": 0.21993675231933593, + "step": 115400 + }, + { + "epoch": 38.69352542088952, + "grad_norm": 0.9880418181419373, + "learning_rate": 3.066130653266332e-05, + "loss": 0.21957590103149413, + "step": 115500 + }, + { + "epoch": 38.72702906441076, + "grad_norm": 0.7397698760032654, + "learning_rate": 3.0644723618090456e-05, + "loss": 0.22164581298828126, + "step": 115600 + }, + { + "epoch": 38.760532707931986, + "grad_norm": 0.8668732047080994, + "learning_rate": 3.0627973199329985e-05, + "loss": 0.22148818969726564, + "step": 115700 + }, + { + "epoch": 38.79403635145322, + "grad_norm": 0.9017316699028015, + "learning_rate": 3.0611222780569514e-05, + "loss": 0.22045387268066408, + "step": 115800 + }, + { + "epoch": 38.82753999497445, + "grad_norm": 0.960860550403595, + "learning_rate": 3.059447236180904e-05, + "loss": 0.22010658264160157, + "step": 115900 + }, + { + "epoch": 38.86104363849569, + "grad_norm": 0.9069247245788574, + "learning_rate": 3.057772194304858e-05, + "loss": 0.22206361770629882, + "step": 116000 + }, + { + "epoch": 38.894547282016916, + "grad_norm": 0.9507908821105957, + "learning_rate": 3.056097152428811e-05, + "loss": 0.223684139251709, + "step": 116100 + }, + { + "epoch": 38.92805092553815, + "grad_norm": 0.9307253360748291, + "learning_rate": 3.0544221105527636e-05, + "loss": 0.2224336814880371, + "step": 116200 + }, + { + "epoch": 38.96155456905939, + "grad_norm": 0.8504303097724915, + "learning_rate": 3.052747068676717e-05, + "loss": 0.22100894927978515, + "step": 116300 + }, + { + "epoch": 38.995058212580616, + "grad_norm": 1.0041011571884155, + "learning_rate": 3.0510720268006704e-05, + "loss": 0.2226072692871094, + "step": 116400 + }, + { + "epoch": 39.02847809699305, + "grad_norm": 0.8630343675613403, + "learning_rate": 3.0493969849246236e-05, + "loss": 0.21175411224365234, + "step": 116500 + }, + { + "epoch": 39.061981740514284, + "grad_norm": 0.8499475717544556, + "learning_rate": 3.0477219430485765e-05, + "loss": 0.21058534622192382, + "step": 116600 + }, + { + "epoch": 39.09548538403551, + "grad_norm": 0.8700653910636902, + "learning_rate": 3.0460469011725297e-05, + "loss": 0.21063339233398437, + "step": 116700 + }, + { + "epoch": 39.12898902755675, + "grad_norm": 0.928617537021637, + "learning_rate": 3.0443718592964826e-05, + "loss": 0.21142158508300782, + "step": 116800 + }, + { + "epoch": 39.16249267107798, + "grad_norm": 0.7653895616531372, + "learning_rate": 3.0426968174204358e-05, + "loss": 0.2120248031616211, + "step": 116900 + }, + { + "epoch": 39.19599631459921, + "grad_norm": 0.9703547954559326, + "learning_rate": 3.0410217755443887e-05, + "loss": 0.21317352294921876, + "step": 117000 + }, + { + "epoch": 39.22949995812044, + "grad_norm": 0.8479989767074585, + "learning_rate": 3.039346733668342e-05, + "loss": 0.21484851837158203, + "step": 117100 + }, + { + "epoch": 39.26300360164168, + "grad_norm": 0.899630069732666, + "learning_rate": 3.0376716917922948e-05, + "loss": 0.21453136444091797, + "step": 117200 + }, + { + "epoch": 39.296507245162914, + "grad_norm": 1.086026906967163, + "learning_rate": 3.035996649916248e-05, + "loss": 0.21443565368652343, + "step": 117300 + }, + { + "epoch": 39.33001088868414, + "grad_norm": 0.8970637917518616, + "learning_rate": 3.034321608040201e-05, + "loss": 0.21288238525390624, + "step": 117400 + }, + { + "epoch": 39.36351453220538, + "grad_norm": 0.9710267186164856, + "learning_rate": 3.032646566164154e-05, + "loss": 0.21607624053955077, + "step": 117500 + }, + { + "epoch": 39.39701817572661, + "grad_norm": 0.908697783946991, + "learning_rate": 3.030988274706868e-05, + "loss": 0.2151881217956543, + "step": 117600 + }, + { + "epoch": 39.43052181924784, + "grad_norm": 0.9393781423568726, + "learning_rate": 3.029313232830821e-05, + "loss": 0.21689601898193359, + "step": 117700 + }, + { + "epoch": 39.46402546276908, + "grad_norm": 0.8031620383262634, + "learning_rate": 3.027638190954774e-05, + "loss": 0.21640504837036134, + "step": 117800 + }, + { + "epoch": 39.49752910629031, + "grad_norm": 1.027938961982727, + "learning_rate": 3.025963149078727e-05, + "loss": 0.21748722076416016, + "step": 117900 + }, + { + "epoch": 39.531032749811544, + "grad_norm": 0.9682844877243042, + "learning_rate": 3.0242881072026802e-05, + "loss": 0.21787578582763673, + "step": 118000 + }, + { + "epoch": 39.56453639333277, + "grad_norm": 0.884766697883606, + "learning_rate": 3.022613065326633e-05, + "loss": 0.21701082229614257, + "step": 118100 + }, + { + "epoch": 39.59804003685401, + "grad_norm": 0.9033914804458618, + "learning_rate": 3.0209380234505863e-05, + "loss": 0.21810293197631836, + "step": 118200 + }, + { + "epoch": 39.63154368037524, + "grad_norm": 0.8522166013717651, + "learning_rate": 3.0192629815745392e-05, + "loss": 0.2182499122619629, + "step": 118300 + }, + { + "epoch": 39.665047323896474, + "grad_norm": 1.1046702861785889, + "learning_rate": 3.0175879396984924e-05, + "loss": 0.2196645164489746, + "step": 118400 + }, + { + "epoch": 39.69855096741771, + "grad_norm": 0.7786019444465637, + "learning_rate": 3.0159128978224453e-05, + "loss": 0.21823881149291993, + "step": 118500 + }, + { + "epoch": 39.73205461093894, + "grad_norm": 0.8261039853096008, + "learning_rate": 3.0142378559463992e-05, + "loss": 0.2183905029296875, + "step": 118600 + }, + { + "epoch": 39.765558254460174, + "grad_norm": 0.7951787710189819, + "learning_rate": 3.012562814070352e-05, + "loss": 0.22037561416625975, + "step": 118700 + }, + { + "epoch": 39.7990618979814, + "grad_norm": 0.9430021047592163, + "learning_rate": 3.0108877721943053e-05, + "loss": 0.22020740509033204, + "step": 118800 + }, + { + "epoch": 39.83256554150264, + "grad_norm": 0.8699235320091248, + "learning_rate": 3.0092127303182582e-05, + "loss": 0.2182463836669922, + "step": 118900 + }, + { + "epoch": 39.866069185023875, + "grad_norm": 0.6874027252197266, + "learning_rate": 3.0075376884422114e-05, + "loss": 0.21936134338378907, + "step": 119000 + }, + { + "epoch": 39.899572828545104, + "grad_norm": 0.9950704574584961, + "learning_rate": 3.0058626465661643e-05, + "loss": 0.22008882522583006, + "step": 119100 + }, + { + "epoch": 39.93307647206634, + "grad_norm": 0.9827971458435059, + "learning_rate": 3.0041876046901175e-05, + "loss": 0.22005229949951172, + "step": 119200 + }, + { + "epoch": 39.96658011558757, + "grad_norm": 0.9177015423774719, + "learning_rate": 3.0025125628140704e-05, + "loss": 0.21897659301757813, + "step": 119300 + }, + { + "epoch": 40.0, + "grad_norm": 1.1112428903579712, + "learning_rate": 3.0008375209380236e-05, + "loss": 0.2205747604370117, + "step": 119400 + }, + { + "epoch": 40.033503643521236, + "grad_norm": 0.9478968977928162, + "learning_rate": 2.9991624790619765e-05, + "loss": 0.20781259536743163, + "step": 119500 + }, + { + "epoch": 40.067007287042465, + "grad_norm": 0.8990084528923035, + "learning_rate": 2.99750418760469e-05, + "loss": 0.20928415298461914, + "step": 119600 + }, + { + "epoch": 40.1005109305637, + "grad_norm": 1.0282913446426392, + "learning_rate": 2.9958291457286437e-05, + "loss": 0.21068788528442384, + "step": 119700 + }, + { + "epoch": 40.13401457408493, + "grad_norm": 0.781109094619751, + "learning_rate": 2.9941541038525965e-05, + "loss": 0.2100553321838379, + "step": 119800 + }, + { + "epoch": 40.167518217606165, + "grad_norm": 0.7364116311073303, + "learning_rate": 2.9924790619765498e-05, + "loss": 0.211074161529541, + "step": 119900 + }, + { + "epoch": 40.201021861127394, + "grad_norm": 0.8109786510467529, + "learning_rate": 2.9908040201005027e-05, + "loss": 0.2111503028869629, + "step": 120000 + }, + { + "epoch": 40.23452550464863, + "grad_norm": 0.8337066769599915, + "learning_rate": 2.989128978224456e-05, + "loss": 0.21187753677368165, + "step": 120100 + }, + { + "epoch": 40.268029148169866, + "grad_norm": 0.8106216788291931, + "learning_rate": 2.9874539363484088e-05, + "loss": 0.21110746383666992, + "step": 120200 + }, + { + "epoch": 40.301532791691095, + "grad_norm": 0.900480329990387, + "learning_rate": 2.985778894472362e-05, + "loss": 0.21332656860351562, + "step": 120300 + }, + { + "epoch": 40.33503643521233, + "grad_norm": 0.8936036825180054, + "learning_rate": 2.984103852596315e-05, + "loss": 0.21424699783325196, + "step": 120400 + }, + { + "epoch": 40.36854007873356, + "grad_norm": 1.0281628370285034, + "learning_rate": 2.982428810720268e-05, + "loss": 0.21567123413085937, + "step": 120500 + }, + { + "epoch": 40.402043722254795, + "grad_norm": 0.9829724431037903, + "learning_rate": 2.980753768844221e-05, + "loss": 0.21529359817504884, + "step": 120600 + }, + { + "epoch": 40.43554736577603, + "grad_norm": 0.8747444748878479, + "learning_rate": 2.9790787269681742e-05, + "loss": 0.21478731155395508, + "step": 120700 + }, + { + "epoch": 40.46905100929726, + "grad_norm": 0.8821930885314941, + "learning_rate": 2.977403685092127e-05, + "loss": 0.21482231140136718, + "step": 120800 + }, + { + "epoch": 40.502554652818496, + "grad_norm": 0.8955323696136475, + "learning_rate": 2.975728643216081e-05, + "loss": 0.2153952407836914, + "step": 120900 + }, + { + "epoch": 40.536058296339725, + "grad_norm": 0.8369837999343872, + "learning_rate": 2.974053601340034e-05, + "loss": 0.21576461791992188, + "step": 121000 + }, + { + "epoch": 40.56956193986096, + "grad_norm": 0.8737310767173767, + "learning_rate": 2.972378559463987e-05, + "loss": 0.21639930725097656, + "step": 121100 + }, + { + "epoch": 40.60306558338219, + "grad_norm": 0.9263436198234558, + "learning_rate": 2.97070351758794e-05, + "loss": 0.21683277130126954, + "step": 121200 + }, + { + "epoch": 40.636569226903426, + "grad_norm": 0.9024245142936707, + "learning_rate": 2.9690284757118932e-05, + "loss": 0.21628368377685547, + "step": 121300 + }, + { + "epoch": 40.67007287042466, + "grad_norm": 0.8429529070854187, + "learning_rate": 2.967353433835846e-05, + "loss": 0.2163913917541504, + "step": 121400 + }, + { + "epoch": 40.70357651394589, + "grad_norm": 1.2450178861618042, + "learning_rate": 2.9656783919597993e-05, + "loss": 0.2194381523132324, + "step": 121500 + }, + { + "epoch": 40.737080157467126, + "grad_norm": 0.7648131251335144, + "learning_rate": 2.964003350083752e-05, + "loss": 0.21698453903198242, + "step": 121600 + }, + { + "epoch": 40.770583800988355, + "grad_norm": 0.9009991884231567, + "learning_rate": 2.9623283082077054e-05, + "loss": 0.21700273513793944, + "step": 121700 + }, + { + "epoch": 40.80408744450959, + "grad_norm": 0.8008719086647034, + "learning_rate": 2.9606532663316583e-05, + "loss": 0.21888105392456056, + "step": 121800 + }, + { + "epoch": 40.83759108803083, + "grad_norm": 0.9055608510971069, + "learning_rate": 2.9589782244556115e-05, + "loss": 0.21676677703857422, + "step": 121900 + }, + { + "epoch": 40.871094731552056, + "grad_norm": 0.80983567237854, + "learning_rate": 2.9573199329983254e-05, + "loss": 0.21832197189331054, + "step": 122000 + }, + { + "epoch": 40.90459837507329, + "grad_norm": 0.892451286315918, + "learning_rate": 2.9556448911222783e-05, + "loss": 0.21815378189086915, + "step": 122100 + }, + { + "epoch": 40.93810201859452, + "grad_norm": 0.8478377461433411, + "learning_rate": 2.9539698492462315e-05, + "loss": 0.21775611877441406, + "step": 122200 + }, + { + "epoch": 40.971605662115756, + "grad_norm": 0.9962807297706604, + "learning_rate": 2.9522948073701844e-05, + "loss": 0.219617919921875, + "step": 122300 + }, + { + "epoch": 41.00502554652819, + "grad_norm": 0.947913646697998, + "learning_rate": 2.9506197654941376e-05, + "loss": 0.21659244537353517, + "step": 122400 + }, + { + "epoch": 41.03852919004942, + "grad_norm": 0.7525883316993713, + "learning_rate": 2.9489447236180905e-05, + "loss": 0.20789249420166014, + "step": 122500 + }, + { + "epoch": 41.07203283357065, + "grad_norm": 0.6433896422386169, + "learning_rate": 2.9472696817420437e-05, + "loss": 0.2080308723449707, + "step": 122600 + }, + { + "epoch": 41.10553647709188, + "grad_norm": 0.8577892780303955, + "learning_rate": 2.9455946398659966e-05, + "loss": 0.20854692459106444, + "step": 122700 + }, + { + "epoch": 41.13904012061312, + "grad_norm": 0.9137370586395264, + "learning_rate": 2.9439195979899498e-05, + "loss": 0.20944379806518554, + "step": 122800 + }, + { + "epoch": 41.172543764134346, + "grad_norm": 0.8469370007514954, + "learning_rate": 2.9422445561139027e-05, + "loss": 0.21084047317504884, + "step": 122900 + }, + { + "epoch": 41.20604740765558, + "grad_norm": 0.8777198791503906, + "learning_rate": 2.940569514237856e-05, + "loss": 0.209267520904541, + "step": 123000 + }, + { + "epoch": 41.23955105117682, + "grad_norm": 0.8626389503479004, + "learning_rate": 2.9388944723618088e-05, + "loss": 0.21044559478759767, + "step": 123100 + }, + { + "epoch": 41.27305469469805, + "grad_norm": 0.9588419198989868, + "learning_rate": 2.9372194304857624e-05, + "loss": 0.21222888946533203, + "step": 123200 + }, + { + "epoch": 41.30655833821928, + "grad_norm": 0.86114901304245, + "learning_rate": 2.9355443886097156e-05, + "loss": 0.21097087860107422, + "step": 123300 + }, + { + "epoch": 41.34006198174051, + "grad_norm": 0.887198269367218, + "learning_rate": 2.9338693467336688e-05, + "loss": 0.21297225952148438, + "step": 123400 + }, + { + "epoch": 41.37356562526175, + "grad_norm": 0.7785773873329163, + "learning_rate": 2.9321943048576217e-05, + "loss": 0.2132717514038086, + "step": 123500 + }, + { + "epoch": 41.40706926878298, + "grad_norm": 0.8815355896949768, + "learning_rate": 2.930519262981575e-05, + "loss": 0.2135430908203125, + "step": 123600 + }, + { + "epoch": 41.44057291230421, + "grad_norm": 0.7385589480400085, + "learning_rate": 2.9288442211055278e-05, + "loss": 0.21455587387084962, + "step": 123700 + }, + { + "epoch": 41.47407655582545, + "grad_norm": 0.9357995986938477, + "learning_rate": 2.927169179229481e-05, + "loss": 0.2131095314025879, + "step": 123800 + }, + { + "epoch": 41.50758019934668, + "grad_norm": 0.9078415632247925, + "learning_rate": 2.925494137353434e-05, + "loss": 0.21512672424316406, + "step": 123900 + }, + { + "epoch": 41.54108384286791, + "grad_norm": 0.8247988820075989, + "learning_rate": 2.923819095477387e-05, + "loss": 0.21399457931518553, + "step": 124000 + }, + { + "epoch": 41.57458748638914, + "grad_norm": 0.726129949092865, + "learning_rate": 2.9221608040201004e-05, + "loss": 0.21407983779907228, + "step": 124100 + }, + { + "epoch": 41.60809112991038, + "grad_norm": 0.8694594502449036, + "learning_rate": 2.920485762144054e-05, + "loss": 0.21551137924194336, + "step": 124200 + }, + { + "epoch": 41.64159477343161, + "grad_norm": 0.9320394992828369, + "learning_rate": 2.918810720268007e-05, + "loss": 0.21677978515625, + "step": 124300 + }, + { + "epoch": 41.67509841695284, + "grad_norm": 1.0589549541473389, + "learning_rate": 2.91713567839196e-05, + "loss": 0.21467880249023438, + "step": 124400 + }, + { + "epoch": 41.70860206047408, + "grad_norm": 0.8709360361099243, + "learning_rate": 2.9154606365159133e-05, + "loss": 0.21607656478881837, + "step": 124500 + }, + { + "epoch": 41.74210570399531, + "grad_norm": 0.8040139675140381, + "learning_rate": 2.913785594639866e-05, + "loss": 0.21505617141723632, + "step": 124600 + }, + { + "epoch": 41.77560934751654, + "grad_norm": 0.899761438369751, + "learning_rate": 2.9121105527638194e-05, + "loss": 0.2151774787902832, + "step": 124700 + }, + { + "epoch": 41.80911299103778, + "grad_norm": 0.8534619808197021, + "learning_rate": 2.9104355108877722e-05, + "loss": 0.21662195205688475, + "step": 124800 + }, + { + "epoch": 41.84261663455901, + "grad_norm": 0.96486896276474, + "learning_rate": 2.9087604690117255e-05, + "loss": 0.21604257583618164, + "step": 124900 + }, + { + "epoch": 41.87612027808024, + "grad_norm": 0.8162650465965271, + "learning_rate": 2.9070854271356783e-05, + "loss": 0.2170560836791992, + "step": 125000 + }, + { + "epoch": 41.90962392160147, + "grad_norm": 0.889887809753418, + "learning_rate": 2.9054103852596316e-05, + "loss": 0.21925149917602538, + "step": 125100 + }, + { + "epoch": 41.94312756512271, + "grad_norm": 0.9023459553718567, + "learning_rate": 2.9037353433835844e-05, + "loss": 0.21658233642578126, + "step": 125200 + }, + { + "epoch": 41.97663120864394, + "grad_norm": 0.9475107192993164, + "learning_rate": 2.9020603015075377e-05, + "loss": 0.2174862480163574, + "step": 125300 + }, + { + "epoch": 42.01005109305637, + "grad_norm": 0.8001925945281982, + "learning_rate": 2.9003852596314905e-05, + "loss": 0.21471311569213866, + "step": 125400 + }, + { + "epoch": 42.043554736577605, + "grad_norm": 0.7804350852966309, + "learning_rate": 2.898710217755444e-05, + "loss": 0.2056850814819336, + "step": 125500 + }, + { + "epoch": 42.07705838009883, + "grad_norm": 0.9709755182266235, + "learning_rate": 2.8970351758793973e-05, + "loss": 0.20687313079833985, + "step": 125600 + }, + { + "epoch": 42.11056202362007, + "grad_norm": 0.8425003290176392, + "learning_rate": 2.8953601340033502e-05, + "loss": 0.20829198837280274, + "step": 125700 + }, + { + "epoch": 42.1440656671413, + "grad_norm": 0.7324151396751404, + "learning_rate": 2.8936850921273034e-05, + "loss": 0.20799571990966798, + "step": 125800 + }, + { + "epoch": 42.177569310662534, + "grad_norm": 0.7971581220626831, + "learning_rate": 2.8920100502512567e-05, + "loss": 0.21026283264160156, + "step": 125900 + }, + { + "epoch": 42.21107295418377, + "grad_norm": 0.7958289384841919, + "learning_rate": 2.8903350083752095e-05, + "loss": 0.20917728424072266, + "step": 126000 + }, + { + "epoch": 42.244576597705, + "grad_norm": 0.8632842302322388, + "learning_rate": 2.888676716917923e-05, + "loss": 0.20981687545776367, + "step": 126100 + }, + { + "epoch": 42.278080241226235, + "grad_norm": 0.8120240569114685, + "learning_rate": 2.887001675041876e-05, + "loss": 0.21040897369384765, + "step": 126200 + }, + { + "epoch": 42.31158388474746, + "grad_norm": 0.9877341389656067, + "learning_rate": 2.8853266331658292e-05, + "loss": 0.21044788360595704, + "step": 126300 + }, + { + "epoch": 42.3450875282687, + "grad_norm": 0.803947925567627, + "learning_rate": 2.883651591289782e-05, + "loss": 0.21133209228515626, + "step": 126400 + }, + { + "epoch": 42.378591171789935, + "grad_norm": 0.8692134022712708, + "learning_rate": 2.8819765494137357e-05, + "loss": 0.21098001480102538, + "step": 126500 + }, + { + "epoch": 42.412094815311164, + "grad_norm": 0.703528642654419, + "learning_rate": 2.880301507537689e-05, + "loss": 0.21152076721191407, + "step": 126600 + }, + { + "epoch": 42.4455984588324, + "grad_norm": 0.9700392484664917, + "learning_rate": 2.8786264656616418e-05, + "loss": 0.21170536041259766, + "step": 126700 + }, + { + "epoch": 42.47910210235363, + "grad_norm": 0.7205595970153809, + "learning_rate": 2.876951423785595e-05, + "loss": 0.2123921012878418, + "step": 126800 + }, + { + "epoch": 42.512605745874865, + "grad_norm": 0.8186672925949097, + "learning_rate": 2.875276381909548e-05, + "loss": 0.2122740364074707, + "step": 126900 + }, + { + "epoch": 42.54610938939609, + "grad_norm": 0.9268088340759277, + "learning_rate": 2.873601340033501e-05, + "loss": 0.21358152389526366, + "step": 127000 + }, + { + "epoch": 42.57961303291733, + "grad_norm": 0.762809157371521, + "learning_rate": 2.871926298157454e-05, + "loss": 0.21314903259277343, + "step": 127100 + }, + { + "epoch": 42.613116676438565, + "grad_norm": 0.8699193596839905, + "learning_rate": 2.8702512562814072e-05, + "loss": 0.2129987335205078, + "step": 127200 + }, + { + "epoch": 42.646620319959794, + "grad_norm": 0.698263943195343, + "learning_rate": 2.86857621440536e-05, + "loss": 0.21600809097290039, + "step": 127300 + }, + { + "epoch": 42.68012396348103, + "grad_norm": 0.7782033681869507, + "learning_rate": 2.8669011725293133e-05, + "loss": 0.21448253631591796, + "step": 127400 + }, + { + "epoch": 42.71362760700226, + "grad_norm": 0.8113609552383423, + "learning_rate": 2.8652261306532662e-05, + "loss": 0.2134496307373047, + "step": 127500 + }, + { + "epoch": 42.747131250523495, + "grad_norm": 0.7400202751159668, + "learning_rate": 2.8635510887772194e-05, + "loss": 0.21415563583374023, + "step": 127600 + }, + { + "epoch": 42.78063489404473, + "grad_norm": 1.0038073062896729, + "learning_rate": 2.8618760469011723e-05, + "loss": 0.2144919776916504, + "step": 127700 + }, + { + "epoch": 42.81413853756596, + "grad_norm": 0.7947350144386292, + "learning_rate": 2.860201005025126e-05, + "loss": 0.21546197891235352, + "step": 127800 + }, + { + "epoch": 42.847642181087195, + "grad_norm": 0.7404258847236633, + "learning_rate": 2.858525963149079e-05, + "loss": 0.2151948356628418, + "step": 127900 + }, + { + "epoch": 42.881145824608424, + "grad_norm": 0.8000117540359497, + "learning_rate": 2.856850921273032e-05, + "loss": 0.2174908447265625, + "step": 128000 + }, + { + "epoch": 42.91464946812966, + "grad_norm": 0.8331735730171204, + "learning_rate": 2.8551758793969852e-05, + "loss": 0.2154141616821289, + "step": 128100 + }, + { + "epoch": 42.94815311165089, + "grad_norm": 0.8255071640014648, + "learning_rate": 2.8535175879396984e-05, + "loss": 0.21642459869384767, + "step": 128200 + }, + { + "epoch": 42.981656755172125, + "grad_norm": 0.8828434944152832, + "learning_rate": 2.8518425460636516e-05, + "loss": 0.21653507232666017, + "step": 128300 + }, + { + "epoch": 43.01507663958456, + "grad_norm": 0.8157568573951721, + "learning_rate": 2.8501675041876045e-05, + "loss": 0.21150121688842774, + "step": 128400 + }, + { + "epoch": 43.048580283105785, + "grad_norm": 0.7143152356147766, + "learning_rate": 2.8484924623115578e-05, + "loss": 0.20697792053222655, + "step": 128500 + }, + { + "epoch": 43.08208392662702, + "grad_norm": 0.9034318327903748, + "learning_rate": 2.846817420435511e-05, + "loss": 0.20594911575317382, + "step": 128600 + }, + { + "epoch": 43.11558757014826, + "grad_norm": 0.7974486947059631, + "learning_rate": 2.845142378559464e-05, + "loss": 0.20707765579223633, + "step": 128700 + }, + { + "epoch": 43.149091213669486, + "grad_norm": 0.7226033210754395, + "learning_rate": 2.8434673366834174e-05, + "loss": 0.20583932876586913, + "step": 128800 + }, + { + "epoch": 43.18259485719072, + "grad_norm": 0.8551874160766602, + "learning_rate": 2.8417922948073706e-05, + "loss": 0.2078396797180176, + "step": 128900 + }, + { + "epoch": 43.21609850071195, + "grad_norm": 0.7227718234062195, + "learning_rate": 2.8401172529313235e-05, + "loss": 0.20798839569091798, + "step": 129000 + }, + { + "epoch": 43.24960214423319, + "grad_norm": 0.9496952891349792, + "learning_rate": 2.8384422110552767e-05, + "loss": 0.2099104118347168, + "step": 129100 + }, + { + "epoch": 43.283105787754415, + "grad_norm": 0.9909376502037048, + "learning_rate": 2.8367671691792296e-05, + "loss": 0.20969415664672852, + "step": 129200 + }, + { + "epoch": 43.31660943127565, + "grad_norm": 0.9239180088043213, + "learning_rate": 2.835092127303183e-05, + "loss": 0.20861217498779297, + "step": 129300 + }, + { + "epoch": 43.35011307479689, + "grad_norm": 0.8692393898963928, + "learning_rate": 2.8334170854271357e-05, + "loss": 0.2091372299194336, + "step": 129400 + }, + { + "epoch": 43.383616718318116, + "grad_norm": 0.693246603012085, + "learning_rate": 2.831742043551089e-05, + "loss": 0.20966863632202148, + "step": 129500 + }, + { + "epoch": 43.41712036183935, + "grad_norm": 0.8332297205924988, + "learning_rate": 2.8300670016750418e-05, + "loss": 0.21026342391967773, + "step": 129600 + }, + { + "epoch": 43.45062400536058, + "grad_norm": 0.8729221820831299, + "learning_rate": 2.828391959798995e-05, + "loss": 0.21070770263671876, + "step": 129700 + }, + { + "epoch": 43.48412764888182, + "grad_norm": 0.7649937868118286, + "learning_rate": 2.826716917922948e-05, + "loss": 0.21120260238647462, + "step": 129800 + }, + { + "epoch": 43.517631292403046, + "grad_norm": 0.8937798738479614, + "learning_rate": 2.825041876046901e-05, + "loss": 0.21302244186401367, + "step": 129900 + }, + { + "epoch": 43.55113493592428, + "grad_norm": 1.0248814821243286, + "learning_rate": 2.8233668341708547e-05, + "loss": 0.21207603454589843, + "step": 130000 + }, + { + "epoch": 43.58463857944552, + "grad_norm": 0.9701077938079834, + "learning_rate": 2.8216917922948076e-05, + "loss": 0.2112472915649414, + "step": 130100 + }, + { + "epoch": 43.618142222966746, + "grad_norm": 0.8634024858474731, + "learning_rate": 2.8200167504187608e-05, + "loss": 0.21355249404907226, + "step": 130200 + }, + { + "epoch": 43.65164586648798, + "grad_norm": 0.9003106951713562, + "learning_rate": 2.818358458961474e-05, + "loss": 0.2142485809326172, + "step": 130300 + }, + { + "epoch": 43.68514951000921, + "grad_norm": 0.7895374298095703, + "learning_rate": 2.8166834170854273e-05, + "loss": 0.2131346321105957, + "step": 130400 + }, + { + "epoch": 43.71865315353045, + "grad_norm": 1.0067280530929565, + "learning_rate": 2.81500837520938e-05, + "loss": 0.21282941818237305, + "step": 130500 + }, + { + "epoch": 43.75215679705168, + "grad_norm": 0.7602081894874573, + "learning_rate": 2.8133333333333334e-05, + "loss": 0.2138546371459961, + "step": 130600 + }, + { + "epoch": 43.78566044057291, + "grad_norm": 0.7720736265182495, + "learning_rate": 2.8116582914572863e-05, + "loss": 0.2136884307861328, + "step": 130700 + }, + { + "epoch": 43.81916408409415, + "grad_norm": 0.7715796232223511, + "learning_rate": 2.8099832495812395e-05, + "loss": 0.21329423904418945, + "step": 130800 + }, + { + "epoch": 43.852667727615376, + "grad_norm": 0.8566184043884277, + "learning_rate": 2.8083082077051924e-05, + "loss": 0.21406152725219726, + "step": 130900 + }, + { + "epoch": 43.88617137113661, + "grad_norm": 0.8490840792655945, + "learning_rate": 2.8066331658291456e-05, + "loss": 0.21463991165161134, + "step": 131000 + }, + { + "epoch": 43.91967501465784, + "grad_norm": 0.9666714072227478, + "learning_rate": 2.804958123953099e-05, + "loss": 0.21495559692382812, + "step": 131100 + }, + { + "epoch": 43.95317865817908, + "grad_norm": 1.0371804237365723, + "learning_rate": 2.8032830820770524e-05, + "loss": 0.21566991806030272, + "step": 131200 + }, + { + "epoch": 43.98668230170031, + "grad_norm": 0.910309910774231, + "learning_rate": 2.8016080402010053e-05, + "loss": 0.215529727935791, + "step": 131300 + }, + { + "epoch": 44.02010218611274, + "grad_norm": 0.7464276552200317, + "learning_rate": 2.7999329983249585e-05, + "loss": 0.20866870880126953, + "step": 131400 + }, + { + "epoch": 44.05360582963397, + "grad_norm": 0.7517808079719543, + "learning_rate": 2.7982579564489114e-05, + "loss": 0.20390798568725585, + "step": 131500 + }, + { + "epoch": 44.08710947315521, + "grad_norm": 0.6557915210723877, + "learning_rate": 2.7965829145728646e-05, + "loss": 0.20384593963623046, + "step": 131600 + }, + { + "epoch": 44.12061311667644, + "grad_norm": 0.855191171169281, + "learning_rate": 2.7949078726968175e-05, + "loss": 0.2066969871520996, + "step": 131700 + }, + { + "epoch": 44.154116760197674, + "grad_norm": 0.8590629696846008, + "learning_rate": 2.7932328308207707e-05, + "loss": 0.2062934684753418, + "step": 131800 + }, + { + "epoch": 44.1876204037189, + "grad_norm": 0.9050695896148682, + "learning_rate": 2.7915577889447236e-05, + "loss": 0.20599493026733398, + "step": 131900 + }, + { + "epoch": 44.22112404724014, + "grad_norm": 0.8817638754844666, + "learning_rate": 2.7898827470686768e-05, + "loss": 0.2078232765197754, + "step": 132000 + }, + { + "epoch": 44.25462769076137, + "grad_norm": 0.8479394316673279, + "learning_rate": 2.7882077051926297e-05, + "loss": 0.20759906768798828, + "step": 132100 + }, + { + "epoch": 44.2881313342826, + "grad_norm": 0.8977039456367493, + "learning_rate": 2.786532663316583e-05, + "loss": 0.20864250183105468, + "step": 132200 + }, + { + "epoch": 44.32163497780384, + "grad_norm": 0.7003665566444397, + "learning_rate": 2.7848576214405365e-05, + "loss": 0.20907209396362306, + "step": 132300 + }, + { + "epoch": 44.35513862132507, + "grad_norm": 0.8874910473823547, + "learning_rate": 2.7831825795644893e-05, + "loss": 0.20834226608276368, + "step": 132400 + }, + { + "epoch": 44.388642264846304, + "grad_norm": 0.8135631680488586, + "learning_rate": 2.781524288107203e-05, + "loss": 0.2098270034790039, + "step": 132500 + }, + { + "epoch": 44.42214590836753, + "grad_norm": 1.0045340061187744, + "learning_rate": 2.7798492462311558e-05, + "loss": 0.2112841033935547, + "step": 132600 + }, + { + "epoch": 44.45564955188877, + "grad_norm": 0.8854024410247803, + "learning_rate": 2.778174204355109e-05, + "loss": 0.2096893310546875, + "step": 132700 + }, + { + "epoch": 44.48915319541, + "grad_norm": 0.8551903963088989, + "learning_rate": 2.776499162479062e-05, + "loss": 0.21038183212280273, + "step": 132800 + }, + { + "epoch": 44.52265683893123, + "grad_norm": 0.848574161529541, + "learning_rate": 2.774824120603015e-05, + "loss": 0.21035202026367186, + "step": 132900 + }, + { + "epoch": 44.55616048245247, + "grad_norm": 0.8698804378509521, + "learning_rate": 2.773149078726968e-05, + "loss": 0.21176429748535155, + "step": 133000 + }, + { + "epoch": 44.5896641259737, + "grad_norm": 0.8525173664093018, + "learning_rate": 2.7714740368509212e-05, + "loss": 0.21025493621826172, + "step": 133100 + }, + { + "epoch": 44.623167769494934, + "grad_norm": 1.0027357339859009, + "learning_rate": 2.769798994974874e-05, + "loss": 0.21228431701660155, + "step": 133200 + }, + { + "epoch": 44.65667141301616, + "grad_norm": 0.9768441915512085, + "learning_rate": 2.7681239530988273e-05, + "loss": 0.21132736206054686, + "step": 133300 + }, + { + "epoch": 44.6901750565374, + "grad_norm": 0.9287051558494568, + "learning_rate": 2.766448911222781e-05, + "loss": 0.211924991607666, + "step": 133400 + }, + { + "epoch": 44.723678700058635, + "grad_norm": 1.0014779567718506, + "learning_rate": 2.764773869346734e-05, + "loss": 0.21157003402709962, + "step": 133500 + }, + { + "epoch": 44.75718234357986, + "grad_norm": 0.8901475071907043, + "learning_rate": 2.763098827470687e-05, + "loss": 0.21130624771118164, + "step": 133600 + }, + { + "epoch": 44.7906859871011, + "grad_norm": 0.7723361253738403, + "learning_rate": 2.7614237855946402e-05, + "loss": 0.21280551910400392, + "step": 133700 + }, + { + "epoch": 44.82418963062233, + "grad_norm": 0.8794797658920288, + "learning_rate": 2.759748743718593e-05, + "loss": 0.21236923217773437, + "step": 133800 + }, + { + "epoch": 44.857693274143564, + "grad_norm": 0.8374422192573547, + "learning_rate": 2.7580737018425463e-05, + "loss": 0.21364736557006836, + "step": 133900 + }, + { + "epoch": 44.89119691766479, + "grad_norm": 0.8275327086448669, + "learning_rate": 2.7563986599664992e-05, + "loss": 0.21200048446655273, + "step": 134000 + }, + { + "epoch": 44.92470056118603, + "grad_norm": 0.9097633957862854, + "learning_rate": 2.7547236180904524e-05, + "loss": 0.21340879440307617, + "step": 134100 + }, + { + "epoch": 44.958204204707265, + "grad_norm": 0.9494147300720215, + "learning_rate": 2.7530485762144053e-05, + "loss": 0.2142266273498535, + "step": 134200 + }, + { + "epoch": 44.991707848228494, + "grad_norm": 0.814795970916748, + "learning_rate": 2.7513735343383585e-05, + "loss": 0.21452692031860351, + "step": 134300 + }, + { + "epoch": 45.025127732640925, + "grad_norm": 0.6908448934555054, + "learning_rate": 2.7496984924623114e-05, + "loss": 0.20500320434570313, + "step": 134400 + }, + { + "epoch": 45.05863137616216, + "grad_norm": 0.6426514387130737, + "learning_rate": 2.7480234505862646e-05, + "loss": 0.2033299446105957, + "step": 134500 + }, + { + "epoch": 45.09213501968339, + "grad_norm": 0.8847736716270447, + "learning_rate": 2.7463484087102182e-05, + "loss": 0.20543498992919923, + "step": 134600 + }, + { + "epoch": 45.125638663204626, + "grad_norm": 0.713890552520752, + "learning_rate": 2.744673366834171e-05, + "loss": 0.20500320434570313, + "step": 134700 + }, + { + "epoch": 45.159142306725855, + "grad_norm": 0.7541131973266602, + "learning_rate": 2.7430150753768847e-05, + "loss": 0.2060226631164551, + "step": 134800 + }, + { + "epoch": 45.19264595024709, + "grad_norm": 0.9209812879562378, + "learning_rate": 2.7413400335008375e-05, + "loss": 0.20517513275146484, + "step": 134900 + }, + { + "epoch": 45.22614959376832, + "grad_norm": 0.781428873538971, + "learning_rate": 2.7396649916247908e-05, + "loss": 0.20627330780029296, + "step": 135000 + }, + { + "epoch": 45.259653237289555, + "grad_norm": 0.8748304843902588, + "learning_rate": 2.7379899497487437e-05, + "loss": 0.20791227340698243, + "step": 135100 + }, + { + "epoch": 45.29315688081079, + "grad_norm": 0.7505505681037903, + "learning_rate": 2.736314907872697e-05, + "loss": 0.2061052703857422, + "step": 135200 + }, + { + "epoch": 45.32666052433202, + "grad_norm": 0.8114047646522522, + "learning_rate": 2.7346398659966498e-05, + "loss": 0.2083379364013672, + "step": 135300 + }, + { + "epoch": 45.360164167853256, + "grad_norm": 0.8816334009170532, + "learning_rate": 2.732964824120603e-05, + "loss": 0.2089382553100586, + "step": 135400 + }, + { + "epoch": 45.393667811374485, + "grad_norm": 0.8554006814956665, + "learning_rate": 2.731289782244556e-05, + "loss": 0.20821535110473632, + "step": 135500 + }, + { + "epoch": 45.42717145489572, + "grad_norm": 0.8525182008743286, + "learning_rate": 2.7296147403685098e-05, + "loss": 0.20828678131103515, + "step": 135600 + }, + { + "epoch": 45.46067509841695, + "grad_norm": 0.9644753932952881, + "learning_rate": 2.7279396984924626e-05, + "loss": 0.20957386016845703, + "step": 135700 + }, + { + "epoch": 45.494178741938185, + "grad_norm": 0.857822835445404, + "learning_rate": 2.726264656616416e-05, + "loss": 0.21084308624267578, + "step": 135800 + }, + { + "epoch": 45.52768238545942, + "grad_norm": 0.6781661510467529, + "learning_rate": 2.7245896147403687e-05, + "loss": 0.21013999938964845, + "step": 135900 + }, + { + "epoch": 45.56118602898065, + "grad_norm": 0.87371426820755, + "learning_rate": 2.722914572864322e-05, + "loss": 0.2115696907043457, + "step": 136000 + }, + { + "epoch": 45.594689672501886, + "grad_norm": 1.0570032596588135, + "learning_rate": 2.721239530988275e-05, + "loss": 0.20983007431030273, + "step": 136100 + }, + { + "epoch": 45.628193316023115, + "grad_norm": 0.8911213278770447, + "learning_rate": 2.719564489112228e-05, + "loss": 0.2098233413696289, + "step": 136200 + }, + { + "epoch": 45.66169695954435, + "grad_norm": 0.7911779284477234, + "learning_rate": 2.717889447236181e-05, + "loss": 0.2099312973022461, + "step": 136300 + }, + { + "epoch": 45.69520060306559, + "grad_norm": 0.8585467338562012, + "learning_rate": 2.7162144053601342e-05, + "loss": 0.21018625259399415, + "step": 136400 + }, + { + "epoch": 45.728704246586815, + "grad_norm": 0.8224589824676514, + "learning_rate": 2.714539363484087e-05, + "loss": 0.211662654876709, + "step": 136500 + }, + { + "epoch": 45.76220789010805, + "grad_norm": 0.8850246667861938, + "learning_rate": 2.7128643216080403e-05, + "loss": 0.21219783782958984, + "step": 136600 + }, + { + "epoch": 45.79571153362928, + "grad_norm": 0.9044328927993774, + "learning_rate": 2.711189279731993e-05, + "loss": 0.21055538177490235, + "step": 136700 + }, + { + "epoch": 45.829215177150516, + "grad_norm": 0.8955138325691223, + "learning_rate": 2.7095142378559464e-05, + "loss": 0.21124111175537108, + "step": 136800 + }, + { + "epoch": 45.862718820671745, + "grad_norm": 0.9041482210159302, + "learning_rate": 2.7078559463986603e-05, + "loss": 0.21166906356811524, + "step": 136900 + }, + { + "epoch": 45.89622246419298, + "grad_norm": 0.8111388087272644, + "learning_rate": 2.7061809045226132e-05, + "loss": 0.21167055130004883, + "step": 137000 + }, + { + "epoch": 45.92972610771422, + "grad_norm": 0.9616506695747375, + "learning_rate": 2.7045058626465664e-05, + "loss": 0.21228885650634766, + "step": 137100 + }, + { + "epoch": 45.963229751235446, + "grad_norm": 0.8436776399612427, + "learning_rate": 2.7028308207705193e-05, + "loss": 0.2126219940185547, + "step": 137200 + }, + { + "epoch": 45.99673339475668, + "grad_norm": 0.71140456199646, + "learning_rate": 2.7011557788944725e-05, + "loss": 0.21354110717773436, + "step": 137300 + }, + { + "epoch": 46.03015327916911, + "grad_norm": 0.7948451042175293, + "learning_rate": 2.6994807370184254e-05, + "loss": 0.2044697570800781, + "step": 137400 + }, + { + "epoch": 46.06365692269034, + "grad_norm": 0.8057336807250977, + "learning_rate": 2.6978056951423786e-05, + "loss": 0.20385299682617186, + "step": 137500 + }, + { + "epoch": 46.09716056621158, + "grad_norm": 0.7120649218559265, + "learning_rate": 2.6961306532663315e-05, + "loss": 0.20400421142578126, + "step": 137600 + }, + { + "epoch": 46.13066420973281, + "grad_norm": 0.9549148678779602, + "learning_rate": 2.6944556113902847e-05, + "loss": 0.2034744453430176, + "step": 137700 + }, + { + "epoch": 46.16416785325404, + "grad_norm": 0.8098897337913513, + "learning_rate": 2.6927805695142376e-05, + "loss": 0.203569393157959, + "step": 137800 + }, + { + "epoch": 46.19767149677527, + "grad_norm": 0.7123087644577026, + "learning_rate": 2.6911055276381915e-05, + "loss": 0.20544761657714844, + "step": 137900 + }, + { + "epoch": 46.23117514029651, + "grad_norm": 0.8449687361717224, + "learning_rate": 2.6894304857621444e-05, + "loss": 0.20498695373535156, + "step": 138000 + }, + { + "epoch": 46.26467878381774, + "grad_norm": 0.7853437066078186, + "learning_rate": 2.6877554438860976e-05, + "loss": 0.2059033203125, + "step": 138100 + }, + { + "epoch": 46.29818242733897, + "grad_norm": 0.7418807148933411, + "learning_rate": 2.6860804020100505e-05, + "loss": 0.20638565063476563, + "step": 138200 + }, + { + "epoch": 46.33168607086021, + "grad_norm": 0.9248971343040466, + "learning_rate": 2.6844053601340037e-05, + "loss": 0.2076273727416992, + "step": 138300 + }, + { + "epoch": 46.36518971438144, + "grad_norm": 0.8263251185417175, + "learning_rate": 2.6827303182579566e-05, + "loss": 0.20645214080810548, + "step": 138400 + }, + { + "epoch": 46.39869335790267, + "grad_norm": 0.9032105207443237, + "learning_rate": 2.6810552763819098e-05, + "loss": 0.20705162048339842, + "step": 138500 + }, + { + "epoch": 46.4321970014239, + "grad_norm": 0.7566851377487183, + "learning_rate": 2.6793802345058627e-05, + "loss": 0.20758819580078125, + "step": 138600 + }, + { + "epoch": 46.46570064494514, + "grad_norm": 0.7938912510871887, + "learning_rate": 2.677705192629816e-05, + "loss": 0.20770130157470704, + "step": 138700 + }, + { + "epoch": 46.49920428846637, + "grad_norm": 0.8320357799530029, + "learning_rate": 2.6760301507537688e-05, + "loss": 0.20806819915771485, + "step": 138800 + }, + { + "epoch": 46.5327079319876, + "grad_norm": 0.9987215995788574, + "learning_rate": 2.674355108877722e-05, + "loss": 0.20871660232543945, + "step": 138900 + }, + { + "epoch": 46.56621157550884, + "grad_norm": 0.8866457939147949, + "learning_rate": 2.672696817420436e-05, + "loss": 0.20802412033081055, + "step": 139000 + }, + { + "epoch": 46.59971521903007, + "grad_norm": 0.7644064426422119, + "learning_rate": 2.6710217755443888e-05, + "loss": 0.2100166893005371, + "step": 139100 + }, + { + "epoch": 46.6332188625513, + "grad_norm": 0.832198977470398, + "learning_rate": 2.669346733668342e-05, + "loss": 0.2086174964904785, + "step": 139200 + }, + { + "epoch": 46.66672250607254, + "grad_norm": 0.7455396056175232, + "learning_rate": 2.667671691792295e-05, + "loss": 0.21050701141357422, + "step": 139300 + }, + { + "epoch": 46.70022614959377, + "grad_norm": 0.7941868901252747, + "learning_rate": 2.665996649916248e-05, + "loss": 0.21018735885620118, + "step": 139400 + }, + { + "epoch": 46.733729793115, + "grad_norm": 0.745232105255127, + "learning_rate": 2.664321608040201e-05, + "loss": 0.2106583023071289, + "step": 139500 + }, + { + "epoch": 46.76723343663623, + "grad_norm": 0.8534348011016846, + "learning_rate": 2.6626465661641543e-05, + "loss": 0.21023065567016602, + "step": 139600 + }, + { + "epoch": 46.80073708015747, + "grad_norm": 0.8639134764671326, + "learning_rate": 2.660971524288107e-05, + "loss": 0.20966962814331055, + "step": 139700 + }, + { + "epoch": 46.8342407236787, + "grad_norm": 0.9052923917770386, + "learning_rate": 2.6592964824120604e-05, + "loss": 0.2114642906188965, + "step": 139800 + }, + { + "epoch": 46.86774436719993, + "grad_norm": 0.8590245246887207, + "learning_rate": 2.6576214405360132e-05, + "loss": 0.2110831069946289, + "step": 139900 + }, + { + "epoch": 46.90124801072117, + "grad_norm": 0.8708141446113586, + "learning_rate": 2.6559463986599665e-05, + "loss": 0.21110519409179687, + "step": 140000 + }, + { + "epoch": 46.9347516542424, + "grad_norm": 0.9694708585739136, + "learning_rate": 2.6542713567839193e-05, + "loss": 0.21246437072753907, + "step": 140100 + }, + { + "epoch": 46.96825529776363, + "grad_norm": 0.8531249761581421, + "learning_rate": 2.6525963149078732e-05, + "loss": 0.2127097511291504, + "step": 140200 + }, + { + "epoch": 47.001675182176065, + "grad_norm": 0.7149065136909485, + "learning_rate": 2.650921273031826e-05, + "loss": 0.21077686309814453, + "step": 140300 + }, + { + "epoch": 47.035178825697294, + "grad_norm": 0.906190812587738, + "learning_rate": 2.6492462311557793e-05, + "loss": 0.20198272705078124, + "step": 140400 + }, + { + "epoch": 47.06868246921853, + "grad_norm": 0.8794195652008057, + "learning_rate": 2.6475711892797322e-05, + "loss": 0.20144824981689452, + "step": 140500 + }, + { + "epoch": 47.10218611273976, + "grad_norm": 0.7231687307357788, + "learning_rate": 2.6458961474036854e-05, + "loss": 0.20203954696655274, + "step": 140600 + }, + { + "epoch": 47.135689756260994, + "grad_norm": 0.8035680651664734, + "learning_rate": 2.6442211055276383e-05, + "loss": 0.20453298568725586, + "step": 140700 + }, + { + "epoch": 47.16919339978222, + "grad_norm": 0.7751315832138062, + "learning_rate": 2.6425460636515916e-05, + "loss": 0.20380630493164062, + "step": 140800 + }, + { + "epoch": 47.20269704330346, + "grad_norm": 0.8336166739463806, + "learning_rate": 2.6408710217755444e-05, + "loss": 0.2044701385498047, + "step": 140900 + }, + { + "epoch": 47.236200686824695, + "grad_norm": 0.92495197057724, + "learning_rate": 2.6391959798994977e-05, + "loss": 0.20544666290283203, + "step": 141000 + }, + { + "epoch": 47.269704330345924, + "grad_norm": 0.8691511750221252, + "learning_rate": 2.637537688442211e-05, + "loss": 0.20497919082641602, + "step": 141100 + }, + { + "epoch": 47.30320797386716, + "grad_norm": 0.7744715213775635, + "learning_rate": 2.6358626465661645e-05, + "loss": 0.20545125961303712, + "step": 141200 + }, + { + "epoch": 47.33671161738839, + "grad_norm": 0.8087801337242126, + "learning_rate": 2.6341876046901177e-05, + "loss": 0.20726716995239258, + "step": 141300 + }, + { + "epoch": 47.370215260909625, + "grad_norm": 0.6278528571128845, + "learning_rate": 2.6325125628140706e-05, + "loss": 0.20632375717163087, + "step": 141400 + }, + { + "epoch": 47.40371890443085, + "grad_norm": 0.7197872996330261, + "learning_rate": 2.6308375209380238e-05, + "loss": 0.20561176300048828, + "step": 141500 + }, + { + "epoch": 47.43722254795209, + "grad_norm": 0.8030456900596619, + "learning_rate": 2.6291624790619767e-05, + "loss": 0.20726533889770507, + "step": 141600 + }, + { + "epoch": 47.470726191473325, + "grad_norm": 0.8122235536575317, + "learning_rate": 2.62748743718593e-05, + "loss": 0.20543954849243165, + "step": 141700 + }, + { + "epoch": 47.504229834994554, + "grad_norm": 0.8430666923522949, + "learning_rate": 2.6258123953098828e-05, + "loss": 0.20687795639038087, + "step": 141800 + }, + { + "epoch": 47.53773347851579, + "grad_norm": 0.7796192765235901, + "learning_rate": 2.624137353433836e-05, + "loss": 0.20932218551635742, + "step": 141900 + }, + { + "epoch": 47.57123712203702, + "grad_norm": 0.7568249702453613, + "learning_rate": 2.622462311557789e-05, + "loss": 0.20753023147583008, + "step": 142000 + }, + { + "epoch": 47.604740765558255, + "grad_norm": 0.7766709923744202, + "learning_rate": 2.620787269681742e-05, + "loss": 0.20817523956298828, + "step": 142100 + }, + { + "epoch": 47.63824440907949, + "grad_norm": 0.8407247066497803, + "learning_rate": 2.619112227805695e-05, + "loss": 0.20790090560913085, + "step": 142200 + }, + { + "epoch": 47.67174805260072, + "grad_norm": 1.0693186521530151, + "learning_rate": 2.6174371859296482e-05, + "loss": 0.20879848480224608, + "step": 142300 + }, + { + "epoch": 47.705251696121955, + "grad_norm": 0.9089698791503906, + "learning_rate": 2.615762144053601e-05, + "loss": 0.20962982177734374, + "step": 142400 + }, + { + "epoch": 47.738755339643184, + "grad_norm": 0.9101313948631287, + "learning_rate": 2.614087102177555e-05, + "loss": 0.20881969451904298, + "step": 142500 + }, + { + "epoch": 47.77225898316442, + "grad_norm": 0.9239957332611084, + "learning_rate": 2.612412060301508e-05, + "loss": 0.21106016159057617, + "step": 142600 + }, + { + "epoch": 47.80576262668565, + "grad_norm": 0.7095087170600891, + "learning_rate": 2.610737018425461e-05, + "loss": 0.21043779373168944, + "step": 142700 + }, + { + "epoch": 47.839266270206885, + "grad_norm": 0.8761176466941833, + "learning_rate": 2.609061976549414e-05, + "loss": 0.20853693008422852, + "step": 142800 + }, + { + "epoch": 47.87276991372812, + "grad_norm": 0.9387518763542175, + "learning_rate": 2.6073869346733672e-05, + "loss": 0.21088685989379882, + "step": 142900 + }, + { + "epoch": 47.90627355724935, + "grad_norm": 0.8915501832962036, + "learning_rate": 2.60571189279732e-05, + "loss": 0.21008544921875, + "step": 143000 + }, + { + "epoch": 47.939777200770585, + "grad_norm": 0.9699543714523315, + "learning_rate": 2.6040368509212733e-05, + "loss": 0.21000476837158202, + "step": 143100 + }, + { + "epoch": 47.973280844291814, + "grad_norm": 0.7812904119491577, + "learning_rate": 2.6023785594639865e-05, + "loss": 0.21052337646484376, + "step": 143200 + }, + { + "epoch": 48.006700728704246, + "grad_norm": 0.822690486907959, + "learning_rate": 2.6007035175879398e-05, + "loss": 0.20833581924438477, + "step": 143300 + }, + { + "epoch": 48.04020437222548, + "grad_norm": 0.6735044121742249, + "learning_rate": 2.5990284757118926e-05, + "loss": 0.20092033386230468, + "step": 143400 + }, + { + "epoch": 48.07370801574671, + "grad_norm": 0.7303795218467712, + "learning_rate": 2.5973534338358462e-05, + "loss": 0.2011802864074707, + "step": 143500 + }, + { + "epoch": 48.107211659267946, + "grad_norm": 0.7877155542373657, + "learning_rate": 2.5956783919597994e-05, + "loss": 0.2021241569519043, + "step": 143600 + }, + { + "epoch": 48.140715302789175, + "grad_norm": 0.7610930800437927, + "learning_rate": 2.5940033500837523e-05, + "loss": 0.20223419189453126, + "step": 143700 + }, + { + "epoch": 48.17421894631041, + "grad_norm": 0.81033855676651, + "learning_rate": 2.5923283082077055e-05, + "loss": 0.20270132064819335, + "step": 143800 + }, + { + "epoch": 48.20772258983165, + "grad_norm": 0.7211432456970215, + "learning_rate": 2.5906532663316584e-05, + "loss": 0.2033340072631836, + "step": 143900 + }, + { + "epoch": 48.241226233352876, + "grad_norm": 0.7816910147666931, + "learning_rate": 2.5889782244556116e-05, + "loss": 0.20389623641967775, + "step": 144000 + }, + { + "epoch": 48.27472987687411, + "grad_norm": 0.8680933713912964, + "learning_rate": 2.5873031825795645e-05, + "loss": 0.20449954986572266, + "step": 144100 + }, + { + "epoch": 48.30823352039534, + "grad_norm": 0.6703556776046753, + "learning_rate": 2.5856281407035177e-05, + "loss": 0.20437568664550781, + "step": 144200 + }, + { + "epoch": 48.34173716391658, + "grad_norm": 0.755338191986084, + "learning_rate": 2.5839530988274706e-05, + "loss": 0.20576271057128906, + "step": 144300 + }, + { + "epoch": 48.375240807437805, + "grad_norm": 0.7581430673599243, + "learning_rate": 2.582278056951424e-05, + "loss": 0.2058708953857422, + "step": 144400 + }, + { + "epoch": 48.40874445095904, + "grad_norm": 0.7973390817642212, + "learning_rate": 2.5806030150753767e-05, + "loss": 0.20591938018798828, + "step": 144500 + }, + { + "epoch": 48.44224809448028, + "grad_norm": 0.8226273655891418, + "learning_rate": 2.57892797319933e-05, + "loss": 0.20543519973754884, + "step": 144600 + }, + { + "epoch": 48.475751738001506, + "grad_norm": 0.9298210740089417, + "learning_rate": 2.5772529313232828e-05, + "loss": 0.2074728012084961, + "step": 144700 + }, + { + "epoch": 48.50925538152274, + "grad_norm": 0.7703186273574829, + "learning_rate": 2.5755778894472364e-05, + "loss": 0.2061468505859375, + "step": 144800 + }, + { + "epoch": 48.54275902504397, + "grad_norm": 0.7027441263198853, + "learning_rate": 2.5739028475711896e-05, + "loss": 0.2068248176574707, + "step": 144900 + }, + { + "epoch": 48.57626266856521, + "grad_norm": 0.866961658000946, + "learning_rate": 2.5722278056951425e-05, + "loss": 0.20709081649780273, + "step": 145000 + }, + { + "epoch": 48.60976631208644, + "grad_norm": 0.7900598645210266, + "learning_rate": 2.5705527638190957e-05, + "loss": 0.20745479583740234, + "step": 145100 + }, + { + "epoch": 48.64326995560767, + "grad_norm": 0.7642288208007812, + "learning_rate": 2.568877721943049e-05, + "loss": 0.20698997497558594, + "step": 145200 + }, + { + "epoch": 48.67677359912891, + "grad_norm": 0.8306117653846741, + "learning_rate": 2.5672026800670018e-05, + "loss": 0.20851272583007813, + "step": 145300 + }, + { + "epoch": 48.710277242650136, + "grad_norm": 0.9393877387046814, + "learning_rate": 2.565527638190955e-05, + "loss": 0.2079641914367676, + "step": 145400 + }, + { + "epoch": 48.74378088617137, + "grad_norm": 0.7118200659751892, + "learning_rate": 2.5638693467336683e-05, + "loss": 0.20779979705810547, + "step": 145500 + }, + { + "epoch": 48.7772845296926, + "grad_norm": 0.8508455157279968, + "learning_rate": 2.5621943048576215e-05, + "loss": 0.20885522842407225, + "step": 145600 + }, + { + "epoch": 48.81078817321384, + "grad_norm": 0.7956013083457947, + "learning_rate": 2.5605192629815744e-05, + "loss": 0.2095408821105957, + "step": 145700 + }, + { + "epoch": 48.84429181673507, + "grad_norm": 0.9105645418167114, + "learning_rate": 2.558844221105528e-05, + "loss": 0.20915800094604492, + "step": 145800 + }, + { + "epoch": 48.8777954602563, + "grad_norm": 0.8507822155952454, + "learning_rate": 2.5571691792294812e-05, + "loss": 0.20863231658935547, + "step": 145900 + }, + { + "epoch": 48.91129910377754, + "grad_norm": 0.9350414872169495, + "learning_rate": 2.555494137353434e-05, + "loss": 0.2097511100769043, + "step": 146000 + }, + { + "epoch": 48.944802747298766, + "grad_norm": 0.6584986448287964, + "learning_rate": 2.5538190954773873e-05, + "loss": 0.20917884826660157, + "step": 146100 + }, + { + "epoch": 48.97830639082, + "grad_norm": 0.8874914646148682, + "learning_rate": 2.55214405360134e-05, + "loss": 0.20966741561889649, + "step": 146200 + }, + { + "epoch": 49.011726275232434, + "grad_norm": 0.6621425747871399, + "learning_rate": 2.5504690117252934e-05, + "loss": 0.20701923370361328, + "step": 146300 + }, + { + "epoch": 49.04522991875366, + "grad_norm": 0.772162914276123, + "learning_rate": 2.5487939698492463e-05, + "loss": 0.19997344970703124, + "step": 146400 + }, + { + "epoch": 49.0787335622749, + "grad_norm": 0.7397682666778564, + "learning_rate": 2.5471189279731995e-05, + "loss": 0.19966798782348633, + "step": 146500 + }, + { + "epoch": 49.11223720579613, + "grad_norm": 0.7998943328857422, + "learning_rate": 2.5454438860971524e-05, + "loss": 0.20070135116577148, + "step": 146600 + }, + { + "epoch": 49.14574084931736, + "grad_norm": 0.8297356367111206, + "learning_rate": 2.5437688442211056e-05, + "loss": 0.2032426643371582, + "step": 146700 + }, + { + "epoch": 49.1792444928386, + "grad_norm": 0.6718747615814209, + "learning_rate": 2.5420938023450585e-05, + "loss": 0.20162422180175782, + "step": 146800 + }, + { + "epoch": 49.21274813635983, + "grad_norm": 0.8085470795631409, + "learning_rate": 2.5404187604690117e-05, + "loss": 0.20480926513671874, + "step": 146900 + }, + { + "epoch": 49.246251779881064, + "grad_norm": 0.6637224555015564, + "learning_rate": 2.5387437185929646e-05, + "loss": 0.20419147491455078, + "step": 147000 + }, + { + "epoch": 49.27975542340229, + "grad_norm": 0.8804967999458313, + "learning_rate": 2.537068676716918e-05, + "loss": 0.20260902404785155, + "step": 147100 + }, + { + "epoch": 49.31325906692353, + "grad_norm": 0.6562800407409668, + "learning_rate": 2.5353936348408713e-05, + "loss": 0.2042051887512207, + "step": 147200 + }, + { + "epoch": 49.346762710444764, + "grad_norm": 0.802295446395874, + "learning_rate": 2.5337185929648242e-05, + "loss": 0.20388504028320312, + "step": 147300 + }, + { + "epoch": 49.38026635396599, + "grad_norm": 0.6702427268028259, + "learning_rate": 2.5320435510887775e-05, + "loss": 0.20359308242797852, + "step": 147400 + }, + { + "epoch": 49.41376999748723, + "grad_norm": 0.6546157002449036, + "learning_rate": 2.5303685092127303e-05, + "loss": 0.20544279098510743, + "step": 147500 + }, + { + "epoch": 49.44727364100846, + "grad_norm": 0.7745968103408813, + "learning_rate": 2.528710217755444e-05, + "loss": 0.20460813522338867, + "step": 147600 + }, + { + "epoch": 49.480777284529694, + "grad_norm": 0.754804790019989, + "learning_rate": 2.527035175879397e-05, + "loss": 0.20541131973266602, + "step": 147700 + }, + { + "epoch": 49.51428092805092, + "grad_norm": 0.8245925307273865, + "learning_rate": 2.52536013400335e-05, + "loss": 0.20514223098754883, + "step": 147800 + }, + { + "epoch": 49.54778457157216, + "grad_norm": 0.7658609747886658, + "learning_rate": 2.5236850921273032e-05, + "loss": 0.20672239303588869, + "step": 147900 + }, + { + "epoch": 49.581288215093394, + "grad_norm": 0.8386098742485046, + "learning_rate": 2.522010050251256e-05, + "loss": 0.20576807022094726, + "step": 148000 + }, + { + "epoch": 49.61479185861462, + "grad_norm": 0.9193150997161865, + "learning_rate": 2.5203350083752097e-05, + "loss": 0.20691360473632814, + "step": 148100 + }, + { + "epoch": 49.64829550213586, + "grad_norm": 0.8064738512039185, + "learning_rate": 2.518659966499163e-05, + "loss": 0.20630212783813476, + "step": 148200 + }, + { + "epoch": 49.68179914565709, + "grad_norm": 0.6325901746749878, + "learning_rate": 2.5169849246231158e-05, + "loss": 0.20667299270629882, + "step": 148300 + }, + { + "epoch": 49.715302789178324, + "grad_norm": 0.796997606754303, + "learning_rate": 2.515309882747069e-05, + "loss": 0.20724594116210937, + "step": 148400 + }, + { + "epoch": 49.74880643269955, + "grad_norm": 0.8888092041015625, + "learning_rate": 2.513634840871022e-05, + "loss": 0.20756359100341798, + "step": 148500 + }, + { + "epoch": 49.78231007622079, + "grad_norm": 0.8092156052589417, + "learning_rate": 2.511959798994975e-05, + "loss": 0.2068187713623047, + "step": 148600 + }, + { + "epoch": 49.815813719742025, + "grad_norm": 0.9051980972290039, + "learning_rate": 2.510284757118928e-05, + "loss": 0.20732791900634764, + "step": 148700 + }, + { + "epoch": 49.84931736326325, + "grad_norm": 0.9662907719612122, + "learning_rate": 2.5086097152428812e-05, + "loss": 0.2081096076965332, + "step": 148800 + }, + { + "epoch": 49.88282100678449, + "grad_norm": 0.9831855297088623, + "learning_rate": 2.506934673366834e-05, + "loss": 0.20788869857788086, + "step": 148900 + }, + { + "epoch": 49.91632465030572, + "grad_norm": 0.6909393668174744, + "learning_rate": 2.5052596314907873e-05, + "loss": 0.20930927276611327, + "step": 149000 + }, + { + "epoch": 49.949828293826954, + "grad_norm": 0.7016172409057617, + "learning_rate": 2.5035845896147402e-05, + "loss": 0.20851097106933594, + "step": 149100 + }, + { + "epoch": 49.98333193734819, + "grad_norm": 0.9753764867782593, + "learning_rate": 2.5019095477386934e-05, + "loss": 0.20876035690307618, + "step": 149200 + }, + { + "epoch": 50.016751821760614, + "grad_norm": 0.814017117023468, + "learning_rate": 2.500234505862647e-05, + "loss": 0.20314416885375977, + "step": 149300 + }, + { + "epoch": 50.05025546528185, + "grad_norm": 0.7156041860580444, + "learning_rate": 2.4985594639866e-05, + "loss": 0.19888938903808595, + "step": 149400 + }, + { + "epoch": 50.08375910880308, + "grad_norm": 0.7967144250869751, + "learning_rate": 2.4968844221105528e-05, + "loss": 0.2009027862548828, + "step": 149500 + }, + { + "epoch": 50.117262752324315, + "grad_norm": 0.8211435079574585, + "learning_rate": 2.495209380234506e-05, + "loss": 0.20014671325683595, + "step": 149600 + }, + { + "epoch": 50.15076639584555, + "grad_norm": 0.6646608710289001, + "learning_rate": 2.4935510887772196e-05, + "loss": 0.20111976623535155, + "step": 149700 + }, + { + "epoch": 50.18427003936678, + "grad_norm": 0.7369064092636108, + "learning_rate": 2.4918760469011724e-05, + "loss": 0.20281072616577148, + "step": 149800 + }, + { + "epoch": 50.217773682888016, + "grad_norm": 0.5978965163230896, + "learning_rate": 2.4902010050251257e-05, + "loss": 0.20169940948486328, + "step": 149900 + }, + { + "epoch": 50.251277326409244, + "grad_norm": 0.8313732743263245, + "learning_rate": 2.4885259631490785e-05, + "loss": 0.2015657615661621, + "step": 150000 + }, + { + "epoch": 50.28478096993048, + "grad_norm": 0.9016907811164856, + "learning_rate": 2.486850921273032e-05, + "loss": 0.2032327651977539, + "step": 150100 + }, + { + "epoch": 50.318284613451716, + "grad_norm": 0.7199917435646057, + "learning_rate": 2.485175879396985e-05, + "loss": 0.20292411804199217, + "step": 150200 + }, + { + "epoch": 50.351788256972945, + "grad_norm": 0.8585846424102783, + "learning_rate": 2.4835008375209382e-05, + "loss": 0.20314014434814454, + "step": 150300 + }, + { + "epoch": 50.38529190049418, + "grad_norm": 0.7034669518470764, + "learning_rate": 2.481825795644891e-05, + "loss": 0.20416894912719727, + "step": 150400 + }, + { + "epoch": 50.41879554401541, + "grad_norm": 0.865682065486908, + "learning_rate": 2.4801507537688443e-05, + "loss": 0.20476892471313476, + "step": 150500 + }, + { + "epoch": 50.452299187536646, + "grad_norm": 0.7300936579704285, + "learning_rate": 2.4784757118927972e-05, + "loss": 0.20488790512084962, + "step": 150600 + }, + { + "epoch": 50.485802831057875, + "grad_norm": 0.8905784487724304, + "learning_rate": 2.4768006700167508e-05, + "loss": 0.20429906845092774, + "step": 150700 + }, + { + "epoch": 50.51930647457911, + "grad_norm": 0.759925365447998, + "learning_rate": 2.4751256281407036e-05, + "loss": 0.2061992645263672, + "step": 150800 + }, + { + "epoch": 50.552810118100346, + "grad_norm": 0.7266499996185303, + "learning_rate": 2.473450586264657e-05, + "loss": 0.20576707839965822, + "step": 150900 + }, + { + "epoch": 50.586313761621575, + "grad_norm": 0.6730079650878906, + "learning_rate": 2.4717755443886097e-05, + "loss": 0.20497604370117187, + "step": 151000 + }, + { + "epoch": 50.61981740514281, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.470100502512563e-05, + "loss": 0.20579778671264648, + "step": 151100 + }, + { + "epoch": 50.65332104866404, + "grad_norm": 0.7999610304832458, + "learning_rate": 2.468425460636516e-05, + "loss": 0.20637252807617187, + "step": 151200 + }, + { + "epoch": 50.686824692185276, + "grad_norm": 0.7081186771392822, + "learning_rate": 2.4667504187604694e-05, + "loss": 0.20630395889282227, + "step": 151300 + }, + { + "epoch": 50.720328335706505, + "grad_norm": 0.8061164021492004, + "learning_rate": 2.4650753768844223e-05, + "loss": 0.20621145248413086, + "step": 151400 + }, + { + "epoch": 50.75383197922774, + "grad_norm": 0.826841413974762, + "learning_rate": 2.4634003350083755e-05, + "loss": 0.20574779510498048, + "step": 151500 + }, + { + "epoch": 50.78733562274898, + "grad_norm": 0.7742196321487427, + "learning_rate": 2.4617252931323284e-05, + "loss": 0.205941162109375, + "step": 151600 + }, + { + "epoch": 50.820839266270205, + "grad_norm": 0.8660677075386047, + "learning_rate": 2.4600502512562816e-05, + "loss": 0.20769458770751953, + "step": 151700 + }, + { + "epoch": 50.85434290979144, + "grad_norm": 0.7156419157981873, + "learning_rate": 2.4583752093802345e-05, + "loss": 0.20709629058837892, + "step": 151800 + }, + { + "epoch": 50.88784655331267, + "grad_norm": 0.812447190284729, + "learning_rate": 2.456716917922948e-05, + "loss": 0.20599342346191407, + "step": 151900 + }, + { + "epoch": 50.921350196833906, + "grad_norm": 0.8019922375679016, + "learning_rate": 2.4550418760469013e-05, + "loss": 0.20727943420410155, + "step": 152000 + }, + { + "epoch": 50.95485384035514, + "grad_norm": 0.7810946702957153, + "learning_rate": 2.4533668341708542e-05, + "loss": 0.2080386734008789, + "step": 152100 + }, + { + "epoch": 50.98835748387637, + "grad_norm": 0.7739458084106445, + "learning_rate": 2.4516917922948074e-05, + "loss": 0.2072319793701172, + "step": 152200 + }, + { + "epoch": 51.0217773682888, + "grad_norm": 0.7210680246353149, + "learning_rate": 2.4500167504187606e-05, + "loss": 0.20264469146728514, + "step": 152300 + }, + { + "epoch": 51.05528101181003, + "grad_norm": 0.7153304219245911, + "learning_rate": 2.448341708542714e-05, + "loss": 0.19857017517089845, + "step": 152400 + }, + { + "epoch": 51.08878465533127, + "grad_norm": 0.7581055760383606, + "learning_rate": 2.4466666666666667e-05, + "loss": 0.19956087112426757, + "step": 152500 + }, + { + "epoch": 51.1222882988525, + "grad_norm": 0.7437317967414856, + "learning_rate": 2.44499162479062e-05, + "loss": 0.19829078674316405, + "step": 152600 + }, + { + "epoch": 51.15579194237373, + "grad_norm": 0.6868230104446411, + "learning_rate": 2.443316582914573e-05, + "loss": 0.19977245330810547, + "step": 152700 + }, + { + "epoch": 51.18929558589497, + "grad_norm": 0.7176596522331238, + "learning_rate": 2.441641541038526e-05, + "loss": 0.20137237548828124, + "step": 152800 + }, + { + "epoch": 51.2227992294162, + "grad_norm": 0.7465003132820129, + "learning_rate": 2.439966499162479e-05, + "loss": 0.20151824951171876, + "step": 152900 + }, + { + "epoch": 51.25630287293743, + "grad_norm": 0.8134509325027466, + "learning_rate": 2.4382914572864325e-05, + "loss": 0.20129066467285156, + "step": 153000 + }, + { + "epoch": 51.28980651645867, + "grad_norm": 0.7882896065711975, + "learning_rate": 2.4366164154103854e-05, + "loss": 0.20372648239135743, + "step": 153100 + }, + { + "epoch": 51.3233101599799, + "grad_norm": 0.6261149048805237, + "learning_rate": 2.4349413735343386e-05, + "loss": 0.20317134857177735, + "step": 153200 + }, + { + "epoch": 51.35681380350113, + "grad_norm": 0.7279029488563538, + "learning_rate": 2.4332663316582915e-05, + "loss": 0.20203876495361328, + "step": 153300 + }, + { + "epoch": 51.39031744702236, + "grad_norm": 0.7463719248771667, + "learning_rate": 2.4315912897822447e-05, + "loss": 0.2032138252258301, + "step": 153400 + }, + { + "epoch": 51.4238210905436, + "grad_norm": 0.7583816051483154, + "learning_rate": 2.4299162479061976e-05, + "loss": 0.20314373016357423, + "step": 153500 + }, + { + "epoch": 51.45732473406483, + "grad_norm": 0.7088111042976379, + "learning_rate": 2.428241206030151e-05, + "loss": 0.20380254745483398, + "step": 153600 + }, + { + "epoch": 51.49082837758606, + "grad_norm": 0.6820314526557922, + "learning_rate": 2.426566164154104e-05, + "loss": 0.20396411895751954, + "step": 153700 + }, + { + "epoch": 51.5243320211073, + "grad_norm": 0.6890659332275391, + "learning_rate": 2.4248911222780573e-05, + "loss": 0.20465932846069335, + "step": 153800 + }, + { + "epoch": 51.55783566462853, + "grad_norm": 0.7410996556282043, + "learning_rate": 2.4232328308207705e-05, + "loss": 0.20433155059814453, + "step": 153900 + }, + { + "epoch": 51.59133930814976, + "grad_norm": 0.6642614006996155, + "learning_rate": 2.4215577889447237e-05, + "loss": 0.20583141326904297, + "step": 154000 + }, + { + "epoch": 51.62484295167099, + "grad_norm": 0.8036423921585083, + "learning_rate": 2.419882747068677e-05, + "loss": 0.20297210693359374, + "step": 154100 + }, + { + "epoch": 51.65834659519223, + "grad_norm": 0.7510450482368469, + "learning_rate": 2.4182077051926298e-05, + "loss": 0.20401430130004883, + "step": 154200 + }, + { + "epoch": 51.69185023871346, + "grad_norm": 0.7840591073036194, + "learning_rate": 2.416532663316583e-05, + "loss": 0.205728702545166, + "step": 154300 + }, + { + "epoch": 51.72535388223469, + "grad_norm": 0.8357808589935303, + "learning_rate": 2.414857621440536e-05, + "loss": 0.20580055236816405, + "step": 154400 + }, + { + "epoch": 51.75885752575593, + "grad_norm": 0.7890837788581848, + "learning_rate": 2.413182579564489e-05, + "loss": 0.2051936149597168, + "step": 154500 + }, + { + "epoch": 51.79236116927716, + "grad_norm": 1.031099557876587, + "learning_rate": 2.4115075376884424e-05, + "loss": 0.20656421661376953, + "step": 154600 + }, + { + "epoch": 51.82586481279839, + "grad_norm": 0.7498375773429871, + "learning_rate": 2.4098324958123956e-05, + "loss": 0.2050635528564453, + "step": 154700 + }, + { + "epoch": 51.85936845631962, + "grad_norm": 0.760242760181427, + "learning_rate": 2.4081574539363485e-05, + "loss": 0.20564306259155274, + "step": 154800 + }, + { + "epoch": 51.89287209984086, + "grad_norm": 0.7774176597595215, + "learning_rate": 2.4064824120603017e-05, + "loss": 0.20756494522094726, + "step": 154900 + }, + { + "epoch": 51.926375743362094, + "grad_norm": 0.7169613242149353, + "learning_rate": 2.4048073701842546e-05, + "loss": 0.2062942886352539, + "step": 155000 + }, + { + "epoch": 51.95987938688332, + "grad_norm": 0.8178589344024658, + "learning_rate": 2.4031323283082078e-05, + "loss": 0.20722549438476562, + "step": 155100 + }, + { + "epoch": 51.99338303040456, + "grad_norm": 0.9282923936843872, + "learning_rate": 2.401457286432161e-05, + "loss": 0.20599929809570314, + "step": 155200 + }, + { + "epoch": 52.02680291481698, + "grad_norm": 0.718063235282898, + "learning_rate": 2.3997822445561142e-05, + "loss": 0.19876413345336913, + "step": 155300 + }, + { + "epoch": 52.06030655833822, + "grad_norm": 0.8059532642364502, + "learning_rate": 2.398107202680067e-05, + "loss": 0.19822462081909178, + "step": 155400 + }, + { + "epoch": 52.093810201859455, + "grad_norm": 0.7145259380340576, + "learning_rate": 2.3964321608040203e-05, + "loss": 0.19868303298950196, + "step": 155500 + }, + { + "epoch": 52.127313845380684, + "grad_norm": 0.8659557700157166, + "learning_rate": 2.3947571189279732e-05, + "loss": 0.19922651290893556, + "step": 155600 + }, + { + "epoch": 52.16081748890192, + "grad_norm": 0.6749393939971924, + "learning_rate": 2.3930820770519264e-05, + "loss": 0.1997986602783203, + "step": 155700 + }, + { + "epoch": 52.19432113242315, + "grad_norm": 0.6439624428749084, + "learning_rate": 2.3914070351758793e-05, + "loss": 0.20102750778198242, + "step": 155800 + }, + { + "epoch": 52.227824775944384, + "grad_norm": 0.7515970468521118, + "learning_rate": 2.389748743718593e-05, + "loss": 0.20047502517700194, + "step": 155900 + }, + { + "epoch": 52.26132841946562, + "grad_norm": 0.806867241859436, + "learning_rate": 2.388073701842546e-05, + "loss": 0.19967298507690429, + "step": 156000 + }, + { + "epoch": 52.29483206298685, + "grad_norm": 0.6517553925514221, + "learning_rate": 2.3863986599664994e-05, + "loss": 0.20189517974853516, + "step": 156100 + }, + { + "epoch": 52.328335706508085, + "grad_norm": 0.7536884546279907, + "learning_rate": 2.3847236180904522e-05, + "loss": 0.20110305786132812, + "step": 156200 + }, + { + "epoch": 52.361839350029314, + "grad_norm": 0.6968570947647095, + "learning_rate": 2.3830485762144055e-05, + "loss": 0.20244617462158204, + "step": 156300 + }, + { + "epoch": 52.39534299355055, + "grad_norm": 0.7550085783004761, + "learning_rate": 2.3813735343383587e-05, + "loss": 0.20247106552124022, + "step": 156400 + }, + { + "epoch": 52.42884663707178, + "grad_norm": 0.720716118812561, + "learning_rate": 2.3796984924623116e-05, + "loss": 0.20291017532348632, + "step": 156500 + }, + { + "epoch": 52.462350280593014, + "grad_norm": 0.8645543456077576, + "learning_rate": 2.3780234505862648e-05, + "loss": 0.20293344497680665, + "step": 156600 + }, + { + "epoch": 52.49585392411425, + "grad_norm": 0.8600931167602539, + "learning_rate": 2.3763484087102177e-05, + "loss": 0.20278577804565429, + "step": 156700 + }, + { + "epoch": 52.52935756763548, + "grad_norm": 0.7974618673324585, + "learning_rate": 2.374673366834171e-05, + "loss": 0.202381591796875, + "step": 156800 + }, + { + "epoch": 52.562861211156715, + "grad_norm": 0.7992094159126282, + "learning_rate": 2.372998324958124e-05, + "loss": 0.20381240844726561, + "step": 156900 + }, + { + "epoch": 52.596364854677944, + "grad_norm": 0.8903921842575073, + "learning_rate": 2.3713232830820773e-05, + "loss": 0.20466848373413085, + "step": 157000 + }, + { + "epoch": 52.62986849819918, + "grad_norm": 0.7660692930221558, + "learning_rate": 2.3696482412060302e-05, + "loss": 0.20477258682250976, + "step": 157100 + }, + { + "epoch": 52.663372141720416, + "grad_norm": 0.9394494891166687, + "learning_rate": 2.3679731993299834e-05, + "loss": 0.20499584197998047, + "step": 157200 + }, + { + "epoch": 52.696875785241645, + "grad_norm": 0.7494113445281982, + "learning_rate": 2.3662981574539363e-05, + "loss": 0.20393524169921876, + "step": 157300 + }, + { + "epoch": 52.73037942876288, + "grad_norm": 0.8550491333007812, + "learning_rate": 2.3646231155778895e-05, + "loss": 0.2046040725708008, + "step": 157400 + }, + { + "epoch": 52.76388307228411, + "grad_norm": 0.7414348721504211, + "learning_rate": 2.3629480737018428e-05, + "loss": 0.2042390251159668, + "step": 157500 + }, + { + "epoch": 52.797386715805345, + "grad_norm": 0.7701572775840759, + "learning_rate": 2.361273031825796e-05, + "loss": 0.20498817443847656, + "step": 157600 + }, + { + "epoch": 52.830890359326574, + "grad_norm": 0.8651624917984009, + "learning_rate": 2.359597989949749e-05, + "loss": 0.2049662399291992, + "step": 157700 + }, + { + "epoch": 52.86439400284781, + "grad_norm": 0.7625434398651123, + "learning_rate": 2.357922948073702e-05, + "loss": 0.20496458053588867, + "step": 157800 + }, + { + "epoch": 52.897897646369046, + "grad_norm": 0.7538461685180664, + "learning_rate": 2.356247906197655e-05, + "loss": 0.20603256225585936, + "step": 157900 + }, + { + "epoch": 52.931401289890275, + "grad_norm": 0.8014910221099854, + "learning_rate": 2.3545728643216082e-05, + "loss": 0.20654550552368164, + "step": 158000 + }, + { + "epoch": 52.96490493341151, + "grad_norm": 0.7098953723907471, + "learning_rate": 2.3529145728643218e-05, + "loss": 0.2058616065979004, + "step": 158100 + }, + { + "epoch": 52.99840857693274, + "grad_norm": 0.7502704858779907, + "learning_rate": 2.3512395309882747e-05, + "loss": 0.20542961120605469, + "step": 158200 + }, + { + "epoch": 53.03182846134517, + "grad_norm": 0.7823647260665894, + "learning_rate": 2.349564489112228e-05, + "loss": 0.19869186401367187, + "step": 158300 + }, + { + "epoch": 53.06533210486641, + "grad_norm": 0.6451433300971985, + "learning_rate": 2.3478894472361808e-05, + "loss": 0.19836278915405273, + "step": 158400 + }, + { + "epoch": 53.098835748387636, + "grad_norm": 0.778315544128418, + "learning_rate": 2.346214405360134e-05, + "loss": 0.196907901763916, + "step": 158500 + }, + { + "epoch": 53.13233939190887, + "grad_norm": 0.7905980944633484, + "learning_rate": 2.3445393634840872e-05, + "loss": 0.19891220092773437, + "step": 158600 + }, + { + "epoch": 53.1658430354301, + "grad_norm": 0.7197417616844177, + "learning_rate": 2.3428643216080404e-05, + "loss": 0.19840576171875, + "step": 158700 + }, + { + "epoch": 53.199346678951336, + "grad_norm": 0.8555814623832703, + "learning_rate": 2.3411892797319933e-05, + "loss": 0.20008617401123047, + "step": 158800 + }, + { + "epoch": 53.23285032247257, + "grad_norm": 0.7590495944023132, + "learning_rate": 2.3395142378559465e-05, + "loss": 0.20077667236328126, + "step": 158900 + }, + { + "epoch": 53.2663539659938, + "grad_norm": 0.7683301568031311, + "learning_rate": 2.3378391959798994e-05, + "loss": 0.19980268478393554, + "step": 159000 + }, + { + "epoch": 53.29985760951504, + "grad_norm": 0.7807407379150391, + "learning_rate": 2.3361641541038526e-05, + "loss": 0.20026128768920898, + "step": 159100 + }, + { + "epoch": 53.333361253036266, + "grad_norm": 0.8405656218528748, + "learning_rate": 2.334489112227806e-05, + "loss": 0.20058374404907225, + "step": 159200 + }, + { + "epoch": 53.3668648965575, + "grad_norm": 0.9434088468551636, + "learning_rate": 2.332814070351759e-05, + "loss": 0.2012481689453125, + "step": 159300 + }, + { + "epoch": 53.40036854007873, + "grad_norm": 0.7459748387336731, + "learning_rate": 2.331139028475712e-05, + "loss": 0.20088954925537109, + "step": 159400 + }, + { + "epoch": 53.433872183599966, + "grad_norm": 0.7078500390052795, + "learning_rate": 2.3294639865996652e-05, + "loss": 0.20286613464355469, + "step": 159500 + }, + { + "epoch": 53.4673758271212, + "grad_norm": 0.8187021017074585, + "learning_rate": 2.327788944723618e-05, + "loss": 0.2021192741394043, + "step": 159600 + }, + { + "epoch": 53.50087947064243, + "grad_norm": 0.8571094274520874, + "learning_rate": 2.3261139028475713e-05, + "loss": 0.20223554611206054, + "step": 159700 + }, + { + "epoch": 53.53438311416367, + "grad_norm": 0.7480899691581726, + "learning_rate": 2.3244388609715245e-05, + "loss": 0.20176963806152343, + "step": 159800 + }, + { + "epoch": 53.567886757684896, + "grad_norm": 0.6709027886390686, + "learning_rate": 2.3227638190954777e-05, + "loss": 0.20310573577880858, + "step": 159900 + }, + { + "epoch": 53.60139040120613, + "grad_norm": 0.8324502110481262, + "learning_rate": 2.3210887772194306e-05, + "loss": 0.20389171600341796, + "step": 160000 + }, + { + "epoch": 53.63489404472736, + "grad_norm": 0.7991625666618347, + "learning_rate": 2.3194304857621442e-05, + "loss": 0.20335477828979492, + "step": 160100 + }, + { + "epoch": 53.6683976882486, + "grad_norm": 0.8041797876358032, + "learning_rate": 2.3177554438860974e-05, + "loss": 0.20338481903076172, + "step": 160200 + }, + { + "epoch": 53.70190133176983, + "grad_norm": 0.7331723570823669, + "learning_rate": 2.3160804020100503e-05, + "loss": 0.20225767135620118, + "step": 160300 + }, + { + "epoch": 53.73540497529106, + "grad_norm": 0.8455171585083008, + "learning_rate": 2.3144053601340035e-05, + "loss": 0.20394590377807617, + "step": 160400 + }, + { + "epoch": 53.7689086188123, + "grad_norm": 0.7466434836387634, + "learning_rate": 2.3127303182579564e-05, + "loss": 0.20405231475830077, + "step": 160500 + }, + { + "epoch": 53.802412262333526, + "grad_norm": 0.7956470847129822, + "learning_rate": 2.3110552763819096e-05, + "loss": 0.20502872467041017, + "step": 160600 + }, + { + "epoch": 53.83591590585476, + "grad_norm": 0.8183136582374573, + "learning_rate": 2.3093802345058625e-05, + "loss": 0.20336063385009764, + "step": 160700 + }, + { + "epoch": 53.869419549376, + "grad_norm": 0.6803155541419983, + "learning_rate": 2.307705192629816e-05, + "loss": 0.20551418304443358, + "step": 160800 + }, + { + "epoch": 53.90292319289723, + "grad_norm": 0.7090324759483337, + "learning_rate": 2.306030150753769e-05, + "loss": 0.20483921051025392, + "step": 160900 + }, + { + "epoch": 53.93642683641846, + "grad_norm": 0.6998985409736633, + "learning_rate": 2.304355108877722e-05, + "loss": 0.20418329238891603, + "step": 161000 + }, + { + "epoch": 53.96993047993969, + "grad_norm": 0.7103771567344666, + "learning_rate": 2.302680067001675e-05, + "loss": 0.20509437561035157, + "step": 161100 + }, + { + "epoch": 54.00335036435212, + "grad_norm": 0.9205202460289001, + "learning_rate": 2.3010050251256283e-05, + "loss": 0.20359134674072266, + "step": 161200 + }, + { + "epoch": 54.03685400787336, + "grad_norm": 0.7976627349853516, + "learning_rate": 2.299329983249581e-05, + "loss": 0.19689498901367186, + "step": 161300 + }, + { + "epoch": 54.07035765139459, + "grad_norm": 0.821431040763855, + "learning_rate": 2.2976549413735344e-05, + "loss": 0.1979433059692383, + "step": 161400 + }, + { + "epoch": 54.10386129491582, + "grad_norm": 0.7001577019691467, + "learning_rate": 2.2959798994974876e-05, + "loss": 0.1971571159362793, + "step": 161500 + }, + { + "epoch": 54.13736493843705, + "grad_norm": 0.8949475884437561, + "learning_rate": 2.2943048576214408e-05, + "loss": 0.19859142303466798, + "step": 161600 + }, + { + "epoch": 54.17086858195829, + "grad_norm": 0.7298758029937744, + "learning_rate": 2.2926298157453937e-05, + "loss": 0.19952430725097656, + "step": 161700 + }, + { + "epoch": 54.204372225479524, + "grad_norm": 0.8920609951019287, + "learning_rate": 2.290954773869347e-05, + "loss": 0.1987653160095215, + "step": 161800 + }, + { + "epoch": 54.23787586900075, + "grad_norm": 0.7720832824707031, + "learning_rate": 2.2892797319932998e-05, + "loss": 0.19959186553955077, + "step": 161900 + }, + { + "epoch": 54.27137951252199, + "grad_norm": 0.7590644359588623, + "learning_rate": 2.287604690117253e-05, + "loss": 0.19991098403930663, + "step": 162000 + }, + { + "epoch": 54.30488315604322, + "grad_norm": 0.7114115357398987, + "learning_rate": 2.2859296482412062e-05, + "loss": 0.20001384735107422, + "step": 162100 + }, + { + "epoch": 54.338386799564454, + "grad_norm": 0.6103782057762146, + "learning_rate": 2.28427135678392e-05, + "loss": 0.2000261116027832, + "step": 162200 + }, + { + "epoch": 54.37189044308568, + "grad_norm": 0.678782045841217, + "learning_rate": 2.2825963149078727e-05, + "loss": 0.2014828109741211, + "step": 162300 + }, + { + "epoch": 54.40539408660692, + "grad_norm": 0.8127717971801758, + "learning_rate": 2.280921273031826e-05, + "loss": 0.1989847755432129, + "step": 162400 + }, + { + "epoch": 54.438897730128154, + "grad_norm": 0.8343021273612976, + "learning_rate": 2.279246231155779e-05, + "loss": 0.20117862701416014, + "step": 162500 + }, + { + "epoch": 54.47240137364938, + "grad_norm": 0.7219998240470886, + "learning_rate": 2.277571189279732e-05, + "loss": 0.20171173095703124, + "step": 162600 + }, + { + "epoch": 54.50590501717062, + "grad_norm": 0.817757785320282, + "learning_rate": 2.2758961474036853e-05, + "loss": 0.20216232299804687, + "step": 162700 + }, + { + "epoch": 54.53940866069185, + "grad_norm": 0.8951203227043152, + "learning_rate": 2.274221105527638e-05, + "loss": 0.20124095916748047, + "step": 162800 + }, + { + "epoch": 54.572912304213084, + "grad_norm": 0.8889951109886169, + "learning_rate": 2.2725460636515914e-05, + "loss": 0.20379587173461913, + "step": 162900 + }, + { + "epoch": 54.60641594773432, + "grad_norm": 0.8064408898353577, + "learning_rate": 2.2708710217755442e-05, + "loss": 0.20114097595214844, + "step": 163000 + }, + { + "epoch": 54.63991959125555, + "grad_norm": 0.6613183617591858, + "learning_rate": 2.2691959798994978e-05, + "loss": 0.20306098937988282, + "step": 163100 + }, + { + "epoch": 54.673423234776784, + "grad_norm": 0.8730353713035583, + "learning_rate": 2.2675209380234507e-05, + "loss": 0.20401838302612305, + "step": 163200 + }, + { + "epoch": 54.70692687829801, + "grad_norm": 0.7803497314453125, + "learning_rate": 2.265845896147404e-05, + "loss": 0.20256214141845702, + "step": 163300 + }, + { + "epoch": 54.74043052181925, + "grad_norm": 0.8791249394416809, + "learning_rate": 2.2641708542713568e-05, + "loss": 0.20302362442016603, + "step": 163400 + }, + { + "epoch": 54.77393416534048, + "grad_norm": 0.8422548770904541, + "learning_rate": 2.26249581239531e-05, + "loss": 0.2037299919128418, + "step": 163500 + }, + { + "epoch": 54.807437808861714, + "grad_norm": 0.6493898630142212, + "learning_rate": 2.260820770519263e-05, + "loss": 0.20337121963500976, + "step": 163600 + }, + { + "epoch": 54.84094145238295, + "grad_norm": 0.8213750720024109, + "learning_rate": 2.259145728643216e-05, + "loss": 0.20318853378295898, + "step": 163700 + }, + { + "epoch": 54.87444509590418, + "grad_norm": 0.9080546498298645, + "learning_rate": 2.2574706867671693e-05, + "loss": 0.20395517349243164, + "step": 163800 + }, + { + "epoch": 54.907948739425414, + "grad_norm": 0.9570611715316772, + "learning_rate": 2.2557956448911226e-05, + "loss": 0.20360021591186522, + "step": 163900 + }, + { + "epoch": 54.94145238294664, + "grad_norm": 0.848283588886261, + "learning_rate": 2.2541206030150754e-05, + "loss": 0.20453887939453125, + "step": 164000 + }, + { + "epoch": 54.97495602646788, + "grad_norm": 0.8141411542892456, + "learning_rate": 2.2524455611390287e-05, + "loss": 0.20472782135009765, + "step": 164100 + }, + { + "epoch": 55.00837591088031, + "grad_norm": 0.6006379723548889, + "learning_rate": 2.2507872696817423e-05, + "loss": 0.2019051742553711, + "step": 164200 + }, + { + "epoch": 55.04187955440154, + "grad_norm": 0.6700722575187683, + "learning_rate": 2.249112227805695e-05, + "loss": 0.1957373046875, + "step": 164300 + }, + { + "epoch": 55.075383197922775, + "grad_norm": 0.7176284193992615, + "learning_rate": 2.2474371859296484e-05, + "loss": 0.1963091278076172, + "step": 164400 + }, + { + "epoch": 55.108886841444004, + "grad_norm": 0.6696990132331848, + "learning_rate": 2.2457621440536016e-05, + "loss": 0.19629579544067383, + "step": 164500 + }, + { + "epoch": 55.14239048496524, + "grad_norm": 0.7618410587310791, + "learning_rate": 2.2440871021775545e-05, + "loss": 0.19794061660766601, + "step": 164600 + }, + { + "epoch": 55.175894128486476, + "grad_norm": 0.6654366850852966, + "learning_rate": 2.2424120603015077e-05, + "loss": 0.1991598892211914, + "step": 164700 + }, + { + "epoch": 55.209397772007705, + "grad_norm": 0.9601466059684753, + "learning_rate": 2.240737018425461e-05, + "loss": 0.19887115478515624, + "step": 164800 + }, + { + "epoch": 55.24290141552894, + "grad_norm": 0.766276478767395, + "learning_rate": 2.2390619765494138e-05, + "loss": 0.19863889694213868, + "step": 164900 + }, + { + "epoch": 55.27640505905017, + "grad_norm": 0.7112438678741455, + "learning_rate": 2.237386934673367e-05, + "loss": 0.19905502319335938, + "step": 165000 + }, + { + "epoch": 55.309908702571406, + "grad_norm": 0.6443644165992737, + "learning_rate": 2.23571189279732e-05, + "loss": 0.19937538146972655, + "step": 165100 + }, + { + "epoch": 55.343412346092634, + "grad_norm": 0.8128257393836975, + "learning_rate": 2.234036850921273e-05, + "loss": 0.19976985931396485, + "step": 165200 + }, + { + "epoch": 55.37691598961387, + "grad_norm": 0.7452270984649658, + "learning_rate": 2.232361809045226e-05, + "loss": 0.19971412658691406, + "step": 165300 + }, + { + "epoch": 55.410419633135106, + "grad_norm": 0.7263997197151184, + "learning_rate": 2.2306867671691795e-05, + "loss": 0.19973045349121094, + "step": 165400 + }, + { + "epoch": 55.443923276656335, + "grad_norm": 0.7190716862678528, + "learning_rate": 2.2290117252931324e-05, + "loss": 0.20105569839477538, + "step": 165500 + }, + { + "epoch": 55.47742692017757, + "grad_norm": 0.7603322863578796, + "learning_rate": 2.2273366834170857e-05, + "loss": 0.20152530670166016, + "step": 165600 + }, + { + "epoch": 55.5109305636988, + "grad_norm": 0.6346855759620667, + "learning_rate": 2.2256616415410385e-05, + "loss": 0.20098255157470704, + "step": 165700 + }, + { + "epoch": 55.544434207220036, + "grad_norm": 0.6980137228965759, + "learning_rate": 2.2239865996649918e-05, + "loss": 0.200362548828125, + "step": 165800 + }, + { + "epoch": 55.57793785074127, + "grad_norm": 0.7294763922691345, + "learning_rate": 2.2223115577889446e-05, + "loss": 0.20156070709228516, + "step": 165900 + }, + { + "epoch": 55.6114414942625, + "grad_norm": 0.7770695090293884, + "learning_rate": 2.2206365159128982e-05, + "loss": 0.20071981430053712, + "step": 166000 + }, + { + "epoch": 55.644945137783736, + "grad_norm": 0.6916683316230774, + "learning_rate": 2.218961474036851e-05, + "loss": 0.2019366455078125, + "step": 166100 + }, + { + "epoch": 55.678448781304965, + "grad_norm": 0.6621333360671997, + "learning_rate": 2.2172864321608043e-05, + "loss": 0.2023235321044922, + "step": 166200 + }, + { + "epoch": 55.7119524248262, + "grad_norm": 0.742199718952179, + "learning_rate": 2.2156281407035176e-05, + "loss": 0.2024928092956543, + "step": 166300 + }, + { + "epoch": 55.74545606834743, + "grad_norm": 0.6829848289489746, + "learning_rate": 2.2139530988274708e-05, + "loss": 0.20235004425048828, + "step": 166400 + }, + { + "epoch": 55.778959711868666, + "grad_norm": 0.6780540943145752, + "learning_rate": 2.212278056951424e-05, + "loss": 0.2021579360961914, + "step": 166500 + }, + { + "epoch": 55.8124633553899, + "grad_norm": 0.7976480722427368, + "learning_rate": 2.210603015075377e-05, + "loss": 0.20198610305786133, + "step": 166600 + }, + { + "epoch": 55.84596699891113, + "grad_norm": 0.7261124849319458, + "learning_rate": 2.20892797319933e-05, + "loss": 0.20343488693237305, + "step": 166700 + }, + { + "epoch": 55.879470642432366, + "grad_norm": 0.7780104279518127, + "learning_rate": 2.207252931323283e-05, + "loss": 0.20361764907836913, + "step": 166800 + }, + { + "epoch": 55.912974285953595, + "grad_norm": 0.6498653292655945, + "learning_rate": 2.2055778894472362e-05, + "loss": 0.20432092666625976, + "step": 166900 + }, + { + "epoch": 55.94647792947483, + "grad_norm": 0.8899915814399719, + "learning_rate": 2.2039028475711894e-05, + "loss": 0.2044738006591797, + "step": 167000 + }, + { + "epoch": 55.97998157299606, + "grad_norm": 0.703768789768219, + "learning_rate": 2.2022278056951426e-05, + "loss": 0.2027983283996582, + "step": 167100 + }, + { + "epoch": 56.01340145740849, + "grad_norm": 0.6999773979187012, + "learning_rate": 2.2005527638190955e-05, + "loss": 0.19977279663085937, + "step": 167200 + }, + { + "epoch": 56.04690510092973, + "grad_norm": 0.7234398126602173, + "learning_rate": 2.1988777219430487e-05, + "loss": 0.19637002944946289, + "step": 167300 + }, + { + "epoch": 56.080408744450956, + "grad_norm": 0.7196521162986755, + "learning_rate": 2.1972026800670016e-05, + "loss": 0.1961227035522461, + "step": 167400 + }, + { + "epoch": 56.11391238797219, + "grad_norm": 0.7114014625549316, + "learning_rate": 2.195527638190955e-05, + "loss": 0.19647451400756835, + "step": 167500 + }, + { + "epoch": 56.14741603149343, + "grad_norm": 0.7853075861930847, + "learning_rate": 2.1938525963149077e-05, + "loss": 0.19717487335205078, + "step": 167600 + }, + { + "epoch": 56.18091967501466, + "grad_norm": 0.6808475852012634, + "learning_rate": 2.1921775544388613e-05, + "loss": 0.19807977676391603, + "step": 167700 + }, + { + "epoch": 56.21442331853589, + "grad_norm": 0.6541131734848022, + "learning_rate": 2.1905025125628142e-05, + "loss": 0.19757047653198243, + "step": 167800 + }, + { + "epoch": 56.24792696205712, + "grad_norm": 0.7412530183792114, + "learning_rate": 2.1888274706867674e-05, + "loss": 0.19785118103027344, + "step": 167900 + }, + { + "epoch": 56.28143060557836, + "grad_norm": 0.7527230978012085, + "learning_rate": 2.1871524288107203e-05, + "loss": 0.19891765594482422, + "step": 168000 + }, + { + "epoch": 56.314934249099586, + "grad_norm": 0.7702918648719788, + "learning_rate": 2.1854773869346735e-05, + "loss": 0.19912639617919922, + "step": 168100 + }, + { + "epoch": 56.34843789262082, + "grad_norm": 0.9410870671272278, + "learning_rate": 2.1838023450586264e-05, + "loss": 0.19807853698730468, + "step": 168200 + }, + { + "epoch": 56.38194153614206, + "grad_norm": 0.7551661133766174, + "learning_rate": 2.18212730318258e-05, + "loss": 0.19915082931518555, + "step": 168300 + }, + { + "epoch": 56.41544517966329, + "grad_norm": 0.8068090081214905, + "learning_rate": 2.1804522613065328e-05, + "loss": 0.19918592453002928, + "step": 168400 + }, + { + "epoch": 56.44894882318452, + "grad_norm": 0.8415470123291016, + "learning_rate": 2.1787939698492464e-05, + "loss": 0.19998703002929688, + "step": 168500 + }, + { + "epoch": 56.48245246670575, + "grad_norm": 0.6690595149993896, + "learning_rate": 2.1771189279731993e-05, + "loss": 0.2002570152282715, + "step": 168600 + }, + { + "epoch": 56.51595611022699, + "grad_norm": 0.8166069984436035, + "learning_rate": 2.1754438860971525e-05, + "loss": 0.20179470062255858, + "step": 168700 + }, + { + "epoch": 56.54945975374822, + "grad_norm": 0.7660237550735474, + "learning_rate": 2.1737688442211057e-05, + "loss": 0.20062505722045898, + "step": 168800 + }, + { + "epoch": 56.58296339726945, + "grad_norm": 0.8243525624275208, + "learning_rate": 2.1720938023450586e-05, + "loss": 0.2011745071411133, + "step": 168900 + }, + { + "epoch": 56.61646704079069, + "grad_norm": 0.7057405114173889, + "learning_rate": 2.170418760469012e-05, + "loss": 0.2007113838195801, + "step": 169000 + }, + { + "epoch": 56.64997068431192, + "grad_norm": 0.8495818376541138, + "learning_rate": 2.1687437185929647e-05, + "loss": 0.20225597381591798, + "step": 169100 + }, + { + "epoch": 56.68347432783315, + "grad_norm": 0.6715584397315979, + "learning_rate": 2.167068676716918e-05, + "loss": 0.20023557662963867, + "step": 169200 + }, + { + "epoch": 56.71697797135438, + "grad_norm": 0.6438612937927246, + "learning_rate": 2.1653936348408708e-05, + "loss": 0.2012915802001953, + "step": 169300 + }, + { + "epoch": 56.75048161487562, + "grad_norm": 0.854141116142273, + "learning_rate": 2.1637185929648244e-05, + "loss": 0.20242010116577147, + "step": 169400 + }, + { + "epoch": 56.783985258396854, + "grad_norm": 0.7206624150276184, + "learning_rate": 2.1620435510887773e-05, + "loss": 0.20245513916015626, + "step": 169500 + }, + { + "epoch": 56.81748890191808, + "grad_norm": 0.6744206547737122, + "learning_rate": 2.1603685092127305e-05, + "loss": 0.20179567337036133, + "step": 169600 + }, + { + "epoch": 56.85099254543932, + "grad_norm": 0.7552564740180969, + "learning_rate": 2.1586934673366834e-05, + "loss": 0.20230600357055664, + "step": 169700 + }, + { + "epoch": 56.88449618896055, + "grad_norm": 0.8486445546150208, + "learning_rate": 2.1570184254606366e-05, + "loss": 0.20117643356323242, + "step": 169800 + }, + { + "epoch": 56.91799983248178, + "grad_norm": 0.5880848169326782, + "learning_rate": 2.1553433835845895e-05, + "loss": 0.20292966842651367, + "step": 169900 + }, + { + "epoch": 56.95150347600301, + "grad_norm": 0.7727257013320923, + "learning_rate": 2.153668341708543e-05, + "loss": 0.2035549736022949, + "step": 170000 + }, + { + "epoch": 56.98500711952425, + "grad_norm": 0.7095633745193481, + "learning_rate": 2.151993299832496e-05, + "loss": 0.20257196426391602, + "step": 170100 + }, + { + "epoch": 57.01842700393668, + "grad_norm": 0.5395858883857727, + "learning_rate": 2.150318257956449e-05, + "loss": 0.19870391845703125, + "step": 170200 + }, + { + "epoch": 57.05193064745791, + "grad_norm": 0.6598409414291382, + "learning_rate": 2.148643216080402e-05, + "loss": 0.1953832244873047, + "step": 170300 + }, + { + "epoch": 57.085434290979144, + "grad_norm": 0.9595073461532593, + "learning_rate": 2.1469681742043552e-05, + "loss": 0.19685894012451172, + "step": 170400 + }, + { + "epoch": 57.11893793450038, + "grad_norm": 0.5701305866241455, + "learning_rate": 2.1453098827470688e-05, + "loss": 0.19607532501220704, + "step": 170500 + }, + { + "epoch": 57.15244157802161, + "grad_norm": 0.6835476160049438, + "learning_rate": 2.143634840871022e-05, + "loss": 0.1967610549926758, + "step": 170600 + }, + { + "epoch": 57.185945221542845, + "grad_norm": 0.5928249955177307, + "learning_rate": 2.141959798994975e-05, + "loss": 0.19592588424682617, + "step": 170700 + }, + { + "epoch": 57.219448865064074, + "grad_norm": 0.7820493578910828, + "learning_rate": 2.140284757118928e-05, + "loss": 0.19711441040039063, + "step": 170800 + }, + { + "epoch": 57.25295250858531, + "grad_norm": 0.7720481753349304, + "learning_rate": 2.138609715242881e-05, + "loss": 0.19725584030151366, + "step": 170900 + }, + { + "epoch": 57.28645615210654, + "grad_norm": 0.7418736219406128, + "learning_rate": 2.1369346733668343e-05, + "loss": 0.19777252197265624, + "step": 171000 + }, + { + "epoch": 57.319959795627774, + "grad_norm": 0.7071073055267334, + "learning_rate": 2.1352596314907875e-05, + "loss": 0.19808469772338866, + "step": 171100 + }, + { + "epoch": 57.35346343914901, + "grad_norm": 0.7375087738037109, + "learning_rate": 2.1335845896147404e-05, + "loss": 0.19767127990722655, + "step": 171200 + }, + { + "epoch": 57.38696708267024, + "grad_norm": 0.8487064838409424, + "learning_rate": 2.1319095477386936e-05, + "loss": 0.19986190795898437, + "step": 171300 + }, + { + "epoch": 57.420470726191475, + "grad_norm": 0.8072951436042786, + "learning_rate": 2.1302345058626465e-05, + "loss": 0.19746374130249023, + "step": 171400 + }, + { + "epoch": 57.453974369712704, + "grad_norm": 0.8079342842102051, + "learning_rate": 2.1285594639865997e-05, + "loss": 0.19960382461547851, + "step": 171500 + }, + { + "epoch": 57.48747801323394, + "grad_norm": 0.8104588389396667, + "learning_rate": 2.126884422110553e-05, + "loss": 0.20039827346801758, + "step": 171600 + }, + { + "epoch": 57.520981656755175, + "grad_norm": 0.753643274307251, + "learning_rate": 2.125209380234506e-05, + "loss": 0.1997998046875, + "step": 171700 + }, + { + "epoch": 57.554485300276404, + "grad_norm": 0.8228442668914795, + "learning_rate": 2.123534338358459e-05, + "loss": 0.19931909561157227, + "step": 171800 + }, + { + "epoch": 57.58798894379764, + "grad_norm": 0.8214404582977295, + "learning_rate": 2.1218592964824122e-05, + "loss": 0.19911916732788085, + "step": 171900 + }, + { + "epoch": 57.62149258731887, + "grad_norm": 0.6019760370254517, + "learning_rate": 2.120184254606365e-05, + "loss": 0.2016813850402832, + "step": 172000 + }, + { + "epoch": 57.654996230840105, + "grad_norm": 0.6880699396133423, + "learning_rate": 2.1185092127303183e-05, + "loss": 0.19929651260375977, + "step": 172100 + }, + { + "epoch": 57.688499874361334, + "grad_norm": 0.69806969165802, + "learning_rate": 2.1168341708542712e-05, + "loss": 0.2015073585510254, + "step": 172200 + }, + { + "epoch": 57.72200351788257, + "grad_norm": 0.6724705100059509, + "learning_rate": 2.1151591289782248e-05, + "loss": 0.20101812362670898, + "step": 172300 + }, + { + "epoch": 57.755507161403806, + "grad_norm": 0.8854671716690063, + "learning_rate": 2.1134840871021777e-05, + "loss": 0.20211099624633788, + "step": 172400 + }, + { + "epoch": 57.789010804925034, + "grad_norm": 0.7592790722846985, + "learning_rate": 2.111809045226131e-05, + "loss": 0.20073314666748046, + "step": 172500 + }, + { + "epoch": 57.82251444844627, + "grad_norm": 0.7253840565681458, + "learning_rate": 2.1101340033500838e-05, + "loss": 0.2017323112487793, + "step": 172600 + }, + { + "epoch": 57.8560180919675, + "grad_norm": 0.7471290230751038, + "learning_rate": 2.1084757118927977e-05, + "loss": 0.20244625091552734, + "step": 172700 + }, + { + "epoch": 57.889521735488735, + "grad_norm": 0.8345232009887695, + "learning_rate": 2.1068006700167506e-05, + "loss": 0.20169891357421876, + "step": 172800 + }, + { + "epoch": 57.923025379009964, + "grad_norm": 0.8078505396842957, + "learning_rate": 2.1051256281407038e-05, + "loss": 0.20322864532470702, + "step": 172900 + }, + { + "epoch": 57.9565290225312, + "grad_norm": 0.8274567127227783, + "learning_rate": 2.1034505862646567e-05, + "loss": 0.20089473724365234, + "step": 173000 + }, + { + "epoch": 57.990032666052436, + "grad_norm": 0.6914857029914856, + "learning_rate": 2.10177554438861e-05, + "loss": 0.20304906845092774, + "step": 173100 + }, + { + "epoch": 58.02345255046486, + "grad_norm": 0.6851274371147156, + "learning_rate": 2.1001005025125628e-05, + "loss": 0.1973126220703125, + "step": 173200 + }, + { + "epoch": 58.056956193986096, + "grad_norm": 0.5594986081123352, + "learning_rate": 2.098425460636516e-05, + "loss": 0.19482255935668946, + "step": 173300 + }, + { + "epoch": 58.09045983750733, + "grad_norm": 0.6892759203910828, + "learning_rate": 2.0967504187604692e-05, + "loss": 0.19560087203979493, + "step": 173400 + }, + { + "epoch": 58.12396348102856, + "grad_norm": 0.6023077368736267, + "learning_rate": 2.095075376884422e-05, + "loss": 0.1957664108276367, + "step": 173500 + }, + { + "epoch": 58.1574671245498, + "grad_norm": 0.6524220108985901, + "learning_rate": 2.0934003350083753e-05, + "loss": 0.19625062942504884, + "step": 173600 + }, + { + "epoch": 58.190970768071026, + "grad_norm": 0.9801384806632996, + "learning_rate": 2.0917252931323282e-05, + "loss": 0.1955522346496582, + "step": 173700 + }, + { + "epoch": 58.22447441159226, + "grad_norm": 0.8744773864746094, + "learning_rate": 2.0900502512562814e-05, + "loss": 0.19638490676879883, + "step": 173800 + }, + { + "epoch": 58.25797805511349, + "grad_norm": 0.6583356261253357, + "learning_rate": 2.0883752093802346e-05, + "loss": 0.1966208267211914, + "step": 173900 + }, + { + "epoch": 58.291481698634726, + "grad_norm": 0.6736335754394531, + "learning_rate": 2.086700167504188e-05, + "loss": 0.1969454765319824, + "step": 174000 + }, + { + "epoch": 58.32498534215596, + "grad_norm": 0.9140983819961548, + "learning_rate": 2.0850251256281408e-05, + "loss": 0.19811725616455078, + "step": 174100 + }, + { + "epoch": 58.35848898567719, + "grad_norm": 0.825357973575592, + "learning_rate": 2.083350083752094e-05, + "loss": 0.19800840377807616, + "step": 174200 + }, + { + "epoch": 58.39199262919843, + "grad_norm": 0.8800440430641174, + "learning_rate": 2.081675041876047e-05, + "loss": 0.1982166862487793, + "step": 174300 + }, + { + "epoch": 58.425496272719656, + "grad_norm": 0.7681903839111328, + "learning_rate": 2.08e-05, + "loss": 0.199152889251709, + "step": 174400 + }, + { + "epoch": 58.45899991624089, + "grad_norm": 0.7516371607780457, + "learning_rate": 2.0783249581239533e-05, + "loss": 0.1978353500366211, + "step": 174500 + }, + { + "epoch": 58.49250355976213, + "grad_norm": 0.7671756148338318, + "learning_rate": 2.0766499162479065e-05, + "loss": 0.19854022979736327, + "step": 174600 + }, + { + "epoch": 58.526007203283356, + "grad_norm": 0.6201814413070679, + "learning_rate": 2.0749916247906198e-05, + "loss": 0.19920494079589843, + "step": 174700 + }, + { + "epoch": 58.55951084680459, + "grad_norm": 0.8798500299453735, + "learning_rate": 2.073316582914573e-05, + "loss": 0.20001602172851562, + "step": 174800 + }, + { + "epoch": 58.59301449032582, + "grad_norm": 0.5957375168800354, + "learning_rate": 2.071641541038526e-05, + "loss": 0.1991959571838379, + "step": 174900 + }, + { + "epoch": 58.62651813384706, + "grad_norm": 0.84260493516922, + "learning_rate": 2.069966499162479e-05, + "loss": 0.20048974990844726, + "step": 175000 + }, + { + "epoch": 58.660021777368286, + "grad_norm": 0.6994961500167847, + "learning_rate": 2.0682914572864323e-05, + "loss": 0.19937900543212891, + "step": 175100 + }, + { + "epoch": 58.69352542088952, + "grad_norm": 0.7235148549079895, + "learning_rate": 2.0666164154103852e-05, + "loss": 0.20066232681274415, + "step": 175200 + }, + { + "epoch": 58.72702906441076, + "grad_norm": 0.7542918920516968, + "learning_rate": 2.0649413735343384e-05, + "loss": 0.20042539596557618, + "step": 175300 + }, + { + "epoch": 58.760532707931986, + "grad_norm": 0.6566546559333801, + "learning_rate": 2.0632663316582916e-05, + "loss": 0.20085683822631836, + "step": 175400 + }, + { + "epoch": 58.79403635145322, + "grad_norm": 0.7434055209159851, + "learning_rate": 2.0615912897822445e-05, + "loss": 0.20140844345092773, + "step": 175500 + }, + { + "epoch": 58.82753999497445, + "grad_norm": 0.6652776002883911, + "learning_rate": 2.0599162479061977e-05, + "loss": 0.2017723274230957, + "step": 175600 + }, + { + "epoch": 58.86104363849569, + "grad_norm": 0.7438784837722778, + "learning_rate": 2.058241206030151e-05, + "loss": 0.20224170684814452, + "step": 175700 + }, + { + "epoch": 58.894547282016916, + "grad_norm": 0.842480480670929, + "learning_rate": 2.056566164154104e-05, + "loss": 0.2010243797302246, + "step": 175800 + }, + { + "epoch": 58.92805092553815, + "grad_norm": 0.777508020401001, + "learning_rate": 2.054891122278057e-05, + "loss": 0.20120513916015625, + "step": 175900 + }, + { + "epoch": 58.96155456905939, + "grad_norm": 0.7863830327987671, + "learning_rate": 2.05321608040201e-05, + "loss": 0.20216922760009765, + "step": 176000 + }, + { + "epoch": 58.995058212580616, + "grad_norm": 0.720203161239624, + "learning_rate": 2.051541038525963e-05, + "loss": 0.20130184173583984, + "step": 176100 + }, + { + "epoch": 59.02847809699305, + "grad_norm": 0.7132588028907776, + "learning_rate": 2.0498659966499164e-05, + "loss": 0.1958163070678711, + "step": 176200 + }, + { + "epoch": 59.061981740514284, + "grad_norm": 0.6386404037475586, + "learning_rate": 2.0481909547738696e-05, + "loss": 0.19423696517944336, + "step": 176300 + }, + { + "epoch": 59.09548538403551, + "grad_norm": 0.5817972421646118, + "learning_rate": 2.0465159128978225e-05, + "loss": 0.19470659255981446, + "step": 176400 + }, + { + "epoch": 59.12898902755675, + "grad_norm": 0.5699682831764221, + "learning_rate": 2.0448408710217757e-05, + "loss": 0.19486974716186523, + "step": 176500 + }, + { + "epoch": 59.16249267107798, + "grad_norm": 0.6849201321601868, + "learning_rate": 2.0431658291457286e-05, + "loss": 0.19612747192382812, + "step": 176600 + }, + { + "epoch": 59.19599631459921, + "grad_norm": 0.7165812253952026, + "learning_rate": 2.0414907872696818e-05, + "loss": 0.19578189849853517, + "step": 176700 + }, + { + "epoch": 59.22949995812044, + "grad_norm": 0.7262609004974365, + "learning_rate": 2.0398324958123954e-05, + "loss": 0.19529666900634765, + "step": 176800 + }, + { + "epoch": 59.26300360164168, + "grad_norm": 0.7515226006507874, + "learning_rate": 2.0381574539363486e-05, + "loss": 0.1967916488647461, + "step": 176900 + }, + { + "epoch": 59.296507245162914, + "grad_norm": 0.675984799861908, + "learning_rate": 2.0364824120603015e-05, + "loss": 0.19698150634765624, + "step": 177000 + }, + { + "epoch": 59.33001088868414, + "grad_norm": 0.9520745277404785, + "learning_rate": 2.0348073701842547e-05, + "loss": 0.19764524459838867, + "step": 177100 + }, + { + "epoch": 59.36351453220538, + "grad_norm": 0.6780461072921753, + "learning_rate": 2.033132328308208e-05, + "loss": 0.19658233642578124, + "step": 177200 + }, + { + "epoch": 59.39701817572661, + "grad_norm": 0.6440721750259399, + "learning_rate": 2.031457286432161e-05, + "loss": 0.19660577774047852, + "step": 177300 + }, + { + "epoch": 59.43052181924784, + "grad_norm": 0.7188435196876526, + "learning_rate": 2.029782244556114e-05, + "loss": 0.19726680755615233, + "step": 177400 + }, + { + "epoch": 59.46402546276908, + "grad_norm": 0.680558979511261, + "learning_rate": 2.028107202680067e-05, + "loss": 0.19743047714233397, + "step": 177500 + }, + { + "epoch": 59.49752910629031, + "grad_norm": 0.7961515188217163, + "learning_rate": 2.02643216080402e-05, + "loss": 0.19772005081176758, + "step": 177600 + }, + { + "epoch": 59.531032749811544, + "grad_norm": 0.6180649995803833, + "learning_rate": 2.024757118927973e-05, + "loss": 0.1990138053894043, + "step": 177700 + }, + { + "epoch": 59.56453639333277, + "grad_norm": 0.7766602039337158, + "learning_rate": 2.0230820770519263e-05, + "loss": 0.19866539001464845, + "step": 177800 + }, + { + "epoch": 59.59804003685401, + "grad_norm": 0.7700449824333191, + "learning_rate": 2.0214070351758795e-05, + "loss": 0.198470516204834, + "step": 177900 + }, + { + "epoch": 59.63154368037524, + "grad_norm": 0.7601004838943481, + "learning_rate": 2.0197319932998327e-05, + "loss": 0.20065229415893554, + "step": 178000 + }, + { + "epoch": 59.665047323896474, + "grad_norm": 0.8511313796043396, + "learning_rate": 2.0180569514237856e-05, + "loss": 0.20094491958618163, + "step": 178100 + }, + { + "epoch": 59.69855096741771, + "grad_norm": 0.6393927931785583, + "learning_rate": 2.0163819095477388e-05, + "loss": 0.19916282653808592, + "step": 178200 + }, + { + "epoch": 59.73205461093894, + "grad_norm": 0.8600590229034424, + "learning_rate": 2.0147068676716917e-05, + "loss": 0.19939659118652345, + "step": 178300 + }, + { + "epoch": 59.765558254460174, + "grad_norm": 0.642556369304657, + "learning_rate": 2.013031825795645e-05, + "loss": 0.2003472137451172, + "step": 178400 + }, + { + "epoch": 59.7990618979814, + "grad_norm": 0.7224367260932922, + "learning_rate": 2.011356783919598e-05, + "loss": 0.19969842910766603, + "step": 178500 + }, + { + "epoch": 59.83256554150264, + "grad_norm": 0.7427322268486023, + "learning_rate": 2.0096817420435514e-05, + "loss": 0.19960586547851564, + "step": 178600 + }, + { + "epoch": 59.866069185023875, + "grad_norm": 0.7013212442398071, + "learning_rate": 2.0080067001675042e-05, + "loss": 0.2002570915222168, + "step": 178700 + }, + { + "epoch": 59.899572828545104, + "grad_norm": 0.852935791015625, + "learning_rate": 2.0063484087102178e-05, + "loss": 0.2009134292602539, + "step": 178800 + }, + { + "epoch": 59.93307647206634, + "grad_norm": 0.875970184803009, + "learning_rate": 2.004673366834171e-05, + "loss": 0.20090538024902344, + "step": 178900 + }, + { + "epoch": 59.96658011558757, + "grad_norm": 0.7883792519569397, + "learning_rate": 2.0029983249581243e-05, + "loss": 0.20025901794433593, + "step": 179000 + }, + { + "epoch": 60.0, + "grad_norm": 0.8162919878959656, + "learning_rate": 2.001323283082077e-05, + "loss": 0.2026140022277832, + "step": 179100 + }, + { + "epoch": 60.033503643521236, + "grad_norm": 0.6830130219459534, + "learning_rate": 1.9996482412060304e-05, + "loss": 0.19378650665283204, + "step": 179200 + }, + { + "epoch": 60.067007287042465, + "grad_norm": 0.6668891906738281, + "learning_rate": 1.9979731993299833e-05, + "loss": 0.19362451553344726, + "step": 179300 + }, + { + "epoch": 60.1005109305637, + "grad_norm": 0.7308112382888794, + "learning_rate": 1.9962981574539365e-05, + "loss": 0.19429069519042969, + "step": 179400 + }, + { + "epoch": 60.13401457408493, + "grad_norm": 0.7730607390403748, + "learning_rate": 1.9946231155778897e-05, + "loss": 0.19423646926879884, + "step": 179500 + }, + { + "epoch": 60.167518217606165, + "grad_norm": 0.624254047870636, + "learning_rate": 1.9929480737018426e-05, + "loss": 0.19518238067626953, + "step": 179600 + }, + { + "epoch": 60.201021861127394, + "grad_norm": 0.917464017868042, + "learning_rate": 1.9912730318257958e-05, + "loss": 0.1952109718322754, + "step": 179700 + }, + { + "epoch": 60.23452550464863, + "grad_norm": 0.7360493540763855, + "learning_rate": 1.9895979899497487e-05, + "loss": 0.19446746826171876, + "step": 179800 + }, + { + "epoch": 60.268029148169866, + "grad_norm": 0.7760195732116699, + "learning_rate": 1.987922948073702e-05, + "loss": 0.1961222457885742, + "step": 179900 + }, + { + "epoch": 60.301532791691095, + "grad_norm": 0.7055202126502991, + "learning_rate": 1.9862479061976548e-05, + "loss": 0.19603208541870118, + "step": 180000 + }, + { + "epoch": 60.33503643521233, + "grad_norm": 0.7124981880187988, + "learning_rate": 1.9845728643216083e-05, + "loss": 0.19644119262695312, + "step": 180100 + }, + { + "epoch": 60.36854007873356, + "grad_norm": 0.6831589341163635, + "learning_rate": 1.9828978224455612e-05, + "loss": 0.19591159820556642, + "step": 180200 + }, + { + "epoch": 60.402043722254795, + "grad_norm": 0.6932199001312256, + "learning_rate": 1.9812227805695144e-05, + "loss": 0.19705738067626954, + "step": 180300 + }, + { + "epoch": 60.43554736577603, + "grad_norm": 0.6487602591514587, + "learning_rate": 1.9795477386934673e-05, + "loss": 0.19764183044433595, + "step": 180400 + }, + { + "epoch": 60.46905100929726, + "grad_norm": 0.760643720626831, + "learning_rate": 1.9778726968174205e-05, + "loss": 0.19725812911987306, + "step": 180500 + }, + { + "epoch": 60.502554652818496, + "grad_norm": 0.8425685167312622, + "learning_rate": 1.9761976549413734e-05, + "loss": 0.19825616836547852, + "step": 180600 + }, + { + "epoch": 60.536058296339725, + "grad_norm": 0.7290912866592407, + "learning_rate": 1.9745226130653267e-05, + "loss": 0.19793628692626952, + "step": 180700 + }, + { + "epoch": 60.56956193986096, + "grad_norm": 0.7724213004112244, + "learning_rate": 1.9728643216080402e-05, + "loss": 0.19957996368408204, + "step": 180800 + }, + { + "epoch": 60.60306558338219, + "grad_norm": 0.8002983927726746, + "learning_rate": 1.9711892797319935e-05, + "loss": 0.19841293334960938, + "step": 180900 + }, + { + "epoch": 60.636569226903426, + "grad_norm": 0.8721250295639038, + "learning_rate": 1.9695142378559463e-05, + "loss": 0.1982705307006836, + "step": 181000 + }, + { + "epoch": 60.67007287042466, + "grad_norm": 0.9120819568634033, + "learning_rate": 1.9678391959798996e-05, + "loss": 0.19878549575805665, + "step": 181100 + }, + { + "epoch": 60.70357651394589, + "grad_norm": 0.7080308198928833, + "learning_rate": 1.9661641541038528e-05, + "loss": 0.19935232162475586, + "step": 181200 + }, + { + "epoch": 60.737080157467126, + "grad_norm": 0.7024886012077332, + "learning_rate": 1.964489112227806e-05, + "loss": 0.19872413635253905, + "step": 181300 + }, + { + "epoch": 60.770583800988355, + "grad_norm": 0.6947377324104309, + "learning_rate": 1.962814070351759e-05, + "loss": 0.19973325729370117, + "step": 181400 + }, + { + "epoch": 60.80408744450959, + "grad_norm": 0.7923586964607239, + "learning_rate": 1.961139028475712e-05, + "loss": 0.1994416046142578, + "step": 181500 + }, + { + "epoch": 60.83759108803083, + "grad_norm": 0.7876746654510498, + "learning_rate": 1.959463986599665e-05, + "loss": 0.20001832962036134, + "step": 181600 + }, + { + "epoch": 60.871094731552056, + "grad_norm": 0.6669028401374817, + "learning_rate": 1.9577889447236182e-05, + "loss": 0.19931718826293945, + "step": 181700 + }, + { + "epoch": 60.90459837507329, + "grad_norm": 0.8376245498657227, + "learning_rate": 1.9561139028475714e-05, + "loss": 0.19980306625366212, + "step": 181800 + }, + { + "epoch": 60.93810201859452, + "grad_norm": 0.8353832960128784, + "learning_rate": 1.9544388609715243e-05, + "loss": 0.19981901168823243, + "step": 181900 + }, + { + "epoch": 60.971605662115756, + "grad_norm": 0.7106568217277527, + "learning_rate": 1.9527638190954775e-05, + "loss": 0.19973602294921874, + "step": 182000 + }, + { + "epoch": 61.00502554652819, + "grad_norm": 0.6675083637237549, + "learning_rate": 1.9510887772194304e-05, + "loss": 0.20030658721923827, + "step": 182100 + }, + { + "epoch": 61.03852919004942, + "grad_norm": 0.6827961206436157, + "learning_rate": 1.9494137353433836e-05, + "loss": 0.19295509338378905, + "step": 182200 + }, + { + "epoch": 61.07203283357065, + "grad_norm": 0.8352850675582886, + "learning_rate": 1.9477386934673365e-05, + "loss": 0.19397199630737305, + "step": 182300 + }, + { + "epoch": 61.10553647709188, + "grad_norm": 0.6060226559638977, + "learning_rate": 1.94606365159129e-05, + "loss": 0.19397262573242188, + "step": 182400 + }, + { + "epoch": 61.13904012061312, + "grad_norm": 0.6782211065292358, + "learning_rate": 1.944388609715243e-05, + "loss": 0.1942317581176758, + "step": 182500 + }, + { + "epoch": 61.172543764134346, + "grad_norm": 0.6505800485610962, + "learning_rate": 1.9427135678391962e-05, + "loss": 0.19382064819335937, + "step": 182600 + }, + { + "epoch": 61.20604740765558, + "grad_norm": 0.6470309495925903, + "learning_rate": 1.941038525963149e-05, + "loss": 0.19352495193481445, + "step": 182700 + }, + { + "epoch": 61.23955105117682, + "grad_norm": 0.7394313216209412, + "learning_rate": 1.9393634840871023e-05, + "loss": 0.19527189254760743, + "step": 182800 + }, + { + "epoch": 61.27305469469805, + "grad_norm": 0.6375427842140198, + "learning_rate": 1.937705192629816e-05, + "loss": 0.19507966995239256, + "step": 182900 + }, + { + "epoch": 61.30655833821928, + "grad_norm": 0.7445289492607117, + "learning_rate": 1.936030150753769e-05, + "loss": 0.19499330520629882, + "step": 183000 + }, + { + "epoch": 61.34006198174051, + "grad_norm": 0.6758365631103516, + "learning_rate": 1.934355108877722e-05, + "loss": 0.19620643615722655, + "step": 183100 + }, + { + "epoch": 61.37356562526175, + "grad_norm": 0.682247519493103, + "learning_rate": 1.9326800670016752e-05, + "loss": 0.19641605377197266, + "step": 183200 + }, + { + "epoch": 61.40706926878298, + "grad_norm": 0.6681833267211914, + "learning_rate": 1.931005025125628e-05, + "loss": 0.1975366973876953, + "step": 183300 + }, + { + "epoch": 61.44057291230421, + "grad_norm": 0.6850043535232544, + "learning_rate": 1.9293299832495813e-05, + "loss": 0.1968943405151367, + "step": 183400 + }, + { + "epoch": 61.47407655582545, + "grad_norm": 0.769083559513092, + "learning_rate": 1.9276549413735345e-05, + "loss": 0.19727476119995116, + "step": 183500 + }, + { + "epoch": 61.50758019934668, + "grad_norm": 0.5792109370231628, + "learning_rate": 1.9259798994974878e-05, + "loss": 0.19699573516845703, + "step": 183600 + }, + { + "epoch": 61.54108384286791, + "grad_norm": 0.7564917206764221, + "learning_rate": 1.9243048576214406e-05, + "loss": 0.19748397827148437, + "step": 183700 + }, + { + "epoch": 61.57458748638914, + "grad_norm": 0.6447178721427917, + "learning_rate": 1.922629815745394e-05, + "loss": 0.1989639663696289, + "step": 183800 + }, + { + "epoch": 61.60809112991038, + "grad_norm": 0.5742529034614563, + "learning_rate": 1.9209547738693467e-05, + "loss": 0.19746633529663085, + "step": 183900 + }, + { + "epoch": 61.64159477343161, + "grad_norm": 0.7394194006919861, + "learning_rate": 1.9192797319933e-05, + "loss": 0.19821161270141602, + "step": 184000 + }, + { + "epoch": 61.67509841695284, + "grad_norm": 0.6600359678268433, + "learning_rate": 1.9176046901172532e-05, + "loss": 0.1982976722717285, + "step": 184100 + }, + { + "epoch": 61.70860206047408, + "grad_norm": 0.5898655652999878, + "learning_rate": 1.915929648241206e-05, + "loss": 0.19801706314086914, + "step": 184200 + }, + { + "epoch": 61.74210570399531, + "grad_norm": 0.7864146828651428, + "learning_rate": 1.9142546063651593e-05, + "loss": 0.19834369659423828, + "step": 184300 + }, + { + "epoch": 61.77560934751654, + "grad_norm": 0.783885657787323, + "learning_rate": 1.912579564489112e-05, + "loss": 0.19943191528320312, + "step": 184400 + }, + { + "epoch": 61.80911299103778, + "grad_norm": 0.7565669417381287, + "learning_rate": 1.9109045226130654e-05, + "loss": 0.19939350128173827, + "step": 184500 + }, + { + "epoch": 61.84261663455901, + "grad_norm": 0.663527250289917, + "learning_rate": 1.9092294807370183e-05, + "loss": 0.1986519241333008, + "step": 184600 + }, + { + "epoch": 61.87612027808024, + "grad_norm": 0.7392609715461731, + "learning_rate": 1.9075544388609718e-05, + "loss": 0.19995809555053712, + "step": 184700 + }, + { + "epoch": 61.90962392160147, + "grad_norm": 0.7164571285247803, + "learning_rate": 1.9058793969849247e-05, + "loss": 0.1989099884033203, + "step": 184800 + }, + { + "epoch": 61.94312756512271, + "grad_norm": 0.7456199526786804, + "learning_rate": 1.904204355108878e-05, + "loss": 0.19987648010253906, + "step": 184900 + }, + { + "epoch": 61.97663120864394, + "grad_norm": 0.6419495344161987, + "learning_rate": 1.9025460636515912e-05, + "loss": 0.1988045310974121, + "step": 185000 + }, + { + "epoch": 62.01005109305637, + "grad_norm": 0.6616671085357666, + "learning_rate": 1.9008710217755447e-05, + "loss": 0.19750312805175782, + "step": 185100 + }, + { + "epoch": 62.043554736577605, + "grad_norm": 0.667393147945404, + "learning_rate": 1.8991959798994976e-05, + "loss": 0.19275453567504883, + "step": 185200 + }, + { + "epoch": 62.07705838009883, + "grad_norm": 0.75070720911026, + "learning_rate": 1.897520938023451e-05, + "loss": 0.19383440017700196, + "step": 185300 + }, + { + "epoch": 62.11056202362007, + "grad_norm": 0.6957711577415466, + "learning_rate": 1.8958458961474037e-05, + "loss": 0.19298004150390624, + "step": 185400 + }, + { + "epoch": 62.1440656671413, + "grad_norm": 0.7118070721626282, + "learning_rate": 1.894170854271357e-05, + "loss": 0.19372062683105468, + "step": 185500 + }, + { + "epoch": 62.177569310662534, + "grad_norm": 0.6568797826766968, + "learning_rate": 1.8924958123953098e-05, + "loss": 0.19365182876586914, + "step": 185600 + }, + { + "epoch": 62.21107295418377, + "grad_norm": 0.6880303621292114, + "learning_rate": 1.890820770519263e-05, + "loss": 0.1950899887084961, + "step": 185700 + }, + { + "epoch": 62.244576597705, + "grad_norm": 0.6604440808296204, + "learning_rate": 1.8891457286432163e-05, + "loss": 0.19547990798950196, + "step": 185800 + }, + { + "epoch": 62.278080241226235, + "grad_norm": 0.7336467504501343, + "learning_rate": 1.887470686767169e-05, + "loss": 0.19477594375610352, + "step": 185900 + }, + { + "epoch": 62.31158388474746, + "grad_norm": 0.6443986296653748, + "learning_rate": 1.8857956448911224e-05, + "loss": 0.19533748626708985, + "step": 186000 + }, + { + "epoch": 62.3450875282687, + "grad_norm": 0.617526650428772, + "learning_rate": 1.8841206030150753e-05, + "loss": 0.19593568801879882, + "step": 186100 + }, + { + "epoch": 62.378591171789935, + "grad_norm": 0.6622116565704346, + "learning_rate": 1.8824455611390285e-05, + "loss": 0.19563573837280274, + "step": 186200 + }, + { + "epoch": 62.412094815311164, + "grad_norm": 0.6662573218345642, + "learning_rate": 1.8807705192629817e-05, + "loss": 0.19559219360351562, + "step": 186300 + }, + { + "epoch": 62.4455984588324, + "grad_norm": 0.7779511213302612, + "learning_rate": 1.879095477386935e-05, + "loss": 0.19570056915283204, + "step": 186400 + }, + { + "epoch": 62.47910210235363, + "grad_norm": 0.6488950848579407, + "learning_rate": 1.8774204355108878e-05, + "loss": 0.19671340942382812, + "step": 186500 + }, + { + "epoch": 62.512605745874865, + "grad_norm": 0.6302568316459656, + "learning_rate": 1.875745393634841e-05, + "loss": 0.19646032333374022, + "step": 186600 + }, + { + "epoch": 62.54610938939609, + "grad_norm": 0.6451594829559326, + "learning_rate": 1.874070351758794e-05, + "loss": 0.19605607986450196, + "step": 186700 + }, + { + "epoch": 62.57961303291733, + "grad_norm": 0.7226560711860657, + "learning_rate": 1.872395309882747e-05, + "loss": 0.19651512145996095, + "step": 186800 + }, + { + "epoch": 62.613116676438565, + "grad_norm": 0.7879689335823059, + "learning_rate": 1.8707202680067e-05, + "loss": 0.1969459342956543, + "step": 186900 + }, + { + "epoch": 62.646620319959794, + "grad_norm": 0.859521746635437, + "learning_rate": 1.869061976549414e-05, + "loss": 0.19710365295410157, + "step": 187000 + }, + { + "epoch": 62.68012396348103, + "grad_norm": 0.7182042002677917, + "learning_rate": 1.8673869346733668e-05, + "loss": 0.1975703239440918, + "step": 187100 + }, + { + "epoch": 62.71362760700226, + "grad_norm": 0.7117863893508911, + "learning_rate": 1.86571189279732e-05, + "loss": 0.19800674438476562, + "step": 187200 + }, + { + "epoch": 62.747131250523495, + "grad_norm": 0.8124322295188904, + "learning_rate": 1.864036850921273e-05, + "loss": 0.1976396369934082, + "step": 187300 + }, + { + "epoch": 62.78063489404473, + "grad_norm": 0.8003492951393127, + "learning_rate": 1.8623618090452265e-05, + "loss": 0.19788177490234374, + "step": 187400 + }, + { + "epoch": 62.81413853756596, + "grad_norm": 0.7933449149131775, + "learning_rate": 1.8606867671691794e-05, + "loss": 0.19794113159179688, + "step": 187500 + }, + { + "epoch": 62.847642181087195, + "grad_norm": 0.743191123008728, + "learning_rate": 1.8590117252931326e-05, + "loss": 0.19989189147949218, + "step": 187600 + }, + { + "epoch": 62.881145824608424, + "grad_norm": 0.662010669708252, + "learning_rate": 1.8573366834170855e-05, + "loss": 0.19854124069213866, + "step": 187700 + }, + { + "epoch": 62.91464946812966, + "grad_norm": 0.8278148174285889, + "learning_rate": 1.8556616415410387e-05, + "loss": 0.19968727111816406, + "step": 187800 + }, + { + "epoch": 62.94815311165089, + "grad_norm": 0.804415762424469, + "learning_rate": 1.8539865996649916e-05, + "loss": 0.19895530700683595, + "step": 187900 + }, + { + "epoch": 62.981656755172125, + "grad_norm": 0.7077623605728149, + "learning_rate": 1.8523115577889448e-05, + "loss": 0.19983070373535156, + "step": 188000 + }, + { + "epoch": 63.01507663958456, + "grad_norm": 0.5905118584632874, + "learning_rate": 1.850636515912898e-05, + "loss": 0.1953744888305664, + "step": 188100 + }, + { + "epoch": 63.048580283105785, + "grad_norm": 0.5887221693992615, + "learning_rate": 1.848961474036851e-05, + "loss": 0.19252130508422852, + "step": 188200 + }, + { + "epoch": 63.08208392662702, + "grad_norm": 0.6429964900016785, + "learning_rate": 1.847286432160804e-05, + "loss": 0.1936810302734375, + "step": 188300 + }, + { + "epoch": 63.11558757014826, + "grad_norm": 0.6943151354789734, + "learning_rate": 1.845611390284757e-05, + "loss": 0.1928156280517578, + "step": 188400 + }, + { + "epoch": 63.149091213669486, + "grad_norm": 0.7247923016548157, + "learning_rate": 1.8439363484087102e-05, + "loss": 0.19320756912231446, + "step": 188500 + }, + { + "epoch": 63.18259485719072, + "grad_norm": 0.6283583641052246, + "learning_rate": 1.842261306532663e-05, + "loss": 0.19241600036621093, + "step": 188600 + }, + { + "epoch": 63.21609850071195, + "grad_norm": 0.6737943291664124, + "learning_rate": 1.8405862646566167e-05, + "loss": 0.1937045669555664, + "step": 188700 + }, + { + "epoch": 63.24960214423319, + "grad_norm": 0.6524550914764404, + "learning_rate": 1.8389112227805695e-05, + "loss": 0.1929795265197754, + "step": 188800 + }, + { + "epoch": 63.283105787754415, + "grad_norm": 0.7188290953636169, + "learning_rate": 1.8372361809045228e-05, + "loss": 0.19419048309326173, + "step": 188900 + }, + { + "epoch": 63.31660943127565, + "grad_norm": 0.6564083099365234, + "learning_rate": 1.835577889447236e-05, + "loss": 0.1945943069458008, + "step": 189000 + }, + { + "epoch": 63.35011307479689, + "grad_norm": 0.9156805276870728, + "learning_rate": 1.8339028475711896e-05, + "loss": 0.1947199821472168, + "step": 189100 + }, + { + "epoch": 63.383616718318116, + "grad_norm": 0.6628890633583069, + "learning_rate": 1.8322278056951425e-05, + "loss": 0.19428998947143555, + "step": 189200 + }, + { + "epoch": 63.41712036183935, + "grad_norm": 0.5167578458786011, + "learning_rate": 1.8305527638190957e-05, + "loss": 0.19555074691772462, + "step": 189300 + }, + { + "epoch": 63.45062400536058, + "grad_norm": 0.8341636657714844, + "learning_rate": 1.8288777219430486e-05, + "loss": 0.1958403205871582, + "step": 189400 + }, + { + "epoch": 63.48412764888182, + "grad_norm": 0.7699781656265259, + "learning_rate": 1.8272026800670018e-05, + "loss": 0.1960818099975586, + "step": 189500 + }, + { + "epoch": 63.517631292403046, + "grad_norm": 0.7461984753608704, + "learning_rate": 1.8255276381909547e-05, + "loss": 0.1969795799255371, + "step": 189600 + }, + { + "epoch": 63.55113493592428, + "grad_norm": 0.8196810483932495, + "learning_rate": 1.8238525963149082e-05, + "loss": 0.1966191864013672, + "step": 189700 + }, + { + "epoch": 63.58463857944552, + "grad_norm": 0.7453595399856567, + "learning_rate": 1.822177554438861e-05, + "loss": 0.19745317459106446, + "step": 189800 + }, + { + "epoch": 63.618142222966746, + "grad_norm": 0.638787031173706, + "learning_rate": 1.8205025125628143e-05, + "loss": 0.19748239517211913, + "step": 189900 + }, + { + "epoch": 63.65164586648798, + "grad_norm": 0.8472653031349182, + "learning_rate": 1.8188274706867672e-05, + "loss": 0.19711460113525392, + "step": 190000 + }, + { + "epoch": 63.68514951000921, + "grad_norm": 0.6634200215339661, + "learning_rate": 1.8171524288107204e-05, + "loss": 0.19727699279785157, + "step": 190100 + }, + { + "epoch": 63.71865315353045, + "grad_norm": 0.7622882127761841, + "learning_rate": 1.8154773869346733e-05, + "loss": 0.19806449890136718, + "step": 190200 + }, + { + "epoch": 63.75215679705168, + "grad_norm": 0.6492070555686951, + "learning_rate": 1.8138023450586265e-05, + "loss": 0.19782337188720703, + "step": 190300 + }, + { + "epoch": 63.78566044057291, + "grad_norm": 0.7956305146217346, + "learning_rate": 1.8121273031825798e-05, + "loss": 0.19663129806518553, + "step": 190400 + }, + { + "epoch": 63.81916408409415, + "grad_norm": 0.5923272967338562, + "learning_rate": 1.8104522613065326e-05, + "loss": 0.19800495147705077, + "step": 190500 + }, + { + "epoch": 63.852667727615376, + "grad_norm": 0.6325972676277161, + "learning_rate": 1.808777219430486e-05, + "loss": 0.19802473068237306, + "step": 190600 + }, + { + "epoch": 63.88617137113661, + "grad_norm": 0.7037030458450317, + "learning_rate": 1.8071021775544387e-05, + "loss": 0.19737031936645508, + "step": 190700 + }, + { + "epoch": 63.91967501465784, + "grad_norm": 0.6459951996803284, + "learning_rate": 1.805427135678392e-05, + "loss": 0.19749345779418945, + "step": 190800 + }, + { + "epoch": 63.95317865817908, + "grad_norm": 0.7572121024131775, + "learning_rate": 1.8037520938023452e-05, + "loss": 0.199870548248291, + "step": 190900 + }, + { + "epoch": 63.98668230170031, + "grad_norm": 0.6550577878952026, + "learning_rate": 1.8020938023450588e-05, + "loss": 0.19845205307006836, + "step": 191000 + }, + { + "epoch": 64.02010218611274, + "grad_norm": 0.5528762340545654, + "learning_rate": 1.8004187604690117e-05, + "loss": 0.19315372467041014, + "step": 191100 + }, + { + "epoch": 64.05360582963397, + "grad_norm": 0.7415011525154114, + "learning_rate": 1.798743718592965e-05, + "loss": 0.1906199836730957, + "step": 191200 + }, + { + "epoch": 64.08710947315521, + "grad_norm": 0.5133525729179382, + "learning_rate": 1.797068676716918e-05, + "loss": 0.19169828414916992, + "step": 191300 + }, + { + "epoch": 64.12061311667644, + "grad_norm": 0.7105311155319214, + "learning_rate": 1.7953936348408713e-05, + "loss": 0.19295671463012695, + "step": 191400 + }, + { + "epoch": 64.15411676019767, + "grad_norm": 0.6510593295097351, + "learning_rate": 1.7937185929648242e-05, + "loss": 0.19301687240600585, + "step": 191500 + }, + { + "epoch": 64.18762040371891, + "grad_norm": 0.737304151058197, + "learning_rate": 1.7920435510887774e-05, + "loss": 0.19341800689697267, + "step": 191600 + }, + { + "epoch": 64.22112404724014, + "grad_norm": 0.7213296890258789, + "learning_rate": 1.7903685092127303e-05, + "loss": 0.19339723587036134, + "step": 191700 + }, + { + "epoch": 64.25462769076137, + "grad_norm": 0.6387230157852173, + "learning_rate": 1.7886934673366835e-05, + "loss": 0.19426511764526366, + "step": 191800 + }, + { + "epoch": 64.2881313342826, + "grad_norm": 0.5896677374839783, + "learning_rate": 1.7870184254606364e-05, + "loss": 0.19313657760620118, + "step": 191900 + }, + { + "epoch": 64.32163497780384, + "grad_norm": 0.6253547668457031, + "learning_rate": 1.78534338358459e-05, + "loss": 0.19436355590820312, + "step": 192000 + }, + { + "epoch": 64.35513862132507, + "grad_norm": 0.6272561550140381, + "learning_rate": 1.783668341708543e-05, + "loss": 0.1950385284423828, + "step": 192100 + }, + { + "epoch": 64.3886422648463, + "grad_norm": 0.6820735335350037, + "learning_rate": 1.781993299832496e-05, + "loss": 0.19447114944458008, + "step": 192200 + }, + { + "epoch": 64.42214590836754, + "grad_norm": 0.8564963340759277, + "learning_rate": 1.780318257956449e-05, + "loss": 0.19415367126464844, + "step": 192300 + }, + { + "epoch": 64.45564955188877, + "grad_norm": 0.6703295111656189, + "learning_rate": 1.7786432160804022e-05, + "loss": 0.19531801223754883, + "step": 192400 + }, + { + "epoch": 64.48915319541, + "grad_norm": 0.7819051146507263, + "learning_rate": 1.776968174204355e-05, + "loss": 0.19491588592529296, + "step": 192500 + }, + { + "epoch": 64.52265683893124, + "grad_norm": 0.5364665985107422, + "learning_rate": 1.7752931323283083e-05, + "loss": 0.1953544235229492, + "step": 192600 + }, + { + "epoch": 64.55616048245247, + "grad_norm": 0.5155049562454224, + "learning_rate": 1.7736180904522615e-05, + "loss": 0.19612747192382812, + "step": 192700 + }, + { + "epoch": 64.5896641259737, + "grad_norm": 0.809084951877594, + "learning_rate": 1.7719430485762144e-05, + "loss": 0.1966937255859375, + "step": 192800 + }, + { + "epoch": 64.62316776949493, + "grad_norm": 0.7905207276344299, + "learning_rate": 1.7702680067001676e-05, + "loss": 0.19525121688842773, + "step": 192900 + }, + { + "epoch": 64.65667141301617, + "grad_norm": 0.7242773771286011, + "learning_rate": 1.7686097152428812e-05, + "loss": 0.19637462615966797, + "step": 193000 + }, + { + "epoch": 64.6901750565374, + "grad_norm": 0.696966826915741, + "learning_rate": 1.7669346733668344e-05, + "loss": 0.19756622314453126, + "step": 193100 + }, + { + "epoch": 64.72367870005863, + "grad_norm": 0.6258018612861633, + "learning_rate": 1.7652596314907873e-05, + "loss": 0.19659183502197267, + "step": 193200 + }, + { + "epoch": 64.75718234357987, + "grad_norm": 0.6579128503799438, + "learning_rate": 1.7635845896147405e-05, + "loss": 0.19634262084960938, + "step": 193300 + }, + { + "epoch": 64.7906859871011, + "grad_norm": 0.6634902954101562, + "learning_rate": 1.7619095477386934e-05, + "loss": 0.19719581604003905, + "step": 193400 + }, + { + "epoch": 64.82418963062233, + "grad_norm": 0.7709892988204956, + "learning_rate": 1.7602345058626466e-05, + "loss": 0.19753650665283204, + "step": 193500 + }, + { + "epoch": 64.85769327414356, + "grad_norm": 0.7069748044013977, + "learning_rate": 1.7585594639866e-05, + "loss": 0.19717281341552734, + "step": 193600 + }, + { + "epoch": 64.8911969176648, + "grad_norm": 0.756540060043335, + "learning_rate": 1.756884422110553e-05, + "loss": 0.19797266006469727, + "step": 193700 + }, + { + "epoch": 64.92470056118603, + "grad_norm": 0.8358628749847412, + "learning_rate": 1.755209380234506e-05, + "loss": 0.19739683151245116, + "step": 193800 + }, + { + "epoch": 64.95820420470726, + "grad_norm": 0.7340553998947144, + "learning_rate": 1.753534338358459e-05, + "loss": 0.19825174331665038, + "step": 193900 + }, + { + "epoch": 64.9917078482285, + "grad_norm": 0.7182520627975464, + "learning_rate": 1.751859296482412e-05, + "loss": 0.1992794418334961, + "step": 194000 + }, + { + "epoch": 65.02512773264093, + "grad_norm": 0.7197110652923584, + "learning_rate": 1.7501842546063653e-05, + "loss": 0.19224626541137696, + "step": 194100 + }, + { + "epoch": 65.05863137616215, + "grad_norm": 0.704738199710846, + "learning_rate": 1.7485092127303185e-05, + "loss": 0.1910837173461914, + "step": 194200 + }, + { + "epoch": 65.0921350196834, + "grad_norm": 0.7330573201179504, + "learning_rate": 1.7468341708542714e-05, + "loss": 0.1925986099243164, + "step": 194300 + }, + { + "epoch": 65.12563866320463, + "grad_norm": 0.6279468536376953, + "learning_rate": 1.7451591289782246e-05, + "loss": 0.19241338729858398, + "step": 194400 + }, + { + "epoch": 65.15914230672585, + "grad_norm": 0.7558215856552124, + "learning_rate": 1.7434840871021778e-05, + "loss": 0.19235986709594727, + "step": 194500 + }, + { + "epoch": 65.19264595024708, + "grad_norm": 0.7638766765594482, + "learning_rate": 1.7418090452261307e-05, + "loss": 0.19314172744750976, + "step": 194600 + }, + { + "epoch": 65.22614959376833, + "grad_norm": 0.8271517753601074, + "learning_rate": 1.740134003350084e-05, + "loss": 0.19355636596679687, + "step": 194700 + }, + { + "epoch": 65.25965323728956, + "grad_norm": 0.6696556806564331, + "learning_rate": 1.7384589614740368e-05, + "loss": 0.19400758743286134, + "step": 194800 + }, + { + "epoch": 65.29315688081078, + "grad_norm": 0.6253610849380493, + "learning_rate": 1.73678391959799e-05, + "loss": 0.1946131706237793, + "step": 194900 + }, + { + "epoch": 65.32666052433203, + "grad_norm": 0.7860012054443359, + "learning_rate": 1.7351088777219432e-05, + "loss": 0.19406192779541015, + "step": 195000 + }, + { + "epoch": 65.36016416785326, + "grad_norm": 0.6729128360748291, + "learning_rate": 1.7334505862646565e-05, + "loss": 0.19439397811889647, + "step": 195100 + }, + { + "epoch": 65.39366781137448, + "grad_norm": 0.5755062699317932, + "learning_rate": 1.7317755443886097e-05, + "loss": 0.1932700538635254, + "step": 195200 + }, + { + "epoch": 65.42717145489571, + "grad_norm": 0.726636528968811, + "learning_rate": 1.730100502512563e-05, + "loss": 0.19444786071777342, + "step": 195300 + }, + { + "epoch": 65.46067509841696, + "grad_norm": 0.699719250202179, + "learning_rate": 1.728425460636516e-05, + "loss": 0.19458566665649413, + "step": 195400 + }, + { + "epoch": 65.49417874193819, + "grad_norm": 0.5866639614105225, + "learning_rate": 1.726750418760469e-05, + "loss": 0.19407997131347657, + "step": 195500 + }, + { + "epoch": 65.52768238545941, + "grad_norm": 0.6109085083007812, + "learning_rate": 1.7250753768844223e-05, + "loss": 0.19484548568725585, + "step": 195600 + }, + { + "epoch": 65.56118602898066, + "grad_norm": 0.6569064855575562, + "learning_rate": 1.723400335008375e-05, + "loss": 0.19527423858642579, + "step": 195700 + }, + { + "epoch": 65.59468967250189, + "grad_norm": 0.7762038707733154, + "learning_rate": 1.7217252931323284e-05, + "loss": 0.19620054244995117, + "step": 195800 + }, + { + "epoch": 65.62819331602311, + "grad_norm": 0.7439081072807312, + "learning_rate": 1.7200502512562816e-05, + "loss": 0.19575105667114256, + "step": 195900 + }, + { + "epoch": 65.66169695954434, + "grad_norm": 0.6967695951461792, + "learning_rate": 1.7183752093802348e-05, + "loss": 0.19645559310913085, + "step": 196000 + }, + { + "epoch": 65.69520060306559, + "grad_norm": 0.7349697351455688, + "learning_rate": 1.7167001675041877e-05, + "loss": 0.19642463684082032, + "step": 196100 + }, + { + "epoch": 65.72870424658682, + "grad_norm": 0.6738443970680237, + "learning_rate": 1.715025125628141e-05, + "loss": 0.19574283599853515, + "step": 196200 + }, + { + "epoch": 65.76220789010804, + "grad_norm": 0.6993250250816345, + "learning_rate": 1.7133500837520938e-05, + "loss": 0.19748226165771485, + "step": 196300 + }, + { + "epoch": 65.79571153362929, + "grad_norm": 0.7072445750236511, + "learning_rate": 1.711675041876047e-05, + "loss": 0.19640846252441407, + "step": 196400 + }, + { + "epoch": 65.82921517715052, + "grad_norm": 0.7074381709098816, + "learning_rate": 1.7100000000000002e-05, + "loss": 0.19640003204345702, + "step": 196500 + }, + { + "epoch": 65.86271882067174, + "grad_norm": 0.6643349528312683, + "learning_rate": 1.708324958123953e-05, + "loss": 0.1962619400024414, + "step": 196600 + }, + { + "epoch": 65.89622246419299, + "grad_norm": 0.6393887400627136, + "learning_rate": 1.7066499162479063e-05, + "loss": 0.19662002563476563, + "step": 196700 + }, + { + "epoch": 65.92972610771422, + "grad_norm": 0.6912117600440979, + "learning_rate": 1.7049748743718592e-05, + "loss": 0.19711755752563476, + "step": 196800 + }, + { + "epoch": 65.96322975123545, + "grad_norm": 0.6061841249465942, + "learning_rate": 1.7032998324958124e-05, + "loss": 0.19713987350463869, + "step": 196900 + }, + { + "epoch": 65.99673339475667, + "grad_norm": 0.8009989857673645, + "learning_rate": 1.7016247906197653e-05, + "loss": 0.19686588287353515, + "step": 197000 + }, + { + "epoch": 66.03015327916911, + "grad_norm": 0.5211619734764099, + "learning_rate": 1.6999497487437185e-05, + "loss": 0.19180856704711913, + "step": 197100 + }, + { + "epoch": 66.06365692269034, + "grad_norm": 0.8374447822570801, + "learning_rate": 1.698291457286432e-05, + "loss": 0.1912846565246582, + "step": 197200 + }, + { + "epoch": 66.09716056621157, + "grad_norm": 0.5720506310462952, + "learning_rate": 1.6966164154103854e-05, + "loss": 0.1917406463623047, + "step": 197300 + }, + { + "epoch": 66.13066420973281, + "grad_norm": 0.6164358258247375, + "learning_rate": 1.6949413735343382e-05, + "loss": 0.19152711868286132, + "step": 197400 + }, + { + "epoch": 66.16416785325404, + "grad_norm": 0.6611140370368958, + "learning_rate": 1.6932663316582915e-05, + "loss": 0.1916365623474121, + "step": 197500 + }, + { + "epoch": 66.19767149677527, + "grad_norm": 0.8065768480300903, + "learning_rate": 1.6915912897822447e-05, + "loss": 0.19188701629638671, + "step": 197600 + }, + { + "epoch": 66.23117514029651, + "grad_norm": 0.832007646560669, + "learning_rate": 1.689916247906198e-05, + "loss": 0.19254329681396484, + "step": 197700 + }, + { + "epoch": 66.26467878381774, + "grad_norm": 0.6256246566772461, + "learning_rate": 1.6882412060301508e-05, + "loss": 0.19245880126953124, + "step": 197800 + }, + { + "epoch": 66.29818242733897, + "grad_norm": 0.6906976103782654, + "learning_rate": 1.686566164154104e-05, + "loss": 0.19253412246704102, + "step": 197900 + }, + { + "epoch": 66.3316860708602, + "grad_norm": 0.8333529233932495, + "learning_rate": 1.684891122278057e-05, + "loss": 0.19308279037475587, + "step": 198000 + }, + { + "epoch": 66.36518971438144, + "grad_norm": 0.6668996810913086, + "learning_rate": 1.68321608040201e-05, + "loss": 0.19387590408325195, + "step": 198100 + }, + { + "epoch": 66.39869335790267, + "grad_norm": 0.6531146764755249, + "learning_rate": 1.6815410385259633e-05, + "loss": 0.19346897125244142, + "step": 198200 + }, + { + "epoch": 66.4321970014239, + "grad_norm": 0.5391746163368225, + "learning_rate": 1.6798659966499165e-05, + "loss": 0.19385696411132813, + "step": 198300 + }, + { + "epoch": 66.46570064494514, + "grad_norm": 0.7026568055152893, + "learning_rate": 1.6781909547738694e-05, + "loss": 0.19465816497802735, + "step": 198400 + }, + { + "epoch": 66.49920428846637, + "grad_norm": 0.7220622301101685, + "learning_rate": 1.6765159128978226e-05, + "loss": 0.19388059616088868, + "step": 198500 + }, + { + "epoch": 66.5327079319876, + "grad_norm": 0.6891744136810303, + "learning_rate": 1.6748408710217755e-05, + "loss": 0.1932676887512207, + "step": 198600 + }, + { + "epoch": 66.56621157550883, + "grad_norm": 0.5302000045776367, + "learning_rate": 1.6731658291457288e-05, + "loss": 0.19477445602416993, + "step": 198700 + }, + { + "epoch": 66.59971521903007, + "grad_norm": 0.7118658423423767, + "learning_rate": 1.671490787269682e-05, + "loss": 0.1960425567626953, + "step": 198800 + }, + { + "epoch": 66.6332188625513, + "grad_norm": 0.6674960255622864, + "learning_rate": 1.669815745393635e-05, + "loss": 0.19594356536865234, + "step": 198900 + }, + { + "epoch": 66.66672250607253, + "grad_norm": 0.7001693844795227, + "learning_rate": 1.668140703517588e-05, + "loss": 0.1959066581726074, + "step": 199000 + }, + { + "epoch": 66.70022614959377, + "grad_norm": 0.7504046559333801, + "learning_rate": 1.666465661641541e-05, + "loss": 0.19596036911010742, + "step": 199100 + }, + { + "epoch": 66.733729793115, + "grad_norm": 0.540820837020874, + "learning_rate": 1.6647906197654942e-05, + "loss": 0.19496715545654297, + "step": 199200 + }, + { + "epoch": 66.76723343663623, + "grad_norm": 0.659315288066864, + "learning_rate": 1.6631323283082078e-05, + "loss": 0.19592731475830077, + "step": 199300 + }, + { + "epoch": 66.80073708015746, + "grad_norm": 0.6407586336135864, + "learning_rate": 1.661457286432161e-05, + "loss": 0.1966596221923828, + "step": 199400 + }, + { + "epoch": 66.8342407236787, + "grad_norm": 0.8105034828186035, + "learning_rate": 1.659782244556114e-05, + "loss": 0.19701980590820312, + "step": 199500 + }, + { + "epoch": 66.86774436719993, + "grad_norm": 0.693172812461853, + "learning_rate": 1.658107202680067e-05, + "loss": 0.19503232955932617, + "step": 199600 + }, + { + "epoch": 66.90124801072116, + "grad_norm": 0.7639322876930237, + "learning_rate": 1.65643216080402e-05, + "loss": 0.1977808380126953, + "step": 199700 + }, + { + "epoch": 66.9347516542424, + "grad_norm": 0.7706619501113892, + "learning_rate": 1.6547571189279735e-05, + "loss": 0.19528146743774413, + "step": 199800 + }, + { + "epoch": 66.96825529776363, + "grad_norm": 0.8017984628677368, + "learning_rate": 1.6530820770519264e-05, + "loss": 0.19607614517211913, + "step": 199900 + }, + { + "epoch": 67.00167518217606, + "grad_norm": 0.6076714992523193, + "learning_rate": 1.6514070351758796e-05, + "loss": 0.196212100982666, + "step": 200000 + }, + { + "epoch": 67.0351788256973, + "grad_norm": 0.7155037522315979, + "learning_rate": 1.6497319932998325e-05, + "loss": 0.19083133697509766, + "step": 200100 + }, + { + "epoch": 67.06868246921853, + "grad_norm": 0.6289516687393188, + "learning_rate": 1.6480569514237857e-05, + "loss": 0.19047863006591798, + "step": 200200 + }, + { + "epoch": 67.10218611273976, + "grad_norm": 0.6958616375923157, + "learning_rate": 1.6463819095477386e-05, + "loss": 0.1900768280029297, + "step": 200300 + }, + { + "epoch": 67.13568975626099, + "grad_norm": 0.5616253018379211, + "learning_rate": 1.644706867671692e-05, + "loss": 0.19233095169067382, + "step": 200400 + }, + { + "epoch": 67.16919339978223, + "grad_norm": 0.6665573120117188, + "learning_rate": 1.643031825795645e-05, + "loss": 0.1919367218017578, + "step": 200500 + }, + { + "epoch": 67.20269704330346, + "grad_norm": 0.6951255798339844, + "learning_rate": 1.6413567839195983e-05, + "loss": 0.19197673797607423, + "step": 200600 + }, + { + "epoch": 67.23620068682469, + "grad_norm": 0.6771343946456909, + "learning_rate": 1.639681742043551e-05, + "loss": 0.1921021270751953, + "step": 200700 + }, + { + "epoch": 67.26970433034593, + "grad_norm": 0.6687894463539124, + "learning_rate": 1.6380067001675044e-05, + "loss": 0.19192752838134766, + "step": 200800 + }, + { + "epoch": 67.30320797386716, + "grad_norm": 0.7397539019584656, + "learning_rate": 1.6363316582914573e-05, + "loss": 0.1915091323852539, + "step": 200900 + }, + { + "epoch": 67.33671161738839, + "grad_norm": 0.6094964742660522, + "learning_rate": 1.6346566164154105e-05, + "loss": 0.1940443992614746, + "step": 201000 + }, + { + "epoch": 67.37021526090962, + "grad_norm": 0.5608842372894287, + "learning_rate": 1.6329815745393637e-05, + "loss": 0.19360294342041015, + "step": 201100 + }, + { + "epoch": 67.40371890443086, + "grad_norm": 0.6738369464874268, + "learning_rate": 1.6313065326633166e-05, + "loss": 0.19352413177490235, + "step": 201200 + }, + { + "epoch": 67.43722254795209, + "grad_norm": 0.7028993964195251, + "learning_rate": 1.6296482412060302e-05, + "loss": 0.1933650016784668, + "step": 201300 + }, + { + "epoch": 67.47072619147332, + "grad_norm": 0.5576817989349365, + "learning_rate": 1.627973199329983e-05, + "loss": 0.19390420913696288, + "step": 201400 + }, + { + "epoch": 67.50422983499456, + "grad_norm": 0.6411824226379395, + "learning_rate": 1.6262981574539366e-05, + "loss": 0.1935529899597168, + "step": 201500 + }, + { + "epoch": 67.53773347851579, + "grad_norm": 0.6373094916343689, + "learning_rate": 1.6246231155778895e-05, + "loss": 0.19391347885131835, + "step": 201600 + }, + { + "epoch": 67.57123712203702, + "grad_norm": 0.6556655168533325, + "learning_rate": 1.6229480737018427e-05, + "loss": 0.19495166778564454, + "step": 201700 + }, + { + "epoch": 67.60474076555825, + "grad_norm": 0.6322004199028015, + "learning_rate": 1.6212730318257956e-05, + "loss": 0.1953642463684082, + "step": 201800 + }, + { + "epoch": 67.63824440907949, + "grad_norm": 0.6095288395881653, + "learning_rate": 1.619597989949749e-05, + "loss": 0.19500333786010743, + "step": 201900 + }, + { + "epoch": 67.67174805260072, + "grad_norm": 0.5999951362609863, + "learning_rate": 1.6179229480737017e-05, + "loss": 0.19503114700317384, + "step": 202000 + }, + { + "epoch": 67.70525169612195, + "grad_norm": 0.7297765016555786, + "learning_rate": 1.6162479061976553e-05, + "loss": 0.19440362930297853, + "step": 202100 + }, + { + "epoch": 67.73875533964319, + "grad_norm": 0.7177837491035461, + "learning_rate": 1.614572864321608e-05, + "loss": 0.19499702453613282, + "step": 202200 + }, + { + "epoch": 67.77225898316442, + "grad_norm": 0.8244702219963074, + "learning_rate": 1.6128978224455614e-05, + "loss": 0.19555707931518554, + "step": 202300 + }, + { + "epoch": 67.80576262668565, + "grad_norm": 0.6373338103294373, + "learning_rate": 1.6112227805695143e-05, + "loss": 0.195418758392334, + "step": 202400 + }, + { + "epoch": 67.83926627020689, + "grad_norm": 0.6217545866966248, + "learning_rate": 1.6095477386934675e-05, + "loss": 0.19555667877197266, + "step": 202500 + }, + { + "epoch": 67.87276991372812, + "grad_norm": 0.6853159070014954, + "learning_rate": 1.6078726968174204e-05, + "loss": 0.19608963012695313, + "step": 202600 + }, + { + "epoch": 67.90627355724935, + "grad_norm": 0.6794860363006592, + "learning_rate": 1.6061976549413736e-05, + "loss": 0.19546913146972655, + "step": 202700 + }, + { + "epoch": 67.93977720077058, + "grad_norm": 0.6505772471427917, + "learning_rate": 1.6045226130653268e-05, + "loss": 0.19603317260742187, + "step": 202800 + }, + { + "epoch": 67.97328084429182, + "grad_norm": 0.6339512467384338, + "learning_rate": 1.60284757118928e-05, + "loss": 0.19620756149291993, + "step": 202900 + }, + { + "epoch": 68.00670072870425, + "grad_norm": 0.602581799030304, + "learning_rate": 1.601172529313233e-05, + "loss": 0.19463903427124024, + "step": 203000 + }, + { + "epoch": 68.04020437222547, + "grad_norm": 0.5730949640274048, + "learning_rate": 1.599497487437186e-05, + "loss": 0.19001585006713867, + "step": 203100 + }, + { + "epoch": 68.07370801574672, + "grad_norm": 0.5395110845565796, + "learning_rate": 1.597822445561139e-05, + "loss": 0.19011409759521483, + "step": 203200 + }, + { + "epoch": 68.10721165926795, + "grad_norm": 0.5770024657249451, + "learning_rate": 1.5961474036850922e-05, + "loss": 0.1901267433166504, + "step": 203300 + }, + { + "epoch": 68.14071530278918, + "grad_norm": 0.7738876342773438, + "learning_rate": 1.5944891122278058e-05, + "loss": 0.1905143928527832, + "step": 203400 + }, + { + "epoch": 68.17421894631042, + "grad_norm": 0.7363227605819702, + "learning_rate": 1.5928140703517587e-05, + "loss": 0.19049446105957032, + "step": 203500 + }, + { + "epoch": 68.20772258983165, + "grad_norm": 0.7116740345954895, + "learning_rate": 1.591139028475712e-05, + "loss": 0.19107500076293946, + "step": 203600 + }, + { + "epoch": 68.24122623335288, + "grad_norm": 0.715164840221405, + "learning_rate": 1.5894639865996648e-05, + "loss": 0.19192060470581054, + "step": 203700 + }, + { + "epoch": 68.2747298768741, + "grad_norm": 0.7426648736000061, + "learning_rate": 1.5877889447236184e-05, + "loss": 0.19199298858642577, + "step": 203800 + }, + { + "epoch": 68.30823352039535, + "grad_norm": 0.6598964929580688, + "learning_rate": 1.5861139028475713e-05, + "loss": 0.19214748382568358, + "step": 203900 + }, + { + "epoch": 68.34173716391658, + "grad_norm": 0.7202093601226807, + "learning_rate": 1.5844388609715245e-05, + "loss": 0.191875, + "step": 204000 + }, + { + "epoch": 68.3752408074378, + "grad_norm": 0.7151044607162476, + "learning_rate": 1.5827638190954774e-05, + "loss": 0.1921199607849121, + "step": 204100 + }, + { + "epoch": 68.40874445095905, + "grad_norm": 0.6264718174934387, + "learning_rate": 1.5810887772194306e-05, + "loss": 0.1933818244934082, + "step": 204200 + }, + { + "epoch": 68.44224809448028, + "grad_norm": 0.6225735545158386, + "learning_rate": 1.5794137353433835e-05, + "loss": 0.19361408233642577, + "step": 204300 + }, + { + "epoch": 68.4757517380015, + "grad_norm": 0.7502007484436035, + "learning_rate": 1.577738693467337e-05, + "loss": 0.1928209114074707, + "step": 204400 + }, + { + "epoch": 68.50925538152273, + "grad_norm": 0.6535805463790894, + "learning_rate": 1.57606365159129e-05, + "loss": 0.1925800323486328, + "step": 204500 + }, + { + "epoch": 68.54275902504398, + "grad_norm": 0.6184046864509583, + "learning_rate": 1.574388609715243e-05, + "loss": 0.1938844680786133, + "step": 204600 + }, + { + "epoch": 68.5762626685652, + "grad_norm": 0.642119824886322, + "learning_rate": 1.572713567839196e-05, + "loss": 0.1933103942871094, + "step": 204700 + }, + { + "epoch": 68.60976631208644, + "grad_norm": 0.6790170669555664, + "learning_rate": 1.5710385259631492e-05, + "loss": 0.1948932647705078, + "step": 204800 + }, + { + "epoch": 68.64326995560768, + "grad_norm": 0.647903323173523, + "learning_rate": 1.569363484087102e-05, + "loss": 0.1952429962158203, + "step": 204900 + }, + { + "epoch": 68.67677359912891, + "grad_norm": 0.77556312084198, + "learning_rate": 1.5676884422110553e-05, + "loss": 0.19408275604248046, + "step": 205000 + }, + { + "epoch": 68.71027724265014, + "grad_norm": 0.6710578203201294, + "learning_rate": 1.5660134003350085e-05, + "loss": 0.1949919319152832, + "step": 205100 + }, + { + "epoch": 68.74378088617136, + "grad_norm": 0.6515961289405823, + "learning_rate": 1.5643383584589614e-05, + "loss": 0.19462379455566406, + "step": 205200 + }, + { + "epoch": 68.77728452969261, + "grad_norm": 0.7134996652603149, + "learning_rate": 1.5626633165829147e-05, + "loss": 0.19480768203735352, + "step": 205300 + }, + { + "epoch": 68.81078817321384, + "grad_norm": 0.5678537487983704, + "learning_rate": 1.5610050251256282e-05, + "loss": 0.1956866455078125, + "step": 205400 + }, + { + "epoch": 68.84429181673507, + "grad_norm": 0.627916157245636, + "learning_rate": 1.5593299832495815e-05, + "loss": 0.19494726181030272, + "step": 205500 + }, + { + "epoch": 68.87779546025631, + "grad_norm": 0.5940144062042236, + "learning_rate": 1.5576549413735343e-05, + "loss": 0.19554563522338866, + "step": 205600 + }, + { + "epoch": 68.91129910377754, + "grad_norm": 0.7416447401046753, + "learning_rate": 1.5559798994974876e-05, + "loss": 0.19647571563720703, + "step": 205700 + }, + { + "epoch": 68.94480274729877, + "grad_norm": 0.6104159355163574, + "learning_rate": 1.5543048576214404e-05, + "loss": 0.19543346405029297, + "step": 205800 + }, + { + "epoch": 68.97830639082, + "grad_norm": 0.7064023613929749, + "learning_rate": 1.5526298157453937e-05, + "loss": 0.19565975189208984, + "step": 205900 + }, + { + "epoch": 69.01172627523243, + "grad_norm": 0.6279042363166809, + "learning_rate": 1.5509547738693466e-05, + "loss": 0.1939265251159668, + "step": 206000 + }, + { + "epoch": 69.04522991875366, + "grad_norm": 0.6966283917427063, + "learning_rate": 1.5492797319933e-05, + "loss": 0.18873752593994142, + "step": 206100 + }, + { + "epoch": 69.07873356227489, + "grad_norm": 0.598598062992096, + "learning_rate": 1.547604690117253e-05, + "loss": 0.19044071197509765, + "step": 206200 + }, + { + "epoch": 69.11223720579613, + "grad_norm": 0.6215249300003052, + "learning_rate": 1.5459296482412062e-05, + "loss": 0.18954809188842772, + "step": 206300 + }, + { + "epoch": 69.14574084931736, + "grad_norm": 0.6590831279754639, + "learning_rate": 1.544254606365159e-05, + "loss": 0.1906461524963379, + "step": 206400 + }, + { + "epoch": 69.17924449283859, + "grad_norm": 0.5938999056816101, + "learning_rate": 1.5425795644891123e-05, + "loss": 0.1904694175720215, + "step": 206500 + }, + { + "epoch": 69.21274813635983, + "grad_norm": 0.5933434367179871, + "learning_rate": 1.5409045226130652e-05, + "loss": 0.19135387420654296, + "step": 206600 + }, + { + "epoch": 69.24625177988106, + "grad_norm": 0.7321082353591919, + "learning_rate": 1.5392294807370188e-05, + "loss": 0.19140138626098632, + "step": 206700 + }, + { + "epoch": 69.27975542340229, + "grad_norm": 0.7632362842559814, + "learning_rate": 1.5375544388609716e-05, + "loss": 0.19026206970214843, + "step": 206800 + }, + { + "epoch": 69.31325906692352, + "grad_norm": 0.5204057097434998, + "learning_rate": 1.535879396984925e-05, + "loss": 0.19211410522460937, + "step": 206900 + }, + { + "epoch": 69.34676271044476, + "grad_norm": 0.5607998967170715, + "learning_rate": 1.5342043551088777e-05, + "loss": 0.19179800033569336, + "step": 207000 + }, + { + "epoch": 69.380266353966, + "grad_norm": 0.6838735342025757, + "learning_rate": 1.532529313232831e-05, + "loss": 0.1921243476867676, + "step": 207100 + }, + { + "epoch": 69.41376999748722, + "grad_norm": 0.7290564179420471, + "learning_rate": 1.530854271356784e-05, + "loss": 0.1927803611755371, + "step": 207200 + }, + { + "epoch": 69.44727364100847, + "grad_norm": 0.678501307964325, + "learning_rate": 1.529179229480737e-05, + "loss": 0.19337810516357423, + "step": 207300 + }, + { + "epoch": 69.4807772845297, + "grad_norm": 0.6822425723075867, + "learning_rate": 1.5275041876046903e-05, + "loss": 0.1925121307373047, + "step": 207400 + }, + { + "epoch": 69.51428092805092, + "grad_norm": 0.5909448266029358, + "learning_rate": 1.5258458961474037e-05, + "loss": 0.1932221221923828, + "step": 207500 + }, + { + "epoch": 69.54778457157215, + "grad_norm": 0.5861632823944092, + "learning_rate": 1.5241708542713568e-05, + "loss": 0.19226568222045898, + "step": 207600 + }, + { + "epoch": 69.5812882150934, + "grad_norm": 0.6072438359260559, + "learning_rate": 1.5224958123953102e-05, + "loss": 0.19327423095703125, + "step": 207700 + }, + { + "epoch": 69.61479185861462, + "grad_norm": 0.7752787470817566, + "learning_rate": 1.5208207705192632e-05, + "loss": 0.19411521911621094, + "step": 207800 + }, + { + "epoch": 69.64829550213585, + "grad_norm": 0.604340672492981, + "learning_rate": 1.5191457286432163e-05, + "loss": 0.19500984191894533, + "step": 207900 + }, + { + "epoch": 69.6817991456571, + "grad_norm": 0.5669907331466675, + "learning_rate": 1.5174706867671693e-05, + "loss": 0.19465980529785157, + "step": 208000 + }, + { + "epoch": 69.71530278917832, + "grad_norm": 0.624899685382843, + "learning_rate": 1.5157956448911224e-05, + "loss": 0.1940926742553711, + "step": 208100 + }, + { + "epoch": 69.74880643269955, + "grad_norm": 0.7137749195098877, + "learning_rate": 1.5141206030150754e-05, + "loss": 0.19328271865844726, + "step": 208200 + }, + { + "epoch": 69.7823100762208, + "grad_norm": 0.7387290000915527, + "learning_rate": 1.5124455611390285e-05, + "loss": 0.1953897285461426, + "step": 208300 + }, + { + "epoch": 69.81581371974202, + "grad_norm": 0.5705156326293945, + "learning_rate": 1.5107705192629817e-05, + "loss": 0.194132022857666, + "step": 208400 + }, + { + "epoch": 69.84931736326325, + "grad_norm": 0.6383335590362549, + "learning_rate": 1.5090954773869347e-05, + "loss": 0.1951007652282715, + "step": 208500 + }, + { + "epoch": 69.88282100678448, + "grad_norm": 0.6704970002174377, + "learning_rate": 1.5074204355108878e-05, + "loss": 0.19534845352172853, + "step": 208600 + }, + { + "epoch": 69.91632465030573, + "grad_norm": 0.5984908938407898, + "learning_rate": 1.5057453936348408e-05, + "loss": 0.19434907913208008, + "step": 208700 + }, + { + "epoch": 69.94982829382695, + "grad_norm": 0.6464018821716309, + "learning_rate": 1.5040703517587939e-05, + "loss": 0.19456119537353517, + "step": 208800 + }, + { + "epoch": 69.98333193734818, + "grad_norm": 0.7534891366958618, + "learning_rate": 1.502395309882747e-05, + "loss": 0.1956119155883789, + "step": 208900 + }, + { + "epoch": 70.01675182176062, + "grad_norm": 0.7756277918815613, + "learning_rate": 1.5007202680067003e-05, + "loss": 0.19219749450683593, + "step": 209000 + }, + { + "epoch": 70.05025546528185, + "grad_norm": 0.6661693453788757, + "learning_rate": 1.4990452261306534e-05, + "loss": 0.1881481170654297, + "step": 209100 + }, + { + "epoch": 70.08375910880308, + "grad_norm": 0.6152818202972412, + "learning_rate": 1.4973701842546064e-05, + "loss": 0.18986621856689453, + "step": 209200 + }, + { + "epoch": 70.11726275232432, + "grad_norm": 0.5430614352226257, + "learning_rate": 1.4956951423785595e-05, + "loss": 0.1886882209777832, + "step": 209300 + }, + { + "epoch": 70.15076639584555, + "grad_norm": 0.6443721652030945, + "learning_rate": 1.4940201005025125e-05, + "loss": 0.19037208557128907, + "step": 209400 + }, + { + "epoch": 70.18427003936678, + "grad_norm": 0.6034039855003357, + "learning_rate": 1.4923450586264656e-05, + "loss": 0.18961322784423829, + "step": 209500 + }, + { + "epoch": 70.21777368288801, + "grad_norm": 0.6922727227210999, + "learning_rate": 1.4906867671691794e-05, + "loss": 0.19092901229858397, + "step": 209600 + }, + { + "epoch": 70.25127732640925, + "grad_norm": 0.7775962352752686, + "learning_rate": 1.4890117252931324e-05, + "loss": 0.1911904525756836, + "step": 209700 + }, + { + "epoch": 70.28478096993048, + "grad_norm": 0.6121329665184021, + "learning_rate": 1.4873366834170855e-05, + "loss": 0.19077373504638673, + "step": 209800 + }, + { + "epoch": 70.31828461345171, + "grad_norm": 0.6311072707176208, + "learning_rate": 1.4856616415410385e-05, + "loss": 0.19276874542236327, + "step": 209900 + }, + { + "epoch": 70.35178825697295, + "grad_norm": 0.6190215349197388, + "learning_rate": 1.4839865996649919e-05, + "loss": 0.1920265007019043, + "step": 210000 + }, + { + "epoch": 70.38529190049418, + "grad_norm": 0.7317872047424316, + "learning_rate": 1.482311557788945e-05, + "loss": 0.1915855026245117, + "step": 210100 + }, + { + "epoch": 70.41879554401541, + "grad_norm": 0.5770769715309143, + "learning_rate": 1.480636515912898e-05, + "loss": 0.19160455703735352, + "step": 210200 + }, + { + "epoch": 70.45229918753664, + "grad_norm": 0.4898484945297241, + "learning_rate": 1.478961474036851e-05, + "loss": 0.19282726287841798, + "step": 210300 + }, + { + "epoch": 70.48580283105788, + "grad_norm": 0.7757408618927002, + "learning_rate": 1.4772864321608041e-05, + "loss": 0.19382453918457032, + "step": 210400 + }, + { + "epoch": 70.51930647457911, + "grad_norm": 0.7815673351287842, + "learning_rate": 1.4756113902847572e-05, + "loss": 0.19315202713012694, + "step": 210500 + }, + { + "epoch": 70.55281011810034, + "grad_norm": 0.6631892323493958, + "learning_rate": 1.4739363484087104e-05, + "loss": 0.1935376739501953, + "step": 210600 + }, + { + "epoch": 70.58631376162158, + "grad_norm": 0.6759666204452515, + "learning_rate": 1.4722613065326634e-05, + "loss": 0.19363182067871093, + "step": 210700 + }, + { + "epoch": 70.61981740514281, + "grad_norm": 0.7577219605445862, + "learning_rate": 1.4705862646566165e-05, + "loss": 0.19298139572143555, + "step": 210800 + }, + { + "epoch": 70.65332104866404, + "grad_norm": 0.5035127997398376, + "learning_rate": 1.4689112227805695e-05, + "loss": 0.19403892517089844, + "step": 210900 + }, + { + "epoch": 70.68682469218527, + "grad_norm": 0.6267746090888977, + "learning_rate": 1.4672361809045226e-05, + "loss": 0.19389795303344726, + "step": 211000 + }, + { + "epoch": 70.72032833570651, + "grad_norm": 0.7773340344429016, + "learning_rate": 1.4655611390284756e-05, + "loss": 0.19378913879394533, + "step": 211100 + }, + { + "epoch": 70.75383197922774, + "grad_norm": 0.6656227111816406, + "learning_rate": 1.4638860971524287e-05, + "loss": 0.19349145889282227, + "step": 211200 + }, + { + "epoch": 70.78733562274897, + "grad_norm": 0.5681379437446594, + "learning_rate": 1.462211055276382e-05, + "loss": 0.19408063888549804, + "step": 211300 + }, + { + "epoch": 70.82083926627021, + "grad_norm": 0.7380396127700806, + "learning_rate": 1.4605360134003351e-05, + "loss": 0.19320615768432617, + "step": 211400 + }, + { + "epoch": 70.85434290979144, + "grad_norm": 0.5551620721817017, + "learning_rate": 1.4588609715242882e-05, + "loss": 0.19429174423217774, + "step": 211500 + }, + { + "epoch": 70.88784655331267, + "grad_norm": 0.6880864500999451, + "learning_rate": 1.4572026800670016e-05, + "loss": 0.19458511352539062, + "step": 211600 + }, + { + "epoch": 70.9213501968339, + "grad_norm": 0.6348493099212646, + "learning_rate": 1.455527638190955e-05, + "loss": 0.19401802062988283, + "step": 211700 + }, + { + "epoch": 70.95485384035514, + "grad_norm": 0.8191368579864502, + "learning_rate": 1.453852596314908e-05, + "loss": 0.19446285247802733, + "step": 211800 + }, + { + "epoch": 70.98835748387637, + "grad_norm": 0.7762120366096497, + "learning_rate": 1.4521775544388611e-05, + "loss": 0.19511171340942382, + "step": 211900 + }, + { + "epoch": 71.0217773682888, + "grad_norm": 0.5584473609924316, + "learning_rate": 1.4505025125628141e-05, + "loss": 0.19062902450561522, + "step": 212000 + }, + { + "epoch": 71.05528101181004, + "grad_norm": 0.5374318957328796, + "learning_rate": 1.4488274706867672e-05, + "loss": 0.18799392700195314, + "step": 212100 + }, + { + "epoch": 71.08878465533127, + "grad_norm": 0.5808698534965515, + "learning_rate": 1.4471524288107202e-05, + "loss": 0.18921010971069335, + "step": 212200 + }, + { + "epoch": 71.1222882988525, + "grad_norm": 0.5353220701217651, + "learning_rate": 1.4454773869346735e-05, + "loss": 0.18873760223388672, + "step": 212300 + }, + { + "epoch": 71.15579194237374, + "grad_norm": 0.8585773706436157, + "learning_rate": 1.4438023450586265e-05, + "loss": 0.1902440071105957, + "step": 212400 + }, + { + "epoch": 71.18929558589497, + "grad_norm": 0.5950562357902527, + "learning_rate": 1.4421273031825797e-05, + "loss": 0.19001707077026367, + "step": 212500 + }, + { + "epoch": 71.2227992294162, + "grad_norm": 0.61844801902771, + "learning_rate": 1.4404522613065328e-05, + "loss": 0.1902621269226074, + "step": 212600 + }, + { + "epoch": 71.25630287293743, + "grad_norm": 0.6289156079292297, + "learning_rate": 1.4387772194304858e-05, + "loss": 0.19079328536987306, + "step": 212700 + }, + { + "epoch": 71.28980651645867, + "grad_norm": 0.5846434235572815, + "learning_rate": 1.4371021775544389e-05, + "loss": 0.19066036224365235, + "step": 212800 + }, + { + "epoch": 71.3233101599799, + "grad_norm": 0.5743843913078308, + "learning_rate": 1.4354271356783921e-05, + "loss": 0.19171554565429688, + "step": 212900 + }, + { + "epoch": 71.35681380350113, + "grad_norm": 0.7006944417953491, + "learning_rate": 1.4337520938023452e-05, + "loss": 0.19167909622192383, + "step": 213000 + }, + { + "epoch": 71.39031744702237, + "grad_norm": 0.8413968086242676, + "learning_rate": 1.4320770519262982e-05, + "loss": 0.19105392456054687, + "step": 213100 + }, + { + "epoch": 71.4238210905436, + "grad_norm": 0.5824098587036133, + "learning_rate": 1.4304020100502513e-05, + "loss": 0.1920245933532715, + "step": 213200 + }, + { + "epoch": 71.45732473406483, + "grad_norm": 0.6288939714431763, + "learning_rate": 1.4287269681742043e-05, + "loss": 0.19186897277832032, + "step": 213300 + }, + { + "epoch": 71.49082837758607, + "grad_norm": 0.691856324672699, + "learning_rate": 1.4270519262981574e-05, + "loss": 0.19312944412231445, + "step": 213400 + }, + { + "epoch": 71.5243320211073, + "grad_norm": 0.7578767538070679, + "learning_rate": 1.4253768844221108e-05, + "loss": 0.19235544204711913, + "step": 213500 + }, + { + "epoch": 71.55783566462853, + "grad_norm": 0.6085563898086548, + "learning_rate": 1.4237185929648242e-05, + "loss": 0.1931236457824707, + "step": 213600 + }, + { + "epoch": 71.59133930814976, + "grad_norm": 0.6119518876075745, + "learning_rate": 1.4220435510887772e-05, + "loss": 0.1938382339477539, + "step": 213700 + }, + { + "epoch": 71.624842951671, + "grad_norm": 0.6922339797019958, + "learning_rate": 1.4203685092127303e-05, + "loss": 0.19215814590454103, + "step": 213800 + }, + { + "epoch": 71.65834659519223, + "grad_norm": 0.7278738021850586, + "learning_rate": 1.4186934673366837e-05, + "loss": 0.19262287139892578, + "step": 213900 + }, + { + "epoch": 71.69185023871346, + "grad_norm": 0.6596753597259521, + "learning_rate": 1.4170184254606367e-05, + "loss": 0.19238534927368164, + "step": 214000 + }, + { + "epoch": 71.7253538822347, + "grad_norm": 0.6864719986915588, + "learning_rate": 1.4153433835845898e-05, + "loss": 0.1925214958190918, + "step": 214100 + }, + { + "epoch": 71.75885752575593, + "grad_norm": 0.6517135500907898, + "learning_rate": 1.4136683417085428e-05, + "loss": 0.1944540786743164, + "step": 214200 + }, + { + "epoch": 71.79236116927716, + "grad_norm": 0.7503974437713623, + "learning_rate": 1.4119932998324959e-05, + "loss": 0.1933121109008789, + "step": 214300 + }, + { + "epoch": 71.82586481279839, + "grad_norm": 0.60938960313797, + "learning_rate": 1.410318257956449e-05, + "loss": 0.19333812713623047, + "step": 214400 + }, + { + "epoch": 71.85936845631963, + "grad_norm": 0.659631073474884, + "learning_rate": 1.408643216080402e-05, + "loss": 0.19322057723999023, + "step": 214500 + }, + { + "epoch": 71.89287209984086, + "grad_norm": 0.6466450095176697, + "learning_rate": 1.4069681742043552e-05, + "loss": 0.19311923980712892, + "step": 214600 + }, + { + "epoch": 71.92637574336209, + "grad_norm": 0.6093922853469849, + "learning_rate": 1.4052931323283083e-05, + "loss": 0.19498254776000976, + "step": 214700 + }, + { + "epoch": 71.95987938688333, + "grad_norm": 0.7445212602615356, + "learning_rate": 1.4036180904522613e-05, + "loss": 0.19384960174560548, + "step": 214800 + }, + { + "epoch": 71.99338303040456, + "grad_norm": 0.5651571750640869, + "learning_rate": 1.4019430485762144e-05, + "loss": 0.193801212310791, + "step": 214900 + }, + { + "epoch": 72.02680291481698, + "grad_norm": 0.6022223234176636, + "learning_rate": 1.4002680067001674e-05, + "loss": 0.18981178283691405, + "step": 215000 + }, + { + "epoch": 72.06030655833823, + "grad_norm": 0.6050201058387756, + "learning_rate": 1.3985929648241206e-05, + "loss": 0.18904420852661133, + "step": 215100 + }, + { + "epoch": 72.09381020185945, + "grad_norm": 0.6156114935874939, + "learning_rate": 1.3969179229480739e-05, + "loss": 0.18817174911499024, + "step": 215200 + }, + { + "epoch": 72.12731384538068, + "grad_norm": 0.5546871423721313, + "learning_rate": 1.3952428810720269e-05, + "loss": 0.1889004898071289, + "step": 215300 + }, + { + "epoch": 72.16081748890191, + "grad_norm": 0.6833284497261047, + "learning_rate": 1.39356783919598e-05, + "loss": 0.18958877563476562, + "step": 215400 + }, + { + "epoch": 72.19432113242316, + "grad_norm": 0.6149327754974365, + "learning_rate": 1.391892797319933e-05, + "loss": 0.1900411605834961, + "step": 215500 + }, + { + "epoch": 72.22782477594438, + "grad_norm": 0.7087824940681458, + "learning_rate": 1.3902345058626468e-05, + "loss": 0.1900062370300293, + "step": 215600 + }, + { + "epoch": 72.26132841946561, + "grad_norm": 0.7365740537643433, + "learning_rate": 1.3885594639865998e-05, + "loss": 0.18973686218261718, + "step": 215700 + }, + { + "epoch": 72.29483206298686, + "grad_norm": 0.6139353513717651, + "learning_rate": 1.3868844221105529e-05, + "loss": 0.19053438186645508, + "step": 215800 + }, + { + "epoch": 72.32833570650808, + "grad_norm": 0.5968282222747803, + "learning_rate": 1.385209380234506e-05, + "loss": 0.19114097595214843, + "step": 215900 + }, + { + "epoch": 72.36183935002931, + "grad_norm": 0.6676009893417358, + "learning_rate": 1.383534338358459e-05, + "loss": 0.1919625473022461, + "step": 216000 + }, + { + "epoch": 72.39534299355054, + "grad_norm": 0.7123656272888184, + "learning_rate": 1.381859296482412e-05, + "loss": 0.19244312286376952, + "step": 216100 + }, + { + "epoch": 72.42884663707179, + "grad_norm": 0.6703692078590393, + "learning_rate": 1.3801842546063654e-05, + "loss": 0.1909078025817871, + "step": 216200 + }, + { + "epoch": 72.46235028059301, + "grad_norm": 0.7729817032814026, + "learning_rate": 1.3785092127303185e-05, + "loss": 0.192000789642334, + "step": 216300 + }, + { + "epoch": 72.49585392411424, + "grad_norm": 0.7377496361732483, + "learning_rate": 1.3768341708542715e-05, + "loss": 0.19194664001464845, + "step": 216400 + }, + { + "epoch": 72.52935756763549, + "grad_norm": 0.7420958876609802, + "learning_rate": 1.3751591289782246e-05, + "loss": 0.19183109283447267, + "step": 216500 + }, + { + "epoch": 72.56286121115672, + "grad_norm": 0.5992802381515503, + "learning_rate": 1.3734840871021776e-05, + "loss": 0.19208011627197266, + "step": 216600 + }, + { + "epoch": 72.59636485467794, + "grad_norm": 0.7813421487808228, + "learning_rate": 1.3718090452261307e-05, + "loss": 0.19179468154907225, + "step": 216700 + }, + { + "epoch": 72.62986849819917, + "grad_norm": 0.6775956153869629, + "learning_rate": 1.3701340033500837e-05, + "loss": 0.19274057388305665, + "step": 216800 + }, + { + "epoch": 72.66337214172042, + "grad_norm": 0.7122693657875061, + "learning_rate": 1.368458961474037e-05, + "loss": 0.1917710304260254, + "step": 216900 + }, + { + "epoch": 72.69687578524164, + "grad_norm": 0.7028974890708923, + "learning_rate": 1.36678391959799e-05, + "loss": 0.1918616485595703, + "step": 217000 + }, + { + "epoch": 72.73037942876287, + "grad_norm": 0.6234395503997803, + "learning_rate": 1.365108877721943e-05, + "loss": 0.192793025970459, + "step": 217100 + }, + { + "epoch": 72.76388307228412, + "grad_norm": 0.7795095443725586, + "learning_rate": 1.3634338358458961e-05, + "loss": 0.19276504516601561, + "step": 217200 + }, + { + "epoch": 72.79738671580535, + "grad_norm": 0.5714548230171204, + "learning_rate": 1.3617587939698492e-05, + "loss": 0.19352224349975586, + "step": 217300 + }, + { + "epoch": 72.83089035932657, + "grad_norm": 0.6443431973457336, + "learning_rate": 1.3600837520938022e-05, + "loss": 0.19274961471557617, + "step": 217400 + }, + { + "epoch": 72.8643940028478, + "grad_norm": 0.732292890548706, + "learning_rate": 1.3584087102177556e-05, + "loss": 0.19329883575439452, + "step": 217500 + }, + { + "epoch": 72.89789764636905, + "grad_norm": 0.6586911082267761, + "learning_rate": 1.3567336683417087e-05, + "loss": 0.19275350570678712, + "step": 217600 + }, + { + "epoch": 72.93140128989027, + "grad_norm": 0.4131799638271332, + "learning_rate": 1.355075376884422e-05, + "loss": 0.19394960403442382, + "step": 217700 + }, + { + "epoch": 72.9649049334115, + "grad_norm": 0.720600426197052, + "learning_rate": 1.3534003350083751e-05, + "loss": 0.19370002746582032, + "step": 217800 + }, + { + "epoch": 72.99840857693275, + "grad_norm": 0.7249190211296082, + "learning_rate": 1.3517252931323285e-05, + "loss": 0.19390350341796875, + "step": 217900 + }, + { + "epoch": 73.03182846134517, + "grad_norm": 0.7347325086593628, + "learning_rate": 1.3500502512562816e-05, + "loss": 0.18822053909301759, + "step": 218000 + }, + { + "epoch": 73.0653321048664, + "grad_norm": 0.6100323796272278, + "learning_rate": 1.3483752093802346e-05, + "loss": 0.1878873062133789, + "step": 218100 + }, + { + "epoch": 73.09883574838764, + "grad_norm": 0.6328092217445374, + "learning_rate": 1.3467001675041877e-05, + "loss": 0.18838220596313476, + "step": 218200 + }, + { + "epoch": 73.13233939190887, + "grad_norm": 0.6140354871749878, + "learning_rate": 1.3450251256281407e-05, + "loss": 0.18931222915649415, + "step": 218300 + }, + { + "epoch": 73.1658430354301, + "grad_norm": 0.6713184118270874, + "learning_rate": 1.3433500837520938e-05, + "loss": 0.18979503631591796, + "step": 218400 + }, + { + "epoch": 73.19934667895133, + "grad_norm": 0.5946479439735413, + "learning_rate": 1.3416750418760472e-05, + "loss": 0.19020790100097656, + "step": 218500 + }, + { + "epoch": 73.23285032247257, + "grad_norm": 0.635026216506958, + "learning_rate": 1.3400000000000002e-05, + "loss": 0.19073740005493164, + "step": 218600 + }, + { + "epoch": 73.2663539659938, + "grad_norm": 0.8429803252220154, + "learning_rate": 1.3383249581239533e-05, + "loss": 0.19040184020996093, + "step": 218700 + }, + { + "epoch": 73.29985760951503, + "grad_norm": 0.6116558909416199, + "learning_rate": 1.3366499162479063e-05, + "loss": 0.1910529327392578, + "step": 218800 + }, + { + "epoch": 73.33336125303627, + "grad_norm": 0.6104078888893127, + "learning_rate": 1.3349748743718594e-05, + "loss": 0.19013742446899415, + "step": 218900 + }, + { + "epoch": 73.3668648965575, + "grad_norm": 0.6935064196586609, + "learning_rate": 1.3332998324958124e-05, + "loss": 0.19089607238769532, + "step": 219000 + }, + { + "epoch": 73.40036854007873, + "grad_norm": 0.6205075979232788, + "learning_rate": 1.3316247906197656e-05, + "loss": 0.18985008239746093, + "step": 219100 + }, + { + "epoch": 73.43387218359997, + "grad_norm": 0.6838747262954712, + "learning_rate": 1.3299497487437187e-05, + "loss": 0.19136251449584962, + "step": 219200 + }, + { + "epoch": 73.4673758271212, + "grad_norm": 0.5892935395240784, + "learning_rate": 1.3282747068676717e-05, + "loss": 0.19115791320800782, + "step": 219300 + }, + { + "epoch": 73.50087947064243, + "grad_norm": 0.6625847220420837, + "learning_rate": 1.3265996649916248e-05, + "loss": 0.1914684295654297, + "step": 219400 + }, + { + "epoch": 73.53438311416366, + "grad_norm": 0.5886939764022827, + "learning_rate": 1.3249246231155778e-05, + "loss": 0.19140581130981446, + "step": 219500 + }, + { + "epoch": 73.5678867576849, + "grad_norm": 0.6432992219924927, + "learning_rate": 1.3232495812395309e-05, + "loss": 0.19217498779296874, + "step": 219600 + }, + { + "epoch": 73.60139040120613, + "grad_norm": 0.537247896194458, + "learning_rate": 1.3215912897822447e-05, + "loss": 0.1916472816467285, + "step": 219700 + }, + { + "epoch": 73.63489404472736, + "grad_norm": 0.7746627330780029, + "learning_rate": 1.3199162479061977e-05, + "loss": 0.1921250343322754, + "step": 219800 + }, + { + "epoch": 73.6683976882486, + "grad_norm": 0.6342955827713013, + "learning_rate": 1.3182412060301508e-05, + "loss": 0.19181474685668945, + "step": 219900 + }, + { + "epoch": 73.70190133176983, + "grad_norm": 0.6556417346000671, + "learning_rate": 1.3165661641541038e-05, + "loss": 0.1932265853881836, + "step": 220000 + }, + { + "epoch": 73.73540497529106, + "grad_norm": 0.627204179763794, + "learning_rate": 1.3148911222780569e-05, + "loss": 0.19127828598022462, + "step": 220100 + }, + { + "epoch": 73.76890861881229, + "grad_norm": 0.5481722950935364, + "learning_rate": 1.3132160804020103e-05, + "loss": 0.19317052841186524, + "step": 220200 + }, + { + "epoch": 73.80241226233353, + "grad_norm": 0.6881102323532104, + "learning_rate": 1.3115410385259633e-05, + "loss": 0.1921912384033203, + "step": 220300 + }, + { + "epoch": 73.83591590585476, + "grad_norm": 0.5679818987846375, + "learning_rate": 1.3098659966499164e-05, + "loss": 0.19210420608520506, + "step": 220400 + }, + { + "epoch": 73.86941954937599, + "grad_norm": 0.6412058472633362, + "learning_rate": 1.3081909547738694e-05, + "loss": 0.19206573486328124, + "step": 220500 + }, + { + "epoch": 73.90292319289723, + "grad_norm": 0.586617648601532, + "learning_rate": 1.3065159128978225e-05, + "loss": 0.19283601760864258, + "step": 220600 + }, + { + "epoch": 73.93642683641846, + "grad_norm": 0.6339001655578613, + "learning_rate": 1.3048408710217755e-05, + "loss": 0.19282327651977538, + "step": 220700 + }, + { + "epoch": 73.96993047993969, + "grad_norm": 0.5810698866844177, + "learning_rate": 1.3031658291457289e-05, + "loss": 0.19248931884765624, + "step": 220800 + }, + { + "epoch": 74.00335036435213, + "grad_norm": 0.5315734148025513, + "learning_rate": 1.301490787269682e-05, + "loss": 0.19272197723388673, + "step": 220900 + }, + { + "epoch": 74.03685400787336, + "grad_norm": 0.5988895893096924, + "learning_rate": 1.299815745393635e-05, + "loss": 0.18879865646362304, + "step": 221000 + }, + { + "epoch": 74.07035765139459, + "grad_norm": 0.6475368142127991, + "learning_rate": 1.298140703517588e-05, + "loss": 0.18721097946166992, + "step": 221100 + }, + { + "epoch": 74.10386129491582, + "grad_norm": 0.5875990986824036, + "learning_rate": 1.2964656616415411e-05, + "loss": 0.18884235382080078, + "step": 221200 + }, + { + "epoch": 74.13736493843706, + "grad_norm": 0.7056507468223572, + "learning_rate": 1.2947906197654942e-05, + "loss": 0.1880255889892578, + "step": 221300 + }, + { + "epoch": 74.17086858195829, + "grad_norm": 0.7191376090049744, + "learning_rate": 1.2931155778894474e-05, + "loss": 0.18832271575927734, + "step": 221400 + }, + { + "epoch": 74.20437222547952, + "grad_norm": 0.6161214113235474, + "learning_rate": 1.2914405360134004e-05, + "loss": 0.1886260414123535, + "step": 221500 + }, + { + "epoch": 74.23787586900076, + "grad_norm": 0.6850497126579285, + "learning_rate": 1.2897654941373535e-05, + "loss": 0.18944147109985351, + "step": 221600 + }, + { + "epoch": 74.27137951252199, + "grad_norm": 0.7031293511390686, + "learning_rate": 1.2880904522613065e-05, + "loss": 0.18980978012084962, + "step": 221700 + }, + { + "epoch": 74.30488315604322, + "grad_norm": 0.7116613388061523, + "learning_rate": 1.2864321608040203e-05, + "loss": 0.19084714889526366, + "step": 221800 + }, + { + "epoch": 74.33838679956445, + "grad_norm": 0.6668044328689575, + "learning_rate": 1.2847571189279734e-05, + "loss": 0.1889169120788574, + "step": 221900 + }, + { + "epoch": 74.37189044308569, + "grad_norm": 0.7630614638328552, + "learning_rate": 1.2830820770519264e-05, + "loss": 0.1901887321472168, + "step": 222000 + }, + { + "epoch": 74.40539408660692, + "grad_norm": 0.6210822463035583, + "learning_rate": 1.2814070351758795e-05, + "loss": 0.18958797454833984, + "step": 222100 + }, + { + "epoch": 74.43889773012815, + "grad_norm": 0.674400806427002, + "learning_rate": 1.2797319932998325e-05, + "loss": 0.19211307525634766, + "step": 222200 + }, + { + "epoch": 74.47240137364939, + "grad_norm": 0.5624780058860779, + "learning_rate": 1.2780569514237856e-05, + "loss": 0.19077470779418945, + "step": 222300 + }, + { + "epoch": 74.50590501717062, + "grad_norm": 0.6902910470962524, + "learning_rate": 1.2763819095477386e-05, + "loss": 0.19062641143798828, + "step": 222400 + }, + { + "epoch": 74.53940866069185, + "grad_norm": 0.6203210353851318, + "learning_rate": 1.274706867671692e-05, + "loss": 0.19215831756591797, + "step": 222500 + }, + { + "epoch": 74.57291230421308, + "grad_norm": 0.6973204016685486, + "learning_rate": 1.273031825795645e-05, + "loss": 0.19094465255737306, + "step": 222600 + }, + { + "epoch": 74.60641594773432, + "grad_norm": 0.5848397016525269, + "learning_rate": 1.2713567839195981e-05, + "loss": 0.1918341827392578, + "step": 222700 + }, + { + "epoch": 74.63991959125555, + "grad_norm": 0.5930863618850708, + "learning_rate": 1.2696817420435512e-05, + "loss": 0.19197944641113282, + "step": 222800 + }, + { + "epoch": 74.67342323477678, + "grad_norm": 0.6419515609741211, + "learning_rate": 1.2680067001675042e-05, + "loss": 0.19171865463256835, + "step": 222900 + }, + { + "epoch": 74.70692687829802, + "grad_norm": 0.6278107762336731, + "learning_rate": 1.2663316582914573e-05, + "loss": 0.19249353408813477, + "step": 223000 + }, + { + "epoch": 74.74043052181925, + "grad_norm": 0.5512995719909668, + "learning_rate": 1.2646566164154105e-05, + "loss": 0.19145532608032226, + "step": 223100 + }, + { + "epoch": 74.77393416534048, + "grad_norm": 0.6217749714851379, + "learning_rate": 1.2629815745393635e-05, + "loss": 0.19141609191894532, + "step": 223200 + }, + { + "epoch": 74.8074378088617, + "grad_norm": 0.672197699546814, + "learning_rate": 1.2613065326633166e-05, + "loss": 0.19206232070922852, + "step": 223300 + }, + { + "epoch": 74.84094145238295, + "grad_norm": 0.6256102919578552, + "learning_rate": 1.2596314907872698e-05, + "loss": 0.19332118988037109, + "step": 223400 + }, + { + "epoch": 74.87444509590418, + "grad_norm": 0.5120044350624084, + "learning_rate": 1.2579564489112229e-05, + "loss": 0.19207197189331054, + "step": 223500 + }, + { + "epoch": 74.90794873942541, + "grad_norm": 0.6199808120727539, + "learning_rate": 1.2562814070351759e-05, + "loss": 0.19157859802246094, + "step": 223600 + }, + { + "epoch": 74.94145238294665, + "grad_norm": 0.7454675436019897, + "learning_rate": 1.2546063651591291e-05, + "loss": 0.19300016403198242, + "step": 223700 + }, + { + "epoch": 74.97495602646788, + "grad_norm": 0.5340383052825928, + "learning_rate": 1.2529313232830822e-05, + "loss": 0.1914585304260254, + "step": 223800 + }, + { + "epoch": 75.0083759108803, + "grad_norm": 0.529868483543396, + "learning_rate": 1.2512730318257956e-05, + "loss": 0.19096315383911133, + "step": 223900 + }, + { + "epoch": 75.04187955440155, + "grad_norm": 0.5163419246673584, + "learning_rate": 1.2495979899497488e-05, + "loss": 0.18681686401367187, + "step": 224000 + }, + { + "epoch": 75.07538319792278, + "grad_norm": 0.6350462436676025, + "learning_rate": 1.2479229480737019e-05, + "loss": 0.1882038688659668, + "step": 224100 + }, + { + "epoch": 75.108886841444, + "grad_norm": 0.5319573283195496, + "learning_rate": 1.246247906197655e-05, + "loss": 0.18803632736206055, + "step": 224200 + }, + { + "epoch": 75.14239048496523, + "grad_norm": 0.5288993120193481, + "learning_rate": 1.2445728643216081e-05, + "loss": 0.18808624267578125, + "step": 224300 + }, + { + "epoch": 75.17589412848648, + "grad_norm": 0.6789448261260986, + "learning_rate": 1.2428978224455612e-05, + "loss": 0.18842166900634766, + "step": 224400 + }, + { + "epoch": 75.2093977720077, + "grad_norm": 0.661927342414856, + "learning_rate": 1.2412227805695142e-05, + "loss": 0.18897750854492187, + "step": 224500 + }, + { + "epoch": 75.24290141552893, + "grad_norm": 0.5049561262130737, + "learning_rate": 1.2395477386934675e-05, + "loss": 0.18828922271728515, + "step": 224600 + }, + { + "epoch": 75.27640505905018, + "grad_norm": 0.5841866135597229, + "learning_rate": 1.2378726968174205e-05, + "loss": 0.18943553924560547, + "step": 224700 + }, + { + "epoch": 75.3099087025714, + "grad_norm": 0.6885756254196167, + "learning_rate": 1.2361976549413736e-05, + "loss": 0.18894081115722655, + "step": 224800 + }, + { + "epoch": 75.34341234609263, + "grad_norm": 0.7039951086044312, + "learning_rate": 1.2345226130653268e-05, + "loss": 0.18984657287597656, + "step": 224900 + }, + { + "epoch": 75.37691598961388, + "grad_norm": 0.6714735627174377, + "learning_rate": 1.2328475711892798e-05, + "loss": 0.19007621765136717, + "step": 225000 + }, + { + "epoch": 75.4104196331351, + "grad_norm": 0.637840986251831, + "learning_rate": 1.2311725293132329e-05, + "loss": 0.18986061096191406, + "step": 225100 + }, + { + "epoch": 75.44392327665634, + "grad_norm": 0.5885179042816162, + "learning_rate": 1.2294974874371861e-05, + "loss": 0.18973173141479494, + "step": 225200 + }, + { + "epoch": 75.47742692017756, + "grad_norm": 0.6655402779579163, + "learning_rate": 1.2278224455611392e-05, + "loss": 0.19028383255004883, + "step": 225300 + }, + { + "epoch": 75.5109305636988, + "grad_norm": 0.6711523532867432, + "learning_rate": 1.2261474036850922e-05, + "loss": 0.19036417007446288, + "step": 225400 + }, + { + "epoch": 75.54443420722004, + "grad_norm": 0.7367367744445801, + "learning_rate": 1.2244723618090453e-05, + "loss": 0.1918941307067871, + "step": 225500 + }, + { + "epoch": 75.57793785074126, + "grad_norm": 0.8443908095359802, + "learning_rate": 1.2227973199329983e-05, + "loss": 0.19089139938354494, + "step": 225600 + }, + { + "epoch": 75.61144149426251, + "grad_norm": 0.5808036923408508, + "learning_rate": 1.2211222780569514e-05, + "loss": 0.19058563232421874, + "step": 225700 + }, + { + "epoch": 75.64494513778374, + "grad_norm": 0.5212644934654236, + "learning_rate": 1.2194472361809046e-05, + "loss": 0.19121980667114258, + "step": 225800 + }, + { + "epoch": 75.67844878130497, + "grad_norm": 0.7097404599189758, + "learning_rate": 1.2177889447236182e-05, + "loss": 0.1912353515625, + "step": 225900 + }, + { + "epoch": 75.7119524248262, + "grad_norm": 0.6513300538063049, + "learning_rate": 1.2161139028475712e-05, + "loss": 0.19171392440795898, + "step": 226000 + }, + { + "epoch": 75.74545606834744, + "grad_norm": 0.6188165545463562, + "learning_rate": 1.2144388609715243e-05, + "loss": 0.19226541519165039, + "step": 226100 + }, + { + "epoch": 75.77895971186867, + "grad_norm": 0.6310757994651794, + "learning_rate": 1.2127638190954775e-05, + "loss": 0.1912686538696289, + "step": 226200 + }, + { + "epoch": 75.8124633553899, + "grad_norm": 0.6972214579582214, + "learning_rate": 1.2110887772194306e-05, + "loss": 0.19245899200439454, + "step": 226300 + }, + { + "epoch": 75.84596699891114, + "grad_norm": 0.6156506538391113, + "learning_rate": 1.2094137353433836e-05, + "loss": 0.1912640380859375, + "step": 226400 + }, + { + "epoch": 75.87947064243237, + "grad_norm": 0.627688467502594, + "learning_rate": 1.2077386934673367e-05, + "loss": 0.19346479415893555, + "step": 226500 + }, + { + "epoch": 75.9129742859536, + "grad_norm": 0.620262622833252, + "learning_rate": 1.2060636515912899e-05, + "loss": 0.19184036254882814, + "step": 226600 + }, + { + "epoch": 75.94647792947482, + "grad_norm": 0.6578592658042908, + "learning_rate": 1.204388609715243e-05, + "loss": 0.1920124626159668, + "step": 226700 + }, + { + "epoch": 75.97998157299607, + "grad_norm": 0.4712987542152405, + "learning_rate": 1.202713567839196e-05, + "loss": 0.19146875381469727, + "step": 226800 + }, + { + "epoch": 76.01340145740849, + "grad_norm": 0.5716565251350403, + "learning_rate": 1.2010385259631492e-05, + "loss": 0.19078388214111328, + "step": 226900 + }, + { + "epoch": 76.04690510092972, + "grad_norm": 0.7094972133636475, + "learning_rate": 1.1993634840871023e-05, + "loss": 0.18728803634643554, + "step": 227000 + }, + { + "epoch": 76.08040874445096, + "grad_norm": 0.6303561329841614, + "learning_rate": 1.1976884422110553e-05, + "loss": 0.18724044799804687, + "step": 227100 + }, + { + "epoch": 76.11391238797219, + "grad_norm": 0.7359886765480042, + "learning_rate": 1.1960134003350085e-05, + "loss": 0.1879755973815918, + "step": 227200 + }, + { + "epoch": 76.14741603149342, + "grad_norm": 0.857787013053894, + "learning_rate": 1.1943383584589616e-05, + "loss": 0.18758907318115234, + "step": 227300 + }, + { + "epoch": 76.18091967501466, + "grad_norm": 0.607428252696991, + "learning_rate": 1.1926633165829146e-05, + "loss": 0.18798053741455079, + "step": 227400 + }, + { + "epoch": 76.21442331853589, + "grad_norm": 0.8037320375442505, + "learning_rate": 1.1909882747068679e-05, + "loss": 0.1890050506591797, + "step": 227500 + }, + { + "epoch": 76.24792696205712, + "grad_norm": 0.6359191536903381, + "learning_rate": 1.1893132328308209e-05, + "loss": 0.18898937225341797, + "step": 227600 + }, + { + "epoch": 76.28143060557835, + "grad_norm": 0.6721845269203186, + "learning_rate": 1.187638190954774e-05, + "loss": 0.1883324432373047, + "step": 227700 + }, + { + "epoch": 76.3149342490996, + "grad_norm": 0.6467797756195068, + "learning_rate": 1.185963149078727e-05, + "loss": 0.1888943099975586, + "step": 227800 + }, + { + "epoch": 76.34843789262082, + "grad_norm": 0.7214395999908447, + "learning_rate": 1.1843048576214406e-05, + "loss": 0.1892184829711914, + "step": 227900 + }, + { + "epoch": 76.38194153614205, + "grad_norm": 0.6020253896713257, + "learning_rate": 1.1826298157453937e-05, + "loss": 0.1896377372741699, + "step": 228000 + }, + { + "epoch": 76.4154451796633, + "grad_norm": 0.6029198169708252, + "learning_rate": 1.1809547738693467e-05, + "loss": 0.18889514923095704, + "step": 228100 + }, + { + "epoch": 76.44894882318452, + "grad_norm": 0.7419018745422363, + "learning_rate": 1.1792797319933e-05, + "loss": 0.18998069763183595, + "step": 228200 + }, + { + "epoch": 76.48245246670575, + "grad_norm": 0.6079985499382019, + "learning_rate": 1.177604690117253e-05, + "loss": 0.19057266235351564, + "step": 228300 + }, + { + "epoch": 76.51595611022698, + "grad_norm": 0.6738330125808716, + "learning_rate": 1.175929648241206e-05, + "loss": 0.19021852493286132, + "step": 228400 + }, + { + "epoch": 76.54945975374822, + "grad_norm": 0.6184301376342773, + "learning_rate": 1.1742546063651593e-05, + "loss": 0.19030994415283203, + "step": 228500 + }, + { + "epoch": 76.58296339726945, + "grad_norm": 0.6210246682167053, + "learning_rate": 1.1725795644891123e-05, + "loss": 0.18975492477416991, + "step": 228600 + }, + { + "epoch": 76.61646704079068, + "grad_norm": 0.6398160457611084, + "learning_rate": 1.1709045226130654e-05, + "loss": 0.19056596755981445, + "step": 228700 + }, + { + "epoch": 76.64997068431192, + "grad_norm": 0.5791774392127991, + "learning_rate": 1.1692294807370186e-05, + "loss": 0.19000568389892578, + "step": 228800 + }, + { + "epoch": 76.68347432783315, + "grad_norm": 0.6452813744544983, + "learning_rate": 1.1675544388609716e-05, + "loss": 0.19119565963745117, + "step": 228900 + }, + { + "epoch": 76.71697797135438, + "grad_norm": 0.5637299418449402, + "learning_rate": 1.1658793969849247e-05, + "loss": 0.1906993293762207, + "step": 229000 + }, + { + "epoch": 76.75048161487561, + "grad_norm": 0.6561068892478943, + "learning_rate": 1.1642043551088777e-05, + "loss": 0.1915520668029785, + "step": 229100 + }, + { + "epoch": 76.78398525839685, + "grad_norm": 0.6777018904685974, + "learning_rate": 1.162529313232831e-05, + "loss": 0.19029684066772462, + "step": 229200 + }, + { + "epoch": 76.81748890191808, + "grad_norm": 0.4779558479785919, + "learning_rate": 1.160854271356784e-05, + "loss": 0.19119384765625, + "step": 229300 + }, + { + "epoch": 76.85099254543931, + "grad_norm": 0.5411806106567383, + "learning_rate": 1.159179229480737e-05, + "loss": 0.19078275680541992, + "step": 229400 + }, + { + "epoch": 76.88449618896055, + "grad_norm": 0.623041033744812, + "learning_rate": 1.1575041876046903e-05, + "loss": 0.19250349044799805, + "step": 229500 + }, + { + "epoch": 76.91799983248178, + "grad_norm": 0.5169858336448669, + "learning_rate": 1.1558291457286433e-05, + "loss": 0.19133710861206055, + "step": 229600 + }, + { + "epoch": 76.95150347600301, + "grad_norm": 0.5985132455825806, + "learning_rate": 1.1541541038525964e-05, + "loss": 0.19112289428710938, + "step": 229700 + }, + { + "epoch": 76.98500711952425, + "grad_norm": 0.6158753633499146, + "learning_rate": 1.1524790619765494e-05, + "loss": 0.1921292495727539, + "step": 229800 + }, + { + "epoch": 77.01842700393668, + "grad_norm": 0.5963013172149658, + "learning_rate": 1.1508040201005025e-05, + "loss": 0.18872583389282227, + "step": 229900 + }, + { + "epoch": 77.05193064745791, + "grad_norm": 0.5578435659408569, + "learning_rate": 1.149145728643216e-05, + "loss": 0.1861967658996582, + "step": 230000 + }, + { + "epoch": 77.08543429097914, + "grad_norm": 0.5361016988754272, + "learning_rate": 1.1474706867671691e-05, + "loss": 0.18753931045532227, + "step": 230100 + }, + { + "epoch": 77.11893793450038, + "grad_norm": 0.7023466229438782, + "learning_rate": 1.1457956448911223e-05, + "loss": 0.18739143371582032, + "step": 230200 + }, + { + "epoch": 77.15244157802161, + "grad_norm": 0.5231741666793823, + "learning_rate": 1.1441206030150754e-05, + "loss": 0.1882183074951172, + "step": 230300 + }, + { + "epoch": 77.18594522154284, + "grad_norm": 0.7267812490463257, + "learning_rate": 1.1424455611390284e-05, + "loss": 0.18830036163330077, + "step": 230400 + }, + { + "epoch": 77.21944886506408, + "grad_norm": 0.5698330998420715, + "learning_rate": 1.1407705192629817e-05, + "loss": 0.18730653762817384, + "step": 230500 + }, + { + "epoch": 77.25295250858531, + "grad_norm": 0.6907638907432556, + "learning_rate": 1.1390954773869347e-05, + "loss": 0.18742834091186522, + "step": 230600 + }, + { + "epoch": 77.28645615210654, + "grad_norm": 0.5616415739059448, + "learning_rate": 1.1374204355108878e-05, + "loss": 0.1885102844238281, + "step": 230700 + }, + { + "epoch": 77.31995979562778, + "grad_norm": 0.6362226009368896, + "learning_rate": 1.135745393634841e-05, + "loss": 0.18842847824096678, + "step": 230800 + }, + { + "epoch": 77.35346343914901, + "grad_norm": 0.5648617744445801, + "learning_rate": 1.134070351758794e-05, + "loss": 0.18916454315185546, + "step": 230900 + }, + { + "epoch": 77.38696708267024, + "grad_norm": 0.7212550044059753, + "learning_rate": 1.1323953098827471e-05, + "loss": 0.1888494873046875, + "step": 231000 + }, + { + "epoch": 77.42047072619147, + "grad_norm": 0.8556243777275085, + "learning_rate": 1.1307202680067003e-05, + "loss": 0.18897062301635742, + "step": 231100 + }, + { + "epoch": 77.45397436971271, + "grad_norm": 0.8663336634635925, + "learning_rate": 1.1290452261306534e-05, + "loss": 0.18911514282226563, + "step": 231200 + }, + { + "epoch": 77.48747801323394, + "grad_norm": 0.555095911026001, + "learning_rate": 1.1273701842546064e-05, + "loss": 0.19008974075317384, + "step": 231300 + }, + { + "epoch": 77.52098165675517, + "grad_norm": 0.5795916318893433, + "learning_rate": 1.1256951423785596e-05, + "loss": 0.19058879852294922, + "step": 231400 + }, + { + "epoch": 77.55448530027641, + "grad_norm": 0.6374692916870117, + "learning_rate": 1.1240201005025127e-05, + "loss": 0.19093334197998046, + "step": 231500 + }, + { + "epoch": 77.58798894379764, + "grad_norm": 0.5286735892295837, + "learning_rate": 1.1223450586264657e-05, + "loss": 0.18953340530395507, + "step": 231600 + }, + { + "epoch": 77.62149258731887, + "grad_norm": 0.7152593731880188, + "learning_rate": 1.120670016750419e-05, + "loss": 0.18968648910522462, + "step": 231700 + }, + { + "epoch": 77.6549962308401, + "grad_norm": 0.6775063276290894, + "learning_rate": 1.118994974874372e-05, + "loss": 0.19057016372680663, + "step": 231800 + }, + { + "epoch": 77.68849987436134, + "grad_norm": 0.5843816995620728, + "learning_rate": 1.117319932998325e-05, + "loss": 0.18996496200561525, + "step": 231900 + }, + { + "epoch": 77.72200351788257, + "grad_norm": 0.6201971769332886, + "learning_rate": 1.1156616415410385e-05, + "loss": 0.1909531021118164, + "step": 232000 + }, + { + "epoch": 77.7555071614038, + "grad_norm": 0.6630064249038696, + "learning_rate": 1.1139865996649915e-05, + "loss": 0.18996026992797851, + "step": 232100 + }, + { + "epoch": 77.78901080492504, + "grad_norm": 0.6778659224510193, + "learning_rate": 1.1123115577889448e-05, + "loss": 0.19063941955566407, + "step": 232200 + }, + { + "epoch": 77.82251444844627, + "grad_norm": 0.6163811087608337, + "learning_rate": 1.1106365159128978e-05, + "loss": 0.19099504470825196, + "step": 232300 + }, + { + "epoch": 77.8560180919675, + "grad_norm": 0.5668363571166992, + "learning_rate": 1.1089614740368509e-05, + "loss": 0.1901922607421875, + "step": 232400 + }, + { + "epoch": 77.88952173548873, + "grad_norm": 0.5424449443817139, + "learning_rate": 1.1072864321608041e-05, + "loss": 0.19019113540649413, + "step": 232500 + }, + { + "epoch": 77.92302537900997, + "grad_norm": 0.5976355671882629, + "learning_rate": 1.1056113902847571e-05, + "loss": 0.19223594665527344, + "step": 232600 + }, + { + "epoch": 77.9565290225312, + "grad_norm": 0.586529016494751, + "learning_rate": 1.1039363484087102e-05, + "loss": 0.19147846221923828, + "step": 232700 + }, + { + "epoch": 77.99003266605243, + "grad_norm": 0.478441447019577, + "learning_rate": 1.1022613065326634e-05, + "loss": 0.19069934844970704, + "step": 232800 + }, + { + "epoch": 78.02345255046487, + "grad_norm": 0.595913290977478, + "learning_rate": 1.1005862646566165e-05, + "loss": 0.188853759765625, + "step": 232900 + }, + { + "epoch": 78.0569561939861, + "grad_norm": 0.7776252031326294, + "learning_rate": 1.0989112227805695e-05, + "loss": 0.18635259628295897, + "step": 233000 + }, + { + "epoch": 78.09045983750732, + "grad_norm": 0.5748878717422485, + "learning_rate": 1.0972361809045227e-05, + "loss": 0.18685552597045899, + "step": 233100 + }, + { + "epoch": 78.12396348102857, + "grad_norm": 0.5180676579475403, + "learning_rate": 1.0955611390284758e-05, + "loss": 0.1877056121826172, + "step": 233200 + }, + { + "epoch": 78.1574671245498, + "grad_norm": 0.673117458820343, + "learning_rate": 1.0938860971524288e-05, + "loss": 0.18688018798828124, + "step": 233300 + }, + { + "epoch": 78.19097076807103, + "grad_norm": 0.6519831418991089, + "learning_rate": 1.092211055276382e-05, + "loss": 0.18750722885131835, + "step": 233400 + }, + { + "epoch": 78.22447441159225, + "grad_norm": 0.5309635400772095, + "learning_rate": 1.0905360134003351e-05, + "loss": 0.18738748550415038, + "step": 233500 + }, + { + "epoch": 78.2579780551135, + "grad_norm": 0.6039297580718994, + "learning_rate": 1.0888609715242882e-05, + "loss": 0.18785961151123046, + "step": 233600 + }, + { + "epoch": 78.29148169863473, + "grad_norm": 0.4987012445926666, + "learning_rate": 1.0871859296482414e-05, + "loss": 0.18820880889892577, + "step": 233700 + }, + { + "epoch": 78.32498534215595, + "grad_norm": 0.6190744638442993, + "learning_rate": 1.0855108877721944e-05, + "loss": 0.18877883911132812, + "step": 233800 + }, + { + "epoch": 78.3584889856772, + "grad_norm": 0.6907918453216553, + "learning_rate": 1.0838358458961475e-05, + "loss": 0.18849582672119142, + "step": 233900 + }, + { + "epoch": 78.39199262919843, + "grad_norm": 0.5600749850273132, + "learning_rate": 1.0821608040201005e-05, + "loss": 0.18884668350219727, + "step": 234000 + }, + { + "epoch": 78.42549627271966, + "grad_norm": 0.6390280723571777, + "learning_rate": 1.0805025125628141e-05, + "loss": 0.1880735397338867, + "step": 234100 + }, + { + "epoch": 78.45899991624088, + "grad_norm": 0.6333056688308716, + "learning_rate": 1.0788274706867672e-05, + "loss": 0.18834163665771483, + "step": 234200 + }, + { + "epoch": 78.49250355976213, + "grad_norm": 0.5011644959449768, + "learning_rate": 1.0771524288107202e-05, + "loss": 0.18952463150024415, + "step": 234300 + }, + { + "epoch": 78.52600720328336, + "grad_norm": 0.7219404578208923, + "learning_rate": 1.0754773869346735e-05, + "loss": 0.18985385894775392, + "step": 234400 + }, + { + "epoch": 78.55951084680459, + "grad_norm": 0.6397419571876526, + "learning_rate": 1.0738023450586265e-05, + "loss": 0.18919252395629882, + "step": 234500 + }, + { + "epoch": 78.59301449032583, + "grad_norm": 0.6841224431991577, + "learning_rate": 1.0721273031825796e-05, + "loss": 0.18944778442382812, + "step": 234600 + }, + { + "epoch": 78.62651813384706, + "grad_norm": 0.7453842163085938, + "learning_rate": 1.0704522613065328e-05, + "loss": 0.19007984161376953, + "step": 234700 + }, + { + "epoch": 78.66002177736829, + "grad_norm": 0.5905109643936157, + "learning_rate": 1.0687772194304858e-05, + "loss": 0.18957454681396485, + "step": 234800 + }, + { + "epoch": 78.69352542088953, + "grad_norm": 0.6769446134567261, + "learning_rate": 1.0671021775544389e-05, + "loss": 0.19039548873901369, + "step": 234900 + }, + { + "epoch": 78.72702906441076, + "grad_norm": 0.5825620293617249, + "learning_rate": 1.065427135678392e-05, + "loss": 0.1897379684448242, + "step": 235000 + }, + { + "epoch": 78.76053270793199, + "grad_norm": 0.6064398288726807, + "learning_rate": 1.0637520938023452e-05, + "loss": 0.18956695556640624, + "step": 235100 + }, + { + "epoch": 78.79403635145322, + "grad_norm": 0.5826224088668823, + "learning_rate": 1.0620770519262982e-05, + "loss": 0.19094810485839844, + "step": 235200 + }, + { + "epoch": 78.82753999497446, + "grad_norm": 0.6187439560890198, + "learning_rate": 1.0604020100502513e-05, + "loss": 0.190173397064209, + "step": 235300 + }, + { + "epoch": 78.86104363849569, + "grad_norm": 0.7878564596176147, + "learning_rate": 1.0587269681742045e-05, + "loss": 0.19098638534545898, + "step": 235400 + }, + { + "epoch": 78.89454728201692, + "grad_norm": 0.7218932509422302, + "learning_rate": 1.0570519262981575e-05, + "loss": 0.19098539352416993, + "step": 235500 + }, + { + "epoch": 78.92805092553816, + "grad_norm": 0.5134685635566711, + "learning_rate": 1.0553768844221106e-05, + "loss": 0.19038022994995119, + "step": 235600 + }, + { + "epoch": 78.96155456905939, + "grad_norm": 0.641615092754364, + "learning_rate": 1.0537018425460638e-05, + "loss": 0.1914260482788086, + "step": 235700 + }, + { + "epoch": 78.99505821258062, + "grad_norm": 0.6211548447608948, + "learning_rate": 1.0520268006700169e-05, + "loss": 0.1908476448059082, + "step": 235800 + }, + { + "epoch": 79.02847809699304, + "grad_norm": 0.5376355648040771, + "learning_rate": 1.0503517587939699e-05, + "loss": 0.18590696334838866, + "step": 235900 + }, + { + "epoch": 79.06198174051428, + "grad_norm": 0.5554808974266052, + "learning_rate": 1.0486767169179231e-05, + "loss": 0.18621206283569336, + "step": 236000 + }, + { + "epoch": 79.09548538403551, + "grad_norm": 0.6652063727378845, + "learning_rate": 1.0470184254606365e-05, + "loss": 0.18646297454833985, + "step": 236100 + }, + { + "epoch": 79.12898902755674, + "grad_norm": 0.6671931147575378, + "learning_rate": 1.0453433835845896e-05, + "loss": 0.18682302474975587, + "step": 236200 + }, + { + "epoch": 79.16249267107798, + "grad_norm": 0.6100969910621643, + "learning_rate": 1.0436683417085426e-05, + "loss": 0.18717609405517577, + "step": 236300 + }, + { + "epoch": 79.19599631459921, + "grad_norm": 0.7126432061195374, + "learning_rate": 1.0419932998324959e-05, + "loss": 0.18632455825805663, + "step": 236400 + }, + { + "epoch": 79.22949995812044, + "grad_norm": 0.5226724147796631, + "learning_rate": 1.040318257956449e-05, + "loss": 0.18794141769409178, + "step": 236500 + }, + { + "epoch": 79.26300360164169, + "grad_norm": 0.5243064165115356, + "learning_rate": 1.038643216080402e-05, + "loss": 0.18816068649291992, + "step": 236600 + }, + { + "epoch": 79.29650724516291, + "grad_norm": 0.607912003993988, + "learning_rate": 1.0369681742043552e-05, + "loss": 0.18687108993530274, + "step": 236700 + }, + { + "epoch": 79.33001088868414, + "grad_norm": 0.5773678421974182, + "learning_rate": 1.0352931323283082e-05, + "loss": 0.18846334457397462, + "step": 236800 + }, + { + "epoch": 79.36351453220537, + "grad_norm": 0.6360297203063965, + "learning_rate": 1.0336180904522613e-05, + "loss": 0.18933845520019532, + "step": 236900 + }, + { + "epoch": 79.39701817572661, + "grad_norm": 0.6809837222099304, + "learning_rate": 1.0319430485762145e-05, + "loss": 0.18878520965576173, + "step": 237000 + }, + { + "epoch": 79.43052181924784, + "grad_norm": 0.6212404370307922, + "learning_rate": 1.0302680067001676e-05, + "loss": 0.18835649490356446, + "step": 237100 + }, + { + "epoch": 79.46402546276907, + "grad_norm": 0.5026853680610657, + "learning_rate": 1.0285929648241206e-05, + "loss": 0.18797584533691405, + "step": 237200 + }, + { + "epoch": 79.49752910629032, + "grad_norm": 0.5610924959182739, + "learning_rate": 1.0269179229480738e-05, + "loss": 0.18864788055419923, + "step": 237300 + }, + { + "epoch": 79.53103274981154, + "grad_norm": 0.5812443494796753, + "learning_rate": 1.0252428810720269e-05, + "loss": 0.18857982635498047, + "step": 237400 + }, + { + "epoch": 79.56453639333277, + "grad_norm": 0.5942834615707397, + "learning_rate": 1.02356783919598e-05, + "loss": 0.18995513916015624, + "step": 237500 + }, + { + "epoch": 79.598040036854, + "grad_norm": 0.780934751033783, + "learning_rate": 1.021892797319933e-05, + "loss": 0.1898634147644043, + "step": 237600 + }, + { + "epoch": 79.63154368037524, + "grad_norm": 0.6805693507194519, + "learning_rate": 1.0202177554438862e-05, + "loss": 0.18985597610473634, + "step": 237700 + }, + { + "epoch": 79.66504732389647, + "grad_norm": 0.6133860349655151, + "learning_rate": 1.0185427135678393e-05, + "loss": 0.18866056442260742, + "step": 237800 + }, + { + "epoch": 79.6985509674177, + "grad_norm": 0.509017825126648, + "learning_rate": 1.0168676716917923e-05, + "loss": 0.1894827651977539, + "step": 237900 + }, + { + "epoch": 79.73205461093895, + "grad_norm": 0.7108103036880493, + "learning_rate": 1.0151926298157455e-05, + "loss": 0.18957220077514647, + "step": 238000 + }, + { + "epoch": 79.76555825446017, + "grad_norm": 0.5843678712844849, + "learning_rate": 1.013534338358459e-05, + "loss": 0.1894863700866699, + "step": 238100 + }, + { + "epoch": 79.7990618979814, + "grad_norm": 0.5689200758934021, + "learning_rate": 1.011859296482412e-05, + "loss": 0.189605712890625, + "step": 238200 + }, + { + "epoch": 79.83256554150263, + "grad_norm": 0.5582265257835388, + "learning_rate": 1.010184254606365e-05, + "loss": 0.1899770736694336, + "step": 238300 + }, + { + "epoch": 79.86606918502387, + "grad_norm": 0.7666222453117371, + "learning_rate": 1.0085092127303183e-05, + "loss": 0.19003982543945314, + "step": 238400 + }, + { + "epoch": 79.8995728285451, + "grad_norm": 0.5454803109169006, + "learning_rate": 1.0068341708542713e-05, + "loss": 0.1902810287475586, + "step": 238500 + }, + { + "epoch": 79.93307647206633, + "grad_norm": 0.7217103838920593, + "learning_rate": 1.0051591289782244e-05, + "loss": 0.19129709243774415, + "step": 238600 + }, + { + "epoch": 79.96658011558758, + "grad_norm": 0.5859233140945435, + "learning_rate": 1.0034840871021776e-05, + "loss": 0.19089550018310547, + "step": 238700 + }, + { + "epoch": 80.0, + "grad_norm": 0.7871226072311401, + "learning_rate": 1.0018090452261307e-05, + "loss": 0.19010568618774415, + "step": 238800 + }, + { + "epoch": 80.03350364352123, + "grad_norm": 0.6410444974899292, + "learning_rate": 1.0001340033500837e-05, + "loss": 0.18579286575317383, + "step": 238900 + }, + { + "epoch": 80.06700728704247, + "grad_norm": 0.49249953031539917, + "learning_rate": 9.98458961474037e-06, + "loss": 0.18595710754394532, + "step": 239000 + }, + { + "epoch": 80.1005109305637, + "grad_norm": 0.4707689583301544, + "learning_rate": 9.9678391959799e-06, + "loss": 0.1854451370239258, + "step": 239100 + }, + { + "epoch": 80.13401457408493, + "grad_norm": 0.6049455404281616, + "learning_rate": 9.95108877721943e-06, + "loss": 0.18605972290039063, + "step": 239200 + }, + { + "epoch": 80.16751821760616, + "grad_norm": 0.5813843011856079, + "learning_rate": 9.934338358458963e-06, + "loss": 0.18595891952514648, + "step": 239300 + }, + { + "epoch": 80.2010218611274, + "grad_norm": 0.6518586277961731, + "learning_rate": 9.917587939698493e-06, + "loss": 0.18725431442260743, + "step": 239400 + }, + { + "epoch": 80.23452550464863, + "grad_norm": 0.7379871010780334, + "learning_rate": 9.900837520938024e-06, + "loss": 0.18730653762817384, + "step": 239500 + }, + { + "epoch": 80.26802914816986, + "grad_norm": 0.7457312941551208, + "learning_rate": 9.884087102177556e-06, + "loss": 0.18689844131469727, + "step": 239600 + }, + { + "epoch": 80.3015327916911, + "grad_norm": 0.8484863638877869, + "learning_rate": 9.867336683417086e-06, + "loss": 0.18761758804321288, + "step": 239700 + }, + { + "epoch": 80.33503643521233, + "grad_norm": 0.6102080941200256, + "learning_rate": 9.850586264656617e-06, + "loss": 0.18688488006591797, + "step": 239800 + }, + { + "epoch": 80.36854007873356, + "grad_norm": 0.6622928380966187, + "learning_rate": 9.833835845896149e-06, + "loss": 0.18741252899169922, + "step": 239900 + }, + { + "epoch": 80.40204372225479, + "grad_norm": 0.5935907959938049, + "learning_rate": 9.81708542713568e-06, + "loss": 0.1878078269958496, + "step": 240000 + }, + { + "epoch": 80.43554736577603, + "grad_norm": 0.6074280142784119, + "learning_rate": 9.800502512562816e-06, + "loss": 0.18737226486206054, + "step": 240100 + }, + { + "epoch": 80.46905100929726, + "grad_norm": 0.6889368295669556, + "learning_rate": 9.783752093802346e-06, + "loss": 0.18822650909423827, + "step": 240200 + }, + { + "epoch": 80.50255465281849, + "grad_norm": 0.5317627787590027, + "learning_rate": 9.767001675041877e-06, + "loss": 0.1878480339050293, + "step": 240300 + }, + { + "epoch": 80.53605829633973, + "grad_norm": 0.5207783579826355, + "learning_rate": 9.750251256281407e-06, + "loss": 0.1882781219482422, + "step": 240400 + }, + { + "epoch": 80.56956193986096, + "grad_norm": 0.6113369464874268, + "learning_rate": 9.733500837520938e-06, + "loss": 0.1896601676940918, + "step": 240500 + }, + { + "epoch": 80.60306558338219, + "grad_norm": 0.6112746000289917, + "learning_rate": 9.716750418760468e-06, + "loss": 0.18931255340576172, + "step": 240600 + }, + { + "epoch": 80.63656922690343, + "grad_norm": 0.5978585481643677, + "learning_rate": 9.7e-06, + "loss": 0.18961137771606446, + "step": 240700 + }, + { + "epoch": 80.67007287042466, + "grad_norm": 0.5999939441680908, + "learning_rate": 9.68324958123953e-06, + "loss": 0.1893038558959961, + "step": 240800 + }, + { + "epoch": 80.70357651394589, + "grad_norm": 0.7477551698684692, + "learning_rate": 9.666499162479061e-06, + "loss": 0.19065048217773437, + "step": 240900 + }, + { + "epoch": 80.73708015746712, + "grad_norm": 0.49969878792762756, + "learning_rate": 9.649748743718594e-06, + "loss": 0.18887239456176758, + "step": 241000 + }, + { + "epoch": 80.77058380098836, + "grad_norm": 0.6229384541511536, + "learning_rate": 9.632998324958124e-06, + "loss": 0.18931352615356445, + "step": 241100 + }, + { + "epoch": 80.80408744450959, + "grad_norm": 0.5331135988235474, + "learning_rate": 9.616247906197655e-06, + "loss": 0.18917076110839845, + "step": 241200 + }, + { + "epoch": 80.83759108803082, + "grad_norm": 0.5475077629089355, + "learning_rate": 9.599497487437187e-06, + "loss": 0.18999635696411132, + "step": 241300 + }, + { + "epoch": 80.87109473155206, + "grad_norm": 0.6110318303108215, + "learning_rate": 9.582747068676717e-06, + "loss": 0.18988681793212892, + "step": 241400 + }, + { + "epoch": 80.90459837507329, + "grad_norm": 0.6834789514541626, + "learning_rate": 9.565996649916248e-06, + "loss": 0.18972234725952147, + "step": 241500 + }, + { + "epoch": 80.93810201859452, + "grad_norm": 0.5601489543914795, + "learning_rate": 9.54924623115578e-06, + "loss": 0.1901242446899414, + "step": 241600 + }, + { + "epoch": 80.97160566211575, + "grad_norm": 0.5707966685295105, + "learning_rate": 9.53249581239531e-06, + "loss": 0.19092308044433592, + "step": 241700 + }, + { + "epoch": 81.00502554652819, + "grad_norm": 0.6027684211730957, + "learning_rate": 9.515745393634841e-06, + "loss": 0.18986186981201172, + "step": 241800 + }, + { + "epoch": 81.03852919004942, + "grad_norm": 0.43851712346076965, + "learning_rate": 9.498994974874373e-06, + "loss": 0.1864785385131836, + "step": 241900 + }, + { + "epoch": 81.07203283357065, + "grad_norm": 0.5600922107696533, + "learning_rate": 9.482244556113904e-06, + "loss": 0.18667762756347656, + "step": 242000 + }, + { + "epoch": 81.10553647709189, + "grad_norm": 0.639335036277771, + "learning_rate": 9.46566164154104e-06, + "loss": 0.18642004013061522, + "step": 242100 + }, + { + "epoch": 81.13904012061312, + "grad_norm": 0.6750245690345764, + "learning_rate": 9.44891122278057e-06, + "loss": 0.18629102706909179, + "step": 242200 + }, + { + "epoch": 81.17254376413435, + "grad_norm": 0.5700585842132568, + "learning_rate": 9.4321608040201e-06, + "loss": 0.18613723754882813, + "step": 242300 + }, + { + "epoch": 81.20604740765559, + "grad_norm": 0.6852511167526245, + "learning_rate": 9.415410385259631e-06, + "loss": 0.18597820281982422, + "step": 242400 + }, + { + "epoch": 81.23955105117682, + "grad_norm": 0.5194628834724426, + "learning_rate": 9.398659966499162e-06, + "loss": 0.18753597259521484, + "step": 242500 + }, + { + "epoch": 81.27305469469805, + "grad_norm": 0.6448808312416077, + "learning_rate": 9.381909547738694e-06, + "loss": 0.18645841598510743, + "step": 242600 + }, + { + "epoch": 81.30655833821928, + "grad_norm": 0.4830906391143799, + "learning_rate": 9.365159128978224e-06, + "loss": 0.18598066329956053, + "step": 242700 + }, + { + "epoch": 81.34006198174052, + "grad_norm": 0.5368765592575073, + "learning_rate": 9.348408710217755e-06, + "loss": 0.18756242752075195, + "step": 242800 + }, + { + "epoch": 81.37356562526175, + "grad_norm": 0.7084921598434448, + "learning_rate": 9.331658291457287e-06, + "loss": 0.18713598251342772, + "step": 242900 + }, + { + "epoch": 81.40706926878298, + "grad_norm": 0.5406467318534851, + "learning_rate": 9.314907872696818e-06, + "loss": 0.18767911911010743, + "step": 243000 + }, + { + "epoch": 81.44057291230422, + "grad_norm": 0.6811279654502869, + "learning_rate": 9.298157453936348e-06, + "loss": 0.18792261123657228, + "step": 243100 + }, + { + "epoch": 81.47407655582545, + "grad_norm": 0.6793702244758606, + "learning_rate": 9.281407035175879e-06, + "loss": 0.18808685302734374, + "step": 243200 + }, + { + "epoch": 81.50758019934668, + "grad_norm": 0.5923267006874084, + "learning_rate": 9.264656616415411e-06, + "loss": 0.1878205108642578, + "step": 243300 + }, + { + "epoch": 81.5410838428679, + "grad_norm": 0.5069772005081177, + "learning_rate": 9.247906197654941e-06, + "loss": 0.18798334121704102, + "step": 243400 + }, + { + "epoch": 81.57458748638915, + "grad_norm": 0.6971927881240845, + "learning_rate": 9.231155778894472e-06, + "loss": 0.18779460906982423, + "step": 243500 + }, + { + "epoch": 81.60809112991038, + "grad_norm": 0.4844462275505066, + "learning_rate": 9.214405360134004e-06, + "loss": 0.1885888671875, + "step": 243600 + }, + { + "epoch": 81.6415947734316, + "grad_norm": 0.6287949085235596, + "learning_rate": 9.197654941373535e-06, + "loss": 0.18853179931640626, + "step": 243700 + }, + { + "epoch": 81.67509841695285, + "grad_norm": 0.5208948254585266, + "learning_rate": 9.180904522613065e-06, + "loss": 0.18876758575439453, + "step": 243800 + }, + { + "epoch": 81.70860206047408, + "grad_norm": 0.559596598148346, + "learning_rate": 9.164154103852597e-06, + "loss": 0.18983572006225585, + "step": 243900 + }, + { + "epoch": 81.7421057039953, + "grad_norm": 0.6286110877990723, + "learning_rate": 9.147403685092128e-06, + "loss": 0.18990949630737305, + "step": 244000 + }, + { + "epoch": 81.77560934751654, + "grad_norm": 0.6826990246772766, + "learning_rate": 9.130820770519264e-06, + "loss": 0.18897735595703125, + "step": 244100 + }, + { + "epoch": 81.80911299103778, + "grad_norm": 0.6137732267379761, + "learning_rate": 9.114070351758794e-06, + "loss": 0.1890528106689453, + "step": 244200 + }, + { + "epoch": 81.84261663455901, + "grad_norm": 0.6284852027893066, + "learning_rate": 9.097319932998327e-06, + "loss": 0.18912405014038086, + "step": 244300 + }, + { + "epoch": 81.87612027808024, + "grad_norm": 0.5774878859519958, + "learning_rate": 9.080569514237857e-06, + "loss": 0.18894084930419922, + "step": 244400 + }, + { + "epoch": 81.90962392160148, + "grad_norm": 0.6259322166442871, + "learning_rate": 9.063819095477388e-06, + "loss": 0.1898725700378418, + "step": 244500 + }, + { + "epoch": 81.94312756512271, + "grad_norm": 0.5645041465759277, + "learning_rate": 9.047068676716918e-06, + "loss": 0.18911539077758788, + "step": 244600 + }, + { + "epoch": 81.97663120864394, + "grad_norm": 0.5545311570167542, + "learning_rate": 9.030318257956449e-06, + "loss": 0.18874195098876953, + "step": 244700 + }, + { + "epoch": 82.01005109305638, + "grad_norm": 0.5122572779655457, + "learning_rate": 9.01356783919598e-06, + "loss": 0.1884039306640625, + "step": 244800 + }, + { + "epoch": 82.0435547365776, + "grad_norm": 0.5515125393867493, + "learning_rate": 8.996817420435511e-06, + "loss": 0.18567270278930664, + "step": 244900 + }, + { + "epoch": 82.07705838009883, + "grad_norm": 0.6537274122238159, + "learning_rate": 8.980067001675042e-06, + "loss": 0.18508878707885743, + "step": 245000 + }, + { + "epoch": 82.11056202362006, + "grad_norm": 0.5276825428009033, + "learning_rate": 8.963316582914572e-06, + "loss": 0.18604862213134765, + "step": 245100 + }, + { + "epoch": 82.1440656671413, + "grad_norm": 0.5946404933929443, + "learning_rate": 8.946566164154105e-06, + "loss": 0.18516014099121095, + "step": 245200 + }, + { + "epoch": 82.17756931066253, + "grad_norm": 0.5449401140213013, + "learning_rate": 8.929815745393635e-06, + "loss": 0.18614362716674804, + "step": 245300 + }, + { + "epoch": 82.21107295418376, + "grad_norm": 0.5503102540969849, + "learning_rate": 8.913065326633166e-06, + "loss": 0.18611763000488282, + "step": 245400 + }, + { + "epoch": 82.244576597705, + "grad_norm": 0.6990886330604553, + "learning_rate": 8.896314907872698e-06, + "loss": 0.1872243881225586, + "step": 245500 + }, + { + "epoch": 82.27808024122623, + "grad_norm": 0.5072383880615234, + "learning_rate": 8.879564489112228e-06, + "loss": 0.1860810661315918, + "step": 245600 + }, + { + "epoch": 82.31158388474746, + "grad_norm": 0.5636463165283203, + "learning_rate": 8.862814070351759e-06, + "loss": 0.18700706481933593, + "step": 245700 + }, + { + "epoch": 82.34508752826869, + "grad_norm": 0.5329198837280273, + "learning_rate": 8.84606365159129e-06, + "loss": 0.18637537002563476, + "step": 245800 + }, + { + "epoch": 82.37859117178994, + "grad_norm": 0.7562859654426575, + "learning_rate": 8.829313232830822e-06, + "loss": 0.1869906997680664, + "step": 245900 + }, + { + "epoch": 82.41209481531116, + "grad_norm": 0.642741322517395, + "learning_rate": 8.812562814070352e-06, + "loss": 0.18656137466430664, + "step": 246000 + }, + { + "epoch": 82.4455984588324, + "grad_norm": 0.62885582447052, + "learning_rate": 8.795979899497488e-06, + "loss": 0.18802295684814452, + "step": 246100 + }, + { + "epoch": 82.47910210235364, + "grad_norm": 0.5594859719276428, + "learning_rate": 8.779229480737019e-06, + "loss": 0.18712615966796875, + "step": 246200 + }, + { + "epoch": 82.51260574587486, + "grad_norm": 0.6333134174346924, + "learning_rate": 8.76247906197655e-06, + "loss": 0.18846635818481444, + "step": 246300 + }, + { + "epoch": 82.5461093893961, + "grad_norm": 0.6623076796531677, + "learning_rate": 8.745728643216081e-06, + "loss": 0.1880592155456543, + "step": 246400 + }, + { + "epoch": 82.57961303291734, + "grad_norm": 0.5541040301322937, + "learning_rate": 8.728978224455612e-06, + "loss": 0.1872352409362793, + "step": 246500 + }, + { + "epoch": 82.61311667643857, + "grad_norm": 0.5087713599205017, + "learning_rate": 8.712227805695142e-06, + "loss": 0.1888579559326172, + "step": 246600 + }, + { + "epoch": 82.6466203199598, + "grad_norm": 0.5055890679359436, + "learning_rate": 8.695477386934673e-06, + "loss": 0.18866750717163086, + "step": 246700 + }, + { + "epoch": 82.68012396348102, + "grad_norm": 0.4937209188938141, + "learning_rate": 8.678726968174205e-06, + "loss": 0.18850959777832033, + "step": 246800 + }, + { + "epoch": 82.71362760700227, + "grad_norm": 0.6762095093727112, + "learning_rate": 8.661976549413736e-06, + "loss": 0.1879727554321289, + "step": 246900 + }, + { + "epoch": 82.7471312505235, + "grad_norm": 0.6171196699142456, + "learning_rate": 8.645226130653266e-06, + "loss": 0.18954423904418946, + "step": 247000 + }, + { + "epoch": 82.78063489404472, + "grad_norm": 0.6400672197341919, + "learning_rate": 8.628475711892797e-06, + "loss": 0.18838544845581054, + "step": 247100 + }, + { + "epoch": 82.81413853756597, + "grad_norm": 0.5874627828598022, + "learning_rate": 8.611725293132329e-06, + "loss": 0.18863496780395508, + "step": 247200 + }, + { + "epoch": 82.8476421810872, + "grad_norm": 0.6051297187805176, + "learning_rate": 8.59497487437186e-06, + "loss": 0.1890684509277344, + "step": 247300 + }, + { + "epoch": 82.88114582460842, + "grad_norm": 0.6647644639015198, + "learning_rate": 8.57822445561139e-06, + "loss": 0.18968358993530274, + "step": 247400 + }, + { + "epoch": 82.91464946812965, + "grad_norm": 0.6016401648521423, + "learning_rate": 8.561474036850922e-06, + "loss": 0.18822206497192384, + "step": 247500 + }, + { + "epoch": 82.9481531116509, + "grad_norm": 0.5627951622009277, + "learning_rate": 8.544723618090453e-06, + "loss": 0.18971824645996094, + "step": 247600 + }, + { + "epoch": 82.98165675517212, + "grad_norm": 0.6368587613105774, + "learning_rate": 8.527973199329983e-06, + "loss": 0.18886089324951172, + "step": 247700 + }, + { + "epoch": 83.01507663958455, + "grad_norm": 0.5568286180496216, + "learning_rate": 8.511222780569515e-06, + "loss": 0.18792394638061524, + "step": 247800 + }, + { + "epoch": 83.04858028310579, + "grad_norm": 0.750466525554657, + "learning_rate": 8.494472361809046e-06, + "loss": 0.18552347183227538, + "step": 247900 + }, + { + "epoch": 83.08208392662702, + "grad_norm": 0.5758387446403503, + "learning_rate": 8.477721943048576e-06, + "loss": 0.18548595428466796, + "step": 248000 + }, + { + "epoch": 83.11558757014825, + "grad_norm": 0.6715633273124695, + "learning_rate": 8.461139028475712e-06, + "loss": 0.1856230354309082, + "step": 248100 + }, + { + "epoch": 83.1490912136695, + "grad_norm": 0.6111332178115845, + "learning_rate": 8.444388609715244e-06, + "loss": 0.1855340576171875, + "step": 248200 + }, + { + "epoch": 83.18259485719072, + "grad_norm": 0.5966615676879883, + "learning_rate": 8.427638190954775e-06, + "loss": 0.18604198455810547, + "step": 248300 + }, + { + "epoch": 83.21609850071195, + "grad_norm": 0.612937331199646, + "learning_rate": 8.410887772194305e-06, + "loss": 0.18526275634765624, + "step": 248400 + }, + { + "epoch": 83.24960214423318, + "grad_norm": 0.6167147159576416, + "learning_rate": 8.394137353433838e-06, + "loss": 0.18677328109741212, + "step": 248500 + }, + { + "epoch": 83.28310578775442, + "grad_norm": 0.5629482865333557, + "learning_rate": 8.377386934673368e-06, + "loss": 0.18594594955444335, + "step": 248600 + }, + { + "epoch": 83.31660943127565, + "grad_norm": 0.5856372714042664, + "learning_rate": 8.360636515912899e-06, + "loss": 0.18747835159301757, + "step": 248700 + }, + { + "epoch": 83.35011307479688, + "grad_norm": 0.6533538103103638, + "learning_rate": 8.34388609715243e-06, + "loss": 0.18700716018676758, + "step": 248800 + }, + { + "epoch": 83.38361671831812, + "grad_norm": 0.5694628953933716, + "learning_rate": 8.32713567839196e-06, + "loss": 0.1867087936401367, + "step": 248900 + }, + { + "epoch": 83.41712036183935, + "grad_norm": 0.7100234031677246, + "learning_rate": 8.31038525963149e-06, + "loss": 0.18678861618041992, + "step": 249000 + }, + { + "epoch": 83.45062400536058, + "grad_norm": 0.528014063835144, + "learning_rate": 8.29363484087102e-06, + "loss": 0.18693504333496094, + "step": 249100 + }, + { + "epoch": 83.48412764888181, + "grad_norm": 0.6683924198150635, + "learning_rate": 8.276884422110553e-06, + "loss": 0.18630191802978516, + "step": 249200 + }, + { + "epoch": 83.51763129240305, + "grad_norm": 0.6140015125274658, + "learning_rate": 8.260134003350083e-06, + "loss": 0.18822259902954103, + "step": 249300 + }, + { + "epoch": 83.55113493592428, + "grad_norm": 0.6404419541358948, + "learning_rate": 8.243383584589614e-06, + "loss": 0.18734935760498048, + "step": 249400 + }, + { + "epoch": 83.58463857944551, + "grad_norm": 0.5253821611404419, + "learning_rate": 8.226633165829146e-06, + "loss": 0.18713035583496093, + "step": 249500 + }, + { + "epoch": 83.61814222296675, + "grad_norm": 0.592951774597168, + "learning_rate": 8.209882747068677e-06, + "loss": 0.1879220962524414, + "step": 249600 + }, + { + "epoch": 83.65164586648798, + "grad_norm": 0.6963580846786499, + "learning_rate": 8.193132328308207e-06, + "loss": 0.18711292266845703, + "step": 249700 + }, + { + "epoch": 83.68514951000921, + "grad_norm": 0.5152623653411865, + "learning_rate": 8.17638190954774e-06, + "loss": 0.18781234741210937, + "step": 249800 + }, + { + "epoch": 83.71865315353044, + "grad_norm": 0.6002013087272644, + "learning_rate": 8.15963149078727e-06, + "loss": 0.18788719177246094, + "step": 249900 + }, + { + "epoch": 83.75215679705168, + "grad_norm": 0.7012782692909241, + "learning_rate": 8.1428810720268e-06, + "loss": 0.1878870391845703, + "step": 250000 + }, + { + "epoch": 83.78566044057291, + "grad_norm": 0.5836089849472046, + "learning_rate": 8.126130653266333e-06, + "loss": 0.18869754791259766, + "step": 250100 + }, + { + "epoch": 83.81916408409414, + "grad_norm": 0.5142480134963989, + "learning_rate": 8.109547738693469e-06, + "loss": 0.18811010360717773, + "step": 250200 + }, + { + "epoch": 83.85266772761538, + "grad_norm": 0.5308085083961487, + "learning_rate": 8.092797319932999e-06, + "loss": 0.18894163131713868, + "step": 250300 + }, + { + "epoch": 83.88617137113661, + "grad_norm": 0.5777791142463684, + "learning_rate": 8.07604690117253e-06, + "loss": 0.18823001861572267, + "step": 250400 + }, + { + "epoch": 83.91967501465784, + "grad_norm": 0.5273643732070923, + "learning_rate": 8.059296482412062e-06, + "loss": 0.18896015167236327, + "step": 250500 + }, + { + "epoch": 83.95317865817908, + "grad_norm": 0.5124455094337463, + "learning_rate": 8.042546063651592e-06, + "loss": 0.18926893234252928, + "step": 250600 + }, + { + "epoch": 83.98668230170031, + "grad_norm": 0.6289759278297424, + "learning_rate": 8.025795644891123e-06, + "loss": 0.18870933532714843, + "step": 250700 + }, + { + "epoch": 84.02010218611274, + "grad_norm": 0.6009929776191711, + "learning_rate": 8.009045226130653e-06, + "loss": 0.1856600570678711, + "step": 250800 + }, + { + "epoch": 84.05360582963397, + "grad_norm": 0.6856387257575989, + "learning_rate": 7.992294807370186e-06, + "loss": 0.18487995147705077, + "step": 250900 + }, + { + "epoch": 84.08710947315521, + "grad_norm": 0.5233118534088135, + "learning_rate": 7.975544388609716e-06, + "loss": 0.18613203048706053, + "step": 251000 + }, + { + "epoch": 84.12061311667644, + "grad_norm": 0.6100374460220337, + "learning_rate": 7.958793969849247e-06, + "loss": 0.18532003402709962, + "step": 251100 + }, + { + "epoch": 84.15411676019767, + "grad_norm": 0.5868030786514282, + "learning_rate": 7.942043551088777e-06, + "loss": 0.18455961227416992, + "step": 251200 + }, + { + "epoch": 84.18762040371891, + "grad_norm": 0.6049501299858093, + "learning_rate": 7.925293132328308e-06, + "loss": 0.1862618064880371, + "step": 251300 + }, + { + "epoch": 84.22112404724014, + "grad_norm": 0.6399788856506348, + "learning_rate": 7.90854271356784e-06, + "loss": 0.18547624588012696, + "step": 251400 + }, + { + "epoch": 84.25462769076137, + "grad_norm": 0.6293793320655823, + "learning_rate": 7.89179229480737e-06, + "loss": 0.18608217239379882, + "step": 251500 + }, + { + "epoch": 84.2881313342826, + "grad_norm": 0.5287208557128906, + "learning_rate": 7.875041876046901e-06, + "loss": 0.18579626083374023, + "step": 251600 + }, + { + "epoch": 84.32163497780384, + "grad_norm": 0.5985024571418762, + "learning_rate": 7.858291457286431e-06, + "loss": 0.18519624710083007, + "step": 251700 + }, + { + "epoch": 84.35513862132507, + "grad_norm": 0.594869077205658, + "learning_rate": 7.841541038525964e-06, + "loss": 0.18641794204711915, + "step": 251800 + }, + { + "epoch": 84.3886422648463, + "grad_norm": 0.6310123801231384, + "learning_rate": 7.824790619765494e-06, + "loss": 0.18554765701293946, + "step": 251900 + }, + { + "epoch": 84.42214590836754, + "grad_norm": 0.6834468841552734, + "learning_rate": 7.808040201005025e-06, + "loss": 0.18662025451660155, + "step": 252000 + }, + { + "epoch": 84.45564955188877, + "grad_norm": 0.5541797280311584, + "learning_rate": 7.791289782244557e-06, + "loss": 0.18684375762939454, + "step": 252100 + }, + { + "epoch": 84.48915319541, + "grad_norm": 0.6487085223197937, + "learning_rate": 7.774706867671693e-06, + "loss": 0.18705474853515625, + "step": 252200 + }, + { + "epoch": 84.52265683893124, + "grad_norm": 0.4895366430282593, + "learning_rate": 7.757956448911223e-06, + "loss": 0.18700340270996094, + "step": 252300 + }, + { + "epoch": 84.55616048245247, + "grad_norm": 0.5531443357467651, + "learning_rate": 7.741206030150754e-06, + "loss": 0.18807411193847656, + "step": 252400 + }, + { + "epoch": 84.5896641259737, + "grad_norm": 0.5510408878326416, + "learning_rate": 7.724455611390286e-06, + "loss": 0.18698272705078126, + "step": 252500 + }, + { + "epoch": 84.62316776949493, + "grad_norm": 0.6708593964576721, + "learning_rate": 7.707705192629817e-06, + "loss": 0.1877949905395508, + "step": 252600 + }, + { + "epoch": 84.65667141301617, + "grad_norm": 0.5115278363227844, + "learning_rate": 7.690954773869347e-06, + "loss": 0.1879779052734375, + "step": 252700 + }, + { + "epoch": 84.6901750565374, + "grad_norm": 0.6127870082855225, + "learning_rate": 7.67420435510888e-06, + "loss": 0.18695253372192383, + "step": 252800 + }, + { + "epoch": 84.72367870005863, + "grad_norm": 0.7335399389266968, + "learning_rate": 7.65745393634841e-06, + "loss": 0.18774644851684572, + "step": 252900 + }, + { + "epoch": 84.75718234357987, + "grad_norm": 0.5237014293670654, + "learning_rate": 7.64070351758794e-06, + "loss": 0.1880354881286621, + "step": 253000 + }, + { + "epoch": 84.7906859871011, + "grad_norm": 0.5270113348960876, + "learning_rate": 7.623953098827472e-06, + "loss": 0.18749366760253905, + "step": 253100 + }, + { + "epoch": 84.82418963062233, + "grad_norm": 0.6281821727752686, + "learning_rate": 7.607202680067002e-06, + "loss": 0.1876792335510254, + "step": 253200 + }, + { + "epoch": 84.85769327414356, + "grad_norm": 0.5125153064727783, + "learning_rate": 7.590452261306533e-06, + "loss": 0.18819995880126952, + "step": 253300 + }, + { + "epoch": 84.8911969176648, + "grad_norm": 0.5630070567131042, + "learning_rate": 7.573701842546065e-06, + "loss": 0.18900468826293945, + "step": 253400 + }, + { + "epoch": 84.92470056118603, + "grad_norm": 0.551005482673645, + "learning_rate": 7.556951423785595e-06, + "loss": 0.188682861328125, + "step": 253500 + }, + { + "epoch": 84.95820420470726, + "grad_norm": 0.5519696474075317, + "learning_rate": 7.540201005025126e-06, + "loss": 0.18850210189819336, + "step": 253600 + }, + { + "epoch": 84.9917078482285, + "grad_norm": 0.64322829246521, + "learning_rate": 7.523450586264657e-06, + "loss": 0.18925397872924804, + "step": 253700 + }, + { + "epoch": 85.02512773264093, + "grad_norm": 0.569341778755188, + "learning_rate": 7.506700167504188e-06, + "loss": 0.18594614028930664, + "step": 253800 + }, + { + "epoch": 85.05863137616215, + "grad_norm": 0.5993043184280396, + "learning_rate": 7.489949748743718e-06, + "loss": 0.18460994720458984, + "step": 253900 + }, + { + "epoch": 85.0921350196834, + "grad_norm": 0.4627517759799957, + "learning_rate": 7.4731993299832505e-06, + "loss": 0.18417888641357422, + "step": 254000 + }, + { + "epoch": 85.12563866320463, + "grad_norm": 0.5186675190925598, + "learning_rate": 7.456448911222781e-06, + "loss": 0.18561904907226562, + "step": 254100 + }, + { + "epoch": 85.15914230672585, + "grad_norm": 0.6953118443489075, + "learning_rate": 7.439865996649917e-06, + "loss": 0.18514400482177734, + "step": 254200 + }, + { + "epoch": 85.19264595024708, + "grad_norm": 0.507422685623169, + "learning_rate": 7.4231155778894475e-06, + "loss": 0.18599794387817384, + "step": 254300 + }, + { + "epoch": 85.22614959376833, + "grad_norm": 0.5243151783943176, + "learning_rate": 7.40636515912898e-06, + "loss": 0.18585119247436524, + "step": 254400 + }, + { + "epoch": 85.25965323728956, + "grad_norm": 0.5282275676727295, + "learning_rate": 7.38961474036851e-06, + "loss": 0.18537141799926757, + "step": 254500 + }, + { + "epoch": 85.29315688081078, + "grad_norm": 0.8133143782615662, + "learning_rate": 7.372864321608041e-06, + "loss": 0.18567739486694335, + "step": 254600 + }, + { + "epoch": 85.32666052433203, + "grad_norm": 0.5648775100708008, + "learning_rate": 7.356113902847571e-06, + "loss": 0.1864516830444336, + "step": 254700 + }, + { + "epoch": 85.36016416785326, + "grad_norm": 0.6094685792922974, + "learning_rate": 7.339363484087103e-06, + "loss": 0.1870036506652832, + "step": 254800 + }, + { + "epoch": 85.39366781137448, + "grad_norm": 0.5950913429260254, + "learning_rate": 7.322613065326633e-06, + "loss": 0.18513656616210938, + "step": 254900 + }, + { + "epoch": 85.42717145489571, + "grad_norm": 0.5510959029197693, + "learning_rate": 7.305862646566164e-06, + "loss": 0.18647272109985352, + "step": 255000 + }, + { + "epoch": 85.46067509841696, + "grad_norm": 0.7267409563064575, + "learning_rate": 7.289112227805696e-06, + "loss": 0.1857898712158203, + "step": 255100 + }, + { + "epoch": 85.49417874193819, + "grad_norm": 0.45163479447364807, + "learning_rate": 7.272361809045226e-06, + "loss": 0.18607278823852538, + "step": 255200 + }, + { + "epoch": 85.52768238545941, + "grad_norm": 0.4602172374725342, + "learning_rate": 7.255611390284757e-06, + "loss": 0.18727361679077148, + "step": 255300 + }, + { + "epoch": 85.56118602898066, + "grad_norm": 0.635420024394989, + "learning_rate": 7.238860971524289e-06, + "loss": 0.18634784698486329, + "step": 255400 + }, + { + "epoch": 85.59468967250189, + "grad_norm": 0.7202033996582031, + "learning_rate": 7.22211055276382e-06, + "loss": 0.18726907730102538, + "step": 255500 + }, + { + "epoch": 85.62819331602311, + "grad_norm": 0.5407751798629761, + "learning_rate": 7.20536013400335e-06, + "loss": 0.18667268753051758, + "step": 255600 + }, + { + "epoch": 85.66169695954434, + "grad_norm": 0.5636637806892395, + "learning_rate": 7.188609715242882e-06, + "loss": 0.18750267028808593, + "step": 255700 + }, + { + "epoch": 85.69520060306559, + "grad_norm": 0.4898567199707031, + "learning_rate": 7.171859296482413e-06, + "loss": 0.1871859359741211, + "step": 255800 + }, + { + "epoch": 85.72870424658682, + "grad_norm": 0.5712749361991882, + "learning_rate": 7.155108877721943e-06, + "loss": 0.18638862609863283, + "step": 255900 + }, + { + "epoch": 85.76220789010804, + "grad_norm": 0.46651607751846313, + "learning_rate": 7.138358458961475e-06, + "loss": 0.18812761306762696, + "step": 256000 + }, + { + "epoch": 85.79571153362929, + "grad_norm": 0.5160844326019287, + "learning_rate": 7.121608040201005e-06, + "loss": 0.18870893478393555, + "step": 256100 + }, + { + "epoch": 85.82921517715052, + "grad_norm": 0.5459625124931335, + "learning_rate": 7.105025125628141e-06, + "loss": 0.18762758255004883, + "step": 256200 + }, + { + "epoch": 85.86271882067174, + "grad_norm": 0.5653469562530518, + "learning_rate": 7.088274706867672e-06, + "loss": 0.18779273986816405, + "step": 256300 + }, + { + "epoch": 85.89622246419299, + "grad_norm": 0.6370869278907776, + "learning_rate": 7.071524288107204e-06, + "loss": 0.18751178741455077, + "step": 256400 + }, + { + "epoch": 85.92972610771422, + "grad_norm": 0.5533131957054138, + "learning_rate": 7.054773869346734e-06, + "loss": 0.1884653663635254, + "step": 256500 + }, + { + "epoch": 85.96322975123545, + "grad_norm": 0.6711784601211548, + "learning_rate": 7.038023450586265e-06, + "loss": 0.18683214187622071, + "step": 256600 + }, + { + "epoch": 85.99673339475667, + "grad_norm": 0.5515606999397278, + "learning_rate": 7.021273031825796e-06, + "loss": 0.1888846969604492, + "step": 256700 + }, + { + "epoch": 86.03015327916911, + "grad_norm": 0.5068252086639404, + "learning_rate": 7.004522613065327e-06, + "loss": 0.18496566772460937, + "step": 256800 + }, + { + "epoch": 86.06365692269034, + "grad_norm": 0.47771593928337097, + "learning_rate": 6.987772194304857e-06, + "loss": 0.184095401763916, + "step": 256900 + }, + { + "epoch": 86.09716056621157, + "grad_norm": 0.47911855578422546, + "learning_rate": 6.9710217755443895e-06, + "loss": 0.18482202529907227, + "step": 257000 + }, + { + "epoch": 86.13066420973281, + "grad_norm": 0.5584221482276917, + "learning_rate": 6.95427135678392e-06, + "loss": 0.18487674713134766, + "step": 257100 + }, + { + "epoch": 86.16416785325404, + "grad_norm": 0.47040486335754395, + "learning_rate": 6.9375209380234505e-06, + "loss": 0.18475263595581054, + "step": 257200 + }, + { + "epoch": 86.19767149677527, + "grad_norm": 0.6007068753242493, + "learning_rate": 6.920770519262981e-06, + "loss": 0.18603864669799805, + "step": 257300 + }, + { + "epoch": 86.23117514029651, + "grad_norm": 0.6026456356048584, + "learning_rate": 6.904020100502513e-06, + "loss": 0.18502817153930665, + "step": 257400 + }, + { + "epoch": 86.26467878381774, + "grad_norm": 0.4999913275241852, + "learning_rate": 6.887269681742044e-06, + "loss": 0.1868625259399414, + "step": 257500 + }, + { + "epoch": 86.29818242733897, + "grad_norm": 0.5064532160758972, + "learning_rate": 6.870519262981574e-06, + "loss": 0.18557401657104491, + "step": 257600 + }, + { + "epoch": 86.3316860708602, + "grad_norm": 0.47061556577682495, + "learning_rate": 6.8537688442211065e-06, + "loss": 0.1852064323425293, + "step": 257700 + }, + { + "epoch": 86.36518971438144, + "grad_norm": 0.5401563048362732, + "learning_rate": 6.837018425460637e-06, + "loss": 0.18540374755859376, + "step": 257800 + }, + { + "epoch": 86.39869335790267, + "grad_norm": 0.46041640639305115, + "learning_rate": 6.8202680067001675e-06, + "loss": 0.18596946716308593, + "step": 257900 + }, + { + "epoch": 86.4321970014239, + "grad_norm": 0.597866415977478, + "learning_rate": 6.803517587939699e-06, + "loss": 0.18595813751220702, + "step": 258000 + }, + { + "epoch": 86.46570064494514, + "grad_norm": 0.6081616878509521, + "learning_rate": 6.786767169179229e-06, + "loss": 0.18565729141235351, + "step": 258100 + }, + { + "epoch": 86.49920428846637, + "grad_norm": 0.5523788332939148, + "learning_rate": 6.770184254606365e-06, + "loss": 0.187158260345459, + "step": 258200 + }, + { + "epoch": 86.5327079319876, + "grad_norm": 0.5216212272644043, + "learning_rate": 6.753433835845896e-06, + "loss": 0.1858182144165039, + "step": 258300 + }, + { + "epoch": 86.56621157550883, + "grad_norm": 0.5936647057533264, + "learning_rate": 6.736683417085428e-06, + "loss": 0.1869313621520996, + "step": 258400 + }, + { + "epoch": 86.59971521903007, + "grad_norm": 0.6182869672775269, + "learning_rate": 6.7199329983249586e-06, + "loss": 0.18541063308715822, + "step": 258500 + }, + { + "epoch": 86.6332188625513, + "grad_norm": 0.5022922158241272, + "learning_rate": 6.703182579564489e-06, + "loss": 0.18641475677490235, + "step": 258600 + }, + { + "epoch": 86.66672250607253, + "grad_norm": 0.5892537832260132, + "learning_rate": 6.686432160804021e-06, + "loss": 0.1863780975341797, + "step": 258700 + }, + { + "epoch": 86.70022614959377, + "grad_norm": 0.6023449301719666, + "learning_rate": 6.669681742043552e-06, + "loss": 0.18697059631347657, + "step": 258800 + }, + { + "epoch": 86.733729793115, + "grad_norm": 0.4677959680557251, + "learning_rate": 6.652931323283082e-06, + "loss": 0.1872576904296875, + "step": 258900 + }, + { + "epoch": 86.76723343663623, + "grad_norm": 0.5693555474281311, + "learning_rate": 6.636180904522614e-06, + "loss": 0.18713676452636718, + "step": 259000 + }, + { + "epoch": 86.80073708015746, + "grad_norm": 0.6497491598129272, + "learning_rate": 6.619430485762144e-06, + "loss": 0.1870942497253418, + "step": 259100 + }, + { + "epoch": 86.8342407236787, + "grad_norm": 0.548832356929779, + "learning_rate": 6.602680067001675e-06, + "loss": 0.18688385009765626, + "step": 259200 + }, + { + "epoch": 86.86774436719993, + "grad_norm": 0.596001923084259, + "learning_rate": 6.585929648241207e-06, + "loss": 0.1876131248474121, + "step": 259300 + }, + { + "epoch": 86.90124801072116, + "grad_norm": 0.4879089891910553, + "learning_rate": 6.5691792294807374e-06, + "loss": 0.18763301849365235, + "step": 259400 + }, + { + "epoch": 86.9347516542424, + "grad_norm": 0.637677013874054, + "learning_rate": 6.552428810720268e-06, + "loss": 0.18786365509033204, + "step": 259500 + }, + { + "epoch": 86.96825529776363, + "grad_norm": 0.6771053671836853, + "learning_rate": 6.5356783919598e-06, + "loss": 0.18699560165405274, + "step": 259600 + }, + { + "epoch": 87.00167518217606, + "grad_norm": 0.4932768940925598, + "learning_rate": 6.518927973199331e-06, + "loss": 0.18727890014648438, + "step": 259700 + }, + { + "epoch": 87.0351788256973, + "grad_norm": 0.5554237961769104, + "learning_rate": 6.502177554438861e-06, + "loss": 0.18363922119140624, + "step": 259800 + }, + { + "epoch": 87.06868246921853, + "grad_norm": 0.49361878633499146, + "learning_rate": 6.485427135678392e-06, + "loss": 0.18403356552124023, + "step": 259900 + }, + { + "epoch": 87.10218611273976, + "grad_norm": 0.5164247155189514, + "learning_rate": 6.468676716917924e-06, + "loss": 0.1847250556945801, + "step": 260000 + }, + { + "epoch": 87.13568975626099, + "grad_norm": 0.6231299638748169, + "learning_rate": 6.4519262981574544e-06, + "loss": 0.18410905838012695, + "step": 260100 + }, + { + "epoch": 87.16919339978223, + "grad_norm": 0.510552167892456, + "learning_rate": 6.4353433835845895e-06, + "loss": 0.18483367919921875, + "step": 260200 + }, + { + "epoch": 87.20269704330346, + "grad_norm": 0.5737383961677551, + "learning_rate": 6.41859296482412e-06, + "loss": 0.18470308303833008, + "step": 260300 + }, + { + "epoch": 87.23620068682469, + "grad_norm": 0.5129623413085938, + "learning_rate": 6.401842546063652e-06, + "loss": 0.18547887802124025, + "step": 260400 + }, + { + "epoch": 87.26970433034593, + "grad_norm": 0.6173266172409058, + "learning_rate": 6.385092127303183e-06, + "loss": 0.18598060607910155, + "step": 260500 + }, + { + "epoch": 87.30320797386716, + "grad_norm": 0.544044554233551, + "learning_rate": 6.368341708542713e-06, + "loss": 0.18537967681884765, + "step": 260600 + }, + { + "epoch": 87.33671161738839, + "grad_norm": 0.5292858481407166, + "learning_rate": 6.3515912897822455e-06, + "loss": 0.18521123886108398, + "step": 260700 + }, + { + "epoch": 87.37021526090962, + "grad_norm": 0.594588041305542, + "learning_rate": 6.334840871021776e-06, + "loss": 0.18591339111328126, + "step": 260800 + }, + { + "epoch": 87.40371890443086, + "grad_norm": 0.5692018270492554, + "learning_rate": 6.3180904522613065e-06, + "loss": 0.1846309471130371, + "step": 260900 + }, + { + "epoch": 87.43722254795209, + "grad_norm": 0.6212311387062073, + "learning_rate": 6.301340033500838e-06, + "loss": 0.18584171295166016, + "step": 261000 + }, + { + "epoch": 87.47072619147332, + "grad_norm": 0.6049195528030396, + "learning_rate": 6.284589614740368e-06, + "loss": 0.1861904716491699, + "step": 261100 + }, + { + "epoch": 87.50422983499456, + "grad_norm": 0.5650988221168518, + "learning_rate": 6.2678391959799e-06, + "loss": 0.18642744064331054, + "step": 261200 + }, + { + "epoch": 87.53773347851579, + "grad_norm": 0.6198245286941528, + "learning_rate": 6.251088777219431e-06, + "loss": 0.1867201805114746, + "step": 261300 + }, + { + "epoch": 87.57123712203702, + "grad_norm": 0.6500935554504395, + "learning_rate": 6.234338358458962e-06, + "loss": 0.1860578727722168, + "step": 261400 + }, + { + "epoch": 87.60474076555825, + "grad_norm": 0.5311732888221741, + "learning_rate": 6.217587939698493e-06, + "loss": 0.18565948486328124, + "step": 261500 + }, + { + "epoch": 87.63824440907949, + "grad_norm": 0.736834704875946, + "learning_rate": 6.2008375209380235e-06, + "loss": 0.18650445938110352, + "step": 261600 + }, + { + "epoch": 87.67174805260072, + "grad_norm": 0.567558228969574, + "learning_rate": 6.184087102177555e-06, + "loss": 0.18658845901489257, + "step": 261700 + }, + { + "epoch": 87.70525169612195, + "grad_norm": 0.4581720232963562, + "learning_rate": 6.167336683417086e-06, + "loss": 0.18680118560791015, + "step": 261800 + }, + { + "epoch": 87.73875533964319, + "grad_norm": 0.6665058135986328, + "learning_rate": 6.150586264656617e-06, + "loss": 0.18713037490844728, + "step": 261900 + }, + { + "epoch": 87.77225898316442, + "grad_norm": 0.5811572670936584, + "learning_rate": 6.133835845896148e-06, + "loss": 0.1872100830078125, + "step": 262000 + }, + { + "epoch": 87.80576262668565, + "grad_norm": 0.5392748117446899, + "learning_rate": 6.117085427135679e-06, + "loss": 0.18684432983398438, + "step": 262100 + }, + { + "epoch": 87.83926627020689, + "grad_norm": 0.5572375655174255, + "learning_rate": 6.100502512562814e-06, + "loss": 0.18601211547851562, + "step": 262200 + }, + { + "epoch": 87.87276991372812, + "grad_norm": 0.6901904940605164, + "learning_rate": 6.083752093802345e-06, + "loss": 0.18694435119628905, + "step": 262300 + }, + { + "epoch": 87.90627355724935, + "grad_norm": 0.5973819494247437, + "learning_rate": 6.067001675041876e-06, + "loss": 0.18795061111450195, + "step": 262400 + }, + { + "epoch": 87.93977720077058, + "grad_norm": 0.5847058296203613, + "learning_rate": 6.050251256281407e-06, + "loss": 0.1869793701171875, + "step": 262500 + }, + { + "epoch": 87.97328084429182, + "grad_norm": 0.5993967056274414, + "learning_rate": 6.033500837520938e-06, + "loss": 0.1878180694580078, + "step": 262600 + }, + { + "epoch": 88.00670072870425, + "grad_norm": 0.532988429069519, + "learning_rate": 6.01675041876047e-06, + "loss": 0.18654600143432618, + "step": 262700 + }, + { + "epoch": 88.04020437222547, + "grad_norm": 0.5655828714370728, + "learning_rate": 6e-06, + "loss": 0.18439163208007814, + "step": 262800 + }, + { + "epoch": 88.07370801574672, + "grad_norm": 0.5616503357887268, + "learning_rate": 5.9832495812395315e-06, + "loss": 0.1837614631652832, + "step": 262900 + }, + { + "epoch": 88.10721165926795, + "grad_norm": 0.4429595470428467, + "learning_rate": 5.966499162479063e-06, + "loss": 0.18412097930908203, + "step": 263000 + }, + { + "epoch": 88.14071530278918, + "grad_norm": 0.4846174120903015, + "learning_rate": 5.949748743718593e-06, + "loss": 0.18443714141845702, + "step": 263100 + }, + { + "epoch": 88.17421894631042, + "grad_norm": 0.5053496956825256, + "learning_rate": 5.932998324958124e-06, + "loss": 0.1849221420288086, + "step": 263200 + }, + { + "epoch": 88.20772258983165, + "grad_norm": 0.5732136368751526, + "learning_rate": 5.916247906197655e-06, + "loss": 0.18445537567138673, + "step": 263300 + }, + { + "epoch": 88.24122623335288, + "grad_norm": 0.671688437461853, + "learning_rate": 5.899497487437186e-06, + "loss": 0.18499351501464845, + "step": 263400 + }, + { + "epoch": 88.2747298768741, + "grad_norm": 0.5794471502304077, + "learning_rate": 5.882747068676717e-06, + "loss": 0.18498233795166016, + "step": 263500 + }, + { + "epoch": 88.30823352039535, + "grad_norm": 0.5552869439125061, + "learning_rate": 5.865996649916248e-06, + "loss": 0.18548328399658204, + "step": 263600 + }, + { + "epoch": 88.34173716391658, + "grad_norm": 0.5315948724746704, + "learning_rate": 5.849246231155779e-06, + "loss": 0.18444686889648437, + "step": 263700 + }, + { + "epoch": 88.3752408074378, + "grad_norm": 0.6291096210479736, + "learning_rate": 5.83249581239531e-06, + "loss": 0.18497331619262694, + "step": 263800 + }, + { + "epoch": 88.40874445095905, + "grad_norm": 0.6358299851417542, + "learning_rate": 5.815745393634841e-06, + "loss": 0.1851169967651367, + "step": 263900 + }, + { + "epoch": 88.44224809448028, + "grad_norm": 0.5641636848449707, + "learning_rate": 5.798994974874372e-06, + "loss": 0.18581708908081054, + "step": 264000 + }, + { + "epoch": 88.4757517380015, + "grad_norm": 0.646516740322113, + "learning_rate": 5.782244556113904e-06, + "loss": 0.18616880416870119, + "step": 264100 + }, + { + "epoch": 88.50925538152273, + "grad_norm": 0.5487529635429382, + "learning_rate": 5.765494137353434e-06, + "loss": 0.18532644271850585, + "step": 264200 + }, + { + "epoch": 88.54275902504398, + "grad_norm": 0.5325868129730225, + "learning_rate": 5.748911222780569e-06, + "loss": 0.1863404655456543, + "step": 264300 + }, + { + "epoch": 88.5762626685652, + "grad_norm": 0.5119947195053101, + "learning_rate": 5.7321608040201006e-06, + "loss": 0.1858821678161621, + "step": 264400 + }, + { + "epoch": 88.60976631208644, + "grad_norm": 0.5027479529380798, + "learning_rate": 5.715410385259632e-06, + "loss": 0.18715795516967773, + "step": 264500 + }, + { + "epoch": 88.64326995560768, + "grad_norm": 0.6127695441246033, + "learning_rate": 5.6986599664991625e-06, + "loss": 0.1849302864074707, + "step": 264600 + }, + { + "epoch": 88.67677359912891, + "grad_norm": 0.5115147233009338, + "learning_rate": 5.681909547738694e-06, + "loss": 0.18587541580200195, + "step": 264700 + }, + { + "epoch": 88.71027724265014, + "grad_norm": 0.5533451437950134, + "learning_rate": 5.665159128978225e-06, + "loss": 0.1865237045288086, + "step": 264800 + }, + { + "epoch": 88.74378088617136, + "grad_norm": 0.7907216548919678, + "learning_rate": 5.648408710217756e-06, + "loss": 0.18539291381835937, + "step": 264900 + }, + { + "epoch": 88.77728452969261, + "grad_norm": 0.6062288284301758, + "learning_rate": 5.631658291457287e-06, + "loss": 0.18620302200317382, + "step": 265000 + }, + { + "epoch": 88.81078817321384, + "grad_norm": 0.5403768420219421, + "learning_rate": 5.6149078726968176e-06, + "loss": 0.18627490997314453, + "step": 265100 + }, + { + "epoch": 88.84429181673507, + "grad_norm": 0.47379136085510254, + "learning_rate": 5.598157453936349e-06, + "loss": 0.18624238967895507, + "step": 265200 + }, + { + "epoch": 88.87779546025631, + "grad_norm": 0.6376839280128479, + "learning_rate": 5.5814070351758794e-06, + "loss": 0.18673583984375, + "step": 265300 + }, + { + "epoch": 88.91129910377754, + "grad_norm": 0.5186110138893127, + "learning_rate": 5.564656616415411e-06, + "loss": 0.18633831024169922, + "step": 265400 + }, + { + "epoch": 88.94480274729877, + "grad_norm": 0.5298460721969604, + "learning_rate": 5.547906197654941e-06, + "loss": 0.18666128158569337, + "step": 265500 + }, + { + "epoch": 88.97830639082, + "grad_norm": 0.6699676513671875, + "learning_rate": 5.531155778894473e-06, + "loss": 0.18743110656738282, + "step": 265600 + }, + { + "epoch": 89.01172627523243, + "grad_norm": 0.7564083933830261, + "learning_rate": 5.514405360134003e-06, + "loss": 0.18580760955810546, + "step": 265700 + }, + { + "epoch": 89.04522991875366, + "grad_norm": 0.4524352252483368, + "learning_rate": 5.4976549413735346e-06, + "loss": 0.18369712829589843, + "step": 265800 + }, + { + "epoch": 89.07873356227489, + "grad_norm": 0.5215601325035095, + "learning_rate": 5.480904522613066e-06, + "loss": 0.18392160415649414, + "step": 265900 + }, + { + "epoch": 89.11223720579613, + "grad_norm": 0.5558773875236511, + "learning_rate": 5.4641541038525964e-06, + "loss": 0.18470701217651367, + "step": 266000 + }, + { + "epoch": 89.14574084931736, + "grad_norm": 0.5827058553695679, + "learning_rate": 5.447403685092128e-06, + "loss": 0.18471426010131836, + "step": 266100 + }, + { + "epoch": 89.17924449283859, + "grad_norm": 0.6175124645233154, + "learning_rate": 5.430653266331658e-06, + "loss": 0.18419244766235351, + "step": 266200 + }, + { + "epoch": 89.21274813635983, + "grad_norm": 0.5262554883956909, + "learning_rate": 5.41390284757119e-06, + "loss": 0.18310293197631836, + "step": 266300 + }, + { + "epoch": 89.24625177988106, + "grad_norm": 0.5767905712127686, + "learning_rate": 5.397319932998325e-06, + "loss": 0.1847786521911621, + "step": 266400 + }, + { + "epoch": 89.27975542340229, + "grad_norm": 0.45258834958076477, + "learning_rate": 5.380569514237856e-06, + "loss": 0.18412622451782226, + "step": 266500 + }, + { + "epoch": 89.31325906692352, + "grad_norm": 0.546626091003418, + "learning_rate": 5.363819095477387e-06, + "loss": 0.1842401695251465, + "step": 266600 + }, + { + "epoch": 89.34676271044476, + "grad_norm": 0.48357829451560974, + "learning_rate": 5.347068676716918e-06, + "loss": 0.18534393310546876, + "step": 266700 + }, + { + "epoch": 89.380266353966, + "grad_norm": 0.5069622993469238, + "learning_rate": 5.330318257956449e-06, + "loss": 0.18502262115478516, + "step": 266800 + }, + { + "epoch": 89.41376999748722, + "grad_norm": 0.6336747407913208, + "learning_rate": 5.31356783919598e-06, + "loss": 0.18472951889038086, + "step": 266900 + }, + { + "epoch": 89.44727364100847, + "grad_norm": 0.5919739603996277, + "learning_rate": 5.296817420435511e-06, + "loss": 0.185218505859375, + "step": 267000 + }, + { + "epoch": 89.4807772845297, + "grad_norm": 0.48863354325294495, + "learning_rate": 5.280067001675043e-06, + "loss": 0.18563102722167968, + "step": 267100 + }, + { + "epoch": 89.51428092805092, + "grad_norm": 0.6356630921363831, + "learning_rate": 5.263316582914573e-06, + "loss": 0.18483596801757812, + "step": 267200 + }, + { + "epoch": 89.54778457157215, + "grad_norm": 0.6572123765945435, + "learning_rate": 5.2465661641541045e-06, + "loss": 0.18614835739135743, + "step": 267300 + }, + { + "epoch": 89.5812882150934, + "grad_norm": 0.4905427396297455, + "learning_rate": 5.229815745393636e-06, + "loss": 0.18502700805664063, + "step": 267400 + }, + { + "epoch": 89.61479185861462, + "grad_norm": 0.53782057762146, + "learning_rate": 5.213065326633166e-06, + "loss": 0.1857935905456543, + "step": 267500 + }, + { + "epoch": 89.64829550213585, + "grad_norm": 0.6450851559638977, + "learning_rate": 5.196314907872697e-06, + "loss": 0.18643198013305665, + "step": 267600 + }, + { + "epoch": 89.6817991456571, + "grad_norm": 0.6173422336578369, + "learning_rate": 5.179564489112227e-06, + "loss": 0.1862980079650879, + "step": 267700 + }, + { + "epoch": 89.71530278917832, + "grad_norm": 0.564839243888855, + "learning_rate": 5.162814070351759e-06, + "loss": 0.1857726287841797, + "step": 267800 + }, + { + "epoch": 89.74880643269955, + "grad_norm": 0.5647773742675781, + "learning_rate": 5.14606365159129e-06, + "loss": 0.18673162460327147, + "step": 267900 + }, + { + "epoch": 89.7823100762208, + "grad_norm": 0.5144478678703308, + "learning_rate": 5.129313232830821e-06, + "loss": 0.18588918685913086, + "step": 268000 + }, + { + "epoch": 89.81581371974202, + "grad_norm": 0.47654643654823303, + "learning_rate": 5.112562814070352e-06, + "loss": 0.1857970428466797, + "step": 268100 + }, + { + "epoch": 89.84931736326325, + "grad_norm": 0.6091083288192749, + "learning_rate": 5.095812395309883e-06, + "loss": 0.18509552001953125, + "step": 268200 + }, + { + "epoch": 89.88282100678448, + "grad_norm": 0.5405870676040649, + "learning_rate": 5.079061976549414e-06, + "loss": 0.18604494094848634, + "step": 268300 + }, + { + "epoch": 89.91632465030573, + "grad_norm": 0.5205516815185547, + "learning_rate": 5.06247906197655e-06, + "loss": 0.1859523582458496, + "step": 268400 + }, + { + "epoch": 89.94982829382695, + "grad_norm": 0.5739098787307739, + "learning_rate": 5.04572864321608e-06, + "loss": 0.1862436866760254, + "step": 268500 + }, + { + "epoch": 89.98333193734818, + "grad_norm": 0.6661388278007507, + "learning_rate": 5.028978224455612e-06, + "loss": 0.18580772399902343, + "step": 268600 + }, + { + "epoch": 90.01675182176062, + "grad_norm": 0.5268995761871338, + "learning_rate": 5.012227805695142e-06, + "loss": 0.18514154434204103, + "step": 268700 + }, + { + "epoch": 90.05025546528185, + "grad_norm": 0.752692461013794, + "learning_rate": 4.9954773869346735e-06, + "loss": 0.18381275177001954, + "step": 268800 + }, + { + "epoch": 90.08375910880308, + "grad_norm": 0.6190829873085022, + "learning_rate": 4.978726968174205e-06, + "loss": 0.1839034652709961, + "step": 268900 + }, + { + "epoch": 90.11726275232432, + "grad_norm": 0.5042902827262878, + "learning_rate": 4.961976549413735e-06, + "loss": 0.18465267181396483, + "step": 269000 + }, + { + "epoch": 90.15076639584555, + "grad_norm": 0.5969473719596863, + "learning_rate": 4.945226130653267e-06, + "loss": 0.18303195953369142, + "step": 269100 + }, + { + "epoch": 90.18427003936678, + "grad_norm": 0.6725231409072876, + "learning_rate": 4.928475711892797e-06, + "loss": 0.18475696563720703, + "step": 269200 + }, + { + "epoch": 90.21777368288801, + "grad_norm": 0.456318736076355, + "learning_rate": 4.911725293132329e-06, + "loss": 0.18457313537597655, + "step": 269300 + }, + { + "epoch": 90.25127732640925, + "grad_norm": 0.5855475068092346, + "learning_rate": 4.89497487437186e-06, + "loss": 0.18437076568603517, + "step": 269400 + }, + { + "epoch": 90.28478096993048, + "grad_norm": 0.529436469078064, + "learning_rate": 4.8782244556113905e-06, + "loss": 0.18375736236572265, + "step": 269500 + }, + { + "epoch": 90.31828461345171, + "grad_norm": 0.5961082577705383, + "learning_rate": 4.861474036850922e-06, + "loss": 0.18455684661865235, + "step": 269600 + }, + { + "epoch": 90.35178825697295, + "grad_norm": 0.5185309052467346, + "learning_rate": 4.844723618090452e-06, + "loss": 0.1851878547668457, + "step": 269700 + }, + { + "epoch": 90.38529190049418, + "grad_norm": 0.40312084555625916, + "learning_rate": 4.827973199329983e-06, + "loss": 0.18382146835327148, + "step": 269800 + }, + { + "epoch": 90.41879554401541, + "grad_norm": 0.5168654322624207, + "learning_rate": 4.811222780569514e-06, + "loss": 0.18515111923217772, + "step": 269900 + }, + { + "epoch": 90.45229918753664, + "grad_norm": 0.5459558963775635, + "learning_rate": 4.794472361809046e-06, + "loss": 0.18459436416625977, + "step": 270000 + }, + { + "epoch": 90.48580283105788, + "grad_norm": 0.5190539956092834, + "learning_rate": 4.777721943048576e-06, + "loss": 0.1858159065246582, + "step": 270100 + }, + { + "epoch": 90.51930647457911, + "grad_norm": 0.4919435381889343, + "learning_rate": 4.7609715242881075e-06, + "loss": 0.18439708709716796, + "step": 270200 + }, + { + "epoch": 90.55281011810034, + "grad_norm": 0.4750555157661438, + "learning_rate": 4.744221105527638e-06, + "loss": 0.1842019462585449, + "step": 270300 + }, + { + "epoch": 90.58631376162158, + "grad_norm": 0.6852492690086365, + "learning_rate": 4.727638190954775e-06, + "loss": 0.18526426315307618, + "step": 270400 + }, + { + "epoch": 90.61981740514281, + "grad_norm": 0.6319891810417175, + "learning_rate": 4.710887772194305e-06, + "loss": 0.1851023864746094, + "step": 270500 + }, + { + "epoch": 90.65332104866404, + "grad_norm": 0.49747490882873535, + "learning_rate": 4.694137353433836e-06, + "loss": 0.18547800064086914, + "step": 270600 + }, + { + "epoch": 90.68682469218527, + "grad_norm": 0.4589165151119232, + "learning_rate": 4.677386934673366e-06, + "loss": 0.1850799560546875, + "step": 270700 + }, + { + "epoch": 90.72032833570651, + "grad_norm": 0.647290050983429, + "learning_rate": 4.660636515912898e-06, + "loss": 0.18597793579101562, + "step": 270800 + }, + { + "epoch": 90.75383197922774, + "grad_norm": 0.6682136058807373, + "learning_rate": 4.643886097152429e-06, + "loss": 0.1855238914489746, + "step": 270900 + }, + { + "epoch": 90.78733562274897, + "grad_norm": 0.5782601237297058, + "learning_rate": 4.62713567839196e-06, + "loss": 0.18538637161254884, + "step": 271000 + }, + { + "epoch": 90.82083926627021, + "grad_norm": 0.5579448938369751, + "learning_rate": 4.610385259631491e-06, + "loss": 0.1856587600708008, + "step": 271100 + }, + { + "epoch": 90.85434290979144, + "grad_norm": 0.5620039105415344, + "learning_rate": 4.593634840871022e-06, + "loss": 0.18588842391967775, + "step": 271200 + }, + { + "epoch": 90.88784655331267, + "grad_norm": 0.6530576348304749, + "learning_rate": 4.576884422110553e-06, + "loss": 0.18567676544189454, + "step": 271300 + }, + { + "epoch": 90.9213501968339, + "grad_norm": 0.6144570708274841, + "learning_rate": 4.560134003350084e-06, + "loss": 0.18605300903320313, + "step": 271400 + }, + { + "epoch": 90.95485384035514, + "grad_norm": 0.5530267357826233, + "learning_rate": 4.5433835845896156e-06, + "loss": 0.18595090866088868, + "step": 271500 + }, + { + "epoch": 90.98835748387637, + "grad_norm": 0.5598485469818115, + "learning_rate": 4.526633165829146e-06, + "loss": 0.1865631675720215, + "step": 271600 + }, + { + "epoch": 91.0217773682888, + "grad_norm": 0.4829404652118683, + "learning_rate": 4.5098827470686774e-06, + "loss": 0.18459095001220704, + "step": 271700 + }, + { + "epoch": 91.05528101181004, + "grad_norm": 0.7115753889083862, + "learning_rate": 4.493132328308208e-06, + "loss": 0.1838077163696289, + "step": 271800 + }, + { + "epoch": 91.08878465533127, + "grad_norm": 0.557543158531189, + "learning_rate": 4.4763819095477385e-06, + "loss": 0.1847819519042969, + "step": 271900 + }, + { + "epoch": 91.1222882988525, + "grad_norm": 0.5555517077445984, + "learning_rate": 4.45963149078727e-06, + "loss": 0.18323816299438478, + "step": 272000 + }, + { + "epoch": 91.15579194237374, + "grad_norm": 0.5963297486305237, + "learning_rate": 4.4428810720268e-06, + "loss": 0.1839584732055664, + "step": 272100 + }, + { + "epoch": 91.18929558589497, + "grad_norm": 0.58128821849823, + "learning_rate": 4.426130653266332e-06, + "loss": 0.1841065788269043, + "step": 272200 + }, + { + "epoch": 91.2227992294162, + "grad_norm": 0.4545518457889557, + "learning_rate": 4.409380234505863e-06, + "loss": 0.1835637855529785, + "step": 272300 + }, + { + "epoch": 91.25630287293743, + "grad_norm": 0.5214167237281799, + "learning_rate": 4.392629815745394e-06, + "loss": 0.18443021774291993, + "step": 272400 + }, + { + "epoch": 91.28980651645867, + "grad_norm": 0.46389076113700867, + "learning_rate": 4.3760469011725295e-06, + "loss": 0.18393590927124023, + "step": 272500 + }, + { + "epoch": 91.3233101599799, + "grad_norm": 0.6274188160896301, + "learning_rate": 4.359296482412061e-06, + "loss": 0.18395915985107422, + "step": 272600 + }, + { + "epoch": 91.35681380350113, + "grad_norm": 0.5550768971443176, + "learning_rate": 4.342546063651591e-06, + "loss": 0.18435438156127928, + "step": 272700 + }, + { + "epoch": 91.39031744702237, + "grad_norm": 0.5795305967330933, + "learning_rate": 4.325795644891122e-06, + "loss": 0.18411699295043946, + "step": 272800 + }, + { + "epoch": 91.4238210905436, + "grad_norm": 0.5524510145187378, + "learning_rate": 4.309045226130653e-06, + "loss": 0.18482681274414062, + "step": 272900 + }, + { + "epoch": 91.45732473406483, + "grad_norm": 0.4713156521320343, + "learning_rate": 4.292294807370185e-06, + "loss": 0.18384735107421876, + "step": 273000 + }, + { + "epoch": 91.49082837758607, + "grad_norm": 0.5844002366065979, + "learning_rate": 4.275544388609715e-06, + "loss": 0.1849127197265625, + "step": 273100 + }, + { + "epoch": 91.5243320211073, + "grad_norm": 0.5675417184829712, + "learning_rate": 4.2587939698492465e-06, + "loss": 0.18468017578125, + "step": 273200 + }, + { + "epoch": 91.55783566462853, + "grad_norm": 0.5666652917861938, + "learning_rate": 4.242043551088777e-06, + "loss": 0.18494237899780275, + "step": 273300 + }, + { + "epoch": 91.59133930814976, + "grad_norm": 0.46655622124671936, + "learning_rate": 4.225293132328308e-06, + "loss": 0.18492658615112303, + "step": 273400 + }, + { + "epoch": 91.624842951671, + "grad_norm": 0.5972129106521606, + "learning_rate": 4.20854271356784e-06, + "loss": 0.1859132766723633, + "step": 273500 + }, + { + "epoch": 91.65834659519223, + "grad_norm": 0.5144099593162537, + "learning_rate": 4.19179229480737e-06, + "loss": 0.1850869369506836, + "step": 273600 + }, + { + "epoch": 91.69185023871346, + "grad_norm": 0.46821364760398865, + "learning_rate": 4.175041876046902e-06, + "loss": 0.1852436828613281, + "step": 273700 + }, + { + "epoch": 91.7253538822347, + "grad_norm": 0.6473614573478699, + "learning_rate": 4.158291457286433e-06, + "loss": 0.1850813102722168, + "step": 273800 + }, + { + "epoch": 91.75885752575593, + "grad_norm": 0.7392449378967285, + "learning_rate": 4.1415410385259635e-06, + "loss": 0.18418787002563478, + "step": 273900 + }, + { + "epoch": 91.79236116927716, + "grad_norm": 0.5982920527458191, + "learning_rate": 4.124790619765494e-06, + "loss": 0.18475706100463868, + "step": 274000 + }, + { + "epoch": 91.82586481279839, + "grad_norm": 0.5010756254196167, + "learning_rate": 4.108040201005025e-06, + "loss": 0.18550140380859376, + "step": 274100 + }, + { + "epoch": 91.85936845631963, + "grad_norm": 0.42886313796043396, + "learning_rate": 4.091289782244556e-06, + "loss": 0.1851121711730957, + "step": 274200 + }, + { + "epoch": 91.89287209984086, + "grad_norm": 0.6056686043739319, + "learning_rate": 4.074539363484087e-06, + "loss": 0.18567405700683592, + "step": 274300 + }, + { + "epoch": 91.92637574336209, + "grad_norm": 0.6657816171646118, + "learning_rate": 4.057788944723618e-06, + "loss": 0.185372314453125, + "step": 274400 + }, + { + "epoch": 91.95987938688333, + "grad_norm": 0.7955371737480164, + "learning_rate": 4.041038525963149e-06, + "loss": 0.18559362411499022, + "step": 274500 + }, + { + "epoch": 91.99338303040456, + "grad_norm": 0.5486671924591064, + "learning_rate": 4.024455611390285e-06, + "loss": 0.18554763793945311, + "step": 274600 + }, + { + "epoch": 92.02680291481698, + "grad_norm": 0.4851992130279541, + "learning_rate": 4.007705192629816e-06, + "loss": 0.1837984085083008, + "step": 274700 + }, + { + "epoch": 92.06030655833823, + "grad_norm": 0.6564006805419922, + "learning_rate": 3.990954773869347e-06, + "loss": 0.1828889274597168, + "step": 274800 + }, + { + "epoch": 92.09381020185945, + "grad_norm": 0.4906276762485504, + "learning_rate": 3.974204355108877e-06, + "loss": 0.18224969863891602, + "step": 274900 + }, + { + "epoch": 92.12731384538068, + "grad_norm": 0.47474029660224915, + "learning_rate": 3.957453936348409e-06, + "loss": 0.18334747314453126, + "step": 275000 + }, + { + "epoch": 92.16081748890191, + "grad_norm": 0.5322253704071045, + "learning_rate": 3.940703517587939e-06, + "loss": 0.18336933135986327, + "step": 275100 + }, + { + "epoch": 92.19432113242316, + "grad_norm": 0.6422849297523499, + "learning_rate": 3.923953098827471e-06, + "loss": 0.18472524642944335, + "step": 275200 + }, + { + "epoch": 92.22782477594438, + "grad_norm": 0.555906355381012, + "learning_rate": 3.907202680067002e-06, + "loss": 0.18407018661499022, + "step": 275300 + }, + { + "epoch": 92.26132841946561, + "grad_norm": 0.5680630207061768, + "learning_rate": 3.8904522613065325e-06, + "loss": 0.18363739013671876, + "step": 275400 + }, + { + "epoch": 92.29483206298686, + "grad_norm": 0.5128674507141113, + "learning_rate": 3.873701842546064e-06, + "loss": 0.18399686813354493, + "step": 275500 + }, + { + "epoch": 92.32833570650808, + "grad_norm": 0.6279745697975159, + "learning_rate": 3.856951423785595e-06, + "loss": 0.18378208160400392, + "step": 275600 + }, + { + "epoch": 92.36183935002931, + "grad_norm": 0.601681113243103, + "learning_rate": 3.840201005025126e-06, + "loss": 0.18319509506225587, + "step": 275700 + }, + { + "epoch": 92.39534299355054, + "grad_norm": 0.5092858672142029, + "learning_rate": 3.823450586264657e-06, + "loss": 0.18382539749145507, + "step": 275800 + }, + { + "epoch": 92.42884663707179, + "grad_norm": 0.5969312191009521, + "learning_rate": 3.8067001675041877e-06, + "loss": 0.1847224235534668, + "step": 275900 + }, + { + "epoch": 92.46235028059301, + "grad_norm": 0.49249494075775146, + "learning_rate": 3.7899497487437186e-06, + "loss": 0.18417783737182616, + "step": 276000 + }, + { + "epoch": 92.49585392411424, + "grad_norm": 0.5279737710952759, + "learning_rate": 3.77319932998325e-06, + "loss": 0.18486669540405273, + "step": 276100 + }, + { + "epoch": 92.52935756763549, + "grad_norm": 0.5199563503265381, + "learning_rate": 3.7564489112227805e-06, + "loss": 0.18549766540527343, + "step": 276200 + }, + { + "epoch": 92.56286121115672, + "grad_norm": 0.5814909934997559, + "learning_rate": 3.739698492462312e-06, + "loss": 0.18439958572387696, + "step": 276300 + }, + { + "epoch": 92.59636485467794, + "grad_norm": 0.5165287852287292, + "learning_rate": 3.7229480737018428e-06, + "loss": 0.18408321380615233, + "step": 276400 + }, + { + "epoch": 92.62986849819917, + "grad_norm": 0.47519955039024353, + "learning_rate": 3.7061976549413733e-06, + "loss": 0.18507766723632812, + "step": 276500 + }, + { + "epoch": 92.66337214172042, + "grad_norm": 0.5444027185440063, + "learning_rate": 3.6894472361809047e-06, + "loss": 0.1847231101989746, + "step": 276600 + }, + { + "epoch": 92.69687578524164, + "grad_norm": 0.46999087929725647, + "learning_rate": 3.6728643216080406e-06, + "loss": 0.18614614486694336, + "step": 276700 + }, + { + "epoch": 92.73037942876287, + "grad_norm": 0.8311703205108643, + "learning_rate": 3.6561139028475715e-06, + "loss": 0.18451465606689454, + "step": 276800 + }, + { + "epoch": 92.76388307228412, + "grad_norm": 0.5036934614181519, + "learning_rate": 3.639363484087102e-06, + "loss": 0.18498050689697265, + "step": 276900 + }, + { + "epoch": 92.79738671580535, + "grad_norm": 0.7324947714805603, + "learning_rate": 3.6226130653266334e-06, + "loss": 0.184973087310791, + "step": 277000 + }, + { + "epoch": 92.83089035932657, + "grad_norm": 0.4393749535083771, + "learning_rate": 3.6058626465661647e-06, + "loss": 0.1858364486694336, + "step": 277100 + }, + { + "epoch": 92.8643940028478, + "grad_norm": 0.6435522437095642, + "learning_rate": 3.5891122278056953e-06, + "loss": 0.18547016143798828, + "step": 277200 + }, + { + "epoch": 92.89789764636905, + "grad_norm": 0.4739900529384613, + "learning_rate": 3.572361809045226e-06, + "loss": 0.18432489395141602, + "step": 277300 + }, + { + "epoch": 92.93140128989027, + "grad_norm": 0.5389711856842041, + "learning_rate": 3.555611390284757e-06, + "loss": 0.18447877883911132, + "step": 277400 + }, + { + "epoch": 92.9649049334115, + "grad_norm": 0.5507364869117737, + "learning_rate": 3.538860971524288e-06, + "loss": 0.18475034713745117, + "step": 277500 + }, + { + "epoch": 92.99840857693275, + "grad_norm": 0.6159628629684448, + "learning_rate": 3.5221105527638194e-06, + "loss": 0.18557378768920899, + "step": 277600 + }, + { + "epoch": 93.03182846134517, + "grad_norm": 0.555902361869812, + "learning_rate": 3.50536013400335e-06, + "loss": 0.18302148818969727, + "step": 277700 + }, + { + "epoch": 93.0653321048664, + "grad_norm": 0.6510830521583557, + "learning_rate": 3.4886097152428813e-06, + "loss": 0.18316720962524413, + "step": 277800 + }, + { + "epoch": 93.09883574838764, + "grad_norm": 0.5541417598724365, + "learning_rate": 3.4718592964824123e-06, + "loss": 0.18269014358520508, + "step": 277900 + }, + { + "epoch": 93.13233939190887, + "grad_norm": 0.5546096563339233, + "learning_rate": 3.455108877721943e-06, + "loss": 0.18281387329101562, + "step": 278000 + }, + { + "epoch": 93.1658430354301, + "grad_norm": 0.5906556248664856, + "learning_rate": 3.438358458961474e-06, + "loss": 0.18238527297973633, + "step": 278100 + }, + { + "epoch": 93.19934667895133, + "grad_norm": 0.5291375517845154, + "learning_rate": 3.4216080402010055e-06, + "loss": 0.18321968078613282, + "step": 278200 + }, + { + "epoch": 93.23285032247257, + "grad_norm": 0.49932029843330383, + "learning_rate": 3.404857621440536e-06, + "loss": 0.18250431060791017, + "step": 278300 + }, + { + "epoch": 93.2663539659938, + "grad_norm": 0.5344804525375366, + "learning_rate": 3.3881072026800674e-06, + "loss": 0.18370258331298828, + "step": 278400 + }, + { + "epoch": 93.29985760951503, + "grad_norm": 0.547133207321167, + "learning_rate": 3.371356783919598e-06, + "loss": 0.18311479568481445, + "step": 278500 + }, + { + "epoch": 93.33336125303627, + "grad_norm": 0.6846116185188293, + "learning_rate": 3.354606365159129e-06, + "loss": 0.18370712280273438, + "step": 278600 + }, + { + "epoch": 93.3668648965575, + "grad_norm": 0.5736503005027771, + "learning_rate": 3.33785594639866e-06, + "loss": 0.18427995681762696, + "step": 278700 + }, + { + "epoch": 93.40036854007873, + "grad_norm": 0.5363325476646423, + "learning_rate": 3.321273031825796e-06, + "loss": 0.18477426528930663, + "step": 278800 + }, + { + "epoch": 93.43387218359997, + "grad_norm": 0.5641268491744995, + "learning_rate": 3.3045226130653266e-06, + "loss": 0.18418367385864257, + "step": 278900 + }, + { + "epoch": 93.4673758271212, + "grad_norm": 0.5597323179244995, + "learning_rate": 3.2877721943048576e-06, + "loss": 0.18357982635498046, + "step": 279000 + }, + { + "epoch": 93.50087947064243, + "grad_norm": 0.5814647078514099, + "learning_rate": 3.271021775544389e-06, + "loss": 0.18340383529663085, + "step": 279100 + }, + { + "epoch": 93.53438311416366, + "grad_norm": 0.6923455595970154, + "learning_rate": 3.2542713567839194e-06, + "loss": 0.18384368896484374, + "step": 279200 + }, + { + "epoch": 93.5678867576849, + "grad_norm": 0.5960889458656311, + "learning_rate": 3.237520938023451e-06, + "loss": 0.18405187606811524, + "step": 279300 + }, + { + "epoch": 93.60139040120613, + "grad_norm": 0.4457511305809021, + "learning_rate": 3.2207705192629817e-06, + "loss": 0.1838911247253418, + "step": 279400 + }, + { + "epoch": 93.63489404472736, + "grad_norm": 0.5525141954421997, + "learning_rate": 3.2040201005025127e-06, + "loss": 0.18411317825317383, + "step": 279500 + }, + { + "epoch": 93.6683976882486, + "grad_norm": 0.4308946430683136, + "learning_rate": 3.1872696817420436e-06, + "loss": 0.18421003341674805, + "step": 279600 + }, + { + "epoch": 93.70190133176983, + "grad_norm": 0.4606753885746002, + "learning_rate": 3.170519262981575e-06, + "loss": 0.1856534194946289, + "step": 279700 + }, + { + "epoch": 93.73540497529106, + "grad_norm": 0.5044844150543213, + "learning_rate": 3.1537688442211055e-06, + "loss": 0.1849703598022461, + "step": 279800 + }, + { + "epoch": 93.76890861881229, + "grad_norm": 0.5462206602096558, + "learning_rate": 3.137018425460637e-06, + "loss": 0.18439491271972655, + "step": 279900 + }, + { + "epoch": 93.80241226233353, + "grad_norm": 0.6235095262527466, + "learning_rate": 3.120268006700168e-06, + "loss": 0.18433120727539062, + "step": 280000 + }, + { + "epoch": 93.83591590585476, + "grad_norm": 0.49713248014450073, + "learning_rate": 3.1035175879396987e-06, + "loss": 0.18527395248413087, + "step": 280100 + }, + { + "epoch": 93.86941954937599, + "grad_norm": 0.43499988317489624, + "learning_rate": 3.0867671691792297e-06, + "loss": 0.1845208740234375, + "step": 280200 + }, + { + "epoch": 93.90292319289723, + "grad_norm": 0.5285036563873291, + "learning_rate": 3.0700167504187606e-06, + "loss": 0.1845704460144043, + "step": 280300 + }, + { + "epoch": 93.93642683641846, + "grad_norm": 0.7002624869346619, + "learning_rate": 3.0532663316582916e-06, + "loss": 0.18544256210327148, + "step": 280400 + }, + { + "epoch": 93.96993047993969, + "grad_norm": 0.5086694955825806, + "learning_rate": 3.0365159128978225e-06, + "loss": 0.18481266021728515, + "step": 280500 + }, + { + "epoch": 94.00335036435213, + "grad_norm": 0.541530966758728, + "learning_rate": 3.019765494137354e-06, + "loss": 0.18497087478637694, + "step": 280600 + }, + { + "epoch": 94.03685400787336, + "grad_norm": 0.5113808512687683, + "learning_rate": 3.0030150753768844e-06, + "loss": 0.1830722427368164, + "step": 280700 + }, + { + "epoch": 94.07035765139459, + "grad_norm": 0.578902542591095, + "learning_rate": 2.9864321608040203e-06, + "loss": 0.1829450798034668, + "step": 280800 + }, + { + "epoch": 94.10386129491582, + "grad_norm": 0.47617286443710327, + "learning_rate": 2.9696817420435512e-06, + "loss": 0.18288434982299806, + "step": 280900 + }, + { + "epoch": 94.13736493843706, + "grad_norm": 0.5248568654060364, + "learning_rate": 2.952931323283082e-06, + "loss": 0.18265800476074218, + "step": 281000 + }, + { + "epoch": 94.17086858195829, + "grad_norm": 0.5427269339561462, + "learning_rate": 2.936180904522613e-06, + "loss": 0.1820301628112793, + "step": 281100 + }, + { + "epoch": 94.20437222547952, + "grad_norm": 0.5137001276016235, + "learning_rate": 2.919430485762144e-06, + "loss": 0.18303417205810546, + "step": 281200 + }, + { + "epoch": 94.23787586900076, + "grad_norm": 0.5321929454803467, + "learning_rate": 2.902680067001675e-06, + "loss": 0.1835261344909668, + "step": 281300 + }, + { + "epoch": 94.27137951252199, + "grad_norm": 0.4833122491836548, + "learning_rate": 2.8859296482412063e-06, + "loss": 0.18361148834228516, + "step": 281400 + }, + { + "epoch": 94.30488315604322, + "grad_norm": 0.6427774429321289, + "learning_rate": 2.8691792294807373e-06, + "loss": 0.18336435317993163, + "step": 281500 + }, + { + "epoch": 94.33838679956445, + "grad_norm": 0.45124322175979614, + "learning_rate": 2.8524288107202682e-06, + "loss": 0.1830876350402832, + "step": 281600 + }, + { + "epoch": 94.37189044308569, + "grad_norm": 0.5530322194099426, + "learning_rate": 2.835678391959799e-06, + "loss": 0.18310989379882814, + "step": 281700 + }, + { + "epoch": 94.40539408660692, + "grad_norm": 0.4179496169090271, + "learning_rate": 2.81892797319933e-06, + "loss": 0.18375337600708008, + "step": 281800 + }, + { + "epoch": 94.43889773012815, + "grad_norm": 0.5519108772277832, + "learning_rate": 2.802177554438861e-06, + "loss": 0.1845833969116211, + "step": 281900 + }, + { + "epoch": 94.47240137364939, + "grad_norm": 0.5219084620475769, + "learning_rate": 2.785427135678392e-06, + "loss": 0.18406974792480468, + "step": 282000 + }, + { + "epoch": 94.50590501717062, + "grad_norm": 0.6132789850234985, + "learning_rate": 2.7686767169179233e-06, + "loss": 0.18442945480346679, + "step": 282100 + }, + { + "epoch": 94.53940866069185, + "grad_norm": 0.5181702971458435, + "learning_rate": 2.7519262981574543e-06, + "loss": 0.1834421730041504, + "step": 282200 + }, + { + "epoch": 94.57291230421308, + "grad_norm": 0.549511194229126, + "learning_rate": 2.735175879396985e-06, + "loss": 0.18456022262573243, + "step": 282300 + }, + { + "epoch": 94.60641594773432, + "grad_norm": 0.5756514072418213, + "learning_rate": 2.7184254606365157e-06, + "loss": 0.1831919479370117, + "step": 282400 + }, + { + "epoch": 94.63991959125555, + "grad_norm": 0.5692307949066162, + "learning_rate": 2.701675041876047e-06, + "loss": 0.18358297348022462, + "step": 282500 + }, + { + "epoch": 94.67342323477678, + "grad_norm": 0.6947788596153259, + "learning_rate": 2.684924623115578e-06, + "loss": 0.1838298225402832, + "step": 282600 + }, + { + "epoch": 94.70692687829802, + "grad_norm": 0.5112714767456055, + "learning_rate": 2.668174204355109e-06, + "loss": 0.18363580703735352, + "step": 282700 + }, + { + "epoch": 94.74043052181925, + "grad_norm": 0.6610069274902344, + "learning_rate": 2.6515912897822445e-06, + "loss": 0.184285888671875, + "step": 282800 + }, + { + "epoch": 94.77393416534048, + "grad_norm": 0.5555760860443115, + "learning_rate": 2.634840871021776e-06, + "loss": 0.18415529251098633, + "step": 282900 + }, + { + "epoch": 94.8074378088617, + "grad_norm": 0.6111050844192505, + "learning_rate": 2.6180904522613068e-06, + "loss": 0.18409820556640624, + "step": 283000 + }, + { + "epoch": 94.84094145238295, + "grad_norm": 0.5163633227348328, + "learning_rate": 2.6013400335008377e-06, + "loss": 0.18490222930908204, + "step": 283100 + }, + { + "epoch": 94.87444509590418, + "grad_norm": 0.5600749254226685, + "learning_rate": 2.5845896147403686e-06, + "loss": 0.18375289916992188, + "step": 283200 + }, + { + "epoch": 94.90794873942541, + "grad_norm": 0.49500954151153564, + "learning_rate": 2.5678391959798996e-06, + "loss": 0.18480894088745117, + "step": 283300 + }, + { + "epoch": 94.94145238294665, + "grad_norm": 0.5733513236045837, + "learning_rate": 2.5510887772194305e-06, + "loss": 0.1837126922607422, + "step": 283400 + }, + { + "epoch": 94.97495602646788, + "grad_norm": 0.549117386341095, + "learning_rate": 2.5343383584589615e-06, + "loss": 0.18447158813476563, + "step": 283500 + }, + { + "epoch": 95.0083759108803, + "grad_norm": 0.4763764441013336, + "learning_rate": 2.517587939698493e-06, + "loss": 0.18384462356567383, + "step": 283600 + }, + { + "epoch": 95.04187955440155, + "grad_norm": 0.5236153602600098, + "learning_rate": 2.5008375209380238e-06, + "loss": 0.18261993408203125, + "step": 283700 + }, + { + "epoch": 95.07538319792278, + "grad_norm": 0.4592667818069458, + "learning_rate": 2.4840871021775543e-06, + "loss": 0.18320878982543945, + "step": 283800 + }, + { + "epoch": 95.108886841444, + "grad_norm": 0.506898820400238, + "learning_rate": 2.4673366834170852e-06, + "loss": 0.18264638900756835, + "step": 283900 + }, + { + "epoch": 95.14239048496523, + "grad_norm": 0.619023859500885, + "learning_rate": 2.4505862646566166e-06, + "loss": 0.18314945220947265, + "step": 284000 + }, + { + "epoch": 95.17589412848648, + "grad_norm": 0.48291823267936707, + "learning_rate": 2.4338358458961475e-06, + "loss": 0.18282480239868165, + "step": 284100 + }, + { + "epoch": 95.2093977720077, + "grad_norm": 0.48036035895347595, + "learning_rate": 2.4170854271356785e-06, + "loss": 0.1841721534729004, + "step": 284200 + }, + { + "epoch": 95.24290141552893, + "grad_norm": 0.5450857877731323, + "learning_rate": 2.40033500837521e-06, + "loss": 0.18397005081176757, + "step": 284300 + }, + { + "epoch": 95.27640505905018, + "grad_norm": 0.47729921340942383, + "learning_rate": 2.3835845896147403e-06, + "loss": 0.18345026016235352, + "step": 284400 + }, + { + "epoch": 95.3099087025714, + "grad_norm": 0.6052916646003723, + "learning_rate": 2.3668341708542713e-06, + "loss": 0.1844022560119629, + "step": 284500 + }, + { + "epoch": 95.34341234609263, + "grad_norm": 0.5513006448745728, + "learning_rate": 2.3500837520938022e-06, + "loss": 0.1827683639526367, + "step": 284600 + }, + { + "epoch": 95.37691598961388, + "grad_norm": 0.48488298058509827, + "learning_rate": 2.3333333333333336e-06, + "loss": 0.1831340026855469, + "step": 284700 + }, + { + "epoch": 95.4104196331351, + "grad_norm": 0.5309977531433105, + "learning_rate": 2.316750418760469e-06, + "loss": 0.18309810638427734, + "step": 284800 + }, + { + "epoch": 95.44392327665634, + "grad_norm": 0.43957263231277466, + "learning_rate": 2.3e-06, + "loss": 0.1831692123413086, + "step": 284900 + }, + { + "epoch": 95.47742692017756, + "grad_norm": 0.5356688499450684, + "learning_rate": 2.283249581239531e-06, + "loss": 0.18342973709106444, + "step": 285000 + }, + { + "epoch": 95.5109305636988, + "grad_norm": 0.5657954812049866, + "learning_rate": 2.2664991624790623e-06, + "loss": 0.18340103149414064, + "step": 285100 + }, + { + "epoch": 95.54443420722004, + "grad_norm": 0.5092414617538452, + "learning_rate": 2.2497487437185932e-06, + "loss": 0.18338417053222655, + "step": 285200 + }, + { + "epoch": 95.57793785074126, + "grad_norm": 0.4153210520744324, + "learning_rate": 2.232998324958124e-06, + "loss": 0.1836545181274414, + "step": 285300 + }, + { + "epoch": 95.61144149426251, + "grad_norm": 0.5015280842781067, + "learning_rate": 2.2162479061976547e-06, + "loss": 0.1827981948852539, + "step": 285400 + }, + { + "epoch": 95.64494513778374, + "grad_norm": 0.7179563641548157, + "learning_rate": 2.199497487437186e-06, + "loss": 0.18311439514160155, + "step": 285500 + }, + { + "epoch": 95.67844878130497, + "grad_norm": 0.5288705825805664, + "learning_rate": 2.182747068676717e-06, + "loss": 0.18439481735229493, + "step": 285600 + }, + { + "epoch": 95.7119524248262, + "grad_norm": 0.5110313296318054, + "learning_rate": 2.165996649916248e-06, + "loss": 0.18332534790039062, + "step": 285700 + }, + { + "epoch": 95.74545606834744, + "grad_norm": 0.5360533595085144, + "learning_rate": 2.1492462311557793e-06, + "loss": 0.18395133972167968, + "step": 285800 + }, + { + "epoch": 95.77895971186867, + "grad_norm": 0.534217894077301, + "learning_rate": 2.13249581239531e-06, + "loss": 0.18385652542114259, + "step": 285900 + }, + { + "epoch": 95.8124633553899, + "grad_norm": 0.6536206007003784, + "learning_rate": 2.1157453936348408e-06, + "loss": 0.18364360809326172, + "step": 286000 + }, + { + "epoch": 95.84596699891114, + "grad_norm": 0.5675894618034363, + "learning_rate": 2.0989949748743717e-06, + "loss": 0.18334434509277345, + "step": 286100 + }, + { + "epoch": 95.87947064243237, + "grad_norm": 0.5131775736808777, + "learning_rate": 2.082244556113903e-06, + "loss": 0.18401821136474608, + "step": 286200 + }, + { + "epoch": 95.9129742859536, + "grad_norm": 0.4480537176132202, + "learning_rate": 2.065494137353434e-06, + "loss": 0.18490314483642578, + "step": 286300 + }, + { + "epoch": 95.94647792947482, + "grad_norm": 0.566072404384613, + "learning_rate": 2.048743718592965e-06, + "loss": 0.18334156036376953, + "step": 286400 + }, + { + "epoch": 95.97998157299607, + "grad_norm": 0.5423669815063477, + "learning_rate": 2.031993299832496e-06, + "loss": 0.18419130325317382, + "step": 286500 + }, + { + "epoch": 96.01340145740849, + "grad_norm": 0.5609968900680542, + "learning_rate": 2.015242881072027e-06, + "loss": 0.18358615875244141, + "step": 286600 + }, + { + "epoch": 96.04690510092972, + "grad_norm": 0.4528324604034424, + "learning_rate": 1.9984924623115578e-06, + "loss": 0.18235225677490235, + "step": 286700 + }, + { + "epoch": 96.08040874445096, + "grad_norm": 0.4424758851528168, + "learning_rate": 1.9817420435510887e-06, + "loss": 0.18314834594726562, + "step": 286800 + }, + { + "epoch": 96.11391238797219, + "grad_norm": 0.5286248922348022, + "learning_rate": 1.965159128978224e-06, + "loss": 0.18267539978027345, + "step": 286900 + }, + { + "epoch": 96.14741603149342, + "grad_norm": 0.44464874267578125, + "learning_rate": 1.9484087102177555e-06, + "loss": 0.18318920135498046, + "step": 287000 + }, + { + "epoch": 96.18091967501466, + "grad_norm": 0.5130648016929626, + "learning_rate": 1.9316582914572865e-06, + "loss": 0.18308115005493164, + "step": 287100 + }, + { + "epoch": 96.21442331853589, + "grad_norm": 0.8183990120887756, + "learning_rate": 1.9149078726968174e-06, + "loss": 0.1834044075012207, + "step": 287200 + }, + { + "epoch": 96.24792696205712, + "grad_norm": 0.5199669599533081, + "learning_rate": 1.8981574539363486e-06, + "loss": 0.18283458709716796, + "step": 287300 + }, + { + "epoch": 96.28143060557835, + "grad_norm": 0.4842471778392792, + "learning_rate": 1.8814070351758795e-06, + "loss": 0.18268014907836913, + "step": 287400 + }, + { + "epoch": 96.3149342490996, + "grad_norm": 0.6083213686943054, + "learning_rate": 1.8646566164154105e-06, + "loss": 0.18216041564941407, + "step": 287500 + }, + { + "epoch": 96.34843789262082, + "grad_norm": 0.46411433815956116, + "learning_rate": 1.8479061976549414e-06, + "loss": 0.18271490097045898, + "step": 287600 + }, + { + "epoch": 96.38194153614205, + "grad_norm": 0.5906765460968018, + "learning_rate": 1.8311557788944725e-06, + "loss": 0.18355520248413085, + "step": 287700 + }, + { + "epoch": 96.4154451796633, + "grad_norm": 0.6398022174835205, + "learning_rate": 1.8144053601340035e-06, + "loss": 0.18388975143432618, + "step": 287800 + }, + { + "epoch": 96.44894882318452, + "grad_norm": 0.5343595147132874, + "learning_rate": 1.7976549413735344e-06, + "loss": 0.1829561996459961, + "step": 287900 + }, + { + "epoch": 96.48245246670575, + "grad_norm": 0.5307978987693787, + "learning_rate": 1.7809045226130656e-06, + "loss": 0.1831664276123047, + "step": 288000 + }, + { + "epoch": 96.51595611022698, + "grad_norm": 0.42967861890792847, + "learning_rate": 1.7641541038525965e-06, + "loss": 0.18227174758911133, + "step": 288100 + }, + { + "epoch": 96.54945975374822, + "grad_norm": 0.5349688529968262, + "learning_rate": 1.7474036850921274e-06, + "loss": 0.1833807945251465, + "step": 288200 + }, + { + "epoch": 96.58296339726945, + "grad_norm": 0.5560780167579651, + "learning_rate": 1.7306532663316582e-06, + "loss": 0.1837186622619629, + "step": 288300 + }, + { + "epoch": 96.61646704079068, + "grad_norm": 0.6274934411048889, + "learning_rate": 1.7139028475711895e-06, + "loss": 0.18322343826293946, + "step": 288400 + }, + { + "epoch": 96.64997068431192, + "grad_norm": 0.4825371503829956, + "learning_rate": 1.6971524288107205e-06, + "loss": 0.18326036453247072, + "step": 288500 + }, + { + "epoch": 96.68347432783315, + "grad_norm": 0.6797924041748047, + "learning_rate": 1.6804020100502512e-06, + "loss": 0.18284734725952148, + "step": 288600 + }, + { + "epoch": 96.71697797135438, + "grad_norm": 0.5788692235946655, + "learning_rate": 1.6636515912897821e-06, + "loss": 0.1840299606323242, + "step": 288700 + }, + { + "epoch": 96.75048161487561, + "grad_norm": 0.49273577332496643, + "learning_rate": 1.6469011725293135e-06, + "loss": 0.18266069412231445, + "step": 288800 + }, + { + "epoch": 96.78398525839685, + "grad_norm": 0.5252591967582703, + "learning_rate": 1.630318257956449e-06, + "loss": 0.1839330291748047, + "step": 288900 + }, + { + "epoch": 96.81748890191808, + "grad_norm": 0.6281270980834961, + "learning_rate": 1.61356783919598e-06, + "loss": 0.18259082794189452, + "step": 289000 + }, + { + "epoch": 96.85099254543931, + "grad_norm": 0.589600682258606, + "learning_rate": 1.5968174204355109e-06, + "loss": 0.18413593292236327, + "step": 289100 + }, + { + "epoch": 96.88449618896055, + "grad_norm": 0.52843177318573, + "learning_rate": 1.580067001675042e-06, + "loss": 0.18312227249145507, + "step": 289200 + }, + { + "epoch": 96.91799983248178, + "grad_norm": 0.5499556660652161, + "learning_rate": 1.563316582914573e-06, + "loss": 0.18327688217163085, + "step": 289300 + }, + { + "epoch": 96.95150347600301, + "grad_norm": 0.5910999178886414, + "learning_rate": 1.5465661641541041e-06, + "loss": 0.18362533569335937, + "step": 289400 + }, + { + "epoch": 96.98500711952425, + "grad_norm": 0.47498592734336853, + "learning_rate": 1.5298157453936348e-06, + "loss": 0.18386016845703124, + "step": 289500 + }, + { + "epoch": 97.01842700393668, + "grad_norm": 0.5408181548118591, + "learning_rate": 1.513065326633166e-06, + "loss": 0.18346582412719725, + "step": 289600 + }, + { + "epoch": 97.05193064745791, + "grad_norm": 0.6393353939056396, + "learning_rate": 1.496314907872697e-06, + "loss": 0.18178239822387696, + "step": 289700 + }, + { + "epoch": 97.08543429097914, + "grad_norm": 0.568048894405365, + "learning_rate": 1.4795644891122279e-06, + "loss": 0.1829755973815918, + "step": 289800 + }, + { + "epoch": 97.11893793450038, + "grad_norm": 0.4984806776046753, + "learning_rate": 1.4628140703517588e-06, + "loss": 0.1820225715637207, + "step": 289900 + }, + { + "epoch": 97.15244157802161, + "grad_norm": 0.4840709865093231, + "learning_rate": 1.44606365159129e-06, + "loss": 0.18249683380126952, + "step": 290000 + }, + { + "epoch": 97.18594522154284, + "grad_norm": 0.5016071200370789, + "learning_rate": 1.4293132328308207e-06, + "loss": 0.18231712341308592, + "step": 290100 + }, + { + "epoch": 97.21944886506408, + "grad_norm": 0.6901659965515137, + "learning_rate": 1.4125628140703518e-06, + "loss": 0.18322145462036132, + "step": 290200 + }, + { + "epoch": 97.25295250858531, + "grad_norm": 0.4563469886779785, + "learning_rate": 1.3958123953098828e-06, + "loss": 0.18245380401611327, + "step": 290300 + }, + { + "epoch": 97.28645615210654, + "grad_norm": 0.6341580152511597, + "learning_rate": 1.3790619765494137e-06, + "loss": 0.18248394012451172, + "step": 290400 + }, + { + "epoch": 97.31995979562778, + "grad_norm": 0.681046187877655, + "learning_rate": 1.3623115577889449e-06, + "loss": 0.18289484024047853, + "step": 290500 + }, + { + "epoch": 97.35346343914901, + "grad_norm": 0.5641540884971619, + "learning_rate": 1.3455611390284758e-06, + "loss": 0.18241430282592774, + "step": 290600 + }, + { + "epoch": 97.38696708267024, + "grad_norm": 0.46917444467544556, + "learning_rate": 1.3288107202680067e-06, + "loss": 0.18300029754638672, + "step": 290700 + }, + { + "epoch": 97.42047072619147, + "grad_norm": 0.5886017084121704, + "learning_rate": 1.3120603015075377e-06, + "loss": 0.18347707748413086, + "step": 290800 + }, + { + "epoch": 97.45397436971271, + "grad_norm": 0.5818371772766113, + "learning_rate": 1.2954773869346736e-06, + "loss": 0.1830360221862793, + "step": 290900 + }, + { + "epoch": 97.48747801323394, + "grad_norm": 0.5439379215240479, + "learning_rate": 1.2787269681742043e-06, + "loss": 0.18396745681762694, + "step": 291000 + }, + { + "epoch": 97.52098165675517, + "grad_norm": 0.5070674419403076, + "learning_rate": 1.2619765494137355e-06, + "loss": 0.1832095718383789, + "step": 291100 + }, + { + "epoch": 97.55448530027641, + "grad_norm": 0.4415448307991028, + "learning_rate": 1.2452261306532664e-06, + "loss": 0.18289644241333008, + "step": 291200 + }, + { + "epoch": 97.58798894379764, + "grad_norm": 0.4324808418750763, + "learning_rate": 1.2284757118927973e-06, + "loss": 0.18389009475708007, + "step": 291300 + }, + { + "epoch": 97.62149258731887, + "grad_norm": 0.653737485408783, + "learning_rate": 1.2117252931323283e-06, + "loss": 0.1822391700744629, + "step": 291400 + }, + { + "epoch": 97.6549962308401, + "grad_norm": 0.5741151571273804, + "learning_rate": 1.1949748743718594e-06, + "loss": 0.18301633834838868, + "step": 291500 + }, + { + "epoch": 97.68849987436134, + "grad_norm": 0.526233971118927, + "learning_rate": 1.1782244556113904e-06, + "loss": 0.18326601028442382, + "step": 291600 + }, + { + "epoch": 97.72200351788257, + "grad_norm": 0.4789596498012543, + "learning_rate": 1.1614740368509213e-06, + "loss": 0.18228565216064452, + "step": 291700 + }, + { + "epoch": 97.7555071614038, + "grad_norm": 0.711111307144165, + "learning_rate": 1.1447236180904523e-06, + "loss": 0.18288152694702148, + "step": 291800 + }, + { + "epoch": 97.78901080492504, + "grad_norm": 0.5140437483787537, + "learning_rate": 1.1279731993299832e-06, + "loss": 0.18254825592041016, + "step": 291900 + }, + { + "epoch": 97.82251444844627, + "grad_norm": 0.47034555673599243, + "learning_rate": 1.1112227805695143e-06, + "loss": 0.18244110107421874, + "step": 292000 + }, + { + "epoch": 97.8560180919675, + "grad_norm": 0.5814681053161621, + "learning_rate": 1.0944723618090453e-06, + "loss": 0.1832912254333496, + "step": 292100 + }, + { + "epoch": 97.88952173548873, + "grad_norm": 0.5516090393066406, + "learning_rate": 1.0777219430485762e-06, + "loss": 0.18352859497070312, + "step": 292200 + }, + { + "epoch": 97.92302537900997, + "grad_norm": 0.5123777985572815, + "learning_rate": 1.0609715242881072e-06, + "loss": 0.18379606246948244, + "step": 292300 + }, + { + "epoch": 97.9565290225312, + "grad_norm": 0.6835401654243469, + "learning_rate": 1.0442211055276383e-06, + "loss": 0.18410768508911132, + "step": 292400 + }, + { + "epoch": 97.99003266605243, + "grad_norm": 0.5012428760528564, + "learning_rate": 1.0274706867671693e-06, + "loss": 0.18317014694213868, + "step": 292500 + }, + { + "epoch": 98.02345255046487, + "grad_norm": 0.4708642065525055, + "learning_rate": 1.0107202680067002e-06, + "loss": 0.18331142425537109, + "step": 292600 + }, + { + "epoch": 98.0569561939861, + "grad_norm": 0.5567511320114136, + "learning_rate": 9.939698492462311e-07, + "loss": 0.18246702194213868, + "step": 292700 + }, + { + "epoch": 98.09045983750732, + "grad_norm": 0.7058369517326355, + "learning_rate": 9.772194304857623e-07, + "loss": 0.18259771347045897, + "step": 292800 + }, + { + "epoch": 98.12396348102857, + "grad_norm": 0.6134818196296692, + "learning_rate": 9.604690117252932e-07, + "loss": 0.1822067070007324, + "step": 292900 + }, + { + "epoch": 98.1574671245498, + "grad_norm": 0.4781286418437958, + "learning_rate": 9.438860971524289e-07, + "loss": 0.18297542572021486, + "step": 293000 + }, + { + "epoch": 98.19097076807103, + "grad_norm": 0.49279746413230896, + "learning_rate": 9.271356783919598e-07, + "loss": 0.18277181625366212, + "step": 293100 + }, + { + "epoch": 98.22447441159225, + "grad_norm": 0.5490056276321411, + "learning_rate": 9.103852596314908e-07, + "loss": 0.1828497314453125, + "step": 293200 + }, + { + "epoch": 98.2579780551135, + "grad_norm": 0.6629262566566467, + "learning_rate": 8.936348408710217e-07, + "loss": 0.1831769371032715, + "step": 293300 + }, + { + "epoch": 98.29148169863473, + "grad_norm": 0.6081374883651733, + "learning_rate": 8.768844221105528e-07, + "loss": 0.18234825134277344, + "step": 293400 + }, + { + "epoch": 98.32498534215595, + "grad_norm": 0.5573914051055908, + "learning_rate": 8.601340033500838e-07, + "loss": 0.18284347534179687, + "step": 293500 + }, + { + "epoch": 98.3584889856772, + "grad_norm": 0.4881286025047302, + "learning_rate": 8.433835845896148e-07, + "loss": 0.18250568389892577, + "step": 293600 + }, + { + "epoch": 98.39199262919843, + "grad_norm": 0.5479198694229126, + "learning_rate": 8.266331658291458e-07, + "loss": 0.1822296905517578, + "step": 293700 + }, + { + "epoch": 98.42549627271966, + "grad_norm": 0.48754844069480896, + "learning_rate": 8.098827470686768e-07, + "loss": 0.1824342918395996, + "step": 293800 + }, + { + "epoch": 98.45899991624088, + "grad_norm": 0.5909836292266846, + "learning_rate": 7.931323283082078e-07, + "loss": 0.18264894485473632, + "step": 293900 + }, + { + "epoch": 98.49250355976213, + "grad_norm": 0.6499689817428589, + "learning_rate": 7.763819095477387e-07, + "loss": 0.1826353645324707, + "step": 294000 + }, + { + "epoch": 98.52600720328336, + "grad_norm": 0.5792352557182312, + "learning_rate": 7.596314907872698e-07, + "loss": 0.18250282287597655, + "step": 294100 + }, + { + "epoch": 98.55951084680459, + "grad_norm": 0.6496483087539673, + "learning_rate": 7.428810720268007e-07, + "loss": 0.18278635025024415, + "step": 294200 + }, + { + "epoch": 98.59301449032583, + "grad_norm": 0.5034297704696655, + "learning_rate": 7.261306532663317e-07, + "loss": 0.18362100601196288, + "step": 294300 + }, + { + "epoch": 98.62651813384706, + "grad_norm": 0.4216485917568207, + "learning_rate": 7.093802345058627e-07, + "loss": 0.18190402984619142, + "step": 294400 + }, + { + "epoch": 98.66002177736829, + "grad_norm": 0.4336554706096649, + "learning_rate": 6.926298157453936e-07, + "loss": 0.18188596725463868, + "step": 294500 + }, + { + "epoch": 98.69352542088953, + "grad_norm": 0.557890772819519, + "learning_rate": 6.758793969849246e-07, + "loss": 0.1827729797363281, + "step": 294600 + }, + { + "epoch": 98.72702906441076, + "grad_norm": 0.5158662796020508, + "learning_rate": 6.591289782244556e-07, + "loss": 0.18270872116088868, + "step": 294700 + }, + { + "epoch": 98.76053270793199, + "grad_norm": 0.5574226975440979, + "learning_rate": 6.423785594639867e-07, + "loss": 0.18279212951660156, + "step": 294800 + }, + { + "epoch": 98.79403635145322, + "grad_norm": 0.6103866696357727, + "learning_rate": 6.256281407035176e-07, + "loss": 0.18242774963378905, + "step": 294900 + }, + { + "epoch": 98.82753999497446, + "grad_norm": 0.6679960489273071, + "learning_rate": 6.088777219430487e-07, + "loss": 0.18265195846557616, + "step": 295000 + }, + { + "epoch": 98.86104363849569, + "grad_norm": 0.5146142244338989, + "learning_rate": 5.922948073701842e-07, + "loss": 0.1826561737060547, + "step": 295100 + }, + { + "epoch": 98.89454728201692, + "grad_norm": 0.4862828850746155, + "learning_rate": 5.755443886097152e-07, + "loss": 0.1830119514465332, + "step": 295200 + }, + { + "epoch": 98.92805092553816, + "grad_norm": 0.5384283661842346, + "learning_rate": 5.587939698492462e-07, + "loss": 0.18346889495849608, + "step": 295300 + }, + { + "epoch": 98.96155456905939, + "grad_norm": 0.5220957398414612, + "learning_rate": 5.420435510887773e-07, + "loss": 0.18368080139160156, + "step": 295400 + }, + { + "epoch": 98.99505821258062, + "grad_norm": 0.4835510849952698, + "learning_rate": 5.252931323283082e-07, + "loss": 0.1819740867614746, + "step": 295500 + }, + { + "epoch": 99.02847809699304, + "grad_norm": 0.599375307559967, + "learning_rate": 5.085427135678393e-07, + "loss": 0.18192974090576172, + "step": 295600 + }, + { + "epoch": 99.06198174051428, + "grad_norm": 0.7051849365234375, + "learning_rate": 4.917922948073702e-07, + "loss": 0.1823443603515625, + "step": 295700 + }, + { + "epoch": 99.09548538403551, + "grad_norm": 0.503696858882904, + "learning_rate": 4.750418760469012e-07, + "loss": 0.18231864929199218, + "step": 295800 + }, + { + "epoch": 99.12898902755674, + "grad_norm": 0.48068055510520935, + "learning_rate": 4.582914572864322e-07, + "loss": 0.1825026512145996, + "step": 295900 + }, + { + "epoch": 99.16249267107798, + "grad_norm": 0.5054277777671814, + "learning_rate": 4.415410385259632e-07, + "loss": 0.18171930313110352, + "step": 296000 + }, + { + "epoch": 99.19599631459921, + "grad_norm": 0.4834759831428528, + "learning_rate": 4.247906197654941e-07, + "loss": 0.18209936141967772, + "step": 296100 + }, + { + "epoch": 99.22949995812044, + "grad_norm": 0.5204523205757141, + "learning_rate": 4.080402010050251e-07, + "loss": 0.18290546417236328, + "step": 296200 + }, + { + "epoch": 99.26300360164169, + "grad_norm": 0.4851609766483307, + "learning_rate": 3.9128978224455616e-07, + "loss": 0.18262216567993164, + "step": 296300 + }, + { + "epoch": 99.29650724516291, + "grad_norm": 0.506882905960083, + "learning_rate": 3.745393634840871e-07, + "loss": 0.18311552047729493, + "step": 296400 + }, + { + "epoch": 99.33001088868414, + "grad_norm": 0.4979182183742523, + "learning_rate": 3.577889447236181e-07, + "loss": 0.18193258285522462, + "step": 296500 + }, + { + "epoch": 99.36351453220537, + "grad_norm": 0.41721171140670776, + "learning_rate": 3.4103852596314913e-07, + "loss": 0.18166379928588866, + "step": 296600 + }, + { + "epoch": 99.39701817572661, + "grad_norm": 0.5125341415405273, + "learning_rate": 3.2428810720268007e-07, + "loss": 0.1818573760986328, + "step": 296700 + }, + { + "epoch": 99.43052181924784, + "grad_norm": 0.5992101430892944, + "learning_rate": 3.0753768844221106e-07, + "loss": 0.1827593421936035, + "step": 296800 + }, + { + "epoch": 99.46402546276907, + "grad_norm": 0.551201343536377, + "learning_rate": 2.9078726968174206e-07, + "loss": 0.18226703643798828, + "step": 296900 + }, + { + "epoch": 99.49752910629032, + "grad_norm": 0.4715881645679474, + "learning_rate": 2.7403685092127305e-07, + "loss": 0.18271636962890625, + "step": 297000 + }, + { + "epoch": 99.53103274981154, + "grad_norm": 0.48507949709892273, + "learning_rate": 2.5728643216080404e-07, + "loss": 0.18286649703979493, + "step": 297100 + }, + { + "epoch": 99.56453639333277, + "grad_norm": 0.5795986652374268, + "learning_rate": 2.4070351758793973e-07, + "loss": 0.18219593048095703, + "step": 297200 + }, + { + "epoch": 99.598040036854, + "grad_norm": 0.4794217646121979, + "learning_rate": 2.239530988274707e-07, + "loss": 0.18355159759521483, + "step": 297300 + }, + { + "epoch": 99.63154368037524, + "grad_norm": 0.5386576056480408, + "learning_rate": 2.0720268006700167e-07, + "loss": 0.1827494430541992, + "step": 297400 + }, + { + "epoch": 99.66504732389647, + "grad_norm": 0.5734672546386719, + "learning_rate": 1.9045226130653268e-07, + "loss": 0.18233570098876953, + "step": 297500 + }, + { + "epoch": 99.6985509674177, + "grad_norm": 0.49709200859069824, + "learning_rate": 1.7370184254606365e-07, + "loss": 0.18292242050170898, + "step": 297600 + }, + { + "epoch": 99.73205461093895, + "grad_norm": 0.46515047550201416, + "learning_rate": 1.5695142378559464e-07, + "loss": 0.18247623443603517, + "step": 297700 + }, + { + "epoch": 99.76555825446017, + "grad_norm": 0.5647607445716858, + "learning_rate": 1.4020100502512564e-07, + "loss": 0.18333343505859376, + "step": 297800 + }, + { + "epoch": 99.7990618979814, + "grad_norm": 0.5439239144325256, + "learning_rate": 1.2345058626465663e-07, + "loss": 0.1823881721496582, + "step": 297900 + }, + { + "epoch": 99.83256554150263, + "grad_norm": 0.5171498656272888, + "learning_rate": 1.067001675041876e-07, + "loss": 0.18236944198608399, + "step": 298000 + }, + { + "epoch": 99.86606918502387, + "grad_norm": 0.5662410259246826, + "learning_rate": 8.99497487437186e-08, + "loss": 0.18176408767700195, + "step": 298100 + }, + { + "epoch": 99.8995728285451, + "grad_norm": 0.5604025721549988, + "learning_rate": 7.319932998324959e-08, + "loss": 0.18264013290405273, + "step": 298200 + } + ], + "logging_steps": 100, + "max_steps": 298500, + "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.5095493386816717e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/training_args.bin b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..4243bd5e526d7e7d0d142ff9063a8e0096d948ea --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.0.0", + "use_cache": false, + "vocab_size": 1534 +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/generation_config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/model.safetensors b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..31be1d3d4ca4b50e68dff40d1ada61c7ea4b2269 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83dab951bbcf8914dae91438da3f5db998caead0e47177266efeec603cd4164f +size 177980872 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/optimizer.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7e99247999535fe35dfa06219abfc1da4024ef6e --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca8c45f5362f290d2a6e2a0d34e7bd3fc2aff291e0111090637c0df8ad9637c +size 356010827 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/rng_state.pth b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..06edf6eff0143f86c94e03e9ad9867525b991f5a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b79ba9d4f70bc3386580b48cc15e852088c42cbb4e0cf209c27c2234ed743eed +size 14645 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/scaler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2daa0b1aaeb4d3b5bd772469a0ca90db7cbb2d45 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef37cf847a683562ac1a1f7287dee1eeaa375e7c267aecc4450a7c99073b41cd +size 1383 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/scheduler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..39a01ae462e6b0fe6a837ace829e9dcb7814a921 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c4d7e6dae0c446fe4281cdafe44485d04c490e9d3f22c5ff3eb327ca6ebc2b +size 1465 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/trainer_state.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..32d2d4f961bb76777c73b231e3aca2a10a50b201 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/trainer_state.json @@ -0,0 +1,20915 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.93307647206633, + "eval_steps": 100, + "global_step": 298300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.03350364352123293, + "grad_norm": 0.8461591005325317, + "learning_rate": 4.9983417085427135e-05, + "loss": 1.800863037109375, + "step": 100 + }, + { + "epoch": 0.06700728704246586, + "grad_norm": 0.7391623258590698, + "learning_rate": 4.996666666666667e-05, + "loss": 0.8150953674316406, + "step": 200 + }, + { + "epoch": 0.10051093056369881, + "grad_norm": 0.6344850659370422, + "learning_rate": 4.99499162479062e-05, + "loss": 0.7532137298583984, + "step": 300 + }, + { + "epoch": 0.13401457408493173, + "grad_norm": 0.6711709499359131, + "learning_rate": 4.993316582914573e-05, + "loss": 0.7202082061767578, + "step": 400 + }, + { + "epoch": 0.16751821760616467, + "grad_norm": 0.6779165267944336, + "learning_rate": 4.9916415410385264e-05, + "loss": 0.7091973114013672, + "step": 500 + }, + { + "epoch": 0.20102186112739762, + "grad_norm": 0.6654858589172363, + "learning_rate": 4.989966499162479e-05, + "loss": 0.685182876586914, + "step": 600 + }, + { + "epoch": 0.23452550464863053, + "grad_norm": 0.6182253956794739, + "learning_rate": 4.988291457286433e-05, + "loss": 0.6745145416259766, + "step": 700 + }, + { + "epoch": 0.26802914816986345, + "grad_norm": 0.6512383818626404, + "learning_rate": 4.986616415410386e-05, + "loss": 0.6662254333496094, + "step": 800 + }, + { + "epoch": 0.3015327916910964, + "grad_norm": 0.6715951561927795, + "learning_rate": 4.9849413735343386e-05, + "loss": 0.6557020568847656, + "step": 900 + }, + { + "epoch": 0.33503643521232934, + "grad_norm": 0.5785344839096069, + "learning_rate": 4.9832663316582915e-05, + "loss": 0.6456297302246093, + "step": 1000 + }, + { + "epoch": 0.36854007873356226, + "grad_norm": 0.6495988368988037, + "learning_rate": 4.981591289782245e-05, + "loss": 0.6365409851074219, + "step": 1100 + }, + { + "epoch": 0.40204372225479523, + "grad_norm": 0.634831428527832, + "learning_rate": 4.979916247906198e-05, + "loss": 0.6296848678588867, + "step": 1200 + }, + { + "epoch": 0.43554736577602815, + "grad_norm": 0.5968198180198669, + "learning_rate": 4.978241206030151e-05, + "loss": 0.6211205673217773, + "step": 1300 + }, + { + "epoch": 0.46905100929726107, + "grad_norm": 0.634230375289917, + "learning_rate": 4.976566164154104e-05, + "loss": 0.6164393997192383, + "step": 1400 + }, + { + "epoch": 0.502554652818494, + "grad_norm": 0.5891489386558533, + "learning_rate": 4.974891122278057e-05, + "loss": 0.6082125854492187, + "step": 1500 + }, + { + "epoch": 0.5360582963397269, + "grad_norm": 0.6446542739868164, + "learning_rate": 4.97321608040201e-05, + "loss": 0.611778564453125, + "step": 1600 + }, + { + "epoch": 0.5695619398609599, + "grad_norm": 0.6366457343101501, + "learning_rate": 4.971541038525964e-05, + "loss": 0.6013064193725586, + "step": 1700 + }, + { + "epoch": 0.6030655833821928, + "grad_norm": 0.6310938596725464, + "learning_rate": 4.9698659966499166e-05, + "loss": 0.5960189819335937, + "step": 1800 + }, + { + "epoch": 0.6365692269034258, + "grad_norm": 0.6312111616134644, + "learning_rate": 4.9681909547738694e-05, + "loss": 0.5902027511596679, + "step": 1900 + }, + { + "epoch": 0.6700728704246587, + "grad_norm": 0.6359553337097168, + "learning_rate": 4.966515912897823e-05, + "loss": 0.5884978485107422, + "step": 2000 + }, + { + "epoch": 0.7035765139458916, + "grad_norm": 0.6602451205253601, + "learning_rate": 4.964840871021776e-05, + "loss": 0.58427734375, + "step": 2100 + }, + { + "epoch": 0.7370801574671245, + "grad_norm": 0.6105899810791016, + "learning_rate": 4.963165829145729e-05, + "loss": 0.5838186645507812, + "step": 2200 + }, + { + "epoch": 0.7705838009883574, + "grad_norm": 0.5694506764411926, + "learning_rate": 4.9614907872696816e-05, + "loss": 0.5781952667236329, + "step": 2300 + }, + { + "epoch": 0.8040874445095905, + "grad_norm": 0.6220190525054932, + "learning_rate": 4.959815745393635e-05, + "loss": 0.5734509658813477, + "step": 2400 + }, + { + "epoch": 0.8375910880308234, + "grad_norm": 0.5669824481010437, + "learning_rate": 4.958140703517588e-05, + "loss": 0.573906478881836, + "step": 2500 + }, + { + "epoch": 0.8710947315520563, + "grad_norm": 0.6178188920021057, + "learning_rate": 4.956465661641541e-05, + "loss": 0.5677206802368164, + "step": 2600 + }, + { + "epoch": 0.9045983750732892, + "grad_norm": 0.5571620464324951, + "learning_rate": 4.9547906197654945e-05, + "loss": 0.5622820663452148, + "step": 2700 + }, + { + "epoch": 0.9381020185945221, + "grad_norm": 0.5818703770637512, + "learning_rate": 4.9531155778894474e-05, + "loss": 0.5609216690063477, + "step": 2800 + }, + { + "epoch": 0.971605662115755, + "grad_norm": 0.5967586040496826, + "learning_rate": 4.9514405360134e-05, + "loss": 0.5596435165405274, + "step": 2900 + }, + { + "epoch": 1.005025546528185, + "grad_norm": 0.6468071937561035, + "learning_rate": 4.949765494137354e-05, + "loss": 0.5584405899047852, + "step": 3000 + }, + { + "epoch": 1.0385291900494178, + "grad_norm": 0.6350861191749573, + "learning_rate": 4.948090452261307e-05, + "loss": 0.5500188446044922, + "step": 3100 + }, + { + "epoch": 1.0720328335706508, + "grad_norm": 0.6933004260063171, + "learning_rate": 4.94641541038526e-05, + "loss": 0.546169662475586, + "step": 3200 + }, + { + "epoch": 1.1055364770918836, + "grad_norm": 0.6557233333587646, + "learning_rate": 4.944740368509213e-05, + "loss": 0.5476358795166015, + "step": 3300 + }, + { + "epoch": 1.1390401206131167, + "grad_norm": 0.6253458857536316, + "learning_rate": 4.943065326633166e-05, + "loss": 0.544293212890625, + "step": 3400 + }, + { + "epoch": 1.1725437641343497, + "grad_norm": 0.6146714091300964, + "learning_rate": 4.941390284757119e-05, + "loss": 0.5420544052124023, + "step": 3500 + }, + { + "epoch": 1.2060474076555825, + "grad_norm": 0.6168274879455566, + "learning_rate": 4.9397152428810725e-05, + "loss": 0.5440950775146485, + "step": 3600 + }, + { + "epoch": 1.2395510511768155, + "grad_norm": 0.6314318180084229, + "learning_rate": 4.9380402010050254e-05, + "loss": 0.5422676086425782, + "step": 3700 + }, + { + "epoch": 1.2730546946980486, + "grad_norm": 0.6257957816123962, + "learning_rate": 4.936365159128978e-05, + "loss": 0.5370346069335937, + "step": 3800 + }, + { + "epoch": 1.3065583382192814, + "grad_norm": 0.6324900984764099, + "learning_rate": 4.934690117252931e-05, + "loss": 0.5346813583374024, + "step": 3900 + }, + { + "epoch": 1.3400619817405142, + "grad_norm": 0.6128197312355042, + "learning_rate": 4.933015075376885e-05, + "loss": 0.5321989822387695, + "step": 4000 + }, + { + "epoch": 1.3735656252617472, + "grad_norm": 0.5664730072021484, + "learning_rate": 4.9313400335008376e-05, + "loss": 0.5304061126708984, + "step": 4100 + }, + { + "epoch": 1.4070692687829802, + "grad_norm": 0.5894239544868469, + "learning_rate": 4.929664991624791e-05, + "loss": 0.5285339736938477, + "step": 4200 + }, + { + "epoch": 1.440572912304213, + "grad_norm": 0.6181634068489075, + "learning_rate": 4.927989949748744e-05, + "loss": 0.5315813446044921, + "step": 4300 + }, + { + "epoch": 1.474076555825446, + "grad_norm": 0.6103029251098633, + "learning_rate": 4.926314907872697e-05, + "loss": 0.5283493423461914, + "step": 4400 + }, + { + "epoch": 1.507580199346679, + "grad_norm": 0.5960842967033386, + "learning_rate": 4.9246398659966505e-05, + "loss": 0.5253337097167968, + "step": 4500 + }, + { + "epoch": 1.541083842867912, + "grad_norm": 0.6720269918441772, + "learning_rate": 4.9229648241206034e-05, + "loss": 0.5257507705688477, + "step": 4600 + }, + { + "epoch": 1.5745874863891447, + "grad_norm": 0.6651366949081421, + "learning_rate": 4.921289782244556e-05, + "loss": 0.5222479248046875, + "step": 4700 + }, + { + "epoch": 1.6080911299103777, + "grad_norm": 0.6316231489181519, + "learning_rate": 4.919614740368509e-05, + "loss": 0.5179043197631836, + "step": 4800 + }, + { + "epoch": 1.6415947734316108, + "grad_norm": 0.5880525708198547, + "learning_rate": 4.917939698492463e-05, + "loss": 0.5151556777954102, + "step": 4900 + }, + { + "epoch": 1.6750984169528436, + "grad_norm": 0.6046984195709229, + "learning_rate": 4.9162646566164156e-05, + "loss": 0.5172126007080078, + "step": 5000 + }, + { + "epoch": 1.7086020604740766, + "grad_norm": 0.6584818959236145, + "learning_rate": 4.9145896147403684e-05, + "loss": 0.5168862533569336, + "step": 5100 + }, + { + "epoch": 1.7421057039953096, + "grad_norm": 0.644334077835083, + "learning_rate": 4.912914572864321e-05, + "loss": 0.516330337524414, + "step": 5200 + }, + { + "epoch": 1.7756093475165424, + "grad_norm": 0.6277704834938049, + "learning_rate": 4.911239530988275e-05, + "loss": 0.5101805114746094, + "step": 5300 + }, + { + "epoch": 1.8091129910377752, + "grad_norm": 0.6398980617523193, + "learning_rate": 4.909564489112228e-05, + "loss": 0.5114438247680664, + "step": 5400 + }, + { + "epoch": 1.8426166345590083, + "grad_norm": 0.6116181015968323, + "learning_rate": 4.907889447236181e-05, + "loss": 0.5063412094116211, + "step": 5500 + }, + { + "epoch": 1.8761202780802413, + "grad_norm": 0.6046104431152344, + "learning_rate": 4.906214405360134e-05, + "loss": 0.5081657409667969, + "step": 5600 + }, + { + "epoch": 1.909623921601474, + "grad_norm": 0.5920073390007019, + "learning_rate": 4.904539363484088e-05, + "loss": 0.5051012802124023, + "step": 5700 + }, + { + "epoch": 1.9431275651227071, + "grad_norm": 0.6170016527175903, + "learning_rate": 4.9028643216080407e-05, + "loss": 0.5026112747192383, + "step": 5800 + }, + { + "epoch": 1.9766312086439402, + "grad_norm": 0.6302964091300964, + "learning_rate": 4.9011892797319935e-05, + "loss": 0.501869125366211, + "step": 5900 + }, + { + "epoch": 2.01005109305637, + "grad_norm": 0.6208528280258179, + "learning_rate": 4.8995142378559464e-05, + "loss": 0.49743770599365233, + "step": 6000 + }, + { + "epoch": 2.043554736577603, + "grad_norm": 0.6439351439476013, + "learning_rate": 4.8978391959799e-05, + "loss": 0.49052135467529295, + "step": 6100 + }, + { + "epoch": 2.0770583800988356, + "grad_norm": 0.6153578162193298, + "learning_rate": 4.896164154103853e-05, + "loss": 0.4963309860229492, + "step": 6200 + }, + { + "epoch": 2.110562023620069, + "grad_norm": 0.5905429720878601, + "learning_rate": 4.894489112227806e-05, + "loss": 0.4935873413085938, + "step": 6300 + }, + { + "epoch": 2.1440656671413016, + "grad_norm": 0.5844092965126038, + "learning_rate": 4.8928140703517586e-05, + "loss": 0.49054019927978515, + "step": 6400 + }, + { + "epoch": 2.1775693106625345, + "grad_norm": 0.6116010546684265, + "learning_rate": 4.891139028475712e-05, + "loss": 0.4881373596191406, + "step": 6500 + }, + { + "epoch": 2.2110729541837673, + "grad_norm": 0.5920172333717346, + "learning_rate": 4.889463986599665e-05, + "loss": 0.48111820220947266, + "step": 6600 + }, + { + "epoch": 2.2445765977050005, + "grad_norm": 0.6223201155662537, + "learning_rate": 4.8877889447236186e-05, + "loss": 0.4858921813964844, + "step": 6700 + }, + { + "epoch": 2.2780802412262333, + "grad_norm": 0.679458737373352, + "learning_rate": 4.8861139028475715e-05, + "loss": 0.4880897903442383, + "step": 6800 + }, + { + "epoch": 2.311583884747466, + "grad_norm": 0.6320315003395081, + "learning_rate": 4.8844388609715244e-05, + "loss": 0.4870236587524414, + "step": 6900 + }, + { + "epoch": 2.3450875282686994, + "grad_norm": 0.6325832009315491, + "learning_rate": 4.882763819095478e-05, + "loss": 0.4866282272338867, + "step": 7000 + }, + { + "epoch": 2.378591171789932, + "grad_norm": 0.6240285634994507, + "learning_rate": 4.881088777219431e-05, + "loss": 0.48300540924072266, + "step": 7100 + }, + { + "epoch": 2.412094815311165, + "grad_norm": 0.6501027941703796, + "learning_rate": 4.879413735343384e-05, + "loss": 0.48553779602050784, + "step": 7200 + }, + { + "epoch": 2.4455984588323982, + "grad_norm": 0.6311469078063965, + "learning_rate": 4.8777386934673366e-05, + "loss": 0.4865619659423828, + "step": 7300 + }, + { + "epoch": 2.479102102353631, + "grad_norm": 0.6794814467430115, + "learning_rate": 4.87606365159129e-05, + "loss": 0.4808743286132813, + "step": 7400 + }, + { + "epoch": 2.512605745874864, + "grad_norm": 0.5595630407333374, + "learning_rate": 4.874388609715243e-05, + "loss": 0.48029510498046873, + "step": 7500 + }, + { + "epoch": 2.546109389396097, + "grad_norm": 0.6712229251861572, + "learning_rate": 4.872713567839196e-05, + "loss": 0.476650276184082, + "step": 7600 + }, + { + "epoch": 2.57961303291733, + "grad_norm": 0.6312442421913147, + "learning_rate": 4.871038525963149e-05, + "loss": 0.4794431686401367, + "step": 7700 + }, + { + "epoch": 2.6131166764385627, + "grad_norm": 0.6586233377456665, + "learning_rate": 4.8693634840871024e-05, + "loss": 0.4789765930175781, + "step": 7800 + }, + { + "epoch": 2.6466203199597955, + "grad_norm": 0.6464796662330627, + "learning_rate": 4.867688442211055e-05, + "loss": 0.4760271072387695, + "step": 7900 + }, + { + "epoch": 2.6801239634810283, + "grad_norm": 0.6250919103622437, + "learning_rate": 4.866013400335009e-05, + "loss": 0.47466728210449216, + "step": 8000 + }, + { + "epoch": 2.7136276070022616, + "grad_norm": 0.6650984287261963, + "learning_rate": 4.864338358458962e-05, + "loss": 0.4735995864868164, + "step": 8100 + }, + { + "epoch": 2.7471312505234944, + "grad_norm": 0.6536551713943481, + "learning_rate": 4.862663316582915e-05, + "loss": 0.47292491912841794, + "step": 8200 + }, + { + "epoch": 2.780634894044727, + "grad_norm": 0.6191151142120361, + "learning_rate": 4.860988274706868e-05, + "loss": 0.4695613479614258, + "step": 8300 + }, + { + "epoch": 2.8141385375659604, + "grad_norm": 0.6110975742340088, + "learning_rate": 4.859313232830821e-05, + "loss": 0.47242835998535154, + "step": 8400 + }, + { + "epoch": 2.8476421810871932, + "grad_norm": 0.6511522531509399, + "learning_rate": 4.857638190954774e-05, + "loss": 0.46818080902099607, + "step": 8500 + }, + { + "epoch": 2.881145824608426, + "grad_norm": 0.640023410320282, + "learning_rate": 4.8559631490787275e-05, + "loss": 0.4684713745117188, + "step": 8600 + }, + { + "epoch": 2.9146494681296593, + "grad_norm": 0.6558462381362915, + "learning_rate": 4.85428810720268e-05, + "loss": 0.47039485931396485, + "step": 8700 + }, + { + "epoch": 2.948153111650892, + "grad_norm": 0.64987713098526, + "learning_rate": 4.852613065326633e-05, + "loss": 0.46639087677001956, + "step": 8800 + }, + { + "epoch": 2.981656755172125, + "grad_norm": 0.6003667712211609, + "learning_rate": 4.850938023450586e-05, + "loss": 0.4636190795898438, + "step": 8900 + }, + { + "epoch": 3.0150766395845547, + "grad_norm": 0.6194270253181458, + "learning_rate": 4.8492629815745397e-05, + "loss": 0.4602717590332031, + "step": 9000 + }, + { + "epoch": 3.0485802831057875, + "grad_norm": 0.6473113894462585, + "learning_rate": 4.8475879396984925e-05, + "loss": 0.4513474655151367, + "step": 9100 + }, + { + "epoch": 3.082083926627021, + "grad_norm": 0.581709086894989, + "learning_rate": 4.845912897822446e-05, + "loss": 0.45967998504638674, + "step": 9200 + }, + { + "epoch": 3.1155875701482536, + "grad_norm": 0.6870703101158142, + "learning_rate": 4.844237855946399e-05, + "loss": 0.4573031997680664, + "step": 9300 + }, + { + "epoch": 3.1490912136694864, + "grad_norm": 0.6703235507011414, + "learning_rate": 4.842562814070352e-05, + "loss": 0.45413665771484374, + "step": 9400 + }, + { + "epoch": 3.1825948571907197, + "grad_norm": 0.6165799498558044, + "learning_rate": 4.8408877721943054e-05, + "loss": 0.4570289993286133, + "step": 9500 + }, + { + "epoch": 3.2160985007119525, + "grad_norm": 0.6460033059120178, + "learning_rate": 4.839212730318258e-05, + "loss": 0.4591374969482422, + "step": 9600 + }, + { + "epoch": 3.2496021442331853, + "grad_norm": 0.6148829460144043, + "learning_rate": 4.837537688442211e-05, + "loss": 0.4580984115600586, + "step": 9700 + }, + { + "epoch": 3.283105787754418, + "grad_norm": 0.6245681047439575, + "learning_rate": 4.835862646566164e-05, + "loss": 0.4545408248901367, + "step": 9800 + }, + { + "epoch": 3.3166094312756513, + "grad_norm": 0.6586223840713501, + "learning_rate": 4.8341876046901176e-05, + "loss": 0.4529739761352539, + "step": 9900 + }, + { + "epoch": 3.350113074796884, + "grad_norm": 0.6357883810997009, + "learning_rate": 4.8325125628140705e-05, + "loss": 0.4568283843994141, + "step": 10000 + }, + { + "epoch": 3.383616718318117, + "grad_norm": 0.6078239679336548, + "learning_rate": 4.8308375209380234e-05, + "loss": 0.45651729583740236, + "step": 10100 + }, + { + "epoch": 3.41712036183935, + "grad_norm": 0.6468596458435059, + "learning_rate": 4.829162479061976e-05, + "loss": 0.45133846282958984, + "step": 10200 + }, + { + "epoch": 3.450624005360583, + "grad_norm": 0.6487044095993042, + "learning_rate": 4.82748743718593e-05, + "loss": 0.4508181381225586, + "step": 10300 + }, + { + "epoch": 3.484127648881816, + "grad_norm": 0.642910897731781, + "learning_rate": 4.825812395309883e-05, + "loss": 0.45145717620849607, + "step": 10400 + }, + { + "epoch": 3.517631292403049, + "grad_norm": 0.6625356674194336, + "learning_rate": 4.824137353433836e-05, + "loss": 0.45529659271240236, + "step": 10500 + }, + { + "epoch": 3.551134935924282, + "grad_norm": 0.6431829929351807, + "learning_rate": 4.822462311557789e-05, + "loss": 0.4476095962524414, + "step": 10600 + }, + { + "epoch": 3.5846385794455147, + "grad_norm": 0.6072223782539368, + "learning_rate": 4.820787269681743e-05, + "loss": 0.4495735168457031, + "step": 10700 + }, + { + "epoch": 3.6181422229667475, + "grad_norm": 0.586395800113678, + "learning_rate": 4.8191122278056956e-05, + "loss": 0.44253528594970704, + "step": 10800 + }, + { + "epoch": 3.6516458664879807, + "grad_norm": 0.5829164981842041, + "learning_rate": 4.8174371859296485e-05, + "loss": 0.44407268524169924, + "step": 10900 + }, + { + "epoch": 3.6851495100092135, + "grad_norm": 0.612237274646759, + "learning_rate": 4.8157621440536014e-05, + "loss": 0.44537506103515623, + "step": 11000 + }, + { + "epoch": 3.7186531535304463, + "grad_norm": 0.5877944827079773, + "learning_rate": 4.814087102177555e-05, + "loss": 0.44692161560058596, + "step": 11100 + }, + { + "epoch": 3.752156797051679, + "grad_norm": 0.6447933316230774, + "learning_rate": 4.812412060301508e-05, + "loss": 0.44803882598876954, + "step": 11200 + }, + { + "epoch": 3.7856604405729124, + "grad_norm": 0.6374318599700928, + "learning_rate": 4.810737018425461e-05, + "loss": 0.4482523345947266, + "step": 11300 + }, + { + "epoch": 3.819164084094145, + "grad_norm": 0.7126030921936035, + "learning_rate": 4.8090619765494136e-05, + "loss": 0.44646026611328127, + "step": 11400 + }, + { + "epoch": 3.852667727615378, + "grad_norm": 0.6466185450553894, + "learning_rate": 4.807386934673367e-05, + "loss": 0.44249160766601564, + "step": 11500 + }, + { + "epoch": 3.8861713711366113, + "grad_norm": 0.6428183913230896, + "learning_rate": 4.80571189279732e-05, + "loss": 0.44268692016601563, + "step": 11600 + }, + { + "epoch": 3.919675014657844, + "grad_norm": 0.5706833600997925, + "learning_rate": 4.8040368509212736e-05, + "loss": 0.4477870559692383, + "step": 11700 + }, + { + "epoch": 3.953178658179077, + "grad_norm": 0.6583021879196167, + "learning_rate": 4.8023618090452265e-05, + "loss": 0.44658790588378905, + "step": 11800 + }, + { + "epoch": 3.98668230170031, + "grad_norm": 0.6143375039100647, + "learning_rate": 4.800686767169179e-05, + "loss": 0.4439199447631836, + "step": 11900 + }, + { + "epoch": 4.02010218611274, + "grad_norm": 0.5873826146125793, + "learning_rate": 4.799011725293133e-05, + "loss": 0.43299171447753904, + "step": 12000 + }, + { + "epoch": 4.053605829633972, + "grad_norm": 0.652965247631073, + "learning_rate": 4.797336683417086e-05, + "loss": 0.43379459381103513, + "step": 12100 + }, + { + "epoch": 4.087109473155206, + "grad_norm": 0.6809676885604858, + "learning_rate": 4.795661641541039e-05, + "loss": 0.434725341796875, + "step": 12200 + }, + { + "epoch": 4.120613116676439, + "grad_norm": 0.7001864314079285, + "learning_rate": 4.7939865996649915e-05, + "loss": 0.4402421188354492, + "step": 12300 + }, + { + "epoch": 4.154116760197671, + "grad_norm": 0.5879281759262085, + "learning_rate": 4.792311557788945e-05, + "loss": 0.436952018737793, + "step": 12400 + }, + { + "epoch": 4.187620403718904, + "grad_norm": 0.6814981698989868, + "learning_rate": 4.790636515912898e-05, + "loss": 0.43582103729248045, + "step": 12500 + }, + { + "epoch": 4.221124047240138, + "grad_norm": 0.6850152611732483, + "learning_rate": 4.788961474036851e-05, + "loss": 0.4337678527832031, + "step": 12600 + }, + { + "epoch": 4.25462769076137, + "grad_norm": 0.6886492967605591, + "learning_rate": 4.787286432160804e-05, + "loss": 0.4366899108886719, + "step": 12700 + }, + { + "epoch": 4.288131334282603, + "grad_norm": 0.6915615797042847, + "learning_rate": 4.785611390284757e-05, + "loss": 0.4344156265258789, + "step": 12800 + }, + { + "epoch": 4.3216349778038365, + "grad_norm": 0.6565848588943481, + "learning_rate": 4.78393634840871e-05, + "loss": 0.43212577819824216, + "step": 12900 + }, + { + "epoch": 4.355138621325069, + "grad_norm": 0.6957235336303711, + "learning_rate": 4.782261306532664e-05, + "loss": 0.4340908432006836, + "step": 13000 + }, + { + "epoch": 4.388642264846302, + "grad_norm": 0.6763550043106079, + "learning_rate": 4.7805862646566166e-05, + "loss": 0.43744525909423826, + "step": 13100 + }, + { + "epoch": 4.4221459083675345, + "grad_norm": 0.6657949090003967, + "learning_rate": 4.77891122278057e-05, + "loss": 0.4336092758178711, + "step": 13200 + }, + { + "epoch": 4.455649551888768, + "grad_norm": 0.6623894572257996, + "learning_rate": 4.777236180904523e-05, + "loss": 0.43067619323730466, + "step": 13300 + }, + { + "epoch": 4.489153195410001, + "grad_norm": 0.7518236041069031, + "learning_rate": 4.775561139028476e-05, + "loss": 0.4269240951538086, + "step": 13400 + }, + { + "epoch": 4.522656838931233, + "grad_norm": 0.6672277450561523, + "learning_rate": 4.773886097152429e-05, + "loss": 0.42989879608154297, + "step": 13500 + }, + { + "epoch": 4.556160482452467, + "grad_norm": 0.6400379538536072, + "learning_rate": 4.7722110552763824e-05, + "loss": 0.4264271926879883, + "step": 13600 + }, + { + "epoch": 4.5896641259737, + "grad_norm": 0.5992236733436584, + "learning_rate": 4.770536013400335e-05, + "loss": 0.4286244964599609, + "step": 13700 + }, + { + "epoch": 4.623167769494932, + "grad_norm": 0.674788773059845, + "learning_rate": 4.768860971524288e-05, + "loss": 0.42616188049316406, + "step": 13800 + }, + { + "epoch": 4.6566714130161655, + "grad_norm": 0.6788604259490967, + "learning_rate": 4.767185929648241e-05, + "loss": 0.4273800277709961, + "step": 13900 + }, + { + "epoch": 4.690175056537399, + "grad_norm": 0.6140567064285278, + "learning_rate": 4.7655108877721946e-05, + "loss": 0.43147178649902346, + "step": 14000 + }, + { + "epoch": 4.723678700058631, + "grad_norm": 0.6155766248703003, + "learning_rate": 4.7638525963149085e-05, + "loss": 0.4265935134887695, + "step": 14100 + }, + { + "epoch": 4.757182343579864, + "grad_norm": 0.6408616304397583, + "learning_rate": 4.7621775544388614e-05, + "loss": 0.4271296691894531, + "step": 14200 + }, + { + "epoch": 4.790685987101098, + "grad_norm": 0.6060003638267517, + "learning_rate": 4.760502512562814e-05, + "loss": 0.42877567291259766, + "step": 14300 + }, + { + "epoch": 4.82418963062233, + "grad_norm": 0.594854474067688, + "learning_rate": 4.758827470686767e-05, + "loss": 0.42625518798828127, + "step": 14400 + }, + { + "epoch": 4.857693274143563, + "grad_norm": 0.7048496007919312, + "learning_rate": 4.757152428810721e-05, + "loss": 0.4247948455810547, + "step": 14500 + }, + { + "epoch": 4.8911969176647965, + "grad_norm": 0.6743406057357788, + "learning_rate": 4.7554773869346736e-05, + "loss": 0.42869789123535157, + "step": 14600 + }, + { + "epoch": 4.924700561186029, + "grad_norm": 0.6159805059432983, + "learning_rate": 4.7538023450586265e-05, + "loss": 0.42471588134765625, + "step": 14700 + }, + { + "epoch": 4.958204204707262, + "grad_norm": 0.6490402817726135, + "learning_rate": 4.7521273031825794e-05, + "loss": 0.42407047271728515, + "step": 14800 + }, + { + "epoch": 4.991707848228495, + "grad_norm": 0.6755446791648865, + "learning_rate": 4.750452261306533e-05, + "loss": 0.42307563781738283, + "step": 14900 + }, + { + "epoch": 5.025127732640924, + "grad_norm": 0.6245474219322205, + "learning_rate": 4.748777219430486e-05, + "loss": 0.4140509796142578, + "step": 15000 + }, + { + "epoch": 5.0586313761621575, + "grad_norm": 0.6199154257774353, + "learning_rate": 4.747102177554439e-05, + "loss": 0.4141695785522461, + "step": 15100 + }, + { + "epoch": 5.092135019683391, + "grad_norm": 0.6318620443344116, + "learning_rate": 4.7454271356783916e-05, + "loss": 0.4133845520019531, + "step": 15200 + }, + { + "epoch": 5.125638663204623, + "grad_norm": 0.6261297464370728, + "learning_rate": 4.743752093802346e-05, + "loss": 0.41985397338867186, + "step": 15300 + }, + { + "epoch": 5.159142306725856, + "grad_norm": 0.6642125248908997, + "learning_rate": 4.742077051926299e-05, + "loss": 0.41414112091064453, + "step": 15400 + }, + { + "epoch": 5.19264595024709, + "grad_norm": 0.7118062973022461, + "learning_rate": 4.7404020100502516e-05, + "loss": 0.4157746505737305, + "step": 15500 + }, + { + "epoch": 5.226149593768322, + "grad_norm": 0.6888347268104553, + "learning_rate": 4.7387269681742045e-05, + "loss": 0.41798015594482424, + "step": 15600 + }, + { + "epoch": 5.259653237289555, + "grad_norm": 0.6572776436805725, + "learning_rate": 4.737051926298158e-05, + "loss": 0.4158905029296875, + "step": 15700 + }, + { + "epoch": 5.2931568808107885, + "grad_norm": 0.6731371283531189, + "learning_rate": 4.735376884422111e-05, + "loss": 0.4200982666015625, + "step": 15800 + }, + { + "epoch": 5.326660524332021, + "grad_norm": 0.6026290655136108, + "learning_rate": 4.733701842546064e-05, + "loss": 0.4160591125488281, + "step": 15900 + }, + { + "epoch": 5.360164167853254, + "grad_norm": 0.6480405926704407, + "learning_rate": 4.732026800670017e-05, + "loss": 0.4141067123413086, + "step": 16000 + }, + { + "epoch": 5.393667811374487, + "grad_norm": 0.7435486912727356, + "learning_rate": 4.7303685092127306e-05, + "loss": 0.4195803451538086, + "step": 16100 + }, + { + "epoch": 5.42717145489572, + "grad_norm": 0.6561776995658875, + "learning_rate": 4.7286934673366835e-05, + "loss": 0.41183818817138673, + "step": 16200 + }, + { + "epoch": 5.460675098416953, + "grad_norm": 0.637554407119751, + "learning_rate": 4.727018425460637e-05, + "loss": 0.41124614715576174, + "step": 16300 + }, + { + "epoch": 5.494178741938185, + "grad_norm": 0.6575638055801392, + "learning_rate": 4.72534338358459e-05, + "loss": 0.41794925689697265, + "step": 16400 + }, + { + "epoch": 5.527682385459419, + "grad_norm": 0.678394079208374, + "learning_rate": 4.723668341708543e-05, + "loss": 0.4172962188720703, + "step": 16500 + }, + { + "epoch": 5.561186028980652, + "grad_norm": 0.6401932835578918, + "learning_rate": 4.7219932998324964e-05, + "loss": 0.4176398468017578, + "step": 16600 + }, + { + "epoch": 5.594689672501884, + "grad_norm": 0.7197437286376953, + "learning_rate": 4.720318257956449e-05, + "loss": 0.4155929183959961, + "step": 16700 + }, + { + "epoch": 5.6281933160231175, + "grad_norm": 0.6697796583175659, + "learning_rate": 4.718643216080402e-05, + "loss": 0.41755367279052735, + "step": 16800 + }, + { + "epoch": 5.661696959544351, + "grad_norm": 0.6090868711471558, + "learning_rate": 4.716968174204355e-05, + "loss": 0.4136951446533203, + "step": 16900 + }, + { + "epoch": 5.695200603065583, + "grad_norm": 0.6004068851470947, + "learning_rate": 4.7152931323283086e-05, + "loss": 0.4162490463256836, + "step": 17000 + }, + { + "epoch": 5.728704246586816, + "grad_norm": 0.6552139520645142, + "learning_rate": 4.7136180904522615e-05, + "loss": 0.4109830856323242, + "step": 17100 + }, + { + "epoch": 5.76220789010805, + "grad_norm": 0.7132771015167236, + "learning_rate": 4.7119430485762144e-05, + "loss": 0.4129109573364258, + "step": 17200 + }, + { + "epoch": 5.795711533629282, + "grad_norm": 0.6571471095085144, + "learning_rate": 4.710268006700167e-05, + "loss": 0.4140293121337891, + "step": 17300 + }, + { + "epoch": 5.829215177150515, + "grad_norm": 0.6521652936935425, + "learning_rate": 4.708592964824121e-05, + "loss": 0.41335311889648435, + "step": 17400 + }, + { + "epoch": 5.862718820671748, + "grad_norm": 0.6223021149635315, + "learning_rate": 4.706917922948074e-05, + "loss": 0.41415943145751954, + "step": 17500 + }, + { + "epoch": 5.896222464192981, + "grad_norm": 0.6671064496040344, + "learning_rate": 4.705242881072027e-05, + "loss": 0.4121688461303711, + "step": 17600 + }, + { + "epoch": 5.929726107714214, + "grad_norm": 0.6168386340141296, + "learning_rate": 4.70356783919598e-05, + "loss": 0.40964771270751954, + "step": 17700 + }, + { + "epoch": 5.963229751235447, + "grad_norm": 0.6829288601875305, + "learning_rate": 4.701892797319934e-05, + "loss": 0.4161583709716797, + "step": 17800 + }, + { + "epoch": 5.99673339475668, + "grad_norm": 0.6415479183197021, + "learning_rate": 4.7002177554438866e-05, + "loss": 0.4163412857055664, + "step": 17900 + }, + { + "epoch": 6.0301532791691095, + "grad_norm": 0.6762277483940125, + "learning_rate": 4.6985427135678394e-05, + "loss": 0.40404136657714845, + "step": 18000 + }, + { + "epoch": 6.063656922690343, + "grad_norm": 0.7215397357940674, + "learning_rate": 4.696884422110553e-05, + "loss": 0.40555873870849607, + "step": 18100 + }, + { + "epoch": 6.097160566211575, + "grad_norm": 0.6093649864196777, + "learning_rate": 4.695209380234506e-05, + "loss": 0.3959674072265625, + "step": 18200 + }, + { + "epoch": 6.130664209732808, + "grad_norm": 0.6576215624809265, + "learning_rate": 4.693534338358459e-05, + "loss": 0.4000381851196289, + "step": 18300 + }, + { + "epoch": 6.164167853254042, + "grad_norm": 0.6869475841522217, + "learning_rate": 4.691859296482412e-05, + "loss": 0.40716861724853515, + "step": 18400 + }, + { + "epoch": 6.197671496775274, + "grad_norm": 0.6864603161811829, + "learning_rate": 4.690184254606365e-05, + "loss": 0.4014585494995117, + "step": 18500 + }, + { + "epoch": 6.231175140296507, + "grad_norm": 0.68086177110672, + "learning_rate": 4.6885092127303185e-05, + "loss": 0.3985603713989258, + "step": 18600 + }, + { + "epoch": 6.2646787838177405, + "grad_norm": 0.700307309627533, + "learning_rate": 4.686834170854272e-05, + "loss": 0.3990879440307617, + "step": 18700 + }, + { + "epoch": 6.298182427338973, + "grad_norm": 0.7301186919212341, + "learning_rate": 4.685159128978225e-05, + "loss": 0.4010288619995117, + "step": 18800 + }, + { + "epoch": 6.331686070860206, + "grad_norm": 0.6819117069244385, + "learning_rate": 4.683484087102178e-05, + "loss": 0.4012245941162109, + "step": 18900 + }, + { + "epoch": 6.365189714381439, + "grad_norm": 0.6428888440132141, + "learning_rate": 4.681809045226131e-05, + "loss": 0.40439247131347655, + "step": 19000 + }, + { + "epoch": 6.398693357902672, + "grad_norm": 0.6879697442054749, + "learning_rate": 4.680134003350084e-05, + "loss": 0.4002133560180664, + "step": 19100 + }, + { + "epoch": 6.432197001423905, + "grad_norm": 0.7050502300262451, + "learning_rate": 4.678458961474037e-05, + "loss": 0.40451095581054686, + "step": 19200 + }, + { + "epoch": 6.465700644945138, + "grad_norm": 0.6575663685798645, + "learning_rate": 4.67678391959799e-05, + "loss": 0.40367134094238283, + "step": 19300 + }, + { + "epoch": 6.4992042884663705, + "grad_norm": 0.725883424282074, + "learning_rate": 4.675108877721943e-05, + "loss": 0.40375911712646484, + "step": 19400 + }, + { + "epoch": 6.532707931987604, + "grad_norm": 0.6960121989250183, + "learning_rate": 4.6734338358458964e-05, + "loss": 0.39711700439453124, + "step": 19500 + }, + { + "epoch": 6.566211575508836, + "grad_norm": 0.6402387022972107, + "learning_rate": 4.671758793969849e-05, + "loss": 0.40309242248535154, + "step": 19600 + }, + { + "epoch": 6.599715219030069, + "grad_norm": 0.6541135311126709, + "learning_rate": 4.670083752093802e-05, + "loss": 0.3986012268066406, + "step": 19700 + }, + { + "epoch": 6.633218862551303, + "grad_norm": 0.7802708745002747, + "learning_rate": 4.668408710217756e-05, + "loss": 0.4055080795288086, + "step": 19800 + }, + { + "epoch": 6.666722506072535, + "grad_norm": 0.7293182015419006, + "learning_rate": 4.666733668341709e-05, + "loss": 0.39762969970703127, + "step": 19900 + }, + { + "epoch": 6.700226149593768, + "grad_norm": 0.6476279497146606, + "learning_rate": 4.665058626465662e-05, + "loss": 0.39965827941894533, + "step": 20000 + }, + { + "epoch": 6.7337297931150015, + "grad_norm": 0.7234406471252441, + "learning_rate": 4.663383584589615e-05, + "loss": 0.40417919158935545, + "step": 20100 + }, + { + "epoch": 6.767233436636234, + "grad_norm": 0.6661069989204407, + "learning_rate": 4.661725293132328e-05, + "loss": 0.40048927307128906, + "step": 20200 + }, + { + "epoch": 6.800737080157467, + "grad_norm": 0.6745995283126831, + "learning_rate": 4.660050251256282e-05, + "loss": 0.40084247589111327, + "step": 20300 + }, + { + "epoch": 6.8342407236787, + "grad_norm": 0.6546103954315186, + "learning_rate": 4.658375209380235e-05, + "loss": 0.40273414611816405, + "step": 20400 + }, + { + "epoch": 6.867744367199933, + "grad_norm": 0.6249874830245972, + "learning_rate": 4.6567001675041877e-05, + "loss": 0.4047482299804688, + "step": 20500 + }, + { + "epoch": 6.901248010721166, + "grad_norm": 0.621865451335907, + "learning_rate": 4.6550251256281405e-05, + "loss": 0.40309608459472657, + "step": 20600 + }, + { + "epoch": 6.934751654242399, + "grad_norm": 0.664582371711731, + "learning_rate": 4.653350083752094e-05, + "loss": 0.402041015625, + "step": 20700 + }, + { + "epoch": 6.968255297763632, + "grad_norm": 0.6802883148193359, + "learning_rate": 4.651675041876047e-05, + "loss": 0.40645900726318357, + "step": 20800 + }, + { + "epoch": 7.001675182176061, + "grad_norm": 0.6586912870407104, + "learning_rate": 4.6500000000000005e-05, + "loss": 0.3996978759765625, + "step": 20900 + }, + { + "epoch": 7.035178825697295, + "grad_norm": 0.6849681735038757, + "learning_rate": 4.6483249581239534e-05, + "loss": 0.38614749908447266, + "step": 21000 + }, + { + "epoch": 7.068682469218528, + "grad_norm": 0.694872260093689, + "learning_rate": 4.646649916247906e-05, + "loss": 0.38619533538818357, + "step": 21100 + }, + { + "epoch": 7.10218611273976, + "grad_norm": 0.7047699689865112, + "learning_rate": 4.64497487437186e-05, + "loss": 0.38167682647705076, + "step": 21200 + }, + { + "epoch": 7.1356897562609936, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.643299832495813e-05, + "loss": 0.3932147979736328, + "step": 21300 + }, + { + "epoch": 7.169193399782226, + "grad_norm": 0.6869648098945618, + "learning_rate": 4.6416247906197656e-05, + "loss": 0.38886920928955077, + "step": 21400 + }, + { + "epoch": 7.202697043303459, + "grad_norm": 0.7238380908966064, + "learning_rate": 4.6399497487437185e-05, + "loss": 0.3933087158203125, + "step": 21500 + }, + { + "epoch": 7.236200686824692, + "grad_norm": 0.708855152130127, + "learning_rate": 4.638274706867672e-05, + "loss": 0.3932600784301758, + "step": 21600 + }, + { + "epoch": 7.269704330345925, + "grad_norm": 0.6577633619308472, + "learning_rate": 4.636599664991625e-05, + "loss": 0.38899864196777345, + "step": 21700 + }, + { + "epoch": 7.303207973867158, + "grad_norm": 0.7226035594940186, + "learning_rate": 4.634924623115578e-05, + "loss": 0.3912385559082031, + "step": 21800 + }, + { + "epoch": 7.336711617388391, + "grad_norm": 0.7393138408660889, + "learning_rate": 4.633249581239531e-05, + "loss": 0.38804672241210936, + "step": 21900 + }, + { + "epoch": 7.370215260909624, + "grad_norm": 0.7591322660446167, + "learning_rate": 4.631574539363484e-05, + "loss": 0.39187992095947266, + "step": 22000 + }, + { + "epoch": 7.403718904430857, + "grad_norm": 0.7180842757225037, + "learning_rate": 4.629899497487438e-05, + "loss": 0.3885354232788086, + "step": 22100 + }, + { + "epoch": 7.43722254795209, + "grad_norm": 0.5701187252998352, + "learning_rate": 4.628241206030151e-05, + "loss": 0.3929626083374023, + "step": 22200 + }, + { + "epoch": 7.4707261914733225, + "grad_norm": 0.6831353902816772, + "learning_rate": 4.626566164154104e-05, + "loss": 0.3864256286621094, + "step": 22300 + }, + { + "epoch": 7.504229834994556, + "grad_norm": 0.7295540571212769, + "learning_rate": 4.6248911222780575e-05, + "loss": 0.3930975341796875, + "step": 22400 + }, + { + "epoch": 7.537733478515788, + "grad_norm": 0.6555300951004028, + "learning_rate": 4.6232160804020104e-05, + "loss": 0.39193412780761716, + "step": 22500 + }, + { + "epoch": 7.571237122037021, + "grad_norm": 0.6836072206497192, + "learning_rate": 4.621541038525963e-05, + "loss": 0.39321327209472656, + "step": 22600 + }, + { + "epoch": 7.604740765558255, + "grad_norm": 0.7344244122505188, + "learning_rate": 4.619865996649916e-05, + "loss": 0.39178211212158204, + "step": 22700 + }, + { + "epoch": 7.638244409079487, + "grad_norm": 0.6757531762123108, + "learning_rate": 4.61819095477387e-05, + "loss": 0.3929476547241211, + "step": 22800 + }, + { + "epoch": 7.67174805260072, + "grad_norm": 0.790185272693634, + "learning_rate": 4.6165159128978226e-05, + "loss": 0.388702392578125, + "step": 22900 + }, + { + "epoch": 7.7052516961219535, + "grad_norm": 0.6090592741966248, + "learning_rate": 4.6148408710217755e-05, + "loss": 0.39199878692626955, + "step": 23000 + }, + { + "epoch": 7.738755339643186, + "grad_norm": 0.7253360152244568, + "learning_rate": 4.6131658291457284e-05, + "loss": 0.39112945556640627, + "step": 23100 + }, + { + "epoch": 7.772258983164419, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.611490787269682e-05, + "loss": 0.39291053771972656, + "step": 23200 + }, + { + "epoch": 7.805762626685652, + "grad_norm": 0.6961659789085388, + "learning_rate": 4.6098157453936355e-05, + "loss": 0.39124824523925783, + "step": 23300 + }, + { + "epoch": 7.839266270206885, + "grad_norm": 0.7136702537536621, + "learning_rate": 4.6081407035175884e-05, + "loss": 0.39080577850341797, + "step": 23400 + }, + { + "epoch": 7.872769913728118, + "grad_norm": 0.7133346199989319, + "learning_rate": 4.606465661641541e-05, + "loss": 0.3894335174560547, + "step": 23500 + }, + { + "epoch": 7.906273557249351, + "grad_norm": 0.7279176115989685, + "learning_rate": 4.604790619765494e-05, + "loss": 0.3878567886352539, + "step": 23600 + }, + { + "epoch": 7.939777200770584, + "grad_norm": 0.6854584217071533, + "learning_rate": 4.603115577889448e-05, + "loss": 0.3958644104003906, + "step": 23700 + }, + { + "epoch": 7.973280844291817, + "grad_norm": 0.7134712934494019, + "learning_rate": 4.6014405360134006e-05, + "loss": 0.39134223937988283, + "step": 23800 + }, + { + "epoch": 8.006700728704246, + "grad_norm": 0.7242705821990967, + "learning_rate": 4.5997654941373535e-05, + "loss": 0.38787689208984377, + "step": 23900 + }, + { + "epoch": 8.04020437222548, + "grad_norm": 0.6507485508918762, + "learning_rate": 4.5980904522613064e-05, + "loss": 0.3778019332885742, + "step": 24000 + }, + { + "epoch": 8.073708015746712, + "grad_norm": 0.6936424374580383, + "learning_rate": 4.59641541038526e-05, + "loss": 0.3767805862426758, + "step": 24100 + }, + { + "epoch": 8.107211659267945, + "grad_norm": 0.6715813279151917, + "learning_rate": 4.594757118927974e-05, + "loss": 0.37527366638183596, + "step": 24200 + }, + { + "epoch": 8.140715302789179, + "grad_norm": 0.7407135367393494, + "learning_rate": 4.593082077051927e-05, + "loss": 0.37779621124267576, + "step": 24300 + }, + { + "epoch": 8.174218946310411, + "grad_norm": 0.7536392211914062, + "learning_rate": 4.5914070351758796e-05, + "loss": 0.3771663665771484, + "step": 24400 + }, + { + "epoch": 8.207722589831643, + "grad_norm": 0.7159863114356995, + "learning_rate": 4.589731993299833e-05, + "loss": 0.3789206314086914, + "step": 24500 + }, + { + "epoch": 8.241226233352878, + "grad_norm": 0.7217793464660645, + "learning_rate": 4.588056951423786e-05, + "loss": 0.37845233917236326, + "step": 24600 + }, + { + "epoch": 8.27472987687411, + "grad_norm": 0.6689481139183044, + "learning_rate": 4.586381909547739e-05, + "loss": 0.3793601989746094, + "step": 24700 + }, + { + "epoch": 8.308233520395342, + "grad_norm": 0.6575570702552795, + "learning_rate": 4.584706867671692e-05, + "loss": 0.3798051452636719, + "step": 24800 + }, + { + "epoch": 8.341737163916576, + "grad_norm": 0.7236769795417786, + "learning_rate": 4.5830318257956454e-05, + "loss": 0.3808049011230469, + "step": 24900 + }, + { + "epoch": 8.375240807437809, + "grad_norm": 0.7543460130691528, + "learning_rate": 4.581356783919598e-05, + "loss": 0.3847679138183594, + "step": 25000 + }, + { + "epoch": 8.408744450959041, + "grad_norm": 0.7130107879638672, + "learning_rate": 4.579681742043551e-05, + "loss": 0.37841434478759767, + "step": 25100 + }, + { + "epoch": 8.442248094480275, + "grad_norm": 0.6971204876899719, + "learning_rate": 4.578006700167504e-05, + "loss": 0.3828566360473633, + "step": 25200 + }, + { + "epoch": 8.475751738001508, + "grad_norm": 0.7880971431732178, + "learning_rate": 4.5763316582914576e-05, + "loss": 0.37794727325439453, + "step": 25300 + }, + { + "epoch": 8.50925538152274, + "grad_norm": 0.795606255531311, + "learning_rate": 4.574656616415411e-05, + "loss": 0.3807938003540039, + "step": 25400 + }, + { + "epoch": 8.542759025043974, + "grad_norm": 0.662270724773407, + "learning_rate": 4.572981574539364e-05, + "loss": 0.38113510131835937, + "step": 25500 + }, + { + "epoch": 8.576262668565207, + "grad_norm": 0.7585960626602173, + "learning_rate": 4.571306532663317e-05, + "loss": 0.3807952880859375, + "step": 25600 + }, + { + "epoch": 8.609766312086439, + "grad_norm": 0.7054327726364136, + "learning_rate": 4.56963149078727e-05, + "loss": 0.3791161346435547, + "step": 25700 + }, + { + "epoch": 8.643269955607673, + "grad_norm": 0.7529199719429016, + "learning_rate": 4.5679564489112233e-05, + "loss": 0.3771999359130859, + "step": 25800 + }, + { + "epoch": 8.676773599128905, + "grad_norm": 0.7693551182746887, + "learning_rate": 4.566281407035176e-05, + "loss": 0.37909912109375, + "step": 25900 + }, + { + "epoch": 8.710277242650138, + "grad_norm": 0.7142516374588013, + "learning_rate": 4.564606365159129e-05, + "loss": 0.38215831756591795, + "step": 26000 + }, + { + "epoch": 8.743780886171372, + "grad_norm": 0.7293452024459839, + "learning_rate": 4.562931323283082e-05, + "loss": 0.38390281677246096, + "step": 26100 + }, + { + "epoch": 8.777284529692604, + "grad_norm": 0.725549578666687, + "learning_rate": 4.561273031825796e-05, + "loss": 0.37903385162353515, + "step": 26200 + }, + { + "epoch": 8.810788173213837, + "grad_norm": 0.7497493028640747, + "learning_rate": 4.559597989949749e-05, + "loss": 0.3807545852661133, + "step": 26300 + }, + { + "epoch": 8.844291816735069, + "grad_norm": 0.6810445189476013, + "learning_rate": 4.557922948073702e-05, + "loss": 0.38407058715820314, + "step": 26400 + }, + { + "epoch": 8.877795460256303, + "grad_norm": 0.6970882415771484, + "learning_rate": 4.556247906197655e-05, + "loss": 0.377288818359375, + "step": 26500 + }, + { + "epoch": 8.911299103777536, + "grad_norm": 0.6579902768135071, + "learning_rate": 4.554572864321608e-05, + "loss": 0.3823952484130859, + "step": 26600 + }, + { + "epoch": 8.94480274729877, + "grad_norm": 0.7329373359680176, + "learning_rate": 4.552897822445562e-05, + "loss": 0.38345798492431643, + "step": 26700 + }, + { + "epoch": 8.978306390820002, + "grad_norm": 0.7462034821510315, + "learning_rate": 4.5512227805695146e-05, + "loss": 0.38348892211914065, + "step": 26800 + }, + { + "epoch": 9.011726275232432, + "grad_norm": 0.6734225153923035, + "learning_rate": 4.5495477386934675e-05, + "loss": 0.37156158447265625, + "step": 26900 + }, + { + "epoch": 9.045229918753664, + "grad_norm": 0.7718762159347534, + "learning_rate": 4.54787269681742e-05, + "loss": 0.3672407913208008, + "step": 27000 + }, + { + "epoch": 9.078733562274897, + "grad_norm": 0.7702797055244446, + "learning_rate": 4.546197654941374e-05, + "loss": 0.36319580078125, + "step": 27100 + }, + { + "epoch": 9.11223720579613, + "grad_norm": 0.7608715891838074, + "learning_rate": 4.544522613065327e-05, + "loss": 0.3686368179321289, + "step": 27200 + }, + { + "epoch": 9.145740849317363, + "grad_norm": 0.6544201970100403, + "learning_rate": 4.54284757118928e-05, + "loss": 0.3657124710083008, + "step": 27300 + }, + { + "epoch": 9.179244492838595, + "grad_norm": 0.7948552370071411, + "learning_rate": 4.541172529313233e-05, + "loss": 0.3642101669311523, + "step": 27400 + }, + { + "epoch": 9.21274813635983, + "grad_norm": 0.7283180356025696, + "learning_rate": 4.539497487437186e-05, + "loss": 0.36608253479003905, + "step": 27500 + }, + { + "epoch": 9.246251779881062, + "grad_norm": 0.7535043358802795, + "learning_rate": 4.537822445561139e-05, + "loss": 0.3699675750732422, + "step": 27600 + }, + { + "epoch": 9.279755423402294, + "grad_norm": 0.7893076539039612, + "learning_rate": 4.5361474036850925e-05, + "loss": 0.3712180709838867, + "step": 27700 + }, + { + "epoch": 9.313259066923528, + "grad_norm": 0.7542401552200317, + "learning_rate": 4.5344723618090454e-05, + "loss": 0.36577003479003906, + "step": 27800 + }, + { + "epoch": 9.34676271044476, + "grad_norm": 0.7122746706008911, + "learning_rate": 4.532797319932999e-05, + "loss": 0.3700094985961914, + "step": 27900 + }, + { + "epoch": 9.380266353965993, + "grad_norm": 0.7706195116043091, + "learning_rate": 4.531122278056952e-05, + "loss": 0.3662248229980469, + "step": 28000 + }, + { + "epoch": 9.413769997487227, + "grad_norm": 0.7564675211906433, + "learning_rate": 4.529447236180905e-05, + "loss": 0.37131824493408205, + "step": 28100 + }, + { + "epoch": 9.44727364100846, + "grad_norm": 0.7425429224967957, + "learning_rate": 4.5277721943048576e-05, + "loss": 0.3740149688720703, + "step": 28200 + }, + { + "epoch": 9.480777284529692, + "grad_norm": 0.7587184906005859, + "learning_rate": 4.5261139028475716e-05, + "loss": 0.3699770736694336, + "step": 28300 + }, + { + "epoch": 9.514280928050926, + "grad_norm": 0.7541705369949341, + "learning_rate": 4.5244388609715244e-05, + "loss": 0.37311084747314455, + "step": 28400 + }, + { + "epoch": 9.547784571572159, + "grad_norm": 0.7311919331550598, + "learning_rate": 4.522763819095477e-05, + "loss": 0.3715859603881836, + "step": 28500 + }, + { + "epoch": 9.581288215093391, + "grad_norm": 0.700539767742157, + "learning_rate": 4.52108877721943e-05, + "loss": 0.3688846206665039, + "step": 28600 + }, + { + "epoch": 9.614791858614625, + "grad_norm": 0.6238375306129456, + "learning_rate": 4.519413735343384e-05, + "loss": 0.3701490020751953, + "step": 28700 + }, + { + "epoch": 9.648295502135857, + "grad_norm": 0.6758601069450378, + "learning_rate": 4.517738693467337e-05, + "loss": 0.37076793670654296, + "step": 28800 + }, + { + "epoch": 9.68179914565709, + "grad_norm": 0.7019829750061035, + "learning_rate": 4.51606365159129e-05, + "loss": 0.3690201187133789, + "step": 28900 + }, + { + "epoch": 9.715302789178324, + "grad_norm": 0.8280263543128967, + "learning_rate": 4.514388609715243e-05, + "loss": 0.3725156402587891, + "step": 29000 + }, + { + "epoch": 9.748806432699556, + "grad_norm": 0.6962838172912598, + "learning_rate": 4.512713567839196e-05, + "loss": 0.3695372009277344, + "step": 29100 + }, + { + "epoch": 9.782310076220789, + "grad_norm": 0.6678254008293152, + "learning_rate": 4.5110385259631495e-05, + "loss": 0.36981796264648437, + "step": 29200 + }, + { + "epoch": 9.815813719742023, + "grad_norm": 0.7574114799499512, + "learning_rate": 4.5093634840871024e-05, + "loss": 0.3735762023925781, + "step": 29300 + }, + { + "epoch": 9.849317363263255, + "grad_norm": 0.6498548984527588, + "learning_rate": 4.507688442211055e-05, + "loss": 0.36818092346191406, + "step": 29400 + }, + { + "epoch": 9.882821006784487, + "grad_norm": 0.6784448623657227, + "learning_rate": 4.506013400335008e-05, + "loss": 0.3738037872314453, + "step": 29500 + }, + { + "epoch": 9.916324650305722, + "grad_norm": 0.748648464679718, + "learning_rate": 4.504338358458962e-05, + "loss": 0.3744197463989258, + "step": 29600 + }, + { + "epoch": 9.949828293826954, + "grad_norm": 0.7319295406341553, + "learning_rate": 4.5026633165829146e-05, + "loss": 0.3747980499267578, + "step": 29700 + }, + { + "epoch": 9.983331937348186, + "grad_norm": 0.7425316572189331, + "learning_rate": 4.5009882747068675e-05, + "loss": 0.37337436676025393, + "step": 29800 + }, + { + "epoch": 10.016751821760616, + "grad_norm": 0.6705507040023804, + "learning_rate": 4.499313232830821e-05, + "loss": 0.36580001831054687, + "step": 29900 + }, + { + "epoch": 10.050255465281849, + "grad_norm": 0.7338049411773682, + "learning_rate": 4.4976381909547746e-05, + "loss": 0.35635528564453123, + "step": 30000 + }, + { + "epoch": 10.083759108803083, + "grad_norm": 0.7279812693595886, + "learning_rate": 4.4959631490787275e-05, + "loss": 0.3529629898071289, + "step": 30100 + }, + { + "epoch": 10.117262752324315, + "grad_norm": 0.7696557641029358, + "learning_rate": 4.4942881072026804e-05, + "loss": 0.354565315246582, + "step": 30200 + }, + { + "epoch": 10.150766395845547, + "grad_norm": 0.728212833404541, + "learning_rate": 4.4926298157453936e-05, + "loss": 0.3530071258544922, + "step": 30300 + }, + { + "epoch": 10.184270039366782, + "grad_norm": 0.7012603878974915, + "learning_rate": 4.490954773869347e-05, + "loss": 0.3573540496826172, + "step": 30400 + }, + { + "epoch": 10.217773682888014, + "grad_norm": 0.7446846961975098, + "learning_rate": 4.4892797319933e-05, + "loss": 0.35920669555664064, + "step": 30500 + }, + { + "epoch": 10.251277326409246, + "grad_norm": 0.792353630065918, + "learning_rate": 4.487604690117253e-05, + "loss": 0.3555112075805664, + "step": 30600 + }, + { + "epoch": 10.28478096993048, + "grad_norm": 0.6799439787864685, + "learning_rate": 4.485929648241206e-05, + "loss": 0.36326725006103516, + "step": 30700 + }, + { + "epoch": 10.318284613451713, + "grad_norm": 0.7877249121665955, + "learning_rate": 4.4842546063651594e-05, + "loss": 0.36337570190429686, + "step": 30800 + }, + { + "epoch": 10.351788256972945, + "grad_norm": 0.8450521230697632, + "learning_rate": 4.482579564489112e-05, + "loss": 0.3597735595703125, + "step": 30900 + }, + { + "epoch": 10.38529190049418, + "grad_norm": 0.7301276922225952, + "learning_rate": 4.480904522613066e-05, + "loss": 0.3627984619140625, + "step": 31000 + }, + { + "epoch": 10.418795544015412, + "grad_norm": 0.7038715481758118, + "learning_rate": 4.479229480737019e-05, + "loss": 0.356929817199707, + "step": 31100 + }, + { + "epoch": 10.452299187536644, + "grad_norm": 0.7955334782600403, + "learning_rate": 4.4775544388609716e-05, + "loss": 0.35474601745605466, + "step": 31200 + }, + { + "epoch": 10.485802831057878, + "grad_norm": 0.7089738249778748, + "learning_rate": 4.475879396984925e-05, + "loss": 0.36358638763427736, + "step": 31300 + }, + { + "epoch": 10.51930647457911, + "grad_norm": 0.8143360018730164, + "learning_rate": 4.474204355108878e-05, + "loss": 0.3624624252319336, + "step": 31400 + }, + { + "epoch": 10.552810118100343, + "grad_norm": 0.8367409706115723, + "learning_rate": 4.472529313232831e-05, + "loss": 0.36308753967285157, + "step": 31500 + }, + { + "epoch": 10.586313761621577, + "grad_norm": 0.7856859564781189, + "learning_rate": 4.470854271356784e-05, + "loss": 0.362791862487793, + "step": 31600 + }, + { + "epoch": 10.61981740514281, + "grad_norm": 0.8061284422874451, + "learning_rate": 4.4691792294807374e-05, + "loss": 0.3634458541870117, + "step": 31700 + }, + { + "epoch": 10.653321048664042, + "grad_norm": 0.785724401473999, + "learning_rate": 4.46750418760469e-05, + "loss": 0.36115474700927735, + "step": 31800 + }, + { + "epoch": 10.686824692185276, + "grad_norm": 0.7530859112739563, + "learning_rate": 4.465829145728643e-05, + "loss": 0.36017478942871095, + "step": 31900 + }, + { + "epoch": 10.720328335706508, + "grad_norm": 0.7640136480331421, + "learning_rate": 4.464154103852596e-05, + "loss": 0.36370697021484377, + "step": 32000 + }, + { + "epoch": 10.75383197922774, + "grad_norm": 0.7125088572502136, + "learning_rate": 4.4624790619765496e-05, + "loss": 0.36396575927734376, + "step": 32100 + }, + { + "epoch": 10.787335622748975, + "grad_norm": 0.8106554746627808, + "learning_rate": 4.4608040201005025e-05, + "loss": 0.3571950912475586, + "step": 32200 + }, + { + "epoch": 10.820839266270207, + "grad_norm": 0.768183708190918, + "learning_rate": 4.4591457286432164e-05, + "loss": 0.3580643844604492, + "step": 32300 + }, + { + "epoch": 10.85434290979144, + "grad_norm": 0.7329164743423462, + "learning_rate": 4.457470686767169e-05, + "loss": 0.36159816741943357, + "step": 32400 + }, + { + "epoch": 10.887846553312674, + "grad_norm": 0.7993727922439575, + "learning_rate": 4.455795644891123e-05, + "loss": 0.3672108840942383, + "step": 32500 + }, + { + "epoch": 10.921350196833906, + "grad_norm": 0.7389618754386902, + "learning_rate": 4.454120603015076e-05, + "loss": 0.3596214294433594, + "step": 32600 + }, + { + "epoch": 10.954853840355138, + "grad_norm": 0.6745049953460693, + "learning_rate": 4.4524455611390286e-05, + "loss": 0.36047595977783203, + "step": 32700 + }, + { + "epoch": 10.98835748387637, + "grad_norm": 0.7832050919532776, + "learning_rate": 4.4507705192629815e-05, + "loss": 0.3599930953979492, + "step": 32800 + }, + { + "epoch": 11.021777368288802, + "grad_norm": 0.7236883044242859, + "learning_rate": 4.449095477386935e-05, + "loss": 0.3518721771240234, + "step": 32900 + }, + { + "epoch": 11.055281011810035, + "grad_norm": 0.6951456069946289, + "learning_rate": 4.447420435510888e-05, + "loss": 0.3448529815673828, + "step": 33000 + }, + { + "epoch": 11.088784655331267, + "grad_norm": 0.8174095749855042, + "learning_rate": 4.445745393634841e-05, + "loss": 0.3480173873901367, + "step": 33100 + }, + { + "epoch": 11.1222882988525, + "grad_norm": 0.8361256122589111, + "learning_rate": 4.444070351758794e-05, + "loss": 0.3429459762573242, + "step": 33200 + }, + { + "epoch": 11.155791942373734, + "grad_norm": 0.8620163202285767, + "learning_rate": 4.442395309882747e-05, + "loss": 0.3492248916625977, + "step": 33300 + }, + { + "epoch": 11.189295585894966, + "grad_norm": 0.7246844172477722, + "learning_rate": 4.440720268006701e-05, + "loss": 0.3458073043823242, + "step": 33400 + }, + { + "epoch": 11.222799229416198, + "grad_norm": 0.7091465592384338, + "learning_rate": 4.439045226130654e-05, + "loss": 0.34752788543701174, + "step": 33500 + }, + { + "epoch": 11.256302872937432, + "grad_norm": 0.7573132514953613, + "learning_rate": 4.4373701842546066e-05, + "loss": 0.3496548080444336, + "step": 33600 + }, + { + "epoch": 11.289806516458665, + "grad_norm": 0.7986613512039185, + "learning_rate": 4.4356951423785595e-05, + "loss": 0.34697345733642576, + "step": 33700 + }, + { + "epoch": 11.323310159979897, + "grad_norm": 0.7822960615158081, + "learning_rate": 4.434020100502513e-05, + "loss": 0.35006622314453123, + "step": 33800 + }, + { + "epoch": 11.356813803501131, + "grad_norm": 0.8444114327430725, + "learning_rate": 4.432345058626466e-05, + "loss": 0.3496244430541992, + "step": 33900 + }, + { + "epoch": 11.390317447022364, + "grad_norm": 0.7642440795898438, + "learning_rate": 4.430670016750419e-05, + "loss": 0.350846061706543, + "step": 34000 + }, + { + "epoch": 11.423821090543596, + "grad_norm": 0.7518153190612793, + "learning_rate": 4.428994974874372e-05, + "loss": 0.3499641036987305, + "step": 34100 + }, + { + "epoch": 11.45732473406483, + "grad_norm": 0.8707530498504639, + "learning_rate": 4.427319932998325e-05, + "loss": 0.3532308578491211, + "step": 34200 + }, + { + "epoch": 11.490828377586062, + "grad_norm": 0.7227981686592102, + "learning_rate": 4.4256616415410385e-05, + "loss": 0.35490013122558595, + "step": 34300 + }, + { + "epoch": 11.524332021107295, + "grad_norm": 0.7735912203788757, + "learning_rate": 4.423986599664992e-05, + "loss": 0.3542043304443359, + "step": 34400 + }, + { + "epoch": 11.557835664628529, + "grad_norm": 0.8353047370910645, + "learning_rate": 4.422311557788945e-05, + "loss": 0.34967689514160155, + "step": 34500 + }, + { + "epoch": 11.591339308149761, + "grad_norm": 0.7564737200737, + "learning_rate": 4.4206365159128985e-05, + "loss": 0.35371181488037107, + "step": 34600 + }, + { + "epoch": 11.624842951670994, + "grad_norm": 0.656694233417511, + "learning_rate": 4.4189614740368514e-05, + "loss": 0.3496272277832031, + "step": 34700 + }, + { + "epoch": 11.658346595192228, + "grad_norm": 0.8337951302528381, + "learning_rate": 4.417286432160804e-05, + "loss": 0.35147029876708985, + "step": 34800 + }, + { + "epoch": 11.69185023871346, + "grad_norm": 0.779253363609314, + "learning_rate": 4.415611390284757e-05, + "loss": 0.3496464920043945, + "step": 34900 + }, + { + "epoch": 11.725353882234693, + "grad_norm": 0.8846334218978882, + "learning_rate": 4.413936348408711e-05, + "loss": 0.3506482696533203, + "step": 35000 + }, + { + "epoch": 11.758857525755927, + "grad_norm": 0.7678661346435547, + "learning_rate": 4.4122613065326636e-05, + "loss": 0.35182670593261717, + "step": 35100 + }, + { + "epoch": 11.792361169277159, + "grad_norm": 0.779376745223999, + "learning_rate": 4.4105862646566165e-05, + "loss": 0.3535502624511719, + "step": 35200 + }, + { + "epoch": 11.825864812798391, + "grad_norm": 0.8054938316345215, + "learning_rate": 4.408911222780569e-05, + "loss": 0.35151683807373046, + "step": 35300 + }, + { + "epoch": 11.859368456319626, + "grad_norm": 0.7657700181007385, + "learning_rate": 4.407236180904523e-05, + "loss": 0.3521769714355469, + "step": 35400 + }, + { + "epoch": 11.892872099840858, + "grad_norm": 0.7825794219970703, + "learning_rate": 4.405561139028476e-05, + "loss": 0.3515496826171875, + "step": 35500 + }, + { + "epoch": 11.92637574336209, + "grad_norm": 0.811125636100769, + "learning_rate": 4.403886097152429e-05, + "loss": 0.35637962341308593, + "step": 35600 + }, + { + "epoch": 11.959879386883323, + "grad_norm": 0.7954035401344299, + "learning_rate": 4.402211055276382e-05, + "loss": 0.3535337066650391, + "step": 35700 + }, + { + "epoch": 11.993383030404557, + "grad_norm": 0.9039795994758606, + "learning_rate": 4.400536013400335e-05, + "loss": 0.351923828125, + "step": 35800 + }, + { + "epoch": 12.026802914816987, + "grad_norm": 0.7764714360237122, + "learning_rate": 4.3988609715242887e-05, + "loss": 0.3385712432861328, + "step": 35900 + }, + { + "epoch": 12.060306558338219, + "grad_norm": 0.8632619380950928, + "learning_rate": 4.3971859296482415e-05, + "loss": 0.3341633605957031, + "step": 36000 + }, + { + "epoch": 12.093810201859451, + "grad_norm": 0.7242739200592041, + "learning_rate": 4.3955108877721944e-05, + "loss": 0.33580013275146486, + "step": 36100 + }, + { + "epoch": 12.127313845380685, + "grad_norm": 0.8469365239143372, + "learning_rate": 4.393835845896147e-05, + "loss": 0.33277801513671873, + "step": 36200 + }, + { + "epoch": 12.160817488901918, + "grad_norm": 0.8422605991363525, + "learning_rate": 4.392177554438861e-05, + "loss": 0.33413345336914063, + "step": 36300 + }, + { + "epoch": 12.19432113242315, + "grad_norm": 0.7811619639396667, + "learning_rate": 4.390502512562814e-05, + "loss": 0.33585643768310547, + "step": 36400 + }, + { + "epoch": 12.227824775944384, + "grad_norm": 0.7483822703361511, + "learning_rate": 4.388827470686767e-05, + "loss": 0.33689048767089846, + "step": 36500 + }, + { + "epoch": 12.261328419465617, + "grad_norm": 0.8344827890396118, + "learning_rate": 4.3871524288107206e-05, + "loss": 0.33572166442871093, + "step": 36600 + }, + { + "epoch": 12.294832062986849, + "grad_norm": 0.8680643439292908, + "learning_rate": 4.385477386934674e-05, + "loss": 0.3416824722290039, + "step": 36700 + }, + { + "epoch": 12.328335706508083, + "grad_norm": 0.8696274757385254, + "learning_rate": 4.383802345058627e-05, + "loss": 0.33966796875, + "step": 36800 + }, + { + "epoch": 12.361839350029316, + "grad_norm": 0.8183309435844421, + "learning_rate": 4.38212730318258e-05, + "loss": 0.3437775039672852, + "step": 36900 + }, + { + "epoch": 12.395342993550548, + "grad_norm": 0.8513368368148804, + "learning_rate": 4.380452261306533e-05, + "loss": 0.3392060470581055, + "step": 37000 + }, + { + "epoch": 12.428846637071782, + "grad_norm": 0.799085259437561, + "learning_rate": 4.378777219430486e-05, + "loss": 0.34548038482666016, + "step": 37100 + }, + { + "epoch": 12.462350280593014, + "grad_norm": 0.8001937866210938, + "learning_rate": 4.377102177554439e-05, + "loss": 0.3440947723388672, + "step": 37200 + }, + { + "epoch": 12.495853924114247, + "grad_norm": 0.7208882570266724, + "learning_rate": 4.375427135678392e-05, + "loss": 0.33991405487060544, + "step": 37300 + }, + { + "epoch": 12.529357567635481, + "grad_norm": 0.7442817687988281, + "learning_rate": 4.373752093802345e-05, + "loss": 0.3403905487060547, + "step": 37400 + }, + { + "epoch": 12.562861211156713, + "grad_norm": 0.8188682794570923, + "learning_rate": 4.3720770519262985e-05, + "loss": 0.3432355499267578, + "step": 37500 + }, + { + "epoch": 12.596364854677946, + "grad_norm": 0.8770096302032471, + "learning_rate": 4.3704020100502514e-05, + "loss": 0.3425747299194336, + "step": 37600 + }, + { + "epoch": 12.62986849819918, + "grad_norm": 0.6969801187515259, + "learning_rate": 4.368726968174204e-05, + "loss": 0.3424406051635742, + "step": 37700 + }, + { + "epoch": 12.663372141720412, + "grad_norm": 0.7996489405632019, + "learning_rate": 4.367051926298157e-05, + "loss": 0.34474189758300783, + "step": 37800 + }, + { + "epoch": 12.696875785241645, + "grad_norm": 0.8017092943191528, + "learning_rate": 4.365376884422111e-05, + "loss": 0.3453398895263672, + "step": 37900 + }, + { + "epoch": 12.730379428762879, + "grad_norm": 0.8389545679092407, + "learning_rate": 4.363701842546064e-05, + "loss": 0.3442976760864258, + "step": 38000 + }, + { + "epoch": 12.763883072284111, + "grad_norm": 0.829469621181488, + "learning_rate": 4.362026800670017e-05, + "loss": 0.3431151580810547, + "step": 38100 + }, + { + "epoch": 12.797386715805343, + "grad_norm": 0.747890055179596, + "learning_rate": 4.36035175879397e-05, + "loss": 0.3406733322143555, + "step": 38200 + }, + { + "epoch": 12.830890359326578, + "grad_norm": 0.8428831100463867, + "learning_rate": 4.358693467336683e-05, + "loss": 0.34296836853027346, + "step": 38300 + }, + { + "epoch": 12.86439400284781, + "grad_norm": 0.837282121181488, + "learning_rate": 4.357018425460637e-05, + "loss": 0.3470125579833984, + "step": 38400 + }, + { + "epoch": 12.897897646369042, + "grad_norm": 0.7993006706237793, + "learning_rate": 4.35534338358459e-05, + "loss": 0.3433689117431641, + "step": 38500 + }, + { + "epoch": 12.931401289890276, + "grad_norm": 0.7729536294937134, + "learning_rate": 4.3536683417085426e-05, + "loss": 0.34415348052978517, + "step": 38600 + }, + { + "epoch": 12.964904933411509, + "grad_norm": 0.8379591107368469, + "learning_rate": 4.3519932998324955e-05, + "loss": 0.3490380096435547, + "step": 38700 + }, + { + "epoch": 12.998408576932741, + "grad_norm": 0.8118153214454651, + "learning_rate": 4.350318257956449e-05, + "loss": 0.3449933624267578, + "step": 38800 + }, + { + "epoch": 13.031828461345171, + "grad_norm": 0.7350383400917053, + "learning_rate": 4.3486432160804026e-05, + "loss": 0.3230305862426758, + "step": 38900 + }, + { + "epoch": 13.065332104866405, + "grad_norm": 0.844278872013092, + "learning_rate": 4.3469681742043555e-05, + "loss": 0.3269623565673828, + "step": 39000 + }, + { + "epoch": 13.098835748387637, + "grad_norm": 0.7997421622276306, + "learning_rate": 4.3452931323283084e-05, + "loss": 0.32578598022460936, + "step": 39100 + }, + { + "epoch": 13.13233939190887, + "grad_norm": 0.830944299697876, + "learning_rate": 4.343618090452262e-05, + "loss": 0.32753429412841795, + "step": 39200 + }, + { + "epoch": 13.165843035430104, + "grad_norm": 0.7835378646850586, + "learning_rate": 4.341943048576215e-05, + "loss": 0.32705738067626955, + "step": 39300 + }, + { + "epoch": 13.199346678951336, + "grad_norm": 0.9184708595275879, + "learning_rate": 4.340268006700168e-05, + "loss": 0.32659355163574216, + "step": 39400 + }, + { + "epoch": 13.232850322472569, + "grad_norm": 0.9233602285385132, + "learning_rate": 4.3385929648241206e-05, + "loss": 0.3316535186767578, + "step": 39500 + }, + { + "epoch": 13.266353965993801, + "grad_norm": 0.8355572819709778, + "learning_rate": 4.336917922948074e-05, + "loss": 0.3265563583374023, + "step": 39600 + }, + { + "epoch": 13.299857609515035, + "grad_norm": 0.8072609901428223, + "learning_rate": 4.335242881072027e-05, + "loss": 0.329896354675293, + "step": 39700 + }, + { + "epoch": 13.333361253036268, + "grad_norm": 0.7573186159133911, + "learning_rate": 4.33356783919598e-05, + "loss": 0.3345551300048828, + "step": 39800 + }, + { + "epoch": 13.3668648965575, + "grad_norm": 0.7736772894859314, + "learning_rate": 4.331892797319933e-05, + "loss": 0.32930431365966795, + "step": 39900 + }, + { + "epoch": 13.400368540078734, + "grad_norm": 0.6786108016967773, + "learning_rate": 4.3302177554438864e-05, + "loss": 0.3282357406616211, + "step": 40000 + }, + { + "epoch": 13.433872183599966, + "grad_norm": 0.9429032206535339, + "learning_rate": 4.328542713567839e-05, + "loss": 0.33234012603759766, + "step": 40100 + }, + { + "epoch": 13.467375827121199, + "grad_norm": 0.8342773914337158, + "learning_rate": 4.326867671691793e-05, + "loss": 0.33062789916992186, + "step": 40200 + }, + { + "epoch": 13.500879470642433, + "grad_norm": 0.8285291194915771, + "learning_rate": 4.325209380234506e-05, + "loss": 0.33372978210449217, + "step": 40300 + }, + { + "epoch": 13.534383114163665, + "grad_norm": 0.9048053622245789, + "learning_rate": 4.323534338358459e-05, + "loss": 0.3388665771484375, + "step": 40400 + }, + { + "epoch": 13.567886757684898, + "grad_norm": 0.8660252690315247, + "learning_rate": 4.3218592964824125e-05, + "loss": 0.33297966003417967, + "step": 40500 + }, + { + "epoch": 13.601390401206132, + "grad_norm": 0.8536561727523804, + "learning_rate": 4.3201842546063654e-05, + "loss": 0.3336554718017578, + "step": 40600 + }, + { + "epoch": 13.634894044727364, + "grad_norm": 0.8385009765625, + "learning_rate": 4.318509212730318e-05, + "loss": 0.3373324203491211, + "step": 40700 + }, + { + "epoch": 13.668397688248596, + "grad_norm": 0.8286055326461792, + "learning_rate": 4.316834170854271e-05, + "loss": 0.3344192886352539, + "step": 40800 + }, + { + "epoch": 13.70190133176983, + "grad_norm": 0.8716219067573547, + "learning_rate": 4.315159128978225e-05, + "loss": 0.3346976089477539, + "step": 40900 + }, + { + "epoch": 13.735404975291063, + "grad_norm": 0.9002569317817688, + "learning_rate": 4.3134840871021776e-05, + "loss": 0.33477676391601563, + "step": 41000 + }, + { + "epoch": 13.768908618812295, + "grad_norm": 0.7407629489898682, + "learning_rate": 4.3118090452261305e-05, + "loss": 0.3335411071777344, + "step": 41100 + }, + { + "epoch": 13.80241226233353, + "grad_norm": 0.8391560316085815, + "learning_rate": 4.310134003350084e-05, + "loss": 0.33270046234130857, + "step": 41200 + }, + { + "epoch": 13.835915905854762, + "grad_norm": 0.8274234533309937, + "learning_rate": 4.3084589614740376e-05, + "loss": 0.3338147735595703, + "step": 41300 + }, + { + "epoch": 13.869419549375994, + "grad_norm": 0.7722423672676086, + "learning_rate": 4.3067839195979905e-05, + "loss": 0.3329287338256836, + "step": 41400 + }, + { + "epoch": 13.902923192897228, + "grad_norm": 0.8129300475120544, + "learning_rate": 4.3051088777219434e-05, + "loss": 0.3391679000854492, + "step": 41500 + }, + { + "epoch": 13.93642683641846, + "grad_norm": 0.7851378917694092, + "learning_rate": 4.303433835845896e-05, + "loss": 0.33578712463378907, + "step": 41600 + }, + { + "epoch": 13.969930479939693, + "grad_norm": 0.8963794708251953, + "learning_rate": 4.30175879396985e-05, + "loss": 0.3370305252075195, + "step": 41700 + }, + { + "epoch": 14.003350364352123, + "grad_norm": 0.7511172890663147, + "learning_rate": 4.300083752093803e-05, + "loss": 0.3332187652587891, + "step": 41800 + }, + { + "epoch": 14.036854007873357, + "grad_norm": 0.8411696553230286, + "learning_rate": 4.2984087102177556e-05, + "loss": 0.3142329978942871, + "step": 41900 + }, + { + "epoch": 14.07035765139459, + "grad_norm": 0.8463764190673828, + "learning_rate": 4.2967336683417085e-05, + "loss": 0.31400049209594727, + "step": 42000 + }, + { + "epoch": 14.103861294915822, + "grad_norm": 0.8349206447601318, + "learning_rate": 4.295058626465662e-05, + "loss": 0.3154226112365723, + "step": 42100 + }, + { + "epoch": 14.137364938437056, + "grad_norm": 0.8107666373252869, + "learning_rate": 4.293383584589615e-05, + "loss": 0.31885833740234376, + "step": 42200 + }, + { + "epoch": 14.170868581958288, + "grad_norm": 0.8954828381538391, + "learning_rate": 4.291725293132329e-05, + "loss": 0.3197479820251465, + "step": 42300 + }, + { + "epoch": 14.20437222547952, + "grad_norm": 0.8605073094367981, + "learning_rate": 4.290050251256282e-05, + "loss": 0.32168098449707033, + "step": 42400 + }, + { + "epoch": 14.237875869000753, + "grad_norm": 0.8864564299583435, + "learning_rate": 4.2883752093802346e-05, + "loss": 0.31901069641113283, + "step": 42500 + }, + { + "epoch": 14.271379512521987, + "grad_norm": 0.8231778144836426, + "learning_rate": 4.286700167504188e-05, + "loss": 0.3223213577270508, + "step": 42600 + }, + { + "epoch": 14.30488315604322, + "grad_norm": 0.8360753059387207, + "learning_rate": 4.285025125628141e-05, + "loss": 0.32040260314941404, + "step": 42700 + }, + { + "epoch": 14.338386799564452, + "grad_norm": 0.8900824785232544, + "learning_rate": 4.283350083752094e-05, + "loss": 0.32190364837646485, + "step": 42800 + }, + { + "epoch": 14.371890443085686, + "grad_norm": 0.8233429193496704, + "learning_rate": 4.281675041876047e-05, + "loss": 0.32389614105224607, + "step": 42900 + }, + { + "epoch": 14.405394086606918, + "grad_norm": 0.7868608236312866, + "learning_rate": 4.2800000000000004e-05, + "loss": 0.3197458839416504, + "step": 43000 + }, + { + "epoch": 14.43889773012815, + "grad_norm": 0.9061699509620667, + "learning_rate": 4.278324958123953e-05, + "loss": 0.32365760803222654, + "step": 43100 + }, + { + "epoch": 14.472401373649385, + "grad_norm": 0.8254518508911133, + "learning_rate": 4.276649916247906e-05, + "loss": 0.32395694732666014, + "step": 43200 + }, + { + "epoch": 14.505905017170617, + "grad_norm": 0.8711475729942322, + "learning_rate": 4.274974874371859e-05, + "loss": 0.32183242797851563, + "step": 43300 + }, + { + "epoch": 14.53940866069185, + "grad_norm": 0.8801646828651428, + "learning_rate": 4.2732998324958126e-05, + "loss": 0.3255552673339844, + "step": 43400 + }, + { + "epoch": 14.572912304213084, + "grad_norm": 0.9780988693237305, + "learning_rate": 4.271624790619766e-05, + "loss": 0.32349624633789065, + "step": 43500 + }, + { + "epoch": 14.606415947734316, + "grad_norm": 0.7670713663101196, + "learning_rate": 4.269949748743719e-05, + "loss": 0.325313720703125, + "step": 43600 + }, + { + "epoch": 14.639919591255548, + "grad_norm": 0.8528743386268616, + "learning_rate": 4.268274706867672e-05, + "loss": 0.3246849822998047, + "step": 43700 + }, + { + "epoch": 14.673423234776783, + "grad_norm": 0.8485456109046936, + "learning_rate": 4.2665996649916254e-05, + "loss": 0.3302822494506836, + "step": 43800 + }, + { + "epoch": 14.706926878298015, + "grad_norm": 0.7821197509765625, + "learning_rate": 4.264924623115578e-05, + "loss": 0.3271540451049805, + "step": 43900 + }, + { + "epoch": 14.740430521819247, + "grad_norm": 0.8672188520431519, + "learning_rate": 4.263249581239531e-05, + "loss": 0.32373977661132813, + "step": 44000 + }, + { + "epoch": 14.773934165340481, + "grad_norm": 0.8280694484710693, + "learning_rate": 4.261574539363484e-05, + "loss": 0.3241862106323242, + "step": 44100 + }, + { + "epoch": 14.807437808861714, + "grad_norm": 0.8599796891212463, + "learning_rate": 4.2598994974874377e-05, + "loss": 0.32549205780029294, + "step": 44200 + }, + { + "epoch": 14.840941452382946, + "grad_norm": 0.8781849145889282, + "learning_rate": 4.258241206030151e-05, + "loss": 0.331417121887207, + "step": 44300 + }, + { + "epoch": 14.87444509590418, + "grad_norm": 0.9023721814155579, + "learning_rate": 4.256566164154104e-05, + "loss": 0.33159866333007815, + "step": 44400 + }, + { + "epoch": 14.907948739425413, + "grad_norm": 0.8109947443008423, + "learning_rate": 4.2548911222780573e-05, + "loss": 0.3285139846801758, + "step": 44500 + }, + { + "epoch": 14.941452382946645, + "grad_norm": 0.9133332371711731, + "learning_rate": 4.25321608040201e-05, + "loss": 0.3285633850097656, + "step": 44600 + }, + { + "epoch": 14.97495602646788, + "grad_norm": 0.897939145565033, + "learning_rate": 4.251541038525964e-05, + "loss": 0.3268856430053711, + "step": 44700 + }, + { + "epoch": 15.008375910880309, + "grad_norm": 0.8286980986595154, + "learning_rate": 4.249865996649917e-05, + "loss": 0.31992229461669924, + "step": 44800 + }, + { + "epoch": 15.041879554401541, + "grad_norm": 0.8173639178276062, + "learning_rate": 4.2481909547738696e-05, + "loss": 0.3056914710998535, + "step": 44900 + }, + { + "epoch": 15.075383197922774, + "grad_norm": 0.7765247821807861, + "learning_rate": 4.2465159128978224e-05, + "loss": 0.30892095565795896, + "step": 45000 + }, + { + "epoch": 15.108886841444008, + "grad_norm": 0.9506803750991821, + "learning_rate": 4.244840871021776e-05, + "loss": 0.31020853042602536, + "step": 45100 + }, + { + "epoch": 15.14239048496524, + "grad_norm": 0.855025053024292, + "learning_rate": 4.243165829145729e-05, + "loss": 0.30636240005493165, + "step": 45200 + }, + { + "epoch": 15.175894128486473, + "grad_norm": 0.8373168110847473, + "learning_rate": 4.241490787269682e-05, + "loss": 0.3096147537231445, + "step": 45300 + }, + { + "epoch": 15.209397772007707, + "grad_norm": 0.8214793801307678, + "learning_rate": 4.2398157453936346e-05, + "loss": 0.3086151885986328, + "step": 45400 + }, + { + "epoch": 15.242901415528939, + "grad_norm": 0.8581687211990356, + "learning_rate": 4.238140703517588e-05, + "loss": 0.3079892349243164, + "step": 45500 + }, + { + "epoch": 15.276405059050171, + "grad_norm": 0.8844295740127563, + "learning_rate": 4.236465661641541e-05, + "loss": 0.31047849655151366, + "step": 45600 + }, + { + "epoch": 15.309908702571404, + "grad_norm": 0.8439965844154358, + "learning_rate": 4.234790619765494e-05, + "loss": 0.3138412094116211, + "step": 45700 + }, + { + "epoch": 15.343412346092638, + "grad_norm": 0.903762698173523, + "learning_rate": 4.2331155778894475e-05, + "loss": 0.3122879219055176, + "step": 45800 + }, + { + "epoch": 15.37691598961387, + "grad_norm": 0.8018752932548523, + "learning_rate": 4.2314405360134004e-05, + "loss": 0.3170251655578613, + "step": 45900 + }, + { + "epoch": 15.410419633135103, + "grad_norm": 0.92534339427948, + "learning_rate": 4.229765494137354e-05, + "loss": 0.3110039138793945, + "step": 46000 + }, + { + "epoch": 15.443923276656337, + "grad_norm": 0.9206555485725403, + "learning_rate": 4.228090452261307e-05, + "loss": 0.31349218368530274, + "step": 46100 + }, + { + "epoch": 15.47742692017757, + "grad_norm": 0.9693331122398376, + "learning_rate": 4.22641541038526e-05, + "loss": 0.3193240737915039, + "step": 46200 + }, + { + "epoch": 15.510930563698802, + "grad_norm": 0.8420470952987671, + "learning_rate": 4.224757118927974e-05, + "loss": 0.3151701354980469, + "step": 46300 + }, + { + "epoch": 15.544434207220036, + "grad_norm": 0.9353216290473938, + "learning_rate": 4.2230820770519265e-05, + "loss": 0.3188944435119629, + "step": 46400 + }, + { + "epoch": 15.577937850741268, + "grad_norm": 0.9871792197227478, + "learning_rate": 4.2214070351758794e-05, + "loss": 0.31723602294921877, + "step": 46500 + }, + { + "epoch": 15.6114414942625, + "grad_norm": 0.7518536448478699, + "learning_rate": 4.219731993299832e-05, + "loss": 0.31692527770996093, + "step": 46600 + }, + { + "epoch": 15.644945137783735, + "grad_norm": 0.8153543472290039, + "learning_rate": 4.218056951423786e-05, + "loss": 0.3178220748901367, + "step": 46700 + }, + { + "epoch": 15.678448781304967, + "grad_norm": 0.9253189563751221, + "learning_rate": 4.2163819095477394e-05, + "loss": 0.31681758880615235, + "step": 46800 + }, + { + "epoch": 15.7119524248262, + "grad_norm": 0.9607227444648743, + "learning_rate": 4.214706867671692e-05, + "loss": 0.31734546661376956, + "step": 46900 + }, + { + "epoch": 15.745456068347433, + "grad_norm": 0.9105275273323059, + "learning_rate": 4.213031825795645e-05, + "loss": 0.3183962059020996, + "step": 47000 + }, + { + "epoch": 15.778959711868666, + "grad_norm": 0.943592369556427, + "learning_rate": 4.211356783919598e-05, + "loss": 0.3173214912414551, + "step": 47100 + }, + { + "epoch": 15.812463355389898, + "grad_norm": 0.8281202912330627, + "learning_rate": 4.2096817420435516e-05, + "loss": 0.31825736999511717, + "step": 47200 + }, + { + "epoch": 15.845966998911132, + "grad_norm": 0.9243564009666443, + "learning_rate": 4.2080067001675045e-05, + "loss": 0.31478778839111327, + "step": 47300 + }, + { + "epoch": 15.879470642432365, + "grad_norm": 0.9413986206054688, + "learning_rate": 4.2063316582914574e-05, + "loss": 0.3212542343139648, + "step": 47400 + }, + { + "epoch": 15.912974285953597, + "grad_norm": 0.7720843553543091, + "learning_rate": 4.20465661641541e-05, + "loss": 0.3203662109375, + "step": 47500 + }, + { + "epoch": 15.946477929474831, + "grad_norm": 0.9300262331962585, + "learning_rate": 4.202981574539364e-05, + "loss": 0.31860551834106443, + "step": 47600 + }, + { + "epoch": 15.979981572996063, + "grad_norm": 0.9552218317985535, + "learning_rate": 4.201306532663317e-05, + "loss": 0.32005401611328127, + "step": 47700 + }, + { + "epoch": 16.01340145740849, + "grad_norm": 0.9004557132720947, + "learning_rate": 4.1996314907872696e-05, + "loss": 0.30930152893066404, + "step": 47800 + }, + { + "epoch": 16.046905100929727, + "grad_norm": 0.8685380220413208, + "learning_rate": 4.1979564489112225e-05, + "loss": 0.2990193176269531, + "step": 47900 + }, + { + "epoch": 16.08040874445096, + "grad_norm": 0.9357792735099792, + "learning_rate": 4.196281407035176e-05, + "loss": 0.3014987373352051, + "step": 48000 + }, + { + "epoch": 16.113912387972192, + "grad_norm": 0.8524284362792969, + "learning_rate": 4.1946063651591296e-05, + "loss": 0.29952068328857423, + "step": 48100 + }, + { + "epoch": 16.147416031493425, + "grad_norm": 0.8511279225349426, + "learning_rate": 4.1929313232830825e-05, + "loss": 0.2990330505371094, + "step": 48200 + }, + { + "epoch": 16.180919675014657, + "grad_norm": 0.9268020987510681, + "learning_rate": 4.191273031825796e-05, + "loss": 0.2993707275390625, + "step": 48300 + }, + { + "epoch": 16.21442331853589, + "grad_norm": 0.9302972555160522, + "learning_rate": 4.1895979899497486e-05, + "loss": 0.30082115173339846, + "step": 48400 + }, + { + "epoch": 16.247926962057125, + "grad_norm": 0.7517661452293396, + "learning_rate": 4.187922948073702e-05, + "loss": 0.29987972259521484, + "step": 48500 + }, + { + "epoch": 16.281430605578358, + "grad_norm": 0.9238623976707458, + "learning_rate": 4.186247906197655e-05, + "loss": 0.30625816345214846, + "step": 48600 + }, + { + "epoch": 16.31493424909959, + "grad_norm": 0.8699862360954285, + "learning_rate": 4.184572864321608e-05, + "loss": 0.3052105522155762, + "step": 48700 + }, + { + "epoch": 16.348437892620822, + "grad_norm": 0.8557946085929871, + "learning_rate": 4.182897822445561e-05, + "loss": 0.30761667251586916, + "step": 48800 + }, + { + "epoch": 16.381941536142055, + "grad_norm": 0.9344996213912964, + "learning_rate": 4.1812227805695144e-05, + "loss": 0.3052439498901367, + "step": 48900 + }, + { + "epoch": 16.415445179663287, + "grad_norm": 0.8814606070518494, + "learning_rate": 4.179547738693467e-05, + "loss": 0.3072672843933105, + "step": 49000 + }, + { + "epoch": 16.448948823184523, + "grad_norm": 0.847149670124054, + "learning_rate": 4.177872696817421e-05, + "loss": 0.3086087226867676, + "step": 49100 + }, + { + "epoch": 16.482452466705755, + "grad_norm": 0.8724634051322937, + "learning_rate": 4.176197654941374e-05, + "loss": 0.3087570571899414, + "step": 49200 + }, + { + "epoch": 16.515956110226988, + "grad_norm": 0.909691572189331, + "learning_rate": 4.174522613065327e-05, + "loss": 0.3070098495483398, + "step": 49300 + }, + { + "epoch": 16.54945975374822, + "grad_norm": 0.9307814240455627, + "learning_rate": 4.17284757118928e-05, + "loss": 0.305695915222168, + "step": 49400 + }, + { + "epoch": 16.582963397269452, + "grad_norm": 0.7699813842773438, + "learning_rate": 4.171172529313233e-05, + "loss": 0.30605703353881836, + "step": 49500 + }, + { + "epoch": 16.616467040790685, + "grad_norm": 1.0044174194335938, + "learning_rate": 4.169497487437186e-05, + "loss": 0.3084003257751465, + "step": 49600 + }, + { + "epoch": 16.64997068431192, + "grad_norm": 0.8166942000389099, + "learning_rate": 4.1678224455611395e-05, + "loss": 0.307757682800293, + "step": 49700 + }, + { + "epoch": 16.683474327833153, + "grad_norm": 0.8853956460952759, + "learning_rate": 4.1661474036850924e-05, + "loss": 0.3071472358703613, + "step": 49800 + }, + { + "epoch": 16.716977971354385, + "grad_norm": 0.8246440291404724, + "learning_rate": 4.164472361809045e-05, + "loss": 0.3088929557800293, + "step": 49900 + }, + { + "epoch": 16.750481614875618, + "grad_norm": 0.9108903408050537, + "learning_rate": 4.162797319932998e-05, + "loss": 0.3075083541870117, + "step": 50000 + }, + { + "epoch": 16.78398525839685, + "grad_norm": 0.9037117958068848, + "learning_rate": 4.161122278056952e-05, + "loss": 0.31276445388793944, + "step": 50100 + }, + { + "epoch": 16.817488901918082, + "grad_norm": 0.9087954759597778, + "learning_rate": 4.1594472361809046e-05, + "loss": 0.30919795989990234, + "step": 50200 + }, + { + "epoch": 16.85099254543932, + "grad_norm": Infinity, + "learning_rate": 4.157772194304858e-05, + "loss": 0.3113286209106445, + "step": 50300 + }, + { + "epoch": 16.88449618896055, + "grad_norm": 0.9613434076309204, + "learning_rate": 4.1561139028475714e-05, + "loss": 0.31487524032592773, + "step": 50400 + }, + { + "epoch": 16.917999832481783, + "grad_norm": 0.9458907246589661, + "learning_rate": 4.154438860971524e-05, + "loss": 0.3127643394470215, + "step": 50500 + }, + { + "epoch": 16.951503476003015, + "grad_norm": 0.9252173900604248, + "learning_rate": 4.152763819095478e-05, + "loss": 0.3084212112426758, + "step": 50600 + }, + { + "epoch": 16.985007119524248, + "grad_norm": 0.9816356897354126, + "learning_rate": 4.151088777219431e-05, + "loss": 0.31181251525878906, + "step": 50700 + }, + { + "epoch": 17.01842700393668, + "grad_norm": 0.8120167851448059, + "learning_rate": 4.1494137353433836e-05, + "loss": 0.2999544906616211, + "step": 50800 + }, + { + "epoch": 17.05193064745791, + "grad_norm": 0.7779452800750732, + "learning_rate": 4.1477386934673365e-05, + "loss": 0.2881363487243652, + "step": 50900 + }, + { + "epoch": 17.085434290979144, + "grad_norm": 0.8800045847892761, + "learning_rate": 4.14606365159129e-05, + "loss": 0.29184545516967775, + "step": 51000 + }, + { + "epoch": 17.118937934500376, + "grad_norm": 0.8309177160263062, + "learning_rate": 4.144388609715243e-05, + "loss": 0.293133430480957, + "step": 51100 + }, + { + "epoch": 17.15244157802161, + "grad_norm": 0.8549261093139648, + "learning_rate": 4.142713567839196e-05, + "loss": 0.29502378463745116, + "step": 51200 + }, + { + "epoch": 17.18594522154284, + "grad_norm": 0.9220601916313171, + "learning_rate": 4.141038525963149e-05, + "loss": 0.29487173080444334, + "step": 51300 + }, + { + "epoch": 17.219448865064077, + "grad_norm": 0.8818517327308655, + "learning_rate": 4.139363484087103e-05, + "loss": 0.2922089767456055, + "step": 51400 + }, + { + "epoch": 17.25295250858531, + "grad_norm": 0.9325298070907593, + "learning_rate": 4.137688442211056e-05, + "loss": 0.2953068351745605, + "step": 51500 + }, + { + "epoch": 17.286456152106542, + "grad_norm": 0.842454731464386, + "learning_rate": 4.136013400335009e-05, + "loss": 0.29264474868774415, + "step": 51600 + }, + { + "epoch": 17.319959795627774, + "grad_norm": 0.9482097029685974, + "learning_rate": 4.1343383584589616e-05, + "loss": 0.2976564979553223, + "step": 51700 + }, + { + "epoch": 17.353463439149007, + "grad_norm": 0.9430213570594788, + "learning_rate": 4.132663316582915e-05, + "loss": 0.29929805755615235, + "step": 51800 + }, + { + "epoch": 17.38696708267024, + "grad_norm": 0.9468767642974854, + "learning_rate": 4.130988274706868e-05, + "loss": 0.2957676124572754, + "step": 51900 + }, + { + "epoch": 17.420470726191475, + "grad_norm": 0.9603669047355652, + "learning_rate": 4.129313232830821e-05, + "loss": 0.2980274963378906, + "step": 52000 + }, + { + "epoch": 17.453974369712707, + "grad_norm": 0.8796602487564087, + "learning_rate": 4.127638190954774e-05, + "loss": 0.3016574096679687, + "step": 52100 + }, + { + "epoch": 17.48747801323394, + "grad_norm": 0.9244174957275391, + "learning_rate": 4.125963149078727e-05, + "loss": 0.2988929748535156, + "step": 52200 + }, + { + "epoch": 17.520981656755172, + "grad_norm": 0.7938122749328613, + "learning_rate": 4.12428810720268e-05, + "loss": 0.29994075775146484, + "step": 52300 + }, + { + "epoch": 17.554485300276404, + "grad_norm": 0.9149840474128723, + "learning_rate": 4.122629815745394e-05, + "loss": 0.29651493072509766, + "step": 52400 + }, + { + "epoch": 17.587988943797637, + "grad_norm": 0.96629399061203, + "learning_rate": 4.120954773869347e-05, + "loss": 0.30109855651855466, + "step": 52500 + }, + { + "epoch": 17.621492587318873, + "grad_norm": 0.8029501438140869, + "learning_rate": 4.1192797319933e-05, + "loss": 0.3032656478881836, + "step": 52600 + }, + { + "epoch": 17.654996230840105, + "grad_norm": 0.831659734249115, + "learning_rate": 4.1176046901172535e-05, + "loss": 0.2977634048461914, + "step": 52700 + }, + { + "epoch": 17.688499874361337, + "grad_norm": 0.8770350813865662, + "learning_rate": 4.1159296482412063e-05, + "loss": 0.3002130317687988, + "step": 52800 + }, + { + "epoch": 17.72200351788257, + "grad_norm": 0.9197613596916199, + "learning_rate": 4.114254606365159e-05, + "loss": 0.30171897888183596, + "step": 52900 + }, + { + "epoch": 17.755507161403802, + "grad_norm": 0.8716971278190613, + "learning_rate": 4.112579564489112e-05, + "loss": 0.3020934104919434, + "step": 53000 + }, + { + "epoch": 17.789010804925034, + "grad_norm": 0.9348130226135254, + "learning_rate": 4.110904522613066e-05, + "loss": 0.30243810653686526, + "step": 53100 + }, + { + "epoch": 17.82251444844627, + "grad_norm": 1.0112886428833008, + "learning_rate": 4.1092294807370185e-05, + "loss": 0.3036368370056152, + "step": 53200 + }, + { + "epoch": 17.856018091967503, + "grad_norm": 0.9333941340446472, + "learning_rate": 4.1075544388609714e-05, + "loss": 0.30571670532226564, + "step": 53300 + }, + { + "epoch": 17.889521735488735, + "grad_norm": 0.8895190358161926, + "learning_rate": 4.105879396984924e-05, + "loss": 0.3056245040893555, + "step": 53400 + }, + { + "epoch": 17.923025379009967, + "grad_norm": 0.953789472579956, + "learning_rate": 4.104204355108878e-05, + "loss": 0.30313159942626955, + "step": 53500 + }, + { + "epoch": 17.9565290225312, + "grad_norm": 0.8885256052017212, + "learning_rate": 4.102529313232831e-05, + "loss": 0.3018374061584473, + "step": 53600 + }, + { + "epoch": 17.990032666052432, + "grad_norm": 1.043843388557434, + "learning_rate": 4.100854271356784e-05, + "loss": 0.30093835830688476, + "step": 53700 + }, + { + "epoch": 18.023452550464864, + "grad_norm": 0.8944602012634277, + "learning_rate": 4.099179229480737e-05, + "loss": 0.28485956192016604, + "step": 53800 + }, + { + "epoch": 18.056956193986096, + "grad_norm": 0.9355315566062927, + "learning_rate": 4.097504187604691e-05, + "loss": 0.28318214416503906, + "step": 53900 + }, + { + "epoch": 18.09045983750733, + "grad_norm": 0.7996422052383423, + "learning_rate": 4.0958291457286436e-05, + "loss": 0.2806725120544434, + "step": 54000 + }, + { + "epoch": 18.12396348102856, + "grad_norm": 0.9255834817886353, + "learning_rate": 4.0941541038525965e-05, + "loss": 0.2835847473144531, + "step": 54100 + }, + { + "epoch": 18.157467124549793, + "grad_norm": 0.9625722169876099, + "learning_rate": 4.0924790619765494e-05, + "loss": 0.28318588256835936, + "step": 54200 + }, + { + "epoch": 18.19097076807103, + "grad_norm": 0.9195216298103333, + "learning_rate": 4.090804020100503e-05, + "loss": 0.2873989105224609, + "step": 54300 + }, + { + "epoch": 18.22447441159226, + "grad_norm": 0.9396908283233643, + "learning_rate": 4.089145728643216e-05, + "loss": 0.2853095054626465, + "step": 54400 + }, + { + "epoch": 18.257978055113494, + "grad_norm": 0.8911498188972473, + "learning_rate": 4.087470686767169e-05, + "loss": 0.2902779769897461, + "step": 54500 + }, + { + "epoch": 18.291481698634726, + "grad_norm": 0.995733916759491, + "learning_rate": 4.085795644891122e-05, + "loss": 0.28672319412231445, + "step": 54600 + }, + { + "epoch": 18.32498534215596, + "grad_norm": 1.0607621669769287, + "learning_rate": 4.0841206030150755e-05, + "loss": 0.288260498046875, + "step": 54700 + }, + { + "epoch": 18.35848898567719, + "grad_norm": 0.9770358204841614, + "learning_rate": 4.082445561139029e-05, + "loss": 0.2871124267578125, + "step": 54800 + }, + { + "epoch": 18.391992629198427, + "grad_norm": 0.7948865294456482, + "learning_rate": 4.080770519262982e-05, + "loss": 0.2901685333251953, + "step": 54900 + }, + { + "epoch": 18.42549627271966, + "grad_norm": 0.829538106918335, + "learning_rate": 4.079095477386935e-05, + "loss": 0.29097063064575196, + "step": 55000 + }, + { + "epoch": 18.45899991624089, + "grad_norm": 0.972334086894989, + "learning_rate": 4.077420435510888e-05, + "loss": 0.2907312965393066, + "step": 55100 + }, + { + "epoch": 18.492503559762124, + "grad_norm": 1.0088402032852173, + "learning_rate": 4.075745393634841e-05, + "loss": 0.2925748634338379, + "step": 55200 + }, + { + "epoch": 18.526007203283356, + "grad_norm": 1.0144375562667847, + "learning_rate": 4.074070351758794e-05, + "loss": 0.29165184020996093, + "step": 55300 + }, + { + "epoch": 18.55951084680459, + "grad_norm": 0.9276221394538879, + "learning_rate": 4.072395309882747e-05, + "loss": 0.2919579887390137, + "step": 55400 + }, + { + "epoch": 18.593014490325825, + "grad_norm": 0.9088070392608643, + "learning_rate": 4.0707202680067e-05, + "loss": 0.29476572036743165, + "step": 55500 + }, + { + "epoch": 18.626518133847057, + "grad_norm": 0.8358734846115112, + "learning_rate": 4.0690452261306535e-05, + "loss": 0.29323875427246093, + "step": 55600 + }, + { + "epoch": 18.66002177736829, + "grad_norm": 0.9234775304794312, + "learning_rate": 4.0673701842546064e-05, + "loss": 0.295458984375, + "step": 55700 + }, + { + "epoch": 18.69352542088952, + "grad_norm": 1.033413052558899, + "learning_rate": 4.065695142378559e-05, + "loss": 0.29363622665405276, + "step": 55800 + }, + { + "epoch": 18.727029064410754, + "grad_norm": 0.8682520389556885, + "learning_rate": 4.064020100502513e-05, + "loss": 0.2977585220336914, + "step": 55900 + }, + { + "epoch": 18.760532707931986, + "grad_norm": 1.0640672445297241, + "learning_rate": 4.0623450586264664e-05, + "loss": 0.2952461051940918, + "step": 56000 + }, + { + "epoch": 18.794036351453222, + "grad_norm": 0.9460969567298889, + "learning_rate": 4.060670016750419e-05, + "loss": 0.2973412322998047, + "step": 56100 + }, + { + "epoch": 18.827539994974455, + "grad_norm": 0.9299043416976929, + "learning_rate": 4.058994974874372e-05, + "loss": 0.29550174713134764, + "step": 56200 + }, + { + "epoch": 18.861043638495687, + "grad_norm": 1.0823304653167725, + "learning_rate": 4.057319932998325e-05, + "loss": 0.2938914680480957, + "step": 56300 + }, + { + "epoch": 18.89454728201692, + "grad_norm": 0.9436834454536438, + "learning_rate": 4.055661641541039e-05, + "loss": 0.29774511337280274, + "step": 56400 + }, + { + "epoch": 18.92805092553815, + "grad_norm": 0.9670146107673645, + "learning_rate": 4.053986599664992e-05, + "loss": 0.29711448669433593, + "step": 56500 + }, + { + "epoch": 18.961554569059384, + "grad_norm": 0.971251368522644, + "learning_rate": 4.052311557788945e-05, + "loss": 0.29909347534179687, + "step": 56600 + }, + { + "epoch": 18.995058212580616, + "grad_norm": 0.8543409705162048, + "learning_rate": 4.0506365159128976e-05, + "loss": 0.29678007125854494, + "step": 56700 + }, + { + "epoch": 19.028478096993048, + "grad_norm": 0.9036636352539062, + "learning_rate": 4.048961474036851e-05, + "loss": 0.2788318824768066, + "step": 56800 + }, + { + "epoch": 19.06198174051428, + "grad_norm": 1.0365597009658813, + "learning_rate": 4.047286432160804e-05, + "loss": 0.2757110023498535, + "step": 56900 + }, + { + "epoch": 19.095485384035513, + "grad_norm": 0.8653129935264587, + "learning_rate": 4.0456113902847576e-05, + "loss": 0.2768836402893066, + "step": 57000 + }, + { + "epoch": 19.128989027556745, + "grad_norm": 0.8460621237754822, + "learning_rate": 4.0439363484087105e-05, + "loss": 0.2755991363525391, + "step": 57100 + }, + { + "epoch": 19.16249267107798, + "grad_norm": 0.8957028985023499, + "learning_rate": 4.0422613065326634e-05, + "loss": 0.27972606658935545, + "step": 57200 + }, + { + "epoch": 19.195996314599213, + "grad_norm": 0.9295471906661987, + "learning_rate": 4.040586264656617e-05, + "loss": 0.2782594871520996, + "step": 57300 + }, + { + "epoch": 19.229499958120446, + "grad_norm": 0.8899731636047363, + "learning_rate": 4.03891122278057e-05, + "loss": 0.2778139877319336, + "step": 57400 + }, + { + "epoch": 19.263003601641678, + "grad_norm": 0.9683830142021179, + "learning_rate": 4.037236180904523e-05, + "loss": 0.28136295318603516, + "step": 57500 + }, + { + "epoch": 19.29650724516291, + "grad_norm": 0.8920564651489258, + "learning_rate": 4.0355611390284756e-05, + "loss": 0.28040409088134766, + "step": 57600 + }, + { + "epoch": 19.330010888684143, + "grad_norm": 0.9366307854652405, + "learning_rate": 4.033886097152429e-05, + "loss": 0.28461326599121095, + "step": 57700 + }, + { + "epoch": 19.36351453220538, + "grad_norm": 0.9464457035064697, + "learning_rate": 4.032211055276382e-05, + "loss": 0.28297006607055664, + "step": 57800 + }, + { + "epoch": 19.39701817572661, + "grad_norm": 1.0350395441055298, + "learning_rate": 4.030536013400335e-05, + "loss": 0.2860834503173828, + "step": 57900 + }, + { + "epoch": 19.430521819247843, + "grad_norm": 0.8994850516319275, + "learning_rate": 4.028860971524288e-05, + "loss": 0.28455873489379885, + "step": 58000 + }, + { + "epoch": 19.464025462769076, + "grad_norm": 1.0085395574569702, + "learning_rate": 4.0271859296482414e-05, + "loss": 0.28580081939697266, + "step": 58100 + }, + { + "epoch": 19.497529106290308, + "grad_norm": 0.9378731846809387, + "learning_rate": 4.025510887772195e-05, + "loss": 0.28492233276367185, + "step": 58200 + }, + { + "epoch": 19.53103274981154, + "grad_norm": 1.1039483547210693, + "learning_rate": 4.023835845896148e-05, + "loss": 0.28393068313598635, + "step": 58300 + }, + { + "epoch": 19.564536393332776, + "grad_norm": 1.0000792741775513, + "learning_rate": 4.022177554438861e-05, + "loss": 0.28428964614868163, + "step": 58400 + }, + { + "epoch": 19.59804003685401, + "grad_norm": 0.9822189211845398, + "learning_rate": 4.0205025125628146e-05, + "loss": 0.28679338455200193, + "step": 58500 + }, + { + "epoch": 19.63154368037524, + "grad_norm": 1.008216142654419, + "learning_rate": 4.0188274706867675e-05, + "loss": 0.2877239990234375, + "step": 58600 + }, + { + "epoch": 19.665047323896474, + "grad_norm": 0.8709893822669983, + "learning_rate": 4.0171524288107204e-05, + "loss": 0.28736095428466796, + "step": 58700 + }, + { + "epoch": 19.698550967417706, + "grad_norm": 1.0486055612564087, + "learning_rate": 4.015477386934673e-05, + "loss": 0.2875706672668457, + "step": 58800 + }, + { + "epoch": 19.73205461093894, + "grad_norm": 0.9718714952468872, + "learning_rate": 4.013802345058627e-05, + "loss": 0.2887088394165039, + "step": 58900 + }, + { + "epoch": 19.765558254460174, + "grad_norm": 0.9496104717254639, + "learning_rate": 4.01212730318258e-05, + "loss": 0.2863414573669434, + "step": 59000 + }, + { + "epoch": 19.799061897981407, + "grad_norm": 1.0247166156768799, + "learning_rate": 4.0104522613065326e-05, + "loss": 0.287678165435791, + "step": 59100 + }, + { + "epoch": 19.83256554150264, + "grad_norm": 0.9370303153991699, + "learning_rate": 4.008777219430486e-05, + "loss": 0.28977474212646487, + "step": 59200 + }, + { + "epoch": 19.86606918502387, + "grad_norm": 0.8732765316963196, + "learning_rate": 4.007102177554439e-05, + "loss": 0.2899479293823242, + "step": 59300 + }, + { + "epoch": 19.899572828545104, + "grad_norm": 0.9661251306533813, + "learning_rate": 4.0054271356783926e-05, + "loss": 0.28924821853637694, + "step": 59400 + }, + { + "epoch": 19.933076472066336, + "grad_norm": 0.9300135374069214, + "learning_rate": 4.0037520938023455e-05, + "loss": 0.2898877716064453, + "step": 59500 + }, + { + "epoch": 19.96658011558757, + "grad_norm": 1.0985535383224487, + "learning_rate": 4.0020770519262983e-05, + "loss": 0.28800737380981445, + "step": 59600 + }, + { + "epoch": 20.0, + "grad_norm": 1.0769129991531372, + "learning_rate": 4.000402010050251e-05, + "loss": 0.2884260940551758, + "step": 59700 + }, + { + "epoch": 20.033503643521232, + "grad_norm": 0.9619253277778625, + "learning_rate": 3.998726968174205e-05, + "loss": 0.2721578788757324, + "step": 59800 + }, + { + "epoch": 20.067007287042465, + "grad_norm": 0.9351584911346436, + "learning_rate": 3.997051926298158e-05, + "loss": 0.2715591049194336, + "step": 59900 + }, + { + "epoch": 20.100510930563697, + "grad_norm": 0.957760214805603, + "learning_rate": 3.9953768844221106e-05, + "loss": 0.2707101821899414, + "step": 60000 + }, + { + "epoch": 20.134014574084933, + "grad_norm": 0.8414269089698792, + "learning_rate": 3.9937018425460634e-05, + "loss": 0.27344297409057616, + "step": 60100 + }, + { + "epoch": 20.167518217606165, + "grad_norm": 1.0471901893615723, + "learning_rate": 3.992026800670017e-05, + "loss": 0.2716003227233887, + "step": 60200 + }, + { + "epoch": 20.201021861127398, + "grad_norm": 0.9024125933647156, + "learning_rate": 3.99035175879397e-05, + "loss": 0.27117115020751953, + "step": 60300 + }, + { + "epoch": 20.23452550464863, + "grad_norm": 0.8774855136871338, + "learning_rate": 3.988693467336684e-05, + "loss": 0.2748865509033203, + "step": 60400 + }, + { + "epoch": 20.268029148169862, + "grad_norm": 0.9664554595947266, + "learning_rate": 3.987018425460637e-05, + "loss": 0.27406461715698244, + "step": 60500 + }, + { + "epoch": 20.301532791691095, + "grad_norm": 1.035376787185669, + "learning_rate": 3.98534338358459e-05, + "loss": 0.2735789489746094, + "step": 60600 + }, + { + "epoch": 20.33503643521233, + "grad_norm": 0.9546007513999939, + "learning_rate": 3.983668341708543e-05, + "loss": 0.2764925956726074, + "step": 60700 + }, + { + "epoch": 20.368540078733563, + "grad_norm": 1.0165990591049194, + "learning_rate": 3.981993299832496e-05, + "loss": 0.27297565460205075, + "step": 60800 + }, + { + "epoch": 20.402043722254795, + "grad_norm": 0.9471421241760254, + "learning_rate": 3.980318257956449e-05, + "loss": 0.27823368072509763, + "step": 60900 + }, + { + "epoch": 20.435547365776028, + "grad_norm": 0.9725298285484314, + "learning_rate": 3.9786432160804025e-05, + "loss": 0.2764093208312988, + "step": 61000 + }, + { + "epoch": 20.46905100929726, + "grad_norm": 0.8394715189933777, + "learning_rate": 3.976968174204355e-05, + "loss": 0.2772574996948242, + "step": 61100 + }, + { + "epoch": 20.502554652818493, + "grad_norm": 0.8922716975212097, + "learning_rate": 3.975293132328308e-05, + "loss": 0.27750770568847655, + "step": 61200 + }, + { + "epoch": 20.53605829633973, + "grad_norm": 0.9844845533370972, + "learning_rate": 3.973618090452261e-05, + "loss": 0.2779910278320312, + "step": 61300 + }, + { + "epoch": 20.56956193986096, + "grad_norm": 0.8804232478141785, + "learning_rate": 3.971943048576215e-05, + "loss": 0.2776468086242676, + "step": 61400 + }, + { + "epoch": 20.603065583382193, + "grad_norm": 0.9889972805976868, + "learning_rate": 3.970268006700168e-05, + "loss": 0.27890708923339846, + "step": 61500 + }, + { + "epoch": 20.636569226903426, + "grad_norm": 0.980644166469574, + "learning_rate": 3.968592964824121e-05, + "loss": 0.28234588623046875, + "step": 61600 + }, + { + "epoch": 20.670072870424658, + "grad_norm": 0.9484408497810364, + "learning_rate": 3.966917922948074e-05, + "loss": 0.28126981735229495, + "step": 61700 + }, + { + "epoch": 20.70357651394589, + "grad_norm": 1.055678367614746, + "learning_rate": 3.965242881072027e-05, + "loss": 0.2830071067810059, + "step": 61800 + }, + { + "epoch": 20.737080157467126, + "grad_norm": 0.8886085748672485, + "learning_rate": 3.9635678391959804e-05, + "loss": 0.27813196182250977, + "step": 61900 + }, + { + "epoch": 20.77058380098836, + "grad_norm": 1.0629770755767822, + "learning_rate": 3.961892797319933e-05, + "loss": 0.2837041664123535, + "step": 62000 + }, + { + "epoch": 20.80408744450959, + "grad_norm": 0.8154080510139465, + "learning_rate": 3.960217755443886e-05, + "loss": 0.2794221115112305, + "step": 62100 + }, + { + "epoch": 20.837591088030823, + "grad_norm": 0.9643964171409607, + "learning_rate": 3.958542713567839e-05, + "loss": 0.2807983207702637, + "step": 62200 + }, + { + "epoch": 20.871094731552056, + "grad_norm": 1.0410659313201904, + "learning_rate": 3.9568676716917926e-05, + "loss": 0.27797990798950195, + "step": 62300 + }, + { + "epoch": 20.904598375073288, + "grad_norm": 0.9507243633270264, + "learning_rate": 3.955209380234506e-05, + "loss": 0.2836384010314941, + "step": 62400 + }, + { + "epoch": 20.93810201859452, + "grad_norm": 1.0288045406341553, + "learning_rate": 3.953534338358459e-05, + "loss": 0.28449560165405274, + "step": 62500 + }, + { + "epoch": 20.971605662115756, + "grad_norm": 0.9709306359291077, + "learning_rate": 3.951859296482412e-05, + "loss": 0.282686824798584, + "step": 62600 + }, + { + "epoch": 21.005025546528184, + "grad_norm": 0.8715474009513855, + "learning_rate": 3.950184254606365e-05, + "loss": 0.2808470153808594, + "step": 62700 + }, + { + "epoch": 21.038529190049417, + "grad_norm": 0.9847482442855835, + "learning_rate": 3.948509212730319e-05, + "loss": 0.2635519218444824, + "step": 62800 + }, + { + "epoch": 21.07203283357065, + "grad_norm": 0.945732057094574, + "learning_rate": 3.9468341708542717e-05, + "loss": 0.26160152435302736, + "step": 62900 + }, + { + "epoch": 21.105536477091885, + "grad_norm": 0.9310206174850464, + "learning_rate": 3.945175879396985e-05, + "loss": 0.26616928100585935, + "step": 63000 + }, + { + "epoch": 21.139040120613117, + "grad_norm": 0.8321387767791748, + "learning_rate": 3.9435008375209385e-05, + "loss": 0.2665995216369629, + "step": 63100 + }, + { + "epoch": 21.17254376413435, + "grad_norm": 0.9247589707374573, + "learning_rate": 3.9418257956448913e-05, + "loss": 0.2642600440979004, + "step": 63200 + }, + { + "epoch": 21.206047407655582, + "grad_norm": 0.9166206121444702, + "learning_rate": 3.940150753768844e-05, + "loss": 0.2661565208435059, + "step": 63300 + }, + { + "epoch": 21.239551051176814, + "grad_norm": 1.0146381855010986, + "learning_rate": 3.938475711892797e-05, + "loss": 0.26595497131347656, + "step": 63400 + }, + { + "epoch": 21.273054694698047, + "grad_norm": 0.8782115578651428, + "learning_rate": 3.936800670016751e-05, + "loss": 0.2683505821228027, + "step": 63500 + }, + { + "epoch": 21.306558338219283, + "grad_norm": 0.8348855376243591, + "learning_rate": 3.935125628140704e-05, + "loss": 0.27002309799194335, + "step": 63600 + }, + { + "epoch": 21.340061981740515, + "grad_norm": 1.0207946300506592, + "learning_rate": 3.933450586264657e-05, + "loss": 0.2727695083618164, + "step": 63700 + }, + { + "epoch": 21.373565625261747, + "grad_norm": 0.9709821939468384, + "learning_rate": 3.93177554438861e-05, + "loss": 0.2713334655761719, + "step": 63800 + }, + { + "epoch": 21.40706926878298, + "grad_norm": 0.9931967258453369, + "learning_rate": 3.930100502512563e-05, + "loss": 0.2715752029418945, + "step": 63900 + }, + { + "epoch": 21.440572912304212, + "grad_norm": 1.002032995223999, + "learning_rate": 3.9284254606365164e-05, + "loss": 0.27039655685424807, + "step": 64000 + }, + { + "epoch": 21.474076555825445, + "grad_norm": 1.011479377746582, + "learning_rate": 3.926750418760469e-05, + "loss": 0.27180171966552735, + "step": 64100 + }, + { + "epoch": 21.50758019934668, + "grad_norm": 0.8830493092536926, + "learning_rate": 3.925075376884422e-05, + "loss": 0.27189735412597654, + "step": 64200 + }, + { + "epoch": 21.541083842867913, + "grad_norm": 0.957878828048706, + "learning_rate": 3.923400335008375e-05, + "loss": 0.27135616302490234, + "step": 64300 + }, + { + "epoch": 21.574587486389145, + "grad_norm": 0.9988912343978882, + "learning_rate": 3.9217252931323286e-05, + "loss": 0.2725925064086914, + "step": 64400 + }, + { + "epoch": 21.608091129910378, + "grad_norm": 0.9891326427459717, + "learning_rate": 3.9200502512562815e-05, + "loss": 0.27440677642822264, + "step": 64500 + }, + { + "epoch": 21.64159477343161, + "grad_norm": 1.0808324813842773, + "learning_rate": 3.9183752093802344e-05, + "loss": 0.27411041259765623, + "step": 64600 + }, + { + "epoch": 21.675098416952842, + "grad_norm": 0.9373248219490051, + "learning_rate": 3.916700167504187e-05, + "loss": 0.2749940490722656, + "step": 64700 + }, + { + "epoch": 21.708602060474078, + "grad_norm": 1.165182113647461, + "learning_rate": 3.915025125628141e-05, + "loss": 0.27408443450927733, + "step": 64800 + }, + { + "epoch": 21.74210570399531, + "grad_norm": 0.9180405139923096, + "learning_rate": 3.9133500837520944e-05, + "loss": 0.27541778564453123, + "step": 64900 + }, + { + "epoch": 21.775609347516543, + "grad_norm": 1.0415167808532715, + "learning_rate": 3.911675041876047e-05, + "loss": 0.2752027893066406, + "step": 65000 + }, + { + "epoch": 21.809112991037775, + "grad_norm": 0.996279239654541, + "learning_rate": 3.91e-05, + "loss": 0.27856874465942383, + "step": 65100 + }, + { + "epoch": 21.842616634559008, + "grad_norm": 0.8467832207679749, + "learning_rate": 3.908324958123953e-05, + "loss": 0.2744846153259277, + "step": 65200 + }, + { + "epoch": 21.87612027808024, + "grad_norm": 0.9609348177909851, + "learning_rate": 3.9066499162479066e-05, + "loss": 0.27501155853271486, + "step": 65300 + }, + { + "epoch": 21.909623921601476, + "grad_norm": 1.0232717990875244, + "learning_rate": 3.9049748743718595e-05, + "loss": 0.2766411590576172, + "step": 65400 + }, + { + "epoch": 21.94312756512271, + "grad_norm": 0.9764308333396912, + "learning_rate": 3.9032998324958124e-05, + "loss": 0.27579292297363284, + "step": 65500 + }, + { + "epoch": 21.97663120864394, + "grad_norm": 0.8772796392440796, + "learning_rate": 3.901624790619766e-05, + "loss": 0.27892873764038084, + "step": 65600 + }, + { + "epoch": 22.01005109305637, + "grad_norm": 0.9070359468460083, + "learning_rate": 3.899949748743719e-05, + "loss": 0.27117897033691407, + "step": 65700 + }, + { + "epoch": 22.043554736577605, + "grad_norm": 0.9539000988006592, + "learning_rate": 3.898274706867672e-05, + "loss": 0.2588020706176758, + "step": 65800 + }, + { + "epoch": 22.077058380098837, + "grad_norm": 0.7974834442138672, + "learning_rate": 3.8965996649916246e-05, + "loss": 0.2590653610229492, + "step": 65900 + }, + { + "epoch": 22.11056202362007, + "grad_norm": 0.9373714327812195, + "learning_rate": 3.894924623115578e-05, + "loss": 0.25843637466430663, + "step": 66000 + }, + { + "epoch": 22.1440656671413, + "grad_norm": 0.9088506698608398, + "learning_rate": 3.893249581239532e-05, + "loss": 0.2609646987915039, + "step": 66100 + }, + { + "epoch": 22.177569310662534, + "grad_norm": 0.7560039162635803, + "learning_rate": 3.8915745393634846e-05, + "loss": 0.25976266860961916, + "step": 66200 + }, + { + "epoch": 22.211072954183766, + "grad_norm": 1.0187093019485474, + "learning_rate": 3.8898994974874375e-05, + "loss": 0.2626813507080078, + "step": 66300 + }, + { + "epoch": 22.244576597705, + "grad_norm": 0.9864270687103271, + "learning_rate": 3.8882244556113904e-05, + "loss": 0.26082069396972657, + "step": 66400 + }, + { + "epoch": 22.278080241226235, + "grad_norm": 0.9238985776901245, + "learning_rate": 3.886549413735344e-05, + "loss": 0.26303247451782225, + "step": 66500 + }, + { + "epoch": 22.311583884747467, + "grad_norm": 1.06230628490448, + "learning_rate": 3.884874371859297e-05, + "loss": 0.2636404609680176, + "step": 66600 + }, + { + "epoch": 22.3450875282687, + "grad_norm": 0.8938685655593872, + "learning_rate": 3.88319932998325e-05, + "loss": 0.26432344436645505, + "step": 66700 + }, + { + "epoch": 22.37859117178993, + "grad_norm": 0.9398422837257385, + "learning_rate": 3.8815242881072026e-05, + "loss": 0.2664291763305664, + "step": 66800 + }, + { + "epoch": 22.412094815311164, + "grad_norm": 0.9452701210975647, + "learning_rate": 3.879849246231156e-05, + "loss": 0.26500213623046875, + "step": 66900 + }, + { + "epoch": 22.445598458832396, + "grad_norm": 1.0754152536392212, + "learning_rate": 3.8781909547738694e-05, + "loss": 0.266211051940918, + "step": 67000 + }, + { + "epoch": 22.479102102353632, + "grad_norm": 0.966921329498291, + "learning_rate": 3.876515912897823e-05, + "loss": 0.26374603271484376, + "step": 67100 + }, + { + "epoch": 22.512605745874865, + "grad_norm": 0.979242742061615, + "learning_rate": 3.874840871021776e-05, + "loss": 0.266760082244873, + "step": 67200 + }, + { + "epoch": 22.546109389396097, + "grad_norm": 1.169141173362732, + "learning_rate": 3.873165829145729e-05, + "loss": 0.2670201873779297, + "step": 67300 + }, + { + "epoch": 22.57961303291733, + "grad_norm": 0.9599239230155945, + "learning_rate": 3.871490787269682e-05, + "loss": 0.2680745315551758, + "step": 67400 + }, + { + "epoch": 22.613116676438562, + "grad_norm": 1.0141677856445312, + "learning_rate": 3.869815745393635e-05, + "loss": 0.26869884490966794, + "step": 67500 + }, + { + "epoch": 22.646620319959794, + "grad_norm": 0.9633665084838867, + "learning_rate": 3.868140703517588e-05, + "loss": 0.26763187408447264, + "step": 67600 + }, + { + "epoch": 22.68012396348103, + "grad_norm": 1.046339750289917, + "learning_rate": 3.866465661641541e-05, + "loss": 0.271055965423584, + "step": 67700 + }, + { + "epoch": 22.713627607002262, + "grad_norm": 1.0029908418655396, + "learning_rate": 3.8647906197654945e-05, + "loss": 0.26755489349365236, + "step": 67800 + }, + { + "epoch": 22.747131250523495, + "grad_norm": 0.9917793273925781, + "learning_rate": 3.8631155778894473e-05, + "loss": 0.26893938064575196, + "step": 67900 + }, + { + "epoch": 22.780634894044727, + "grad_norm": 0.921280026435852, + "learning_rate": 3.8614405360134e-05, + "loss": 0.26891294479370115, + "step": 68000 + }, + { + "epoch": 22.81413853756596, + "grad_norm": 0.9776479601860046, + "learning_rate": 3.859765494137353e-05, + "loss": 0.2671005058288574, + "step": 68100 + }, + { + "epoch": 22.847642181087192, + "grad_norm": 0.8705649375915527, + "learning_rate": 3.858090452261307e-05, + "loss": 0.2690028762817383, + "step": 68200 + }, + { + "epoch": 22.881145824608428, + "grad_norm": 0.8992595076560974, + "learning_rate": 3.8564154103852595e-05, + "loss": 0.26913272857666015, + "step": 68300 + }, + { + "epoch": 22.91464946812966, + "grad_norm": 0.8897244334220886, + "learning_rate": 3.854740368509213e-05, + "loss": 0.27021236419677735, + "step": 68400 + }, + { + "epoch": 22.948153111650893, + "grad_norm": 0.9646697044372559, + "learning_rate": 3.853065326633166e-05, + "loss": 0.27057441711425784, + "step": 68500 + }, + { + "epoch": 22.981656755172125, + "grad_norm": 0.9705012440681458, + "learning_rate": 3.8513902847571195e-05, + "loss": 0.27003257751464843, + "step": 68600 + }, + { + "epoch": 23.015076639584557, + "grad_norm": 0.9501924514770508, + "learning_rate": 3.8497152428810724e-05, + "loss": 0.2624375915527344, + "step": 68700 + }, + { + "epoch": 23.04858028310579, + "grad_norm": 0.9246262311935425, + "learning_rate": 3.848040201005025e-05, + "loss": 0.2510771560668945, + "step": 68800 + }, + { + "epoch": 23.08208392662702, + "grad_norm": 1.0363575220108032, + "learning_rate": 3.846365159128978e-05, + "loss": 0.2513089370727539, + "step": 68900 + }, + { + "epoch": 23.115587570148254, + "grad_norm": 1.0965619087219238, + "learning_rate": 3.844706867671692e-05, + "loss": 0.2531783103942871, + "step": 69000 + }, + { + "epoch": 23.149091213669486, + "grad_norm": 0.7851601839065552, + "learning_rate": 3.843031825795645e-05, + "loss": 0.25430681228637697, + "step": 69100 + }, + { + "epoch": 23.18259485719072, + "grad_norm": 0.8714056611061096, + "learning_rate": 3.841356783919598e-05, + "loss": 0.2563682746887207, + "step": 69200 + }, + { + "epoch": 23.21609850071195, + "grad_norm": 0.9404228925704956, + "learning_rate": 3.839681742043551e-05, + "loss": 0.25634672164916994, + "step": 69300 + }, + { + "epoch": 23.249602144233187, + "grad_norm": 1.04526948928833, + "learning_rate": 3.838006700167504e-05, + "loss": 0.2558123779296875, + "step": 69400 + }, + { + "epoch": 23.28310578775442, + "grad_norm": 1.0145646333694458, + "learning_rate": 3.836331658291458e-05, + "loss": 0.25761409759521486, + "step": 69500 + }, + { + "epoch": 23.31660943127565, + "grad_norm": 1.0709373950958252, + "learning_rate": 3.834656616415411e-05, + "loss": 0.25936553955078123, + "step": 69600 + }, + { + "epoch": 23.350113074796884, + "grad_norm": 1.0656367540359497, + "learning_rate": 3.8329815745393637e-05, + "loss": 0.25993459701538085, + "step": 69700 + }, + { + "epoch": 23.383616718318116, + "grad_norm": 0.9517690539360046, + "learning_rate": 3.8313065326633165e-05, + "loss": 0.2593793296813965, + "step": 69800 + }, + { + "epoch": 23.41712036183935, + "grad_norm": 0.9651705026626587, + "learning_rate": 3.82963149078727e-05, + "loss": 0.2592854309082031, + "step": 69900 + }, + { + "epoch": 23.450624005360584, + "grad_norm": 0.9077875018119812, + "learning_rate": 3.827956448911223e-05, + "loss": 0.2614713668823242, + "step": 70000 + }, + { + "epoch": 23.484127648881817, + "grad_norm": 0.9982284307479858, + "learning_rate": 3.826281407035176e-05, + "loss": 0.2588504219055176, + "step": 70100 + }, + { + "epoch": 23.51763129240305, + "grad_norm": 0.9539495706558228, + "learning_rate": 3.824606365159129e-05, + "loss": 0.26046722412109374, + "step": 70200 + }, + { + "epoch": 23.55113493592428, + "grad_norm": 1.0776108503341675, + "learning_rate": 3.822931323283082e-05, + "loss": 0.2608753776550293, + "step": 70300 + }, + { + "epoch": 23.584638579445514, + "grad_norm": 1.0306613445281982, + "learning_rate": 3.821256281407035e-05, + "loss": 0.26188905715942384, + "step": 70400 + }, + { + "epoch": 23.618142222966746, + "grad_norm": 0.9900612831115723, + "learning_rate": 3.819581239530988e-05, + "loss": 0.26530147552490235, + "step": 70500 + }, + { + "epoch": 23.651645866487982, + "grad_norm": 1.047272801399231, + "learning_rate": 3.817906197654941e-05, + "loss": 0.26567121505737307, + "step": 70600 + }, + { + "epoch": 23.685149510009214, + "grad_norm": 0.9837287068367004, + "learning_rate": 3.816231155778895e-05, + "loss": 0.2618439865112305, + "step": 70700 + }, + { + "epoch": 23.718653153530447, + "grad_norm": 1.0495308637619019, + "learning_rate": 3.814556113902848e-05, + "loss": 0.2637239646911621, + "step": 70800 + }, + { + "epoch": 23.75215679705168, + "grad_norm": 0.9998559951782227, + "learning_rate": 3.812881072026801e-05, + "loss": 0.2645314788818359, + "step": 70900 + }, + { + "epoch": 23.78566044057291, + "grad_norm": 1.0041533708572388, + "learning_rate": 3.811222780569514e-05, + "loss": 0.26535621643066404, + "step": 71000 + }, + { + "epoch": 23.819164084094144, + "grad_norm": 0.8790546655654907, + "learning_rate": 3.809547738693468e-05, + "loss": 0.26744958877563474, + "step": 71100 + }, + { + "epoch": 23.85266772761538, + "grad_norm": 1.0044236183166504, + "learning_rate": 3.8078726968174206e-05, + "loss": 0.2647633171081543, + "step": 71200 + }, + { + "epoch": 23.886171371136612, + "grad_norm": 0.9612513184547424, + "learning_rate": 3.8061976549413735e-05, + "loss": 0.2649590682983398, + "step": 71300 + }, + { + "epoch": 23.919675014657845, + "grad_norm": 0.8713734745979309, + "learning_rate": 3.8045226130653264e-05, + "loss": 0.266021728515625, + "step": 71400 + }, + { + "epoch": 23.953178658179077, + "grad_norm": 1.0584930181503296, + "learning_rate": 3.80284757118928e-05, + "loss": 0.2661307907104492, + "step": 71500 + }, + { + "epoch": 23.98668230170031, + "grad_norm": 1.003209114074707, + "learning_rate": 3.801172529313233e-05, + "loss": 0.26575571060180664, + "step": 71600 + }, + { + "epoch": 24.02010218611274, + "grad_norm": 1.0001593828201294, + "learning_rate": 3.7994974874371864e-05, + "loss": 0.25387475967407225, + "step": 71700 + }, + { + "epoch": 24.053605829633973, + "grad_norm": 1.0081121921539307, + "learning_rate": 3.797822445561139e-05, + "loss": 0.24931825637817384, + "step": 71800 + }, + { + "epoch": 24.087109473155206, + "grad_norm": 0.969540536403656, + "learning_rate": 3.796147403685092e-05, + "loss": 0.24639154434204102, + "step": 71900 + }, + { + "epoch": 24.120613116676438, + "grad_norm": 0.9975810050964355, + "learning_rate": 3.794472361809046e-05, + "loss": 0.24772171020507813, + "step": 72000 + }, + { + "epoch": 24.15411676019767, + "grad_norm": 1.0242449045181274, + "learning_rate": 3.7927973199329986e-05, + "loss": 0.24881784439086915, + "step": 72100 + }, + { + "epoch": 24.187620403718903, + "grad_norm": 0.9321593642234802, + "learning_rate": 3.7911222780569515e-05, + "loss": 0.250980339050293, + "step": 72200 + }, + { + "epoch": 24.22112404724014, + "grad_norm": 0.8362423181533813, + "learning_rate": 3.7894472361809044e-05, + "loss": 0.2504695320129395, + "step": 72300 + }, + { + "epoch": 24.25462769076137, + "grad_norm": 1.0577383041381836, + "learning_rate": 3.787772194304858e-05, + "loss": 0.25103809356689455, + "step": 72400 + }, + { + "epoch": 24.288131334282603, + "grad_norm": 0.9327830672264099, + "learning_rate": 3.786097152428811e-05, + "loss": 0.2529195785522461, + "step": 72500 + }, + { + "epoch": 24.321634977803836, + "grad_norm": 0.941429078578949, + "learning_rate": 3.784422110552764e-05, + "loss": 0.25365312576293947, + "step": 72600 + }, + { + "epoch": 24.355138621325068, + "grad_norm": 0.9718444347381592, + "learning_rate": 3.7827470686767166e-05, + "loss": 0.25447874069213866, + "step": 72700 + }, + { + "epoch": 24.3886422648463, + "grad_norm": 1.0243566036224365, + "learning_rate": 3.78107202680067e-05, + "loss": 0.2550676727294922, + "step": 72800 + }, + { + "epoch": 24.422145908367536, + "grad_norm": 1.0174282789230347, + "learning_rate": 3.779396984924624e-05, + "loss": 0.25832677841186524, + "step": 72900 + }, + { + "epoch": 24.45564955188877, + "grad_norm": 0.9675871133804321, + "learning_rate": 3.777738693467337e-05, + "loss": 0.2548235511779785, + "step": 73000 + }, + { + "epoch": 24.48915319541, + "grad_norm": 1.095906138420105, + "learning_rate": 3.77606365159129e-05, + "loss": 0.2557443809509277, + "step": 73100 + }, + { + "epoch": 24.522656838931233, + "grad_norm": 0.8963753581047058, + "learning_rate": 3.7743886097152434e-05, + "loss": 0.25586761474609376, + "step": 73200 + }, + { + "epoch": 24.556160482452466, + "grad_norm": 0.8457279801368713, + "learning_rate": 3.772713567839196e-05, + "loss": 0.2581898307800293, + "step": 73300 + }, + { + "epoch": 24.589664125973698, + "grad_norm": 1.0806199312210083, + "learning_rate": 3.771038525963149e-05, + "loss": 0.25776454925537107, + "step": 73400 + }, + { + "epoch": 24.623167769494934, + "grad_norm": 1.117748737335205, + "learning_rate": 3.769363484087102e-05, + "loss": 0.25891387939453125, + "step": 73500 + }, + { + "epoch": 24.656671413016166, + "grad_norm": 1.022865653038025, + "learning_rate": 3.7676884422110556e-05, + "loss": 0.25816925048828127, + "step": 73600 + }, + { + "epoch": 24.6901750565374, + "grad_norm": 1.0696437358856201, + "learning_rate": 3.7660134003350085e-05, + "loss": 0.2563637351989746, + "step": 73700 + }, + { + "epoch": 24.72367870005863, + "grad_norm": 0.9979215860366821, + "learning_rate": 3.7643383584589614e-05, + "loss": 0.25864744186401367, + "step": 73800 + }, + { + "epoch": 24.757182343579863, + "grad_norm": 1.0636203289031982, + "learning_rate": 3.762663316582914e-05, + "loss": 0.25936466217041015, + "step": 73900 + }, + { + "epoch": 24.790685987101096, + "grad_norm": 1.0561468601226807, + "learning_rate": 3.760988274706868e-05, + "loss": 0.2596282005310059, + "step": 74000 + }, + { + "epoch": 24.82418963062233, + "grad_norm": 1.0279403924942017, + "learning_rate": 3.7593132328308214e-05, + "loss": 0.25866455078125, + "step": 74100 + }, + { + "epoch": 24.857693274143564, + "grad_norm": 1.0280523300170898, + "learning_rate": 3.757638190954774e-05, + "loss": 0.2624567985534668, + "step": 74200 + }, + { + "epoch": 24.891196917664796, + "grad_norm": 1.0582387447357178, + "learning_rate": 3.755963149078727e-05, + "loss": 0.26197324752807616, + "step": 74300 + }, + { + "epoch": 24.92470056118603, + "grad_norm": 0.9122918248176575, + "learning_rate": 3.75428810720268e-05, + "loss": 0.25970455169677736, + "step": 74400 + }, + { + "epoch": 24.95820420470726, + "grad_norm": 1.223061442375183, + "learning_rate": 3.7526130653266336e-05, + "loss": 0.2615465927124023, + "step": 74500 + }, + { + "epoch": 24.991707848228494, + "grad_norm": 0.9313095808029175, + "learning_rate": 3.7509380234505865e-05, + "loss": 0.26078268051147463, + "step": 74600 + }, + { + "epoch": 25.025127732640925, + "grad_norm": 0.9277160167694092, + "learning_rate": 3.7492629815745393e-05, + "loss": 0.2467232322692871, + "step": 74700 + }, + { + "epoch": 25.058631376162158, + "grad_norm": 0.8967624306678772, + "learning_rate": 3.747587939698492e-05, + "loss": 0.2427264404296875, + "step": 74800 + }, + { + "epoch": 25.09213501968339, + "grad_norm": 0.9991577863693237, + "learning_rate": 3.745912897822446e-05, + "loss": 0.24398237228393554, + "step": 74900 + }, + { + "epoch": 25.125638663204622, + "grad_norm": 0.9068632125854492, + "learning_rate": 3.74425460636516e-05, + "loss": 0.24407464981079102, + "step": 75000 + }, + { + "epoch": 25.159142306725858, + "grad_norm": 0.9610689878463745, + "learning_rate": 3.7425795644891126e-05, + "loss": 0.2451825523376465, + "step": 75100 + }, + { + "epoch": 25.19264595024709, + "grad_norm": 1.0655577182769775, + "learning_rate": 3.7409045226130655e-05, + "loss": 0.24775781631469726, + "step": 75200 + }, + { + "epoch": 25.226149593768323, + "grad_norm": 0.9166316390037537, + "learning_rate": 3.739229480737019e-05, + "loss": 0.24586162567138672, + "step": 75300 + }, + { + "epoch": 25.259653237289555, + "grad_norm": 1.0330859422683716, + "learning_rate": 3.737554438860972e-05, + "loss": 0.2476130485534668, + "step": 75400 + }, + { + "epoch": 25.293156880810788, + "grad_norm": 0.9790452122688293, + "learning_rate": 3.735879396984925e-05, + "loss": 0.24896875381469727, + "step": 75500 + }, + { + "epoch": 25.32666052433202, + "grad_norm": 0.9078829288482666, + "learning_rate": 3.734204355108878e-05, + "loss": 0.25146854400634766, + "step": 75600 + }, + { + "epoch": 25.360164167853252, + "grad_norm": 1.0172176361083984, + "learning_rate": 3.732529313232831e-05, + "loss": 0.24892644882202147, + "step": 75700 + }, + { + "epoch": 25.39366781137449, + "grad_norm": 0.8392038941383362, + "learning_rate": 3.730854271356784e-05, + "loss": 0.2486979866027832, + "step": 75800 + }, + { + "epoch": 25.42717145489572, + "grad_norm": 1.120992660522461, + "learning_rate": 3.729179229480737e-05, + "loss": 0.2500802612304687, + "step": 75900 + }, + { + "epoch": 25.460675098416953, + "grad_norm": 0.9740986227989197, + "learning_rate": 3.727520938023451e-05, + "loss": 0.2497385025024414, + "step": 76000 + }, + { + "epoch": 25.494178741938185, + "grad_norm": 1.1447396278381348, + "learning_rate": 3.725845896147404e-05, + "loss": 0.2524580001831055, + "step": 76100 + }, + { + "epoch": 25.527682385459418, + "grad_norm": 0.8573219776153564, + "learning_rate": 3.7241708542713574e-05, + "loss": 0.2522186470031738, + "step": 76200 + }, + { + "epoch": 25.56118602898065, + "grad_norm": 1.0129204988479614, + "learning_rate": 3.72249581239531e-05, + "loss": 0.2548684501647949, + "step": 76300 + }, + { + "epoch": 25.594689672501886, + "grad_norm": 0.9877455830574036, + "learning_rate": 3.720820770519263e-05, + "loss": 0.2520929527282715, + "step": 76400 + }, + { + "epoch": 25.62819331602312, + "grad_norm": 0.9686979651451111, + "learning_rate": 3.719145728643216e-05, + "loss": 0.25263065338134766, + "step": 76500 + }, + { + "epoch": 25.66169695954435, + "grad_norm": 0.9908387660980225, + "learning_rate": 3.7174706867671696e-05, + "loss": 0.25347740173339844, + "step": 76600 + }, + { + "epoch": 25.695200603065583, + "grad_norm": 1.006608009338379, + "learning_rate": 3.7157956448911225e-05, + "loss": 0.2546247863769531, + "step": 76700 + }, + { + "epoch": 25.728704246586815, + "grad_norm": 1.003769874572754, + "learning_rate": 3.7141206030150754e-05, + "loss": 0.253816089630127, + "step": 76800 + }, + { + "epoch": 25.762207890108048, + "grad_norm": 1.0374062061309814, + "learning_rate": 3.712445561139028e-05, + "loss": 0.25663318634033205, + "step": 76900 + }, + { + "epoch": 25.795711533629284, + "grad_norm": 1.0362064838409424, + "learning_rate": 3.710770519262982e-05, + "loss": 0.2567397880554199, + "step": 77000 + }, + { + "epoch": 25.829215177150516, + "grad_norm": 1.0892760753631592, + "learning_rate": 3.709095477386935e-05, + "loss": 0.25798879623413085, + "step": 77100 + }, + { + "epoch": 25.86271882067175, + "grad_norm": 1.049902081489563, + "learning_rate": 3.7074204355108876e-05, + "loss": 0.25775598526000976, + "step": 77200 + }, + { + "epoch": 25.89622246419298, + "grad_norm": 0.8818158507347107, + "learning_rate": 3.705745393634841e-05, + "loss": 0.2554671287536621, + "step": 77300 + }, + { + "epoch": 25.929726107714213, + "grad_norm": 1.0922232866287231, + "learning_rate": 3.704070351758795e-05, + "loss": 0.25704565048217776, + "step": 77400 + }, + { + "epoch": 25.963229751235446, + "grad_norm": 0.9811676144599915, + "learning_rate": 3.7023953098827476e-05, + "loss": 0.25583274841308595, + "step": 77500 + }, + { + "epoch": 25.99673339475668, + "grad_norm": 1.044572353363037, + "learning_rate": 3.7007202680067004e-05, + "loss": 0.25744909286499024, + "step": 77600 + }, + { + "epoch": 26.03015327916911, + "grad_norm": 0.790084958076477, + "learning_rate": 3.699045226130653e-05, + "loss": 0.23935884475708008, + "step": 77700 + }, + { + "epoch": 26.063656922690342, + "grad_norm": 0.9131903052330017, + "learning_rate": 3.697370184254607e-05, + "loss": 0.2395966339111328, + "step": 77800 + }, + { + "epoch": 26.097160566211574, + "grad_norm": 1.0206575393676758, + "learning_rate": 3.69569514237856e-05, + "loss": 0.23894302368164064, + "step": 77900 + }, + { + "epoch": 26.13066420973281, + "grad_norm": 0.9167901873588562, + "learning_rate": 3.6940201005025127e-05, + "loss": 0.24095657348632812, + "step": 78000 + }, + { + "epoch": 26.164167853254042, + "grad_norm": 0.9756499528884888, + "learning_rate": 3.6923450586264655e-05, + "loss": 0.24229476928710938, + "step": 78100 + }, + { + "epoch": 26.197671496775275, + "grad_norm": 1.1261674165725708, + "learning_rate": 3.690670016750419e-05, + "loss": 0.24467144012451172, + "step": 78200 + }, + { + "epoch": 26.231175140296507, + "grad_norm": 0.8712000846862793, + "learning_rate": 3.688994974874372e-05, + "loss": 0.2426918601989746, + "step": 78300 + }, + { + "epoch": 26.26467878381774, + "grad_norm": 0.9853079915046692, + "learning_rate": 3.687319932998325e-05, + "loss": 0.2432308578491211, + "step": 78400 + }, + { + "epoch": 26.298182427338972, + "grad_norm": 0.9844798445701599, + "learning_rate": 3.6856448911222784e-05, + "loss": 0.24566902160644533, + "step": 78500 + }, + { + "epoch": 26.331686070860208, + "grad_norm": 0.991397500038147, + "learning_rate": 3.683969849246231e-05, + "loss": 0.24585660934448242, + "step": 78600 + }, + { + "epoch": 26.36518971438144, + "grad_norm": 0.9551209211349487, + "learning_rate": 3.682294807370185e-05, + "loss": 0.24546436309814454, + "step": 78700 + }, + { + "epoch": 26.398693357902673, + "grad_norm": 1.0218653678894043, + "learning_rate": 3.680619765494138e-05, + "loss": 0.2468564987182617, + "step": 78800 + }, + { + "epoch": 26.432197001423905, + "grad_norm": 0.879303514957428, + "learning_rate": 3.6789447236180906e-05, + "loss": 0.24688074111938477, + "step": 78900 + }, + { + "epoch": 26.465700644945137, + "grad_norm": 0.9550554156303406, + "learning_rate": 3.6772696817420435e-05, + "loss": 0.24929559707641602, + "step": 79000 + }, + { + "epoch": 26.49920428846637, + "grad_norm": 1.092371940612793, + "learning_rate": 3.675594639865997e-05, + "loss": 0.2490665817260742, + "step": 79100 + }, + { + "epoch": 26.532707931987602, + "grad_norm": 0.9425039887428284, + "learning_rate": 3.67391959798995e-05, + "loss": 0.24648136138916016, + "step": 79200 + }, + { + "epoch": 26.566211575508838, + "grad_norm": 0.9212557077407837, + "learning_rate": 3.672244556113903e-05, + "loss": 0.24588151931762695, + "step": 79300 + }, + { + "epoch": 26.59971521903007, + "grad_norm": 1.0376055240631104, + "learning_rate": 3.670569514237856e-05, + "loss": 0.24943052291870116, + "step": 79400 + }, + { + "epoch": 26.633218862551303, + "grad_norm": 0.9473478198051453, + "learning_rate": 3.668894472361809e-05, + "loss": 0.24888269424438478, + "step": 79500 + }, + { + "epoch": 26.666722506072535, + "grad_norm": 1.052951455116272, + "learning_rate": 3.667219430485762e-05, + "loss": 0.24891986846923828, + "step": 79600 + }, + { + "epoch": 26.700226149593767, + "grad_norm": 1.1100990772247314, + "learning_rate": 3.665544388609715e-05, + "loss": 0.2513142776489258, + "step": 79700 + }, + { + "epoch": 26.733729793115, + "grad_norm": 0.9589593410491943, + "learning_rate": 3.6638693467336686e-05, + "loss": 0.24993154525756836, + "step": 79800 + }, + { + "epoch": 26.767233436636236, + "grad_norm": 0.9308981895446777, + "learning_rate": 3.662194304857622e-05, + "loss": 0.2495902442932129, + "step": 79900 + }, + { + "epoch": 26.800737080157468, + "grad_norm": 1.0080679655075073, + "learning_rate": 3.6605360134003354e-05, + "loss": 0.25091459274291994, + "step": 80000 + }, + { + "epoch": 26.8342407236787, + "grad_norm": 0.965578556060791, + "learning_rate": 3.658860971524288e-05, + "loss": 0.2524791526794434, + "step": 80100 + }, + { + "epoch": 26.867744367199933, + "grad_norm": 1.0109574794769287, + "learning_rate": 3.657185929648241e-05, + "loss": 0.2515005111694336, + "step": 80200 + }, + { + "epoch": 26.901248010721165, + "grad_norm": 1.0662031173706055, + "learning_rate": 3.655510887772195e-05, + "loss": 0.25569900512695315, + "step": 80300 + }, + { + "epoch": 26.934751654242397, + "grad_norm": 1.0011720657348633, + "learning_rate": 3.6538358458961476e-05, + "loss": 0.25127042770385744, + "step": 80400 + }, + { + "epoch": 26.968255297763633, + "grad_norm": 1.0007758140563965, + "learning_rate": 3.6521608040201005e-05, + "loss": 0.25374698638916016, + "step": 80500 + }, + { + "epoch": 27.00167518217606, + "grad_norm": 0.8360596895217896, + "learning_rate": 3.6504857621440534e-05, + "loss": 0.2519091033935547, + "step": 80600 + }, + { + "epoch": 27.035178825697294, + "grad_norm": 0.772354781627655, + "learning_rate": 3.648810720268007e-05, + "loss": 0.2350589370727539, + "step": 80700 + }, + { + "epoch": 27.068682469218526, + "grad_norm": 0.9291853904724121, + "learning_rate": 3.6471356783919605e-05, + "loss": 0.23687738418579102, + "step": 80800 + }, + { + "epoch": 27.102186112739762, + "grad_norm": 0.8280290365219116, + "learning_rate": 3.6454606365159134e-05, + "loss": 0.23724706649780272, + "step": 80900 + }, + { + "epoch": 27.135689756260994, + "grad_norm": 1.0114185810089111, + "learning_rate": 3.643785594639866e-05, + "loss": 0.2386191940307617, + "step": 81000 + }, + { + "epoch": 27.169193399782227, + "grad_norm": 0.8960608839988708, + "learning_rate": 3.642110552763819e-05, + "loss": 0.23746776580810547, + "step": 81100 + }, + { + "epoch": 27.20269704330346, + "grad_norm": 0.9211316704750061, + "learning_rate": 3.640435510887773e-05, + "loss": 0.24118051528930665, + "step": 81200 + }, + { + "epoch": 27.23620068682469, + "grad_norm": 0.9914082884788513, + "learning_rate": 3.6387604690117256e-05, + "loss": 0.2407957649230957, + "step": 81300 + }, + { + "epoch": 27.269704330345924, + "grad_norm": 0.8905548453330994, + "learning_rate": 3.6370854271356785e-05, + "loss": 0.23928272247314453, + "step": 81400 + }, + { + "epoch": 27.30320797386716, + "grad_norm": 0.8846296072006226, + "learning_rate": 3.635427135678392e-05, + "loss": 0.24042049407958985, + "step": 81500 + }, + { + "epoch": 27.336711617388392, + "grad_norm": 0.9076329469680786, + "learning_rate": 3.633752093802345e-05, + "loss": 0.24250953674316406, + "step": 81600 + }, + { + "epoch": 27.370215260909625, + "grad_norm": 1.1054998636245728, + "learning_rate": 3.632077051926298e-05, + "loss": 0.2428689956665039, + "step": 81700 + }, + { + "epoch": 27.403718904430857, + "grad_norm": 0.9182295799255371, + "learning_rate": 3.630402010050251e-05, + "loss": 0.24241937637329103, + "step": 81800 + }, + { + "epoch": 27.43722254795209, + "grad_norm": 1.0540192127227783, + "learning_rate": 3.6287269681742046e-05, + "loss": 0.24241340637207032, + "step": 81900 + }, + { + "epoch": 27.47072619147332, + "grad_norm": 0.9639661312103271, + "learning_rate": 3.6270519262981575e-05, + "loss": 0.24282842636108398, + "step": 82000 + }, + { + "epoch": 27.504229834994554, + "grad_norm": 0.8837372064590454, + "learning_rate": 3.625376884422111e-05, + "loss": 0.24227666854858398, + "step": 82100 + }, + { + "epoch": 27.53773347851579, + "grad_norm": 0.8825430274009705, + "learning_rate": 3.623701842546064e-05, + "loss": 0.24317176818847655, + "step": 82200 + }, + { + "epoch": 27.571237122037022, + "grad_norm": 1.0860276222229004, + "learning_rate": 3.622026800670017e-05, + "loss": 0.2448468780517578, + "step": 82300 + }, + { + "epoch": 27.604740765558255, + "grad_norm": 1.0138317346572876, + "learning_rate": 3.6203517587939704e-05, + "loss": 0.24316675186157227, + "step": 82400 + }, + { + "epoch": 27.638244409079487, + "grad_norm": 1.0941250324249268, + "learning_rate": 3.618676716917923e-05, + "loss": 0.2473929786682129, + "step": 82500 + }, + { + "epoch": 27.67174805260072, + "grad_norm": 0.8989108800888062, + "learning_rate": 3.617001675041876e-05, + "loss": 0.247222900390625, + "step": 82600 + }, + { + "epoch": 27.70525169612195, + "grad_norm": 1.0026638507843018, + "learning_rate": 3.615326633165829e-05, + "loss": 0.24576572418212891, + "step": 82700 + }, + { + "epoch": 27.738755339643188, + "grad_norm": 1.0626496076583862, + "learning_rate": 3.6136515912897826e-05, + "loss": 0.2481866455078125, + "step": 82800 + }, + { + "epoch": 27.77225898316442, + "grad_norm": 0.8049838542938232, + "learning_rate": 3.6119765494137355e-05, + "loss": 0.24766799926757813, + "step": 82900 + }, + { + "epoch": 27.805762626685652, + "grad_norm": 1.0565505027770996, + "learning_rate": 3.6103015075376883e-05, + "loss": 0.24823820114135742, + "step": 83000 + }, + { + "epoch": 27.839266270206885, + "grad_norm": 1.0819406509399414, + "learning_rate": 3.608626465661642e-05, + "loss": 0.24928997039794923, + "step": 83100 + }, + { + "epoch": 27.872769913728117, + "grad_norm": 1.014066457748413, + "learning_rate": 3.606951423785595e-05, + "loss": 0.24671865463256837, + "step": 83200 + }, + { + "epoch": 27.90627355724935, + "grad_norm": 1.002631425857544, + "learning_rate": 3.6052763819095483e-05, + "loss": 0.24837955474853515, + "step": 83300 + }, + { + "epoch": 27.939777200770585, + "grad_norm": 1.0699118375778198, + "learning_rate": 3.603601340033501e-05, + "loss": 0.25022062301635745, + "step": 83400 + }, + { + "epoch": 27.973280844291818, + "grad_norm": 0.9003764986991882, + "learning_rate": 3.601926298157454e-05, + "loss": 0.24779138565063477, + "step": 83500 + }, + { + "epoch": 28.006700728704246, + "grad_norm": 0.7831597924232483, + "learning_rate": 3.600251256281407e-05, + "loss": 0.24304958343505859, + "step": 83600 + }, + { + "epoch": 28.040204372225478, + "grad_norm": 0.8876057267189026, + "learning_rate": 3.5985762144053605e-05, + "loss": 0.23251798629760742, + "step": 83700 + }, + { + "epoch": 28.073708015746714, + "grad_norm": 0.8161166906356812, + "learning_rate": 3.5969011725293134e-05, + "loss": 0.23175537109375, + "step": 83800 + }, + { + "epoch": 28.107211659267946, + "grad_norm": 1.0348833799362183, + "learning_rate": 3.595226130653266e-05, + "loss": 0.23300014495849608, + "step": 83900 + }, + { + "epoch": 28.14071530278918, + "grad_norm": 0.9496212601661682, + "learning_rate": 3.5935678391959796e-05, + "loss": 0.23465946197509766, + "step": 84000 + }, + { + "epoch": 28.17421894631041, + "grad_norm": 0.8523275256156921, + "learning_rate": 3.591892797319933e-05, + "loss": 0.23583173751831055, + "step": 84100 + }, + { + "epoch": 28.207722589831643, + "grad_norm": 0.9591325521469116, + "learning_rate": 3.590217755443887e-05, + "loss": 0.2353810691833496, + "step": 84200 + }, + { + "epoch": 28.241226233352876, + "grad_norm": 0.876011312007904, + "learning_rate": 3.5885427135678396e-05, + "loss": 0.23749792098999023, + "step": 84300 + }, + { + "epoch": 28.27472987687411, + "grad_norm": 0.9948890209197998, + "learning_rate": 3.5868676716917924e-05, + "loss": 0.23812158584594725, + "step": 84400 + }, + { + "epoch": 28.308233520395344, + "grad_norm": 0.99249267578125, + "learning_rate": 3.585192629815745e-05, + "loss": 0.23765924453735351, + "step": 84500 + }, + { + "epoch": 28.341737163916576, + "grad_norm": 0.8422896265983582, + "learning_rate": 3.583517587939699e-05, + "loss": 0.2388518714904785, + "step": 84600 + }, + { + "epoch": 28.37524080743781, + "grad_norm": 1.0225242376327515, + "learning_rate": 3.581842546063652e-05, + "loss": 0.2379816436767578, + "step": 84700 + }, + { + "epoch": 28.40874445095904, + "grad_norm": 0.9493758082389832, + "learning_rate": 3.5801675041876047e-05, + "loss": 0.23900142669677735, + "step": 84800 + }, + { + "epoch": 28.442248094480274, + "grad_norm": 1.0754547119140625, + "learning_rate": 3.578492462311558e-05, + "loss": 0.2420096778869629, + "step": 84900 + }, + { + "epoch": 28.475751738001506, + "grad_norm": 1.1404248476028442, + "learning_rate": 3.576817420435511e-05, + "loss": 0.2387169647216797, + "step": 85000 + }, + { + "epoch": 28.509255381522742, + "grad_norm": 1.0831667184829712, + "learning_rate": 3.575142378559464e-05, + "loss": 0.23977863311767578, + "step": 85100 + }, + { + "epoch": 28.542759025043974, + "grad_norm": 0.9713730812072754, + "learning_rate": 3.573467336683417e-05, + "loss": 0.24276636123657228, + "step": 85200 + }, + { + "epoch": 28.576262668565207, + "grad_norm": 0.8892617225646973, + "learning_rate": 3.5717922948073704e-05, + "loss": 0.24079540252685547, + "step": 85300 + }, + { + "epoch": 28.60976631208644, + "grad_norm": 0.90485680103302, + "learning_rate": 3.570117252931324e-05, + "loss": 0.23991119384765625, + "step": 85400 + }, + { + "epoch": 28.64326995560767, + "grad_norm": 0.8535875678062439, + "learning_rate": 3.568442211055277e-05, + "loss": 0.24252616882324218, + "step": 85500 + }, + { + "epoch": 28.676773599128904, + "grad_norm": 1.1108918190002441, + "learning_rate": 3.56676716917923e-05, + "loss": 0.24145748138427733, + "step": 85600 + }, + { + "epoch": 28.71027724265014, + "grad_norm": 1.0389022827148438, + "learning_rate": 3.5650921273031826e-05, + "loss": 0.24423345565795898, + "step": 85700 + }, + { + "epoch": 28.743780886171372, + "grad_norm": 1.0552116632461548, + "learning_rate": 3.563417085427136e-05, + "loss": 0.24410188674926758, + "step": 85800 + }, + { + "epoch": 28.777284529692604, + "grad_norm": 0.9229023456573486, + "learning_rate": 3.561742043551089e-05, + "loss": 0.24257204055786133, + "step": 85900 + }, + { + "epoch": 28.810788173213837, + "grad_norm": 1.0788532495498657, + "learning_rate": 3.560067001675042e-05, + "loss": 0.24557861328125, + "step": 86000 + }, + { + "epoch": 28.84429181673507, + "grad_norm": 0.8226192593574524, + "learning_rate": 3.558391959798995e-05, + "loss": 0.24487424850463868, + "step": 86100 + }, + { + "epoch": 28.8777954602563, + "grad_norm": 0.9678732752799988, + "learning_rate": 3.5567169179229484e-05, + "loss": 0.24371047973632812, + "step": 86200 + }, + { + "epoch": 28.911299103777537, + "grad_norm": 0.9942400455474854, + "learning_rate": 3.555041876046901e-05, + "loss": 0.24467437744140624, + "step": 86300 + }, + { + "epoch": 28.94480274729877, + "grad_norm": 1.050825595855713, + "learning_rate": 3.553366834170854e-05, + "loss": 0.2451385498046875, + "step": 86400 + }, + { + "epoch": 28.978306390820002, + "grad_norm": 0.9947119951248169, + "learning_rate": 3.551691792294807e-05, + "loss": 0.24689924240112304, + "step": 86500 + }, + { + "epoch": 29.01172627523243, + "grad_norm": 0.7659996151924133, + "learning_rate": 3.5500167504187606e-05, + "loss": 0.23850542068481445, + "step": 86600 + }, + { + "epoch": 29.045229918753666, + "grad_norm": 0.7991949915885925, + "learning_rate": 3.548341708542714e-05, + "loss": 0.23052330017089845, + "step": 86700 + }, + { + "epoch": 29.0787335622749, + "grad_norm": 0.9375367760658264, + "learning_rate": 3.546666666666667e-05, + "loss": 0.228839168548584, + "step": 86800 + }, + { + "epoch": 29.11223720579613, + "grad_norm": 1.0139492750167847, + "learning_rate": 3.54499162479062e-05, + "loss": 0.2321438217163086, + "step": 86900 + }, + { + "epoch": 29.145740849317363, + "grad_norm": 0.8823564648628235, + "learning_rate": 3.543316582914573e-05, + "loss": 0.23002294540405274, + "step": 87000 + }, + { + "epoch": 29.179244492838595, + "grad_norm": 0.8460071086883545, + "learning_rate": 3.5416415410385264e-05, + "loss": 0.23179996490478516, + "step": 87100 + }, + { + "epoch": 29.212748136359828, + "grad_norm": 0.9480848908424377, + "learning_rate": 3.539966499162479e-05, + "loss": 0.23330198287963866, + "step": 87200 + }, + { + "epoch": 29.246251779881064, + "grad_norm": 0.9003339409828186, + "learning_rate": 3.538291457286432e-05, + "loss": 0.2348067855834961, + "step": 87300 + }, + { + "epoch": 29.279755423402296, + "grad_norm": 0.9011369943618774, + "learning_rate": 3.536616415410386e-05, + "loss": 0.23475120544433595, + "step": 87400 + }, + { + "epoch": 29.31325906692353, + "grad_norm": 1.102575421333313, + "learning_rate": 3.5349413735343386e-05, + "loss": 0.23566722869873047, + "step": 87500 + }, + { + "epoch": 29.34676271044476, + "grad_norm": 1.0036569833755493, + "learning_rate": 3.5332663316582915e-05, + "loss": 0.2358757209777832, + "step": 87600 + }, + { + "epoch": 29.380266353965993, + "grad_norm": 0.9289223551750183, + "learning_rate": 3.531591289782244e-05, + "loss": 0.23525848388671874, + "step": 87700 + }, + { + "epoch": 29.413769997487226, + "grad_norm": 0.9896803498268127, + "learning_rate": 3.529916247906198e-05, + "loss": 0.23644231796264648, + "step": 87800 + }, + { + "epoch": 29.447273641008458, + "grad_norm": 0.9522982239723206, + "learning_rate": 3.5282412060301515e-05, + "loss": 0.23636116027832033, + "step": 87900 + }, + { + "epoch": 29.480777284529694, + "grad_norm": 0.9571079611778259, + "learning_rate": 3.526582914572865e-05, + "loss": 0.23850887298583984, + "step": 88000 + }, + { + "epoch": 29.514280928050926, + "grad_norm": 1.0205976963043213, + "learning_rate": 3.5249078726968176e-05, + "loss": 0.23928991317749024, + "step": 88100 + }, + { + "epoch": 29.54778457157216, + "grad_norm": 1.0385000705718994, + "learning_rate": 3.5232328308207705e-05, + "loss": 0.2364453125, + "step": 88200 + }, + { + "epoch": 29.58128821509339, + "grad_norm": 0.8799936771392822, + "learning_rate": 3.521557788944724e-05, + "loss": 0.2379269027709961, + "step": 88300 + }, + { + "epoch": 29.614791858614623, + "grad_norm": 1.0788037776947021, + "learning_rate": 3.519882747068677e-05, + "loss": 0.23958860397338866, + "step": 88400 + }, + { + "epoch": 29.648295502135856, + "grad_norm": 0.8725781440734863, + "learning_rate": 3.51820770519263e-05, + "loss": 0.23952722549438477, + "step": 88500 + }, + { + "epoch": 29.68179914565709, + "grad_norm": 1.0508238077163696, + "learning_rate": 3.516532663316583e-05, + "loss": 0.2397722053527832, + "step": 88600 + }, + { + "epoch": 29.715302789178324, + "grad_norm": 1.098661184310913, + "learning_rate": 3.514857621440536e-05, + "loss": 0.2380986213684082, + "step": 88700 + }, + { + "epoch": 29.748806432699556, + "grad_norm": 1.1082944869995117, + "learning_rate": 3.513182579564489e-05, + "loss": 0.2417365074157715, + "step": 88800 + }, + { + "epoch": 29.78231007622079, + "grad_norm": 0.9109951853752136, + "learning_rate": 3.511507537688443e-05, + "loss": 0.23964044570922852, + "step": 88900 + }, + { + "epoch": 29.81581371974202, + "grad_norm": 1.106863021850586, + "learning_rate": 3.5098324958123956e-05, + "loss": 0.24028875350952147, + "step": 89000 + }, + { + "epoch": 29.849317363263253, + "grad_norm": 0.9252721667289734, + "learning_rate": 3.5081574539363484e-05, + "loss": 0.24027196884155275, + "step": 89100 + }, + { + "epoch": 29.88282100678449, + "grad_norm": 1.18505859375, + "learning_rate": 3.506482412060302e-05, + "loss": 0.2418280601501465, + "step": 89200 + }, + { + "epoch": 29.91632465030572, + "grad_norm": 0.956193745136261, + "learning_rate": 3.504807370184255e-05, + "loss": 0.24323488235473634, + "step": 89300 + }, + { + "epoch": 29.949828293826954, + "grad_norm": 0.9459329843521118, + "learning_rate": 3.503132328308208e-05, + "loss": 0.24398193359375, + "step": 89400 + }, + { + "epoch": 29.983331937348186, + "grad_norm": 0.9862803816795349, + "learning_rate": 3.5014572864321607e-05, + "loss": 0.2418046760559082, + "step": 89500 + }, + { + "epoch": 30.016751821760618, + "grad_norm": 0.9011918902397156, + "learning_rate": 3.499782244556114e-05, + "loss": 0.23376155853271485, + "step": 89600 + }, + { + "epoch": 30.05025546528185, + "grad_norm": 0.9960854649543762, + "learning_rate": 3.498107202680067e-05, + "loss": 0.22885730743408203, + "step": 89700 + }, + { + "epoch": 30.083759108803083, + "grad_norm": 0.953056275844574, + "learning_rate": 3.49643216080402e-05, + "loss": 0.22713994979858398, + "step": 89800 + }, + { + "epoch": 30.117262752324315, + "grad_norm": 0.8877431154251099, + "learning_rate": 3.494757118927973e-05, + "loss": 0.22972366333007813, + "step": 89900 + }, + { + "epoch": 30.150766395845547, + "grad_norm": 0.9188148379325867, + "learning_rate": 3.493115577889448e-05, + "loss": 0.22967748641967772, + "step": 90000 + }, + { + "epoch": 30.18427003936678, + "grad_norm": 0.8880020380020142, + "learning_rate": 3.491440536013401e-05, + "loss": 0.22878494262695312, + "step": 90100 + }, + { + "epoch": 30.217773682888016, + "grad_norm": 0.9602766036987305, + "learning_rate": 3.4897654941373536e-05, + "loss": 0.23181842803955077, + "step": 90200 + }, + { + "epoch": 30.251277326409248, + "grad_norm": 0.8411327600479126, + "learning_rate": 3.4880904522613065e-05, + "loss": 0.23128870010375976, + "step": 90300 + }, + { + "epoch": 30.28478096993048, + "grad_norm": 0.9455945491790771, + "learning_rate": 3.48641541038526e-05, + "loss": 0.22971813201904298, + "step": 90400 + }, + { + "epoch": 30.318284613451713, + "grad_norm": 1.0151312351226807, + "learning_rate": 3.484740368509213e-05, + "loss": 0.2330830955505371, + "step": 90500 + }, + { + "epoch": 30.351788256972945, + "grad_norm": 0.9535360932350159, + "learning_rate": 3.483065326633166e-05, + "loss": 0.2313951873779297, + "step": 90600 + }, + { + "epoch": 30.385291900494177, + "grad_norm": 1.0460865497589111, + "learning_rate": 3.481390284757119e-05, + "loss": 0.23312372207641602, + "step": 90700 + }, + { + "epoch": 30.418795544015413, + "grad_norm": 0.9364484548568726, + "learning_rate": 3.479715242881072e-05, + "loss": 0.2326444625854492, + "step": 90800 + }, + { + "epoch": 30.452299187536646, + "grad_norm": 1.133334994316101, + "learning_rate": 3.478040201005025e-05, + "loss": 0.23389068603515625, + "step": 90900 + }, + { + "epoch": 30.485802831057878, + "grad_norm": 0.9046189188957214, + "learning_rate": 3.476365159128979e-05, + "loss": 0.23185604095458984, + "step": 91000 + }, + { + "epoch": 30.51930647457911, + "grad_norm": 0.7889045476913452, + "learning_rate": 3.4746901172529316e-05, + "loss": 0.23226310729980468, + "step": 91100 + }, + { + "epoch": 30.552810118100343, + "grad_norm": 0.8806297183036804, + "learning_rate": 3.4730150753768845e-05, + "loss": 0.23628852844238282, + "step": 91200 + }, + { + "epoch": 30.586313761621575, + "grad_norm": 0.8764693737030029, + "learning_rate": 3.471340033500838e-05, + "loss": 0.23575132369995117, + "step": 91300 + }, + { + "epoch": 30.619817405142808, + "grad_norm": 0.8656399846076965, + "learning_rate": 3.469664991624791e-05, + "loss": 0.23674060821533202, + "step": 91400 + }, + { + "epoch": 30.653321048664044, + "grad_norm": 1.0599033832550049, + "learning_rate": 3.467989949748744e-05, + "loss": 0.23605079650878907, + "step": 91500 + }, + { + "epoch": 30.686824692185276, + "grad_norm": 0.994979202747345, + "learning_rate": 3.4663149078726967e-05, + "loss": 0.23578712463378906, + "step": 91600 + }, + { + "epoch": 30.72032833570651, + "grad_norm": 0.9587284326553345, + "learning_rate": 3.46463986599665e-05, + "loss": 0.23613155364990235, + "step": 91700 + }, + { + "epoch": 30.75383197922774, + "grad_norm": 0.8443505764007568, + "learning_rate": 3.462964824120603e-05, + "loss": 0.23871355056762694, + "step": 91800 + }, + { + "epoch": 30.787335622748973, + "grad_norm": 1.099453091621399, + "learning_rate": 3.461289782244556e-05, + "loss": 0.24006723403930663, + "step": 91900 + }, + { + "epoch": 30.820839266270205, + "grad_norm": 1.0319575071334839, + "learning_rate": 3.459614740368509e-05, + "loss": 0.23815488815307617, + "step": 92000 + }, + { + "epoch": 30.85434290979144, + "grad_norm": 1.0333192348480225, + "learning_rate": 3.4579396984924624e-05, + "loss": 0.23808452606201172, + "step": 92100 + }, + { + "epoch": 30.887846553312674, + "grad_norm": 0.9881009459495544, + "learning_rate": 3.456264656616416e-05, + "loss": 0.2392608642578125, + "step": 92200 + }, + { + "epoch": 30.921350196833906, + "grad_norm": 1.0562998056411743, + "learning_rate": 3.454589614740369e-05, + "loss": 0.2401527976989746, + "step": 92300 + }, + { + "epoch": 30.95485384035514, + "grad_norm": 1.0023164749145508, + "learning_rate": 3.452914572864322e-05, + "loss": 0.23784709930419923, + "step": 92400 + }, + { + "epoch": 30.98835748387637, + "grad_norm": 0.8636544942855835, + "learning_rate": 3.451239530988275e-05, + "loss": 0.2380337142944336, + "step": 92500 + }, + { + "epoch": 31.021777368288802, + "grad_norm": 0.9277747273445129, + "learning_rate": 3.449564489112228e-05, + "loss": 0.22985034942626953, + "step": 92600 + }, + { + "epoch": 31.055281011810035, + "grad_norm": 0.8739263415336609, + "learning_rate": 3.4479061976549414e-05, + "loss": 0.22400131225585937, + "step": 92700 + }, + { + "epoch": 31.088784655331267, + "grad_norm": 0.8611975908279419, + "learning_rate": 3.446231155778894e-05, + "loss": 0.22545413970947265, + "step": 92800 + }, + { + "epoch": 31.1222882988525, + "grad_norm": 0.8462928533554077, + "learning_rate": 3.444556113902848e-05, + "loss": 0.22551637649536133, + "step": 92900 + }, + { + "epoch": 31.15579194237373, + "grad_norm": 1.022512435913086, + "learning_rate": 3.442881072026801e-05, + "loss": 0.22650592803955077, + "step": 93000 + }, + { + "epoch": 31.189295585894968, + "grad_norm": 0.9026772975921631, + "learning_rate": 3.4412060301507537e-05, + "loss": 0.22779397964477538, + "step": 93100 + }, + { + "epoch": 31.2227992294162, + "grad_norm": 1.0489071607589722, + "learning_rate": 3.4395309882747065e-05, + "loss": 0.22914936065673827, + "step": 93200 + }, + { + "epoch": 31.256302872937432, + "grad_norm": 0.9933543801307678, + "learning_rate": 3.43785594639866e-05, + "loss": 0.2292425537109375, + "step": 93300 + }, + { + "epoch": 31.289806516458665, + "grad_norm": 0.9085004329681396, + "learning_rate": 3.4361809045226137e-05, + "loss": 0.22929515838623046, + "step": 93400 + }, + { + "epoch": 31.323310159979897, + "grad_norm": 1.075490117073059, + "learning_rate": 3.4345058626465665e-05, + "loss": 0.22939607620239258, + "step": 93500 + }, + { + "epoch": 31.35681380350113, + "grad_norm": 0.9651515483856201, + "learning_rate": 3.4328308207705194e-05, + "loss": 0.22934986114501954, + "step": 93600 + }, + { + "epoch": 31.390317447022365, + "grad_norm": 0.8695613145828247, + "learning_rate": 3.431155778894472e-05, + "loss": 0.22976022720336914, + "step": 93700 + }, + { + "epoch": 31.423821090543598, + "grad_norm": 0.844338595867157, + "learning_rate": 3.429480737018426e-05, + "loss": 0.2312468147277832, + "step": 93800 + }, + { + "epoch": 31.45732473406483, + "grad_norm": 1.0382046699523926, + "learning_rate": 3.427805695142379e-05, + "loss": 0.2319161796569824, + "step": 93900 + }, + { + "epoch": 31.490828377586062, + "grad_norm": 0.9150004386901855, + "learning_rate": 3.4261306532663316e-05, + "loss": 0.23153928756713868, + "step": 94000 + }, + { + "epoch": 31.524332021107295, + "grad_norm": 0.9382134079933167, + "learning_rate": 3.4244556113902845e-05, + "loss": 0.23179262161254882, + "step": 94100 + }, + { + "epoch": 31.557835664628527, + "grad_norm": 1.003744125366211, + "learning_rate": 3.422780569514238e-05, + "loss": 0.2336377716064453, + "step": 94200 + }, + { + "epoch": 31.591339308149763, + "grad_norm": 1.0066591501235962, + "learning_rate": 3.421105527638191e-05, + "loss": 0.23306447982788087, + "step": 94300 + }, + { + "epoch": 31.624842951670995, + "grad_norm": 0.9587600827217102, + "learning_rate": 3.419430485762144e-05, + "loss": 0.23304904937744142, + "step": 94400 + }, + { + "epoch": 31.658346595192228, + "grad_norm": 0.9264236092567444, + "learning_rate": 3.4177554438860974e-05, + "loss": 0.23374231338500975, + "step": 94500 + }, + { + "epoch": 31.69185023871346, + "grad_norm": 0.9786285758018494, + "learning_rate": 3.416080402010051e-05, + "loss": 0.23288776397705077, + "step": 94600 + }, + { + "epoch": 31.725353882234693, + "grad_norm": 1.0406526327133179, + "learning_rate": 3.414405360134004e-05, + "loss": 0.23135658264160155, + "step": 94700 + }, + { + "epoch": 31.758857525755925, + "grad_norm": 1.0150673389434814, + "learning_rate": 3.412730318257957e-05, + "loss": 0.23329238891601561, + "step": 94800 + }, + { + "epoch": 31.792361169277157, + "grad_norm": 1.039716124534607, + "learning_rate": 3.4110552763819096e-05, + "loss": 0.23622480392456055, + "step": 94900 + }, + { + "epoch": 31.825864812798393, + "grad_norm": 0.8796889185905457, + "learning_rate": 3.409380234505863e-05, + "loss": 0.23527551651000977, + "step": 95000 + }, + { + "epoch": 31.859368456319626, + "grad_norm": 1.0430560111999512, + "learning_rate": 3.407705192629816e-05, + "loss": 0.23613218307495118, + "step": 95100 + }, + { + "epoch": 31.892872099840858, + "grad_norm": 0.934065043926239, + "learning_rate": 3.406030150753769e-05, + "loss": 0.23549306869506836, + "step": 95200 + }, + { + "epoch": 31.92637574336209, + "grad_norm": 0.9562022089958191, + "learning_rate": 3.404355108877722e-05, + "loss": 0.23596378326416015, + "step": 95300 + }, + { + "epoch": 31.959879386883323, + "grad_norm": 0.9484182000160217, + "learning_rate": 3.4026800670016754e-05, + "loss": 0.23749320983886718, + "step": 95400 + }, + { + "epoch": 31.993383030404555, + "grad_norm": 0.9226858615875244, + "learning_rate": 3.401005025125628e-05, + "loss": 0.23577556610107422, + "step": 95500 + }, + { + "epoch": 32.02680291481698, + "grad_norm": 0.8082904815673828, + "learning_rate": 3.399346733668342e-05, + "loss": 0.2252376174926758, + "step": 95600 + }, + { + "epoch": 32.06030655833822, + "grad_norm": 0.8369967341423035, + "learning_rate": 3.397671691792295e-05, + "loss": 0.22338224411010743, + "step": 95700 + }, + { + "epoch": 32.093810201859455, + "grad_norm": 0.8281686305999756, + "learning_rate": 3.395996649916248e-05, + "loss": 0.22212993621826171, + "step": 95800 + }, + { + "epoch": 32.127313845380684, + "grad_norm": 0.9705724716186523, + "learning_rate": 3.3943216080402015e-05, + "loss": 0.22465606689453124, + "step": 95900 + }, + { + "epoch": 32.16081748890192, + "grad_norm": 0.8423786163330078, + "learning_rate": 3.3926465661641544e-05, + "loss": 0.2250945281982422, + "step": 96000 + }, + { + "epoch": 32.19432113242315, + "grad_norm": 0.8339988589286804, + "learning_rate": 3.390971524288107e-05, + "loss": 0.22318048477172853, + "step": 96100 + }, + { + "epoch": 32.227824775944384, + "grad_norm": 0.8893176913261414, + "learning_rate": 3.38929648241206e-05, + "loss": 0.22539207458496094, + "step": 96200 + }, + { + "epoch": 32.26132841946562, + "grad_norm": 0.9052960276603699, + "learning_rate": 3.387621440536014e-05, + "loss": 0.22607305526733398, + "step": 96300 + }, + { + "epoch": 32.29483206298685, + "grad_norm": 1.0362404584884644, + "learning_rate": 3.3859463986599666e-05, + "loss": 0.22683595657348632, + "step": 96400 + }, + { + "epoch": 32.328335706508085, + "grad_norm": 0.9416490793228149, + "learning_rate": 3.3842713567839195e-05, + "loss": 0.22825729370117187, + "step": 96500 + }, + { + "epoch": 32.361839350029314, + "grad_norm": 0.8258299827575684, + "learning_rate": 3.3825963149078724e-05, + "loss": 0.2302044677734375, + "step": 96600 + }, + { + "epoch": 32.39534299355055, + "grad_norm": 0.8278768062591553, + "learning_rate": 3.380921273031826e-05, + "loss": 0.22817007064819336, + "step": 96700 + }, + { + "epoch": 32.42884663707178, + "grad_norm": 0.9295879006385803, + "learning_rate": 3.3792462311557795e-05, + "loss": 0.22796960830688476, + "step": 96800 + }, + { + "epoch": 32.462350280593014, + "grad_norm": 0.9297919273376465, + "learning_rate": 3.3775711892797324e-05, + "loss": 0.2300715446472168, + "step": 96900 + }, + { + "epoch": 32.49585392411425, + "grad_norm": 0.9032301902770996, + "learning_rate": 3.375896147403685e-05, + "loss": 0.22858844757080077, + "step": 97000 + }, + { + "epoch": 32.52935756763548, + "grad_norm": 0.9087026119232178, + "learning_rate": 3.374221105527639e-05, + "loss": 0.2282412528991699, + "step": 97100 + }, + { + "epoch": 32.562861211156715, + "grad_norm": 0.846002995967865, + "learning_rate": 3.372546063651592e-05, + "loss": 0.2312621307373047, + "step": 97200 + }, + { + "epoch": 32.596364854677944, + "grad_norm": 1.1084449291229248, + "learning_rate": 3.3708710217755446e-05, + "loss": 0.23065135955810548, + "step": 97300 + }, + { + "epoch": 32.62986849819918, + "grad_norm": 1.00586998462677, + "learning_rate": 3.3691959798994974e-05, + "loss": 0.2318124580383301, + "step": 97400 + }, + { + "epoch": 32.663372141720416, + "grad_norm": 1.010598063468933, + "learning_rate": 3.367520938023451e-05, + "loss": 0.22885004043579102, + "step": 97500 + }, + { + "epoch": 32.696875785241645, + "grad_norm": 0.9496275186538696, + "learning_rate": 3.365845896147404e-05, + "loss": 0.2315340232849121, + "step": 97600 + }, + { + "epoch": 32.73037942876288, + "grad_norm": 0.9502295255661011, + "learning_rate": 3.364170854271357e-05, + "loss": 0.2300456428527832, + "step": 97700 + }, + { + "epoch": 32.76388307228411, + "grad_norm": 0.8757120370864868, + "learning_rate": 3.3624958123953096e-05, + "loss": 0.2325787353515625, + "step": 97800 + }, + { + "epoch": 32.797386715805345, + "grad_norm": 1.086429476737976, + "learning_rate": 3.360820770519263e-05, + "loss": 0.23413005828857422, + "step": 97900 + }, + { + "epoch": 32.830890359326574, + "grad_norm": 0.9264597296714783, + "learning_rate": 3.359145728643216e-05, + "loss": 0.23220701217651368, + "step": 98000 + }, + { + "epoch": 32.86439400284781, + "grad_norm": 1.1024547815322876, + "learning_rate": 3.3574706867671696e-05, + "loss": 0.2337321662902832, + "step": 98100 + }, + { + "epoch": 32.897897646369046, + "grad_norm": 1.0790379047393799, + "learning_rate": 3.355812395309883e-05, + "loss": 0.23275186538696288, + "step": 98200 + }, + { + "epoch": 32.931401289890275, + "grad_norm": 1.0850489139556885, + "learning_rate": 3.354137353433836e-05, + "loss": 0.2350110626220703, + "step": 98300 + }, + { + "epoch": 32.96490493341151, + "grad_norm": 1.0384962558746338, + "learning_rate": 3.3524623115577893e-05, + "loss": 0.23315866470336913, + "step": 98400 + }, + { + "epoch": 32.99840857693274, + "grad_norm": 0.9511744379997253, + "learning_rate": 3.350787269681742e-05, + "loss": 0.23335418701171876, + "step": 98500 + }, + { + "epoch": 33.03182846134517, + "grad_norm": 0.9015313386917114, + "learning_rate": 3.349112227805695e-05, + "loss": 0.2207508850097656, + "step": 98600 + }, + { + "epoch": 33.06533210486641, + "grad_norm": 0.9277299046516418, + "learning_rate": 3.347437185929648e-05, + "loss": 0.2212068557739258, + "step": 98700 + }, + { + "epoch": 33.098835748387636, + "grad_norm": 0.9584958553314209, + "learning_rate": 3.3457621440536015e-05, + "loss": 0.2199711036682129, + "step": 98800 + }, + { + "epoch": 33.13233939190887, + "grad_norm": 0.788788378238678, + "learning_rate": 3.3440871021775544e-05, + "loss": 0.222060546875, + "step": 98900 + }, + { + "epoch": 33.1658430354301, + "grad_norm": 0.7377296090126038, + "learning_rate": 3.342412060301507e-05, + "loss": 0.2214929962158203, + "step": 99000 + }, + { + "epoch": 33.199346678951336, + "grad_norm": 0.9132254719734192, + "learning_rate": 3.340737018425461e-05, + "loss": 0.22287454605102539, + "step": 99100 + }, + { + "epoch": 33.23285032247257, + "grad_norm": 0.8702635169029236, + "learning_rate": 3.3390619765494144e-05, + "loss": 0.2249801254272461, + "step": 99200 + }, + { + "epoch": 33.2663539659938, + "grad_norm": 1.008585810661316, + "learning_rate": 3.337386934673367e-05, + "loss": 0.22441143035888672, + "step": 99300 + }, + { + "epoch": 33.29985760951504, + "grad_norm": 0.9218880534172058, + "learning_rate": 3.33571189279732e-05, + "loss": 0.22384666442871093, + "step": 99400 + }, + { + "epoch": 33.333361253036266, + "grad_norm": 0.8806573748588562, + "learning_rate": 3.334036850921273e-05, + "loss": 0.22616491317749024, + "step": 99500 + }, + { + "epoch": 33.3668648965575, + "grad_norm": 0.9997828602790833, + "learning_rate": 3.3323618090452266e-05, + "loss": 0.2251066780090332, + "step": 99600 + }, + { + "epoch": 33.40036854007873, + "grad_norm": 0.80961012840271, + "learning_rate": 3.3306867671691795e-05, + "loss": 0.22590801239013672, + "step": 99700 + }, + { + "epoch": 33.433872183599966, + "grad_norm": 0.8894720077514648, + "learning_rate": 3.3290117252931324e-05, + "loss": 0.2253563690185547, + "step": 99800 + }, + { + "epoch": 33.4673758271212, + "grad_norm": 0.9108457565307617, + "learning_rate": 3.327336683417085e-05, + "loss": 0.22678316116333008, + "step": 99900 + }, + { + "epoch": 33.50087947064243, + "grad_norm": 0.9380918145179749, + "learning_rate": 3.325661641541039e-05, + "loss": 0.22538763046264648, + "step": 100000 + }, + { + "epoch": 33.53438311416367, + "grad_norm": 0.9901800155639648, + "learning_rate": 3.323986599664992e-05, + "loss": 0.2280316734313965, + "step": 100100 + }, + { + "epoch": 33.567886757684896, + "grad_norm": 0.9266390204429626, + "learning_rate": 3.3223115577889446e-05, + "loss": 0.22870094299316407, + "step": 100200 + }, + { + "epoch": 33.60139040120613, + "grad_norm": 1.033541202545166, + "learning_rate": 3.3206365159128975e-05, + "loss": 0.22756708145141602, + "step": 100300 + }, + { + "epoch": 33.63489404472736, + "grad_norm": 0.9486100673675537, + "learning_rate": 3.318961474036851e-05, + "loss": 0.23031322479248048, + "step": 100400 + }, + { + "epoch": 33.6683976882486, + "grad_norm": 1.0127127170562744, + "learning_rate": 3.3172864321608046e-05, + "loss": 0.22845163345336914, + "step": 100500 + }, + { + "epoch": 33.70190133176983, + "grad_norm": 0.8763633966445923, + "learning_rate": 3.3156113902847575e-05, + "loss": 0.22902427673339842, + "step": 100600 + }, + { + "epoch": 33.73540497529106, + "grad_norm": 1.1065373420715332, + "learning_rate": 3.3139363484087104e-05, + "loss": 0.23073022842407226, + "step": 100700 + }, + { + "epoch": 33.7689086188123, + "grad_norm": 0.9771313071250916, + "learning_rate": 3.3122780569514236e-05, + "loss": 0.23011575698852538, + "step": 100800 + }, + { + "epoch": 33.802412262333526, + "grad_norm": 0.8843592405319214, + "learning_rate": 3.310603015075377e-05, + "loss": 0.23142065048217775, + "step": 100900 + }, + { + "epoch": 33.83591590585476, + "grad_norm": 0.8456923961639404, + "learning_rate": 3.30892797319933e-05, + "loss": 0.23063251495361328, + "step": 101000 + }, + { + "epoch": 33.869419549376, + "grad_norm": 0.8443148732185364, + "learning_rate": 3.307252931323283e-05, + "loss": 0.23091581344604492, + "step": 101100 + }, + { + "epoch": 33.90292319289723, + "grad_norm": 0.960616409778595, + "learning_rate": 3.305577889447236e-05, + "loss": 0.2316324806213379, + "step": 101200 + }, + { + "epoch": 33.93642683641846, + "grad_norm": 0.9722175002098083, + "learning_rate": 3.3039028475711894e-05, + "loss": 0.23007387161254883, + "step": 101300 + }, + { + "epoch": 33.96993047993969, + "grad_norm": 0.8240259289741516, + "learning_rate": 3.302227805695143e-05, + "loss": 0.2318846321105957, + "step": 101400 + }, + { + "epoch": 34.00335036435212, + "grad_norm": 0.9287110567092896, + "learning_rate": 3.300552763819096e-05, + "loss": 0.23206823348999023, + "step": 101500 + }, + { + "epoch": 34.03685400787336, + "grad_norm": 0.9008814692497253, + "learning_rate": 3.298877721943049e-05, + "loss": 0.21785154342651367, + "step": 101600 + }, + { + "epoch": 34.07035765139459, + "grad_norm": 0.9070394039154053, + "learning_rate": 3.297202680067002e-05, + "loss": 0.2177290725708008, + "step": 101700 + }, + { + "epoch": 34.10386129491582, + "grad_norm": 0.9032074809074402, + "learning_rate": 3.295527638190955e-05, + "loss": 0.21938394546508788, + "step": 101800 + }, + { + "epoch": 34.13736493843705, + "grad_norm": 0.9069404006004333, + "learning_rate": 3.293852596314908e-05, + "loss": 0.2203085708618164, + "step": 101900 + }, + { + "epoch": 34.17086858195829, + "grad_norm": 0.9074708819389343, + "learning_rate": 3.292177554438861e-05, + "loss": 0.2204928970336914, + "step": 102000 + }, + { + "epoch": 34.204372225479524, + "grad_norm": 0.9713619351387024, + "learning_rate": 3.2905025125628145e-05, + "loss": 0.22204416275024413, + "step": 102100 + }, + { + "epoch": 34.23787586900075, + "grad_norm": 0.9323224425315857, + "learning_rate": 3.2888274706867674e-05, + "loss": 0.22052072525024413, + "step": 102200 + }, + { + "epoch": 34.27137951252199, + "grad_norm": 0.8843114376068115, + "learning_rate": 3.28715242881072e-05, + "loss": 0.22254072189331053, + "step": 102300 + }, + { + "epoch": 34.30488315604322, + "grad_norm": 1.0152033567428589, + "learning_rate": 3.285477386934673e-05, + "loss": 0.2236959457397461, + "step": 102400 + }, + { + "epoch": 34.338386799564454, + "grad_norm": 0.9482904672622681, + "learning_rate": 3.283802345058627e-05, + "loss": 0.224102725982666, + "step": 102500 + }, + { + "epoch": 34.37189044308568, + "grad_norm": 0.8699772953987122, + "learning_rate": 3.28212730318258e-05, + "loss": 0.22381122589111327, + "step": 102600 + }, + { + "epoch": 34.40539408660692, + "grad_norm": 0.9056621193885803, + "learning_rate": 3.280452261306533e-05, + "loss": 0.22394416809082032, + "step": 102700 + }, + { + "epoch": 34.438897730128154, + "grad_norm": 1.0373077392578125, + "learning_rate": 3.2787939698492464e-05, + "loss": 0.22495691299438478, + "step": 102800 + }, + { + "epoch": 34.47240137364938, + "grad_norm": 1.0134550333023071, + "learning_rate": 3.277118927973199e-05, + "loss": 0.22408302307128905, + "step": 102900 + }, + { + "epoch": 34.50590501717062, + "grad_norm": 0.9845434427261353, + "learning_rate": 3.275443886097153e-05, + "loss": 0.22512359619140626, + "step": 103000 + }, + { + "epoch": 34.53940866069185, + "grad_norm": 1.0372213125228882, + "learning_rate": 3.273768844221106e-05, + "loss": 0.22693737030029296, + "step": 103100 + }, + { + "epoch": 34.572912304213084, + "grad_norm": 0.8394227027893066, + "learning_rate": 3.2720938023450586e-05, + "loss": 0.22773279190063478, + "step": 103200 + }, + { + "epoch": 34.60641594773432, + "grad_norm": 0.9733761548995972, + "learning_rate": 3.2704187604690115e-05, + "loss": 0.2269156265258789, + "step": 103300 + }, + { + "epoch": 34.63991959125555, + "grad_norm": 0.9194538593292236, + "learning_rate": 3.268743718592965e-05, + "loss": 0.22706941604614259, + "step": 103400 + }, + { + "epoch": 34.673423234776784, + "grad_norm": 0.9639450311660767, + "learning_rate": 3.267068676716918e-05, + "loss": 0.22622791290283203, + "step": 103500 + }, + { + "epoch": 34.70692687829801, + "grad_norm": 1.0700583457946777, + "learning_rate": 3.265393634840871e-05, + "loss": 0.2273421859741211, + "step": 103600 + }, + { + "epoch": 34.74043052181925, + "grad_norm": 0.9843416810035706, + "learning_rate": 3.2637185929648244e-05, + "loss": 0.22782588958740235, + "step": 103700 + }, + { + "epoch": 34.77393416534048, + "grad_norm": 0.9237584471702576, + "learning_rate": 3.262043551088777e-05, + "loss": 0.22874467849731445, + "step": 103800 + }, + { + "epoch": 34.807437808861714, + "grad_norm": 0.8710795640945435, + "learning_rate": 3.260368509212731e-05, + "loss": 0.22824941635131835, + "step": 103900 + }, + { + "epoch": 34.84094145238295, + "grad_norm": 0.8803784847259521, + "learning_rate": 3.258693467336684e-05, + "loss": 0.225937442779541, + "step": 104000 + }, + { + "epoch": 34.87444509590418, + "grad_norm": 0.9234800338745117, + "learning_rate": 3.2570184254606366e-05, + "loss": 0.22656524658203125, + "step": 104100 + }, + { + "epoch": 34.907948739425414, + "grad_norm": 0.9999638795852661, + "learning_rate": 3.25534338358459e-05, + "loss": 0.2282132911682129, + "step": 104200 + }, + { + "epoch": 34.94145238294664, + "grad_norm": 1.1694445610046387, + "learning_rate": 3.253668341708543e-05, + "loss": 0.22793378829956054, + "step": 104300 + }, + { + "epoch": 34.97495602646788, + "grad_norm": 0.8837403655052185, + "learning_rate": 3.251993299832496e-05, + "loss": 0.22847984313964845, + "step": 104400 + }, + { + "epoch": 35.00837591088031, + "grad_norm": 0.8809188604354858, + "learning_rate": 3.250318257956449e-05, + "loss": 0.22692270278930665, + "step": 104500 + }, + { + "epoch": 35.04187955440154, + "grad_norm": 1.0068167448043823, + "learning_rate": 3.248643216080402e-05, + "loss": 0.21723543167114256, + "step": 104600 + }, + { + "epoch": 35.075383197922775, + "grad_norm": 0.8723959922790527, + "learning_rate": 3.246968174204355e-05, + "loss": 0.21555179595947266, + "step": 104700 + }, + { + "epoch": 35.108886841444004, + "grad_norm": 0.8103620409965515, + "learning_rate": 3.245293132328308e-05, + "loss": 0.21831268310546875, + "step": 104800 + }, + { + "epoch": 35.14239048496524, + "grad_norm": 0.9336848855018616, + "learning_rate": 3.2436180904522617e-05, + "loss": 0.21713750839233398, + "step": 104900 + }, + { + "epoch": 35.175894128486476, + "grad_norm": 0.7471016049385071, + "learning_rate": 3.2419430485762145e-05, + "loss": 0.21997308731079102, + "step": 105000 + }, + { + "epoch": 35.209397772007705, + "grad_norm": 0.8775885105133057, + "learning_rate": 3.240268006700168e-05, + "loss": 0.21831626892089845, + "step": 105100 + }, + { + "epoch": 35.24290141552894, + "grad_norm": 0.8458008170127869, + "learning_rate": 3.238592964824121e-05, + "loss": 0.21945228576660156, + "step": 105200 + }, + { + "epoch": 35.27640505905017, + "grad_norm": 0.8437234163284302, + "learning_rate": 3.236917922948074e-05, + "loss": 0.2186195182800293, + "step": 105300 + }, + { + "epoch": 35.309908702571406, + "grad_norm": 0.7865097522735596, + "learning_rate": 3.235259631490787e-05, + "loss": 0.22217554092407227, + "step": 105400 + }, + { + "epoch": 35.343412346092634, + "grad_norm": 0.866061806678772, + "learning_rate": 3.233584589614741e-05, + "loss": 0.22084756851196288, + "step": 105500 + }, + { + "epoch": 35.37691598961387, + "grad_norm": 0.9198658466339111, + "learning_rate": 3.2319095477386936e-05, + "loss": 0.21991580963134766, + "step": 105600 + }, + { + "epoch": 35.410419633135106, + "grad_norm": 0.8831592202186584, + "learning_rate": 3.2302345058626464e-05, + "loss": 0.22320646286010742, + "step": 105700 + }, + { + "epoch": 35.443923276656335, + "grad_norm": 0.9197396636009216, + "learning_rate": 3.228559463986599e-05, + "loss": 0.22325061798095702, + "step": 105800 + }, + { + "epoch": 35.47742692017757, + "grad_norm": 0.8785274624824524, + "learning_rate": 3.226884422110553e-05, + "loss": 0.22299362182617188, + "step": 105900 + }, + { + "epoch": 35.5109305636988, + "grad_norm": 0.8461816310882568, + "learning_rate": 3.2252093802345064e-05, + "loss": 0.2225216484069824, + "step": 106000 + }, + { + "epoch": 35.544434207220036, + "grad_norm": 1.063522219657898, + "learning_rate": 3.223534338358459e-05, + "loss": 0.2242141342163086, + "step": 106100 + }, + { + "epoch": 35.57793785074127, + "grad_norm": 0.867465615272522, + "learning_rate": 3.221859296482412e-05, + "loss": 0.2223381805419922, + "step": 106200 + }, + { + "epoch": 35.6114414942625, + "grad_norm": 0.9031139016151428, + "learning_rate": 3.220184254606365e-05, + "loss": 0.22474571228027343, + "step": 106300 + }, + { + "epoch": 35.644945137783736, + "grad_norm": 1.0108989477157593, + "learning_rate": 3.2185092127303186e-05, + "loss": 0.22544246673583984, + "step": 106400 + }, + { + "epoch": 35.678448781304965, + "grad_norm": 1.0109949111938477, + "learning_rate": 3.2168341708542715e-05, + "loss": 0.22579713821411132, + "step": 106500 + }, + { + "epoch": 35.7119524248262, + "grad_norm": 0.9123691916465759, + "learning_rate": 3.2151591289782244e-05, + "loss": 0.22499269485473633, + "step": 106600 + }, + { + "epoch": 35.74545606834743, + "grad_norm": 0.951260507106781, + "learning_rate": 3.213484087102178e-05, + "loss": 0.22552137374877929, + "step": 106700 + }, + { + "epoch": 35.778959711868666, + "grad_norm": 0.8786386251449585, + "learning_rate": 3.211809045226131e-05, + "loss": 0.22638605117797853, + "step": 106800 + }, + { + "epoch": 35.8124633553899, + "grad_norm": 0.9864464998245239, + "learning_rate": 3.210134003350084e-05, + "loss": 0.2277699089050293, + "step": 106900 + }, + { + "epoch": 35.84596699891113, + "grad_norm": 1.0679579973220825, + "learning_rate": 3.2084589614740366e-05, + "loss": 0.22652555465698243, + "step": 107000 + }, + { + "epoch": 35.879470642432366, + "grad_norm": 1.0075697898864746, + "learning_rate": 3.20678391959799e-05, + "loss": 0.22713031768798828, + "step": 107100 + }, + { + "epoch": 35.912974285953595, + "grad_norm": 0.9335576891899109, + "learning_rate": 3.205108877721944e-05, + "loss": 0.22596691131591798, + "step": 107200 + }, + { + "epoch": 35.94647792947483, + "grad_norm": 0.7710935473442078, + "learning_rate": 3.2034338358458966e-05, + "loss": 0.22641992568969727, + "step": 107300 + }, + { + "epoch": 35.97998157299606, + "grad_norm": 1.083516001701355, + "learning_rate": 3.2017587939698495e-05, + "loss": 0.22827293395996093, + "step": 107400 + }, + { + "epoch": 36.01340145740849, + "grad_norm": 0.8612881302833557, + "learning_rate": 3.2000837520938024e-05, + "loss": 0.22379323959350586, + "step": 107500 + }, + { + "epoch": 36.04690510092973, + "grad_norm": 0.7906754016876221, + "learning_rate": 3.198408710217756e-05, + "loss": 0.21393178939819335, + "step": 107600 + }, + { + "epoch": 36.080408744450956, + "grad_norm": 0.6994041800498962, + "learning_rate": 3.196733668341709e-05, + "loss": 0.2150893211364746, + "step": 107700 + }, + { + "epoch": 36.11391238797219, + "grad_norm": 0.7304232120513916, + "learning_rate": 3.195058626465662e-05, + "loss": 0.21509407043457032, + "step": 107800 + }, + { + "epoch": 36.14741603149343, + "grad_norm": 0.8723782896995544, + "learning_rate": 3.1933835845896146e-05, + "loss": 0.21703847885131836, + "step": 107900 + }, + { + "epoch": 36.18091967501466, + "grad_norm": 0.8350656628608704, + "learning_rate": 3.191708542713568e-05, + "loss": 0.21680261611938476, + "step": 108000 + }, + { + "epoch": 36.21442331853589, + "grad_norm": 0.8917808532714844, + "learning_rate": 3.190033500837521e-05, + "loss": 0.21753547668457032, + "step": 108100 + }, + { + "epoch": 36.24792696205712, + "grad_norm": 0.9806150197982788, + "learning_rate": 3.188358458961474e-05, + "loss": 0.21905086517333985, + "step": 108200 + }, + { + "epoch": 36.28143060557836, + "grad_norm": 0.8857609033584595, + "learning_rate": 3.186700167504188e-05, + "loss": 0.21918514251708984, + "step": 108300 + }, + { + "epoch": 36.314934249099586, + "grad_norm": 0.910219669342041, + "learning_rate": 3.185025125628141e-05, + "loss": 0.2200949287414551, + "step": 108400 + }, + { + "epoch": 36.34843789262082, + "grad_norm": 1.0122119188308716, + "learning_rate": 3.183350083752094e-05, + "loss": 0.2193107795715332, + "step": 108500 + }, + { + "epoch": 36.38194153614206, + "grad_norm": 0.9494280815124512, + "learning_rate": 3.181675041876047e-05, + "loss": 0.2197030258178711, + "step": 108600 + }, + { + "epoch": 36.41544517966329, + "grad_norm": 0.9605288505554199, + "learning_rate": 3.18e-05, + "loss": 0.22033754348754883, + "step": 108700 + }, + { + "epoch": 36.44894882318452, + "grad_norm": 0.7704981565475464, + "learning_rate": 3.178324958123953e-05, + "loss": 0.22123022079467775, + "step": 108800 + }, + { + "epoch": 36.48245246670575, + "grad_norm": 0.9490818381309509, + "learning_rate": 3.1766499162479065e-05, + "loss": 0.22183971405029296, + "step": 108900 + }, + { + "epoch": 36.51595611022699, + "grad_norm": 0.9417729377746582, + "learning_rate": 3.1749748743718594e-05, + "loss": 0.22279998779296875, + "step": 109000 + }, + { + "epoch": 36.54945975374822, + "grad_norm": 0.933033287525177, + "learning_rate": 3.173299832495812e-05, + "loss": 0.22310422897338866, + "step": 109100 + }, + { + "epoch": 36.58296339726945, + "grad_norm": 0.8921425342559814, + "learning_rate": 3.171624790619765e-05, + "loss": 0.2227332878112793, + "step": 109200 + }, + { + "epoch": 36.61646704079069, + "grad_norm": 0.8272472023963928, + "learning_rate": 3.169949748743719e-05, + "loss": 0.22220718383789062, + "step": 109300 + }, + { + "epoch": 36.64997068431192, + "grad_norm": 0.9517436027526855, + "learning_rate": 3.1682747068676716e-05, + "loss": 0.22240093231201172, + "step": 109400 + }, + { + "epoch": 36.68347432783315, + "grad_norm": 0.869287371635437, + "learning_rate": 3.166599664991625e-05, + "loss": 0.22267683029174803, + "step": 109500 + }, + { + "epoch": 36.71697797135438, + "grad_norm": 0.8402668237686157, + "learning_rate": 3.164924623115578e-05, + "loss": 0.22277099609375, + "step": 109600 + }, + { + "epoch": 36.75048161487562, + "grad_norm": 0.7411085367202759, + "learning_rate": 3.1632495812395316e-05, + "loss": 0.22394742965698242, + "step": 109700 + }, + { + "epoch": 36.783985258396854, + "grad_norm": 0.9969924092292786, + "learning_rate": 3.1615745393634845e-05, + "loss": 0.22464384078979494, + "step": 109800 + }, + { + "epoch": 36.81748890191808, + "grad_norm": 1.0667954683303833, + "learning_rate": 3.1598994974874373e-05, + "loss": 0.22305191040039063, + "step": 109900 + }, + { + "epoch": 36.85099254543932, + "grad_norm": 0.9248315095901489, + "learning_rate": 3.15822445561139e-05, + "loss": 0.22483558654785157, + "step": 110000 + }, + { + "epoch": 36.88449618896055, + "grad_norm": 0.921510636806488, + "learning_rate": 3.156549413735344e-05, + "loss": 0.22462337493896484, + "step": 110100 + }, + { + "epoch": 36.91799983248178, + "grad_norm": 0.9513688683509827, + "learning_rate": 3.154874371859297e-05, + "loss": 0.22469757080078126, + "step": 110200 + }, + { + "epoch": 36.95150347600301, + "grad_norm": 0.9634213447570801, + "learning_rate": 3.1531993299832495e-05, + "loss": 0.22559005737304688, + "step": 110300 + }, + { + "epoch": 36.98500711952425, + "grad_norm": 0.8968513607978821, + "learning_rate": 3.1515242881072024e-05, + "loss": 0.22452268600463868, + "step": 110400 + }, + { + "epoch": 37.01842700393668, + "grad_norm": 0.9366862773895264, + "learning_rate": 3.149849246231156e-05, + "loss": 0.21873317718505858, + "step": 110500 + }, + { + "epoch": 37.05193064745791, + "grad_norm": 0.9117385149002075, + "learning_rate": 3.148174204355109e-05, + "loss": 0.21297582626342773, + "step": 110600 + }, + { + "epoch": 37.085434290979144, + "grad_norm": 0.8058609962463379, + "learning_rate": 3.1464991624790624e-05, + "loss": 0.21399580001831053, + "step": 110700 + }, + { + "epoch": 37.11893793450038, + "grad_norm": 0.9793832302093506, + "learning_rate": 3.144824120603015e-05, + "loss": 0.21349397659301758, + "step": 110800 + }, + { + "epoch": 37.15244157802161, + "grad_norm": 0.7564776539802551, + "learning_rate": 3.143149078726968e-05, + "loss": 0.2160548210144043, + "step": 110900 + }, + { + "epoch": 37.185945221542845, + "grad_norm": 0.9561526775360107, + "learning_rate": 3.141474036850922e-05, + "loss": 0.21727354049682618, + "step": 111000 + }, + { + "epoch": 37.219448865064074, + "grad_norm": 0.8852317929267883, + "learning_rate": 3.1397989949748746e-05, + "loss": 0.2165077018737793, + "step": 111100 + }, + { + "epoch": 37.25295250858531, + "grad_norm": 0.9445819854736328, + "learning_rate": 3.1381239530988275e-05, + "loss": 0.21671443939208984, + "step": 111200 + }, + { + "epoch": 37.28645615210654, + "grad_norm": 0.8414257168769836, + "learning_rate": 3.136465661641541e-05, + "loss": 0.2156463623046875, + "step": 111300 + }, + { + "epoch": 37.319959795627774, + "grad_norm": 0.9724504351615906, + "learning_rate": 3.134790619765494e-05, + "loss": 0.21695276260375976, + "step": 111400 + }, + { + "epoch": 37.35346343914901, + "grad_norm": 0.8939653038978577, + "learning_rate": 3.133115577889447e-05, + "loss": 0.21864233016967774, + "step": 111500 + }, + { + "epoch": 37.38696708267024, + "grad_norm": 0.7889378070831299, + "learning_rate": 3.1314405360134e-05, + "loss": 0.2170688056945801, + "step": 111600 + }, + { + "epoch": 37.420470726191475, + "grad_norm": 0.9483622312545776, + "learning_rate": 3.129765494137353e-05, + "loss": 0.2190123176574707, + "step": 111700 + }, + { + "epoch": 37.453974369712704, + "grad_norm": 0.8011330366134644, + "learning_rate": 3.128090452261307e-05, + "loss": 0.22048694610595704, + "step": 111800 + }, + { + "epoch": 37.48747801323394, + "grad_norm": 0.8247294425964355, + "learning_rate": 3.12641541038526e-05, + "loss": 0.21904251098632813, + "step": 111900 + }, + { + "epoch": 37.520981656755175, + "grad_norm": 0.750112771987915, + "learning_rate": 3.124740368509213e-05, + "loss": 0.21833335876464843, + "step": 112000 + }, + { + "epoch": 37.554485300276404, + "grad_norm": 0.9256598353385925, + "learning_rate": 3.123065326633166e-05, + "loss": 0.21966569900512695, + "step": 112100 + }, + { + "epoch": 37.58798894379764, + "grad_norm": 0.9734209775924683, + "learning_rate": 3.1213902847571194e-05, + "loss": 0.22099735260009765, + "step": 112200 + }, + { + "epoch": 37.62149258731887, + "grad_norm": 0.990144670009613, + "learning_rate": 3.119715242881072e-05, + "loss": 0.22192005157470704, + "step": 112300 + }, + { + "epoch": 37.654996230840105, + "grad_norm": 0.6585299372673035, + "learning_rate": 3.118040201005025e-05, + "loss": 0.22165678024291993, + "step": 112400 + }, + { + "epoch": 37.688499874361334, + "grad_norm": 0.9786301255226135, + "learning_rate": 3.116365159128978e-05, + "loss": 0.22310081481933594, + "step": 112500 + }, + { + "epoch": 37.72200351788257, + "grad_norm": 0.8770159482955933, + "learning_rate": 3.1146901172529316e-05, + "loss": 0.22149917602539063, + "step": 112600 + }, + { + "epoch": 37.755507161403806, + "grad_norm": 0.9303070306777954, + "learning_rate": 3.1130150753768845e-05, + "loss": 0.22284337997436524, + "step": 112700 + }, + { + "epoch": 37.789010804925034, + "grad_norm": 0.9092078804969788, + "learning_rate": 3.1113400335008374e-05, + "loss": 0.2229990005493164, + "step": 112800 + }, + { + "epoch": 37.82251444844627, + "grad_norm": 0.9219861626625061, + "learning_rate": 3.10966499162479e-05, + "loss": 0.2217073631286621, + "step": 112900 + }, + { + "epoch": 37.8560180919675, + "grad_norm": 0.7435413002967834, + "learning_rate": 3.107989949748744e-05, + "loss": 0.22171833038330077, + "step": 113000 + }, + { + "epoch": 37.889521735488735, + "grad_norm": 0.9068054556846619, + "learning_rate": 3.1063149078726974e-05, + "loss": 0.22258939743041992, + "step": 113100 + }, + { + "epoch": 37.923025379009964, + "grad_norm": 1.0471735000610352, + "learning_rate": 3.10463986599665e-05, + "loss": 0.2234604263305664, + "step": 113200 + }, + { + "epoch": 37.9565290225312, + "grad_norm": 1.0463248491287231, + "learning_rate": 3.102964824120603e-05, + "loss": 0.22215925216674803, + "step": 113300 + }, + { + "epoch": 37.990032666052436, + "grad_norm": 0.9165071845054626, + "learning_rate": 3.101289782244556e-05, + "loss": 0.22422847747802735, + "step": 113400 + }, + { + "epoch": 38.02345255046486, + "grad_norm": 0.8414464592933655, + "learning_rate": 3.09963149078727e-05, + "loss": 0.21486921310424806, + "step": 113500 + }, + { + "epoch": 38.056956193986096, + "grad_norm": 0.8961010575294495, + "learning_rate": 3.097956448911223e-05, + "loss": 0.21109798431396484, + "step": 113600 + }, + { + "epoch": 38.09045983750733, + "grad_norm": 0.9100089073181152, + "learning_rate": 3.096281407035176e-05, + "loss": 0.21328540802001952, + "step": 113700 + }, + { + "epoch": 38.12396348102856, + "grad_norm": 0.9186659455299377, + "learning_rate": 3.0946063651591286e-05, + "loss": 0.21333318710327148, + "step": 113800 + }, + { + "epoch": 38.1574671245498, + "grad_norm": 0.7723438143730164, + "learning_rate": 3.092931323283082e-05, + "loss": 0.21231781005859374, + "step": 113900 + }, + { + "epoch": 38.190970768071026, + "grad_norm": 0.8304508328437805, + "learning_rate": 3.091256281407035e-05, + "loss": 0.21468320846557618, + "step": 114000 + }, + { + "epoch": 38.22447441159226, + "grad_norm": 0.8922227025032043, + "learning_rate": 3.0895812395309886e-05, + "loss": 0.21428609848022462, + "step": 114100 + }, + { + "epoch": 38.25797805511349, + "grad_norm": 0.7371033430099487, + "learning_rate": 3.0879061976549415e-05, + "loss": 0.2143361473083496, + "step": 114200 + }, + { + "epoch": 38.291481698634726, + "grad_norm": 0.8409704566001892, + "learning_rate": 3.086231155778895e-05, + "loss": 0.21631322860717772, + "step": 114300 + }, + { + "epoch": 38.32498534215596, + "grad_norm": 0.7273088097572327, + "learning_rate": 3.084556113902848e-05, + "loss": 0.2163697624206543, + "step": 114400 + }, + { + "epoch": 38.35848898567719, + "grad_norm": 0.8249197602272034, + "learning_rate": 3.082881072026801e-05, + "loss": 0.2180681800842285, + "step": 114500 + }, + { + "epoch": 38.39199262919843, + "grad_norm": 0.7984412312507629, + "learning_rate": 3.081206030150754e-05, + "loss": 0.21718357086181642, + "step": 114600 + }, + { + "epoch": 38.425496272719656, + "grad_norm": 1.08668851852417, + "learning_rate": 3.079530988274707e-05, + "loss": 0.21632287979125978, + "step": 114700 + }, + { + "epoch": 38.45899991624089, + "grad_norm": 0.7324666976928711, + "learning_rate": 3.07785594639866e-05, + "loss": 0.2178202438354492, + "step": 114800 + }, + { + "epoch": 38.49250355976213, + "grad_norm": 0.8047093749046326, + "learning_rate": 3.076180904522613e-05, + "loss": 0.21611106872558594, + "step": 114900 + }, + { + "epoch": 38.526007203283356, + "grad_norm": 0.8086637854576111, + "learning_rate": 3.074505862646566e-05, + "loss": 0.21893905639648437, + "step": 115000 + }, + { + "epoch": 38.55951084680459, + "grad_norm": 0.9299573302268982, + "learning_rate": 3.0728308207705195e-05, + "loss": 0.21941152572631836, + "step": 115100 + }, + { + "epoch": 38.59301449032582, + "grad_norm": 0.921328067779541, + "learning_rate": 3.0711557788944724e-05, + "loss": 0.21848363876342775, + "step": 115200 + }, + { + "epoch": 38.62651813384706, + "grad_norm": 0.8732923865318298, + "learning_rate": 3.069480737018426e-05, + "loss": 0.2199881935119629, + "step": 115300 + }, + { + "epoch": 38.660021777368286, + "grad_norm": 0.8334107995033264, + "learning_rate": 3.067805695142379e-05, + "loss": 0.21993675231933593, + "step": 115400 + }, + { + "epoch": 38.69352542088952, + "grad_norm": 0.9880418181419373, + "learning_rate": 3.066130653266332e-05, + "loss": 0.21957590103149413, + "step": 115500 + }, + { + "epoch": 38.72702906441076, + "grad_norm": 0.7397698760032654, + "learning_rate": 3.0644723618090456e-05, + "loss": 0.22164581298828126, + "step": 115600 + }, + { + "epoch": 38.760532707931986, + "grad_norm": 0.8668732047080994, + "learning_rate": 3.0627973199329985e-05, + "loss": 0.22148818969726564, + "step": 115700 + }, + { + "epoch": 38.79403635145322, + "grad_norm": 0.9017316699028015, + "learning_rate": 3.0611222780569514e-05, + "loss": 0.22045387268066408, + "step": 115800 + }, + { + "epoch": 38.82753999497445, + "grad_norm": 0.960860550403595, + "learning_rate": 3.059447236180904e-05, + "loss": 0.22010658264160157, + "step": 115900 + }, + { + "epoch": 38.86104363849569, + "grad_norm": 0.9069247245788574, + "learning_rate": 3.057772194304858e-05, + "loss": 0.22206361770629882, + "step": 116000 + }, + { + "epoch": 38.894547282016916, + "grad_norm": 0.9507908821105957, + "learning_rate": 3.056097152428811e-05, + "loss": 0.223684139251709, + "step": 116100 + }, + { + "epoch": 38.92805092553815, + "grad_norm": 0.9307253360748291, + "learning_rate": 3.0544221105527636e-05, + "loss": 0.2224336814880371, + "step": 116200 + }, + { + "epoch": 38.96155456905939, + "grad_norm": 0.8504303097724915, + "learning_rate": 3.052747068676717e-05, + "loss": 0.22100894927978515, + "step": 116300 + }, + { + "epoch": 38.995058212580616, + "grad_norm": 1.0041011571884155, + "learning_rate": 3.0510720268006704e-05, + "loss": 0.2226072692871094, + "step": 116400 + }, + { + "epoch": 39.02847809699305, + "grad_norm": 0.8630343675613403, + "learning_rate": 3.0493969849246236e-05, + "loss": 0.21175411224365234, + "step": 116500 + }, + { + "epoch": 39.061981740514284, + "grad_norm": 0.8499475717544556, + "learning_rate": 3.0477219430485765e-05, + "loss": 0.21058534622192382, + "step": 116600 + }, + { + "epoch": 39.09548538403551, + "grad_norm": 0.8700653910636902, + "learning_rate": 3.0460469011725297e-05, + "loss": 0.21063339233398437, + "step": 116700 + }, + { + "epoch": 39.12898902755675, + "grad_norm": 0.928617537021637, + "learning_rate": 3.0443718592964826e-05, + "loss": 0.21142158508300782, + "step": 116800 + }, + { + "epoch": 39.16249267107798, + "grad_norm": 0.7653895616531372, + "learning_rate": 3.0426968174204358e-05, + "loss": 0.2120248031616211, + "step": 116900 + }, + { + "epoch": 39.19599631459921, + "grad_norm": 0.9703547954559326, + "learning_rate": 3.0410217755443887e-05, + "loss": 0.21317352294921876, + "step": 117000 + }, + { + "epoch": 39.22949995812044, + "grad_norm": 0.8479989767074585, + "learning_rate": 3.039346733668342e-05, + "loss": 0.21484851837158203, + "step": 117100 + }, + { + "epoch": 39.26300360164168, + "grad_norm": 0.899630069732666, + "learning_rate": 3.0376716917922948e-05, + "loss": 0.21453136444091797, + "step": 117200 + }, + { + "epoch": 39.296507245162914, + "grad_norm": 1.086026906967163, + "learning_rate": 3.035996649916248e-05, + "loss": 0.21443565368652343, + "step": 117300 + }, + { + "epoch": 39.33001088868414, + "grad_norm": 0.8970637917518616, + "learning_rate": 3.034321608040201e-05, + "loss": 0.21288238525390624, + "step": 117400 + }, + { + "epoch": 39.36351453220538, + "grad_norm": 0.9710267186164856, + "learning_rate": 3.032646566164154e-05, + "loss": 0.21607624053955077, + "step": 117500 + }, + { + "epoch": 39.39701817572661, + "grad_norm": 0.908697783946991, + "learning_rate": 3.030988274706868e-05, + "loss": 0.2151881217956543, + "step": 117600 + }, + { + "epoch": 39.43052181924784, + "grad_norm": 0.9393781423568726, + "learning_rate": 3.029313232830821e-05, + "loss": 0.21689601898193359, + "step": 117700 + }, + { + "epoch": 39.46402546276908, + "grad_norm": 0.8031620383262634, + "learning_rate": 3.027638190954774e-05, + "loss": 0.21640504837036134, + "step": 117800 + }, + { + "epoch": 39.49752910629031, + "grad_norm": 1.027938961982727, + "learning_rate": 3.025963149078727e-05, + "loss": 0.21748722076416016, + "step": 117900 + }, + { + "epoch": 39.531032749811544, + "grad_norm": 0.9682844877243042, + "learning_rate": 3.0242881072026802e-05, + "loss": 0.21787578582763673, + "step": 118000 + }, + { + "epoch": 39.56453639333277, + "grad_norm": 0.884766697883606, + "learning_rate": 3.022613065326633e-05, + "loss": 0.21701082229614257, + "step": 118100 + }, + { + "epoch": 39.59804003685401, + "grad_norm": 0.9033914804458618, + "learning_rate": 3.0209380234505863e-05, + "loss": 0.21810293197631836, + "step": 118200 + }, + { + "epoch": 39.63154368037524, + "grad_norm": 0.8522166013717651, + "learning_rate": 3.0192629815745392e-05, + "loss": 0.2182499122619629, + "step": 118300 + }, + { + "epoch": 39.665047323896474, + "grad_norm": 1.1046702861785889, + "learning_rate": 3.0175879396984924e-05, + "loss": 0.2196645164489746, + "step": 118400 + }, + { + "epoch": 39.69855096741771, + "grad_norm": 0.7786019444465637, + "learning_rate": 3.0159128978224453e-05, + "loss": 0.21823881149291993, + "step": 118500 + }, + { + "epoch": 39.73205461093894, + "grad_norm": 0.8261039853096008, + "learning_rate": 3.0142378559463992e-05, + "loss": 0.2183905029296875, + "step": 118600 + }, + { + "epoch": 39.765558254460174, + "grad_norm": 0.7951787710189819, + "learning_rate": 3.012562814070352e-05, + "loss": 0.22037561416625975, + "step": 118700 + }, + { + "epoch": 39.7990618979814, + "grad_norm": 0.9430021047592163, + "learning_rate": 3.0108877721943053e-05, + "loss": 0.22020740509033204, + "step": 118800 + }, + { + "epoch": 39.83256554150264, + "grad_norm": 0.8699235320091248, + "learning_rate": 3.0092127303182582e-05, + "loss": 0.2182463836669922, + "step": 118900 + }, + { + "epoch": 39.866069185023875, + "grad_norm": 0.6874027252197266, + "learning_rate": 3.0075376884422114e-05, + "loss": 0.21936134338378907, + "step": 119000 + }, + { + "epoch": 39.899572828545104, + "grad_norm": 0.9950704574584961, + "learning_rate": 3.0058626465661643e-05, + "loss": 0.22008882522583006, + "step": 119100 + }, + { + "epoch": 39.93307647206634, + "grad_norm": 0.9827971458435059, + "learning_rate": 3.0041876046901175e-05, + "loss": 0.22005229949951172, + "step": 119200 + }, + { + "epoch": 39.96658011558757, + "grad_norm": 0.9177015423774719, + "learning_rate": 3.0025125628140704e-05, + "loss": 0.21897659301757813, + "step": 119300 + }, + { + "epoch": 40.0, + "grad_norm": 1.1112428903579712, + "learning_rate": 3.0008375209380236e-05, + "loss": 0.2205747604370117, + "step": 119400 + }, + { + "epoch": 40.033503643521236, + "grad_norm": 0.9478968977928162, + "learning_rate": 2.9991624790619765e-05, + "loss": 0.20781259536743163, + "step": 119500 + }, + { + "epoch": 40.067007287042465, + "grad_norm": 0.8990084528923035, + "learning_rate": 2.99750418760469e-05, + "loss": 0.20928415298461914, + "step": 119600 + }, + { + "epoch": 40.1005109305637, + "grad_norm": 1.0282913446426392, + "learning_rate": 2.9958291457286437e-05, + "loss": 0.21068788528442384, + "step": 119700 + }, + { + "epoch": 40.13401457408493, + "grad_norm": 0.781109094619751, + "learning_rate": 2.9941541038525965e-05, + "loss": 0.2100553321838379, + "step": 119800 + }, + { + "epoch": 40.167518217606165, + "grad_norm": 0.7364116311073303, + "learning_rate": 2.9924790619765498e-05, + "loss": 0.211074161529541, + "step": 119900 + }, + { + "epoch": 40.201021861127394, + "grad_norm": 0.8109786510467529, + "learning_rate": 2.9908040201005027e-05, + "loss": 0.2111503028869629, + "step": 120000 + }, + { + "epoch": 40.23452550464863, + "grad_norm": 0.8337066769599915, + "learning_rate": 2.989128978224456e-05, + "loss": 0.21187753677368165, + "step": 120100 + }, + { + "epoch": 40.268029148169866, + "grad_norm": 0.8106216788291931, + "learning_rate": 2.9874539363484088e-05, + "loss": 0.21110746383666992, + "step": 120200 + }, + { + "epoch": 40.301532791691095, + "grad_norm": 0.900480329990387, + "learning_rate": 2.985778894472362e-05, + "loss": 0.21332656860351562, + "step": 120300 + }, + { + "epoch": 40.33503643521233, + "grad_norm": 0.8936036825180054, + "learning_rate": 2.984103852596315e-05, + "loss": 0.21424699783325196, + "step": 120400 + }, + { + "epoch": 40.36854007873356, + "grad_norm": 1.0281628370285034, + "learning_rate": 2.982428810720268e-05, + "loss": 0.21567123413085937, + "step": 120500 + }, + { + "epoch": 40.402043722254795, + "grad_norm": 0.9829724431037903, + "learning_rate": 2.980753768844221e-05, + "loss": 0.21529359817504884, + "step": 120600 + }, + { + "epoch": 40.43554736577603, + "grad_norm": 0.8747444748878479, + "learning_rate": 2.9790787269681742e-05, + "loss": 0.21478731155395508, + "step": 120700 + }, + { + "epoch": 40.46905100929726, + "grad_norm": 0.8821930885314941, + "learning_rate": 2.977403685092127e-05, + "loss": 0.21482231140136718, + "step": 120800 + }, + { + "epoch": 40.502554652818496, + "grad_norm": 0.8955323696136475, + "learning_rate": 2.975728643216081e-05, + "loss": 0.2153952407836914, + "step": 120900 + }, + { + "epoch": 40.536058296339725, + "grad_norm": 0.8369837999343872, + "learning_rate": 2.974053601340034e-05, + "loss": 0.21576461791992188, + "step": 121000 + }, + { + "epoch": 40.56956193986096, + "grad_norm": 0.8737310767173767, + "learning_rate": 2.972378559463987e-05, + "loss": 0.21639930725097656, + "step": 121100 + }, + { + "epoch": 40.60306558338219, + "grad_norm": 0.9263436198234558, + "learning_rate": 2.97070351758794e-05, + "loss": 0.21683277130126954, + "step": 121200 + }, + { + "epoch": 40.636569226903426, + "grad_norm": 0.9024245142936707, + "learning_rate": 2.9690284757118932e-05, + "loss": 0.21628368377685547, + "step": 121300 + }, + { + "epoch": 40.67007287042466, + "grad_norm": 0.8429529070854187, + "learning_rate": 2.967353433835846e-05, + "loss": 0.2163913917541504, + "step": 121400 + }, + { + "epoch": 40.70357651394589, + "grad_norm": 1.2450178861618042, + "learning_rate": 2.9656783919597993e-05, + "loss": 0.2194381523132324, + "step": 121500 + }, + { + "epoch": 40.737080157467126, + "grad_norm": 0.7648131251335144, + "learning_rate": 2.964003350083752e-05, + "loss": 0.21698453903198242, + "step": 121600 + }, + { + "epoch": 40.770583800988355, + "grad_norm": 0.9009991884231567, + "learning_rate": 2.9623283082077054e-05, + "loss": 0.21700273513793944, + "step": 121700 + }, + { + "epoch": 40.80408744450959, + "grad_norm": 0.8008719086647034, + "learning_rate": 2.9606532663316583e-05, + "loss": 0.21888105392456056, + "step": 121800 + }, + { + "epoch": 40.83759108803083, + "grad_norm": 0.9055608510971069, + "learning_rate": 2.9589782244556115e-05, + "loss": 0.21676677703857422, + "step": 121900 + }, + { + "epoch": 40.871094731552056, + "grad_norm": 0.80983567237854, + "learning_rate": 2.9573199329983254e-05, + "loss": 0.21832197189331054, + "step": 122000 + }, + { + "epoch": 40.90459837507329, + "grad_norm": 0.892451286315918, + "learning_rate": 2.9556448911222783e-05, + "loss": 0.21815378189086915, + "step": 122100 + }, + { + "epoch": 40.93810201859452, + "grad_norm": 0.8478377461433411, + "learning_rate": 2.9539698492462315e-05, + "loss": 0.21775611877441406, + "step": 122200 + }, + { + "epoch": 40.971605662115756, + "grad_norm": 0.9962807297706604, + "learning_rate": 2.9522948073701844e-05, + "loss": 0.219617919921875, + "step": 122300 + }, + { + "epoch": 41.00502554652819, + "grad_norm": 0.947913646697998, + "learning_rate": 2.9506197654941376e-05, + "loss": 0.21659244537353517, + "step": 122400 + }, + { + "epoch": 41.03852919004942, + "grad_norm": 0.7525883316993713, + "learning_rate": 2.9489447236180905e-05, + "loss": 0.20789249420166014, + "step": 122500 + }, + { + "epoch": 41.07203283357065, + "grad_norm": 0.6433896422386169, + "learning_rate": 2.9472696817420437e-05, + "loss": 0.2080308723449707, + "step": 122600 + }, + { + "epoch": 41.10553647709188, + "grad_norm": 0.8577892780303955, + "learning_rate": 2.9455946398659966e-05, + "loss": 0.20854692459106444, + "step": 122700 + }, + { + "epoch": 41.13904012061312, + "grad_norm": 0.9137370586395264, + "learning_rate": 2.9439195979899498e-05, + "loss": 0.20944379806518554, + "step": 122800 + }, + { + "epoch": 41.172543764134346, + "grad_norm": 0.8469370007514954, + "learning_rate": 2.9422445561139027e-05, + "loss": 0.21084047317504884, + "step": 122900 + }, + { + "epoch": 41.20604740765558, + "grad_norm": 0.8777198791503906, + "learning_rate": 2.940569514237856e-05, + "loss": 0.209267520904541, + "step": 123000 + }, + { + "epoch": 41.23955105117682, + "grad_norm": 0.8626389503479004, + "learning_rate": 2.9388944723618088e-05, + "loss": 0.21044559478759767, + "step": 123100 + }, + { + "epoch": 41.27305469469805, + "grad_norm": 0.9588419198989868, + "learning_rate": 2.9372194304857624e-05, + "loss": 0.21222888946533203, + "step": 123200 + }, + { + "epoch": 41.30655833821928, + "grad_norm": 0.86114901304245, + "learning_rate": 2.9355443886097156e-05, + "loss": 0.21097087860107422, + "step": 123300 + }, + { + "epoch": 41.34006198174051, + "grad_norm": 0.887198269367218, + "learning_rate": 2.9338693467336688e-05, + "loss": 0.21297225952148438, + "step": 123400 + }, + { + "epoch": 41.37356562526175, + "grad_norm": 0.7785773873329163, + "learning_rate": 2.9321943048576217e-05, + "loss": 0.2132717514038086, + "step": 123500 + }, + { + "epoch": 41.40706926878298, + "grad_norm": 0.8815355896949768, + "learning_rate": 2.930519262981575e-05, + "loss": 0.2135430908203125, + "step": 123600 + }, + { + "epoch": 41.44057291230421, + "grad_norm": 0.7385589480400085, + "learning_rate": 2.9288442211055278e-05, + "loss": 0.21455587387084962, + "step": 123700 + }, + { + "epoch": 41.47407655582545, + "grad_norm": 0.9357995986938477, + "learning_rate": 2.927169179229481e-05, + "loss": 0.2131095314025879, + "step": 123800 + }, + { + "epoch": 41.50758019934668, + "grad_norm": 0.9078415632247925, + "learning_rate": 2.925494137353434e-05, + "loss": 0.21512672424316406, + "step": 123900 + }, + { + "epoch": 41.54108384286791, + "grad_norm": 0.8247988820075989, + "learning_rate": 2.923819095477387e-05, + "loss": 0.21399457931518553, + "step": 124000 + }, + { + "epoch": 41.57458748638914, + "grad_norm": 0.726129949092865, + "learning_rate": 2.9221608040201004e-05, + "loss": 0.21407983779907228, + "step": 124100 + }, + { + "epoch": 41.60809112991038, + "grad_norm": 0.8694594502449036, + "learning_rate": 2.920485762144054e-05, + "loss": 0.21551137924194336, + "step": 124200 + }, + { + "epoch": 41.64159477343161, + "grad_norm": 0.9320394992828369, + "learning_rate": 2.918810720268007e-05, + "loss": 0.21677978515625, + "step": 124300 + }, + { + "epoch": 41.67509841695284, + "grad_norm": 1.0589549541473389, + "learning_rate": 2.91713567839196e-05, + "loss": 0.21467880249023438, + "step": 124400 + }, + { + "epoch": 41.70860206047408, + "grad_norm": 0.8709360361099243, + "learning_rate": 2.9154606365159133e-05, + "loss": 0.21607656478881837, + "step": 124500 + }, + { + "epoch": 41.74210570399531, + "grad_norm": 0.8040139675140381, + "learning_rate": 2.913785594639866e-05, + "loss": 0.21505617141723632, + "step": 124600 + }, + { + "epoch": 41.77560934751654, + "grad_norm": 0.899761438369751, + "learning_rate": 2.9121105527638194e-05, + "loss": 0.2151774787902832, + "step": 124700 + }, + { + "epoch": 41.80911299103778, + "grad_norm": 0.8534619808197021, + "learning_rate": 2.9104355108877722e-05, + "loss": 0.21662195205688475, + "step": 124800 + }, + { + "epoch": 41.84261663455901, + "grad_norm": 0.96486896276474, + "learning_rate": 2.9087604690117255e-05, + "loss": 0.21604257583618164, + "step": 124900 + }, + { + "epoch": 41.87612027808024, + "grad_norm": 0.8162650465965271, + "learning_rate": 2.9070854271356783e-05, + "loss": 0.2170560836791992, + "step": 125000 + }, + { + "epoch": 41.90962392160147, + "grad_norm": 0.889887809753418, + "learning_rate": 2.9054103852596316e-05, + "loss": 0.21925149917602538, + "step": 125100 + }, + { + "epoch": 41.94312756512271, + "grad_norm": 0.9023459553718567, + "learning_rate": 2.9037353433835844e-05, + "loss": 0.21658233642578126, + "step": 125200 + }, + { + "epoch": 41.97663120864394, + "grad_norm": 0.9475107192993164, + "learning_rate": 2.9020603015075377e-05, + "loss": 0.2174862480163574, + "step": 125300 + }, + { + "epoch": 42.01005109305637, + "grad_norm": 0.8001925945281982, + "learning_rate": 2.9003852596314905e-05, + "loss": 0.21471311569213866, + "step": 125400 + }, + { + "epoch": 42.043554736577605, + "grad_norm": 0.7804350852966309, + "learning_rate": 2.898710217755444e-05, + "loss": 0.2056850814819336, + "step": 125500 + }, + { + "epoch": 42.07705838009883, + "grad_norm": 0.9709755182266235, + "learning_rate": 2.8970351758793973e-05, + "loss": 0.20687313079833985, + "step": 125600 + }, + { + "epoch": 42.11056202362007, + "grad_norm": 0.8425003290176392, + "learning_rate": 2.8953601340033502e-05, + "loss": 0.20829198837280274, + "step": 125700 + }, + { + "epoch": 42.1440656671413, + "grad_norm": 0.7324151396751404, + "learning_rate": 2.8936850921273034e-05, + "loss": 0.20799571990966798, + "step": 125800 + }, + { + "epoch": 42.177569310662534, + "grad_norm": 0.7971581220626831, + "learning_rate": 2.8920100502512567e-05, + "loss": 0.21026283264160156, + "step": 125900 + }, + { + "epoch": 42.21107295418377, + "grad_norm": 0.7958289384841919, + "learning_rate": 2.8903350083752095e-05, + "loss": 0.20917728424072266, + "step": 126000 + }, + { + "epoch": 42.244576597705, + "grad_norm": 0.8632842302322388, + "learning_rate": 2.888676716917923e-05, + "loss": 0.20981687545776367, + "step": 126100 + }, + { + "epoch": 42.278080241226235, + "grad_norm": 0.8120240569114685, + "learning_rate": 2.887001675041876e-05, + "loss": 0.21040897369384765, + "step": 126200 + }, + { + "epoch": 42.31158388474746, + "grad_norm": 0.9877341389656067, + "learning_rate": 2.8853266331658292e-05, + "loss": 0.21044788360595704, + "step": 126300 + }, + { + "epoch": 42.3450875282687, + "grad_norm": 0.803947925567627, + "learning_rate": 2.883651591289782e-05, + "loss": 0.21133209228515626, + "step": 126400 + }, + { + "epoch": 42.378591171789935, + "grad_norm": 0.8692134022712708, + "learning_rate": 2.8819765494137357e-05, + "loss": 0.21098001480102538, + "step": 126500 + }, + { + "epoch": 42.412094815311164, + "grad_norm": 0.703528642654419, + "learning_rate": 2.880301507537689e-05, + "loss": 0.21152076721191407, + "step": 126600 + }, + { + "epoch": 42.4455984588324, + "grad_norm": 0.9700392484664917, + "learning_rate": 2.8786264656616418e-05, + "loss": 0.21170536041259766, + "step": 126700 + }, + { + "epoch": 42.47910210235363, + "grad_norm": 0.7205595970153809, + "learning_rate": 2.876951423785595e-05, + "loss": 0.2123921012878418, + "step": 126800 + }, + { + "epoch": 42.512605745874865, + "grad_norm": 0.8186672925949097, + "learning_rate": 2.875276381909548e-05, + "loss": 0.2122740364074707, + "step": 126900 + }, + { + "epoch": 42.54610938939609, + "grad_norm": 0.9268088340759277, + "learning_rate": 2.873601340033501e-05, + "loss": 0.21358152389526366, + "step": 127000 + }, + { + "epoch": 42.57961303291733, + "grad_norm": 0.762809157371521, + "learning_rate": 2.871926298157454e-05, + "loss": 0.21314903259277343, + "step": 127100 + }, + { + "epoch": 42.613116676438565, + "grad_norm": 0.8699193596839905, + "learning_rate": 2.8702512562814072e-05, + "loss": 0.2129987335205078, + "step": 127200 + }, + { + "epoch": 42.646620319959794, + "grad_norm": 0.698263943195343, + "learning_rate": 2.86857621440536e-05, + "loss": 0.21600809097290039, + "step": 127300 + }, + { + "epoch": 42.68012396348103, + "grad_norm": 0.7782033681869507, + "learning_rate": 2.8669011725293133e-05, + "loss": 0.21448253631591796, + "step": 127400 + }, + { + "epoch": 42.71362760700226, + "grad_norm": 0.8113609552383423, + "learning_rate": 2.8652261306532662e-05, + "loss": 0.2134496307373047, + "step": 127500 + }, + { + "epoch": 42.747131250523495, + "grad_norm": 0.7400202751159668, + "learning_rate": 2.8635510887772194e-05, + "loss": 0.21415563583374023, + "step": 127600 + }, + { + "epoch": 42.78063489404473, + "grad_norm": 1.0038073062896729, + "learning_rate": 2.8618760469011723e-05, + "loss": 0.2144919776916504, + "step": 127700 + }, + { + "epoch": 42.81413853756596, + "grad_norm": 0.7947350144386292, + "learning_rate": 2.860201005025126e-05, + "loss": 0.21546197891235352, + "step": 127800 + }, + { + "epoch": 42.847642181087195, + "grad_norm": 0.7404258847236633, + "learning_rate": 2.858525963149079e-05, + "loss": 0.2151948356628418, + "step": 127900 + }, + { + "epoch": 42.881145824608424, + "grad_norm": 0.8000117540359497, + "learning_rate": 2.856850921273032e-05, + "loss": 0.2174908447265625, + "step": 128000 + }, + { + "epoch": 42.91464946812966, + "grad_norm": 0.8331735730171204, + "learning_rate": 2.8551758793969852e-05, + "loss": 0.2154141616821289, + "step": 128100 + }, + { + "epoch": 42.94815311165089, + "grad_norm": 0.8255071640014648, + "learning_rate": 2.8535175879396984e-05, + "loss": 0.21642459869384767, + "step": 128200 + }, + { + "epoch": 42.981656755172125, + "grad_norm": 0.8828434944152832, + "learning_rate": 2.8518425460636516e-05, + "loss": 0.21653507232666017, + "step": 128300 + }, + { + "epoch": 43.01507663958456, + "grad_norm": 0.8157568573951721, + "learning_rate": 2.8501675041876045e-05, + "loss": 0.21150121688842774, + "step": 128400 + }, + { + "epoch": 43.048580283105785, + "grad_norm": 0.7143152356147766, + "learning_rate": 2.8484924623115578e-05, + "loss": 0.20697792053222655, + "step": 128500 + }, + { + "epoch": 43.08208392662702, + "grad_norm": 0.9034318327903748, + "learning_rate": 2.846817420435511e-05, + "loss": 0.20594911575317382, + "step": 128600 + }, + { + "epoch": 43.11558757014826, + "grad_norm": 0.7974486947059631, + "learning_rate": 2.845142378559464e-05, + "loss": 0.20707765579223633, + "step": 128700 + }, + { + "epoch": 43.149091213669486, + "grad_norm": 0.7226033210754395, + "learning_rate": 2.8434673366834174e-05, + "loss": 0.20583932876586913, + "step": 128800 + }, + { + "epoch": 43.18259485719072, + "grad_norm": 0.8551874160766602, + "learning_rate": 2.8417922948073706e-05, + "loss": 0.2078396797180176, + "step": 128900 + }, + { + "epoch": 43.21609850071195, + "grad_norm": 0.7227718234062195, + "learning_rate": 2.8401172529313235e-05, + "loss": 0.20798839569091798, + "step": 129000 + }, + { + "epoch": 43.24960214423319, + "grad_norm": 0.9496952891349792, + "learning_rate": 2.8384422110552767e-05, + "loss": 0.2099104118347168, + "step": 129100 + }, + { + "epoch": 43.283105787754415, + "grad_norm": 0.9909376502037048, + "learning_rate": 2.8367671691792296e-05, + "loss": 0.20969415664672852, + "step": 129200 + }, + { + "epoch": 43.31660943127565, + "grad_norm": 0.9239180088043213, + "learning_rate": 2.835092127303183e-05, + "loss": 0.20861217498779297, + "step": 129300 + }, + { + "epoch": 43.35011307479689, + "grad_norm": 0.8692393898963928, + "learning_rate": 2.8334170854271357e-05, + "loss": 0.2091372299194336, + "step": 129400 + }, + { + "epoch": 43.383616718318116, + "grad_norm": 0.693246603012085, + "learning_rate": 2.831742043551089e-05, + "loss": 0.20966863632202148, + "step": 129500 + }, + { + "epoch": 43.41712036183935, + "grad_norm": 0.8332297205924988, + "learning_rate": 2.8300670016750418e-05, + "loss": 0.21026342391967773, + "step": 129600 + }, + { + "epoch": 43.45062400536058, + "grad_norm": 0.8729221820831299, + "learning_rate": 2.828391959798995e-05, + "loss": 0.21070770263671876, + "step": 129700 + }, + { + "epoch": 43.48412764888182, + "grad_norm": 0.7649937868118286, + "learning_rate": 2.826716917922948e-05, + "loss": 0.21120260238647462, + "step": 129800 + }, + { + "epoch": 43.517631292403046, + "grad_norm": 0.8937798738479614, + "learning_rate": 2.825041876046901e-05, + "loss": 0.21302244186401367, + "step": 129900 + }, + { + "epoch": 43.55113493592428, + "grad_norm": 1.0248814821243286, + "learning_rate": 2.8233668341708547e-05, + "loss": 0.21207603454589843, + "step": 130000 + }, + { + "epoch": 43.58463857944552, + "grad_norm": 0.9701077938079834, + "learning_rate": 2.8216917922948076e-05, + "loss": 0.2112472915649414, + "step": 130100 + }, + { + "epoch": 43.618142222966746, + "grad_norm": 0.8634024858474731, + "learning_rate": 2.8200167504187608e-05, + "loss": 0.21355249404907226, + "step": 130200 + }, + { + "epoch": 43.65164586648798, + "grad_norm": 0.9003106951713562, + "learning_rate": 2.818358458961474e-05, + "loss": 0.2142485809326172, + "step": 130300 + }, + { + "epoch": 43.68514951000921, + "grad_norm": 0.7895374298095703, + "learning_rate": 2.8166834170854273e-05, + "loss": 0.2131346321105957, + "step": 130400 + }, + { + "epoch": 43.71865315353045, + "grad_norm": 1.0067280530929565, + "learning_rate": 2.81500837520938e-05, + "loss": 0.21282941818237305, + "step": 130500 + }, + { + "epoch": 43.75215679705168, + "grad_norm": 0.7602081894874573, + "learning_rate": 2.8133333333333334e-05, + "loss": 0.2138546371459961, + "step": 130600 + }, + { + "epoch": 43.78566044057291, + "grad_norm": 0.7720736265182495, + "learning_rate": 2.8116582914572863e-05, + "loss": 0.2136884307861328, + "step": 130700 + }, + { + "epoch": 43.81916408409415, + "grad_norm": 0.7715796232223511, + "learning_rate": 2.8099832495812395e-05, + "loss": 0.21329423904418945, + "step": 130800 + }, + { + "epoch": 43.852667727615376, + "grad_norm": 0.8566184043884277, + "learning_rate": 2.8083082077051924e-05, + "loss": 0.21406152725219726, + "step": 130900 + }, + { + "epoch": 43.88617137113661, + "grad_norm": 0.8490840792655945, + "learning_rate": 2.8066331658291456e-05, + "loss": 0.21463991165161134, + "step": 131000 + }, + { + "epoch": 43.91967501465784, + "grad_norm": 0.9666714072227478, + "learning_rate": 2.804958123953099e-05, + "loss": 0.21495559692382812, + "step": 131100 + }, + { + "epoch": 43.95317865817908, + "grad_norm": 1.0371804237365723, + "learning_rate": 2.8032830820770524e-05, + "loss": 0.21566991806030272, + "step": 131200 + }, + { + "epoch": 43.98668230170031, + "grad_norm": 0.910309910774231, + "learning_rate": 2.8016080402010053e-05, + "loss": 0.215529727935791, + "step": 131300 + }, + { + "epoch": 44.02010218611274, + "grad_norm": 0.7464276552200317, + "learning_rate": 2.7999329983249585e-05, + "loss": 0.20866870880126953, + "step": 131400 + }, + { + "epoch": 44.05360582963397, + "grad_norm": 0.7517808079719543, + "learning_rate": 2.7982579564489114e-05, + "loss": 0.20390798568725585, + "step": 131500 + }, + { + "epoch": 44.08710947315521, + "grad_norm": 0.6557915210723877, + "learning_rate": 2.7965829145728646e-05, + "loss": 0.20384593963623046, + "step": 131600 + }, + { + "epoch": 44.12061311667644, + "grad_norm": 0.855191171169281, + "learning_rate": 2.7949078726968175e-05, + "loss": 0.2066969871520996, + "step": 131700 + }, + { + "epoch": 44.154116760197674, + "grad_norm": 0.8590629696846008, + "learning_rate": 2.7932328308207707e-05, + "loss": 0.2062934684753418, + "step": 131800 + }, + { + "epoch": 44.1876204037189, + "grad_norm": 0.9050695896148682, + "learning_rate": 2.7915577889447236e-05, + "loss": 0.20599493026733398, + "step": 131900 + }, + { + "epoch": 44.22112404724014, + "grad_norm": 0.8817638754844666, + "learning_rate": 2.7898827470686768e-05, + "loss": 0.2078232765197754, + "step": 132000 + }, + { + "epoch": 44.25462769076137, + "grad_norm": 0.8479394316673279, + "learning_rate": 2.7882077051926297e-05, + "loss": 0.20759906768798828, + "step": 132100 + }, + { + "epoch": 44.2881313342826, + "grad_norm": 0.8977039456367493, + "learning_rate": 2.786532663316583e-05, + "loss": 0.20864250183105468, + "step": 132200 + }, + { + "epoch": 44.32163497780384, + "grad_norm": 0.7003665566444397, + "learning_rate": 2.7848576214405365e-05, + "loss": 0.20907209396362306, + "step": 132300 + }, + { + "epoch": 44.35513862132507, + "grad_norm": 0.8874910473823547, + "learning_rate": 2.7831825795644893e-05, + "loss": 0.20834226608276368, + "step": 132400 + }, + { + "epoch": 44.388642264846304, + "grad_norm": 0.8135631680488586, + "learning_rate": 2.781524288107203e-05, + "loss": 0.2098270034790039, + "step": 132500 + }, + { + "epoch": 44.42214590836753, + "grad_norm": 1.0045340061187744, + "learning_rate": 2.7798492462311558e-05, + "loss": 0.2112841033935547, + "step": 132600 + }, + { + "epoch": 44.45564955188877, + "grad_norm": 0.8854024410247803, + "learning_rate": 2.778174204355109e-05, + "loss": 0.2096893310546875, + "step": 132700 + }, + { + "epoch": 44.48915319541, + "grad_norm": 0.8551903963088989, + "learning_rate": 2.776499162479062e-05, + "loss": 0.21038183212280273, + "step": 132800 + }, + { + "epoch": 44.52265683893123, + "grad_norm": 0.848574161529541, + "learning_rate": 2.774824120603015e-05, + "loss": 0.21035202026367186, + "step": 132900 + }, + { + "epoch": 44.55616048245247, + "grad_norm": 0.8698804378509521, + "learning_rate": 2.773149078726968e-05, + "loss": 0.21176429748535155, + "step": 133000 + }, + { + "epoch": 44.5896641259737, + "grad_norm": 0.8525173664093018, + "learning_rate": 2.7714740368509212e-05, + "loss": 0.21025493621826172, + "step": 133100 + }, + { + "epoch": 44.623167769494934, + "grad_norm": 1.0027357339859009, + "learning_rate": 2.769798994974874e-05, + "loss": 0.21228431701660155, + "step": 133200 + }, + { + "epoch": 44.65667141301616, + "grad_norm": 0.9768441915512085, + "learning_rate": 2.7681239530988273e-05, + "loss": 0.21132736206054686, + "step": 133300 + }, + { + "epoch": 44.6901750565374, + "grad_norm": 0.9287051558494568, + "learning_rate": 2.766448911222781e-05, + "loss": 0.211924991607666, + "step": 133400 + }, + { + "epoch": 44.723678700058635, + "grad_norm": 1.0014779567718506, + "learning_rate": 2.764773869346734e-05, + "loss": 0.21157003402709962, + "step": 133500 + }, + { + "epoch": 44.75718234357986, + "grad_norm": 0.8901475071907043, + "learning_rate": 2.763098827470687e-05, + "loss": 0.21130624771118164, + "step": 133600 + }, + { + "epoch": 44.7906859871011, + "grad_norm": 0.7723361253738403, + "learning_rate": 2.7614237855946402e-05, + "loss": 0.21280551910400392, + "step": 133700 + }, + { + "epoch": 44.82418963062233, + "grad_norm": 0.8794797658920288, + "learning_rate": 2.759748743718593e-05, + "loss": 0.21236923217773437, + "step": 133800 + }, + { + "epoch": 44.857693274143564, + "grad_norm": 0.8374422192573547, + "learning_rate": 2.7580737018425463e-05, + "loss": 0.21364736557006836, + "step": 133900 + }, + { + "epoch": 44.89119691766479, + "grad_norm": 0.8275327086448669, + "learning_rate": 2.7563986599664992e-05, + "loss": 0.21200048446655273, + "step": 134000 + }, + { + "epoch": 44.92470056118603, + "grad_norm": 0.9097633957862854, + "learning_rate": 2.7547236180904524e-05, + "loss": 0.21340879440307617, + "step": 134100 + }, + { + "epoch": 44.958204204707265, + "grad_norm": 0.9494147300720215, + "learning_rate": 2.7530485762144053e-05, + "loss": 0.2142266273498535, + "step": 134200 + }, + { + "epoch": 44.991707848228494, + "grad_norm": 0.814795970916748, + "learning_rate": 2.7513735343383585e-05, + "loss": 0.21452692031860351, + "step": 134300 + }, + { + "epoch": 45.025127732640925, + "grad_norm": 0.6908448934555054, + "learning_rate": 2.7496984924623114e-05, + "loss": 0.20500320434570313, + "step": 134400 + }, + { + "epoch": 45.05863137616216, + "grad_norm": 0.6426514387130737, + "learning_rate": 2.7480234505862646e-05, + "loss": 0.2033299446105957, + "step": 134500 + }, + { + "epoch": 45.09213501968339, + "grad_norm": 0.8847736716270447, + "learning_rate": 2.7463484087102182e-05, + "loss": 0.20543498992919923, + "step": 134600 + }, + { + "epoch": 45.125638663204626, + "grad_norm": 0.713890552520752, + "learning_rate": 2.744673366834171e-05, + "loss": 0.20500320434570313, + "step": 134700 + }, + { + "epoch": 45.159142306725855, + "grad_norm": 0.7541131973266602, + "learning_rate": 2.7430150753768847e-05, + "loss": 0.2060226631164551, + "step": 134800 + }, + { + "epoch": 45.19264595024709, + "grad_norm": 0.9209812879562378, + "learning_rate": 2.7413400335008375e-05, + "loss": 0.20517513275146484, + "step": 134900 + }, + { + "epoch": 45.22614959376832, + "grad_norm": 0.781428873538971, + "learning_rate": 2.7396649916247908e-05, + "loss": 0.20627330780029296, + "step": 135000 + }, + { + "epoch": 45.259653237289555, + "grad_norm": 0.8748304843902588, + "learning_rate": 2.7379899497487437e-05, + "loss": 0.20791227340698243, + "step": 135100 + }, + { + "epoch": 45.29315688081079, + "grad_norm": 0.7505505681037903, + "learning_rate": 2.736314907872697e-05, + "loss": 0.2061052703857422, + "step": 135200 + }, + { + "epoch": 45.32666052433202, + "grad_norm": 0.8114047646522522, + "learning_rate": 2.7346398659966498e-05, + "loss": 0.2083379364013672, + "step": 135300 + }, + { + "epoch": 45.360164167853256, + "grad_norm": 0.8816334009170532, + "learning_rate": 2.732964824120603e-05, + "loss": 0.2089382553100586, + "step": 135400 + }, + { + "epoch": 45.393667811374485, + "grad_norm": 0.8554006814956665, + "learning_rate": 2.731289782244556e-05, + "loss": 0.20821535110473632, + "step": 135500 + }, + { + "epoch": 45.42717145489572, + "grad_norm": 0.8525182008743286, + "learning_rate": 2.7296147403685098e-05, + "loss": 0.20828678131103515, + "step": 135600 + }, + { + "epoch": 45.46067509841695, + "grad_norm": 0.9644753932952881, + "learning_rate": 2.7279396984924626e-05, + "loss": 0.20957386016845703, + "step": 135700 + }, + { + "epoch": 45.494178741938185, + "grad_norm": 0.857822835445404, + "learning_rate": 2.726264656616416e-05, + "loss": 0.21084308624267578, + "step": 135800 + }, + { + "epoch": 45.52768238545942, + "grad_norm": 0.6781661510467529, + "learning_rate": 2.7245896147403687e-05, + "loss": 0.21013999938964845, + "step": 135900 + }, + { + "epoch": 45.56118602898065, + "grad_norm": 0.87371426820755, + "learning_rate": 2.722914572864322e-05, + "loss": 0.2115696907043457, + "step": 136000 + }, + { + "epoch": 45.594689672501886, + "grad_norm": 1.0570032596588135, + "learning_rate": 2.721239530988275e-05, + "loss": 0.20983007431030273, + "step": 136100 + }, + { + "epoch": 45.628193316023115, + "grad_norm": 0.8911213278770447, + "learning_rate": 2.719564489112228e-05, + "loss": 0.2098233413696289, + "step": 136200 + }, + { + "epoch": 45.66169695954435, + "grad_norm": 0.7911779284477234, + "learning_rate": 2.717889447236181e-05, + "loss": 0.2099312973022461, + "step": 136300 + }, + { + "epoch": 45.69520060306559, + "grad_norm": 0.8585467338562012, + "learning_rate": 2.7162144053601342e-05, + "loss": 0.21018625259399415, + "step": 136400 + }, + { + "epoch": 45.728704246586815, + "grad_norm": 0.8224589824676514, + "learning_rate": 2.714539363484087e-05, + "loss": 0.211662654876709, + "step": 136500 + }, + { + "epoch": 45.76220789010805, + "grad_norm": 0.8850246667861938, + "learning_rate": 2.7128643216080403e-05, + "loss": 0.21219783782958984, + "step": 136600 + }, + { + "epoch": 45.79571153362928, + "grad_norm": 0.9044328927993774, + "learning_rate": 2.711189279731993e-05, + "loss": 0.21055538177490235, + "step": 136700 + }, + { + "epoch": 45.829215177150516, + "grad_norm": 0.8955138325691223, + "learning_rate": 2.7095142378559464e-05, + "loss": 0.21124111175537108, + "step": 136800 + }, + { + "epoch": 45.862718820671745, + "grad_norm": 0.9041482210159302, + "learning_rate": 2.7078559463986603e-05, + "loss": 0.21166906356811524, + "step": 136900 + }, + { + "epoch": 45.89622246419298, + "grad_norm": 0.8111388087272644, + "learning_rate": 2.7061809045226132e-05, + "loss": 0.21167055130004883, + "step": 137000 + }, + { + "epoch": 45.92972610771422, + "grad_norm": 0.9616506695747375, + "learning_rate": 2.7045058626465664e-05, + "loss": 0.21228885650634766, + "step": 137100 + }, + { + "epoch": 45.963229751235446, + "grad_norm": 0.8436776399612427, + "learning_rate": 2.7028308207705193e-05, + "loss": 0.2126219940185547, + "step": 137200 + }, + { + "epoch": 45.99673339475668, + "grad_norm": 0.71140456199646, + "learning_rate": 2.7011557788944725e-05, + "loss": 0.21354110717773436, + "step": 137300 + }, + { + "epoch": 46.03015327916911, + "grad_norm": 0.7948451042175293, + "learning_rate": 2.6994807370184254e-05, + "loss": 0.2044697570800781, + "step": 137400 + }, + { + "epoch": 46.06365692269034, + "grad_norm": 0.8057336807250977, + "learning_rate": 2.6978056951423786e-05, + "loss": 0.20385299682617186, + "step": 137500 + }, + { + "epoch": 46.09716056621158, + "grad_norm": 0.7120649218559265, + "learning_rate": 2.6961306532663315e-05, + "loss": 0.20400421142578126, + "step": 137600 + }, + { + "epoch": 46.13066420973281, + "grad_norm": 0.9549148678779602, + "learning_rate": 2.6944556113902847e-05, + "loss": 0.2034744453430176, + "step": 137700 + }, + { + "epoch": 46.16416785325404, + "grad_norm": 0.8098897337913513, + "learning_rate": 2.6927805695142376e-05, + "loss": 0.203569393157959, + "step": 137800 + }, + { + "epoch": 46.19767149677527, + "grad_norm": 0.7123087644577026, + "learning_rate": 2.6911055276381915e-05, + "loss": 0.20544761657714844, + "step": 137900 + }, + { + "epoch": 46.23117514029651, + "grad_norm": 0.8449687361717224, + "learning_rate": 2.6894304857621444e-05, + "loss": 0.20498695373535156, + "step": 138000 + }, + { + "epoch": 46.26467878381774, + "grad_norm": 0.7853437066078186, + "learning_rate": 2.6877554438860976e-05, + "loss": 0.2059033203125, + "step": 138100 + }, + { + "epoch": 46.29818242733897, + "grad_norm": 0.7418807148933411, + "learning_rate": 2.6860804020100505e-05, + "loss": 0.20638565063476563, + "step": 138200 + }, + { + "epoch": 46.33168607086021, + "grad_norm": 0.9248971343040466, + "learning_rate": 2.6844053601340037e-05, + "loss": 0.2076273727416992, + "step": 138300 + }, + { + "epoch": 46.36518971438144, + "grad_norm": 0.8263251185417175, + "learning_rate": 2.6827303182579566e-05, + "loss": 0.20645214080810548, + "step": 138400 + }, + { + "epoch": 46.39869335790267, + "grad_norm": 0.9032105207443237, + "learning_rate": 2.6810552763819098e-05, + "loss": 0.20705162048339842, + "step": 138500 + }, + { + "epoch": 46.4321970014239, + "grad_norm": 0.7566851377487183, + "learning_rate": 2.6793802345058627e-05, + "loss": 0.20758819580078125, + "step": 138600 + }, + { + "epoch": 46.46570064494514, + "grad_norm": 0.7938912510871887, + "learning_rate": 2.677705192629816e-05, + "loss": 0.20770130157470704, + "step": 138700 + }, + { + "epoch": 46.49920428846637, + "grad_norm": 0.8320357799530029, + "learning_rate": 2.6760301507537688e-05, + "loss": 0.20806819915771485, + "step": 138800 + }, + { + "epoch": 46.5327079319876, + "grad_norm": 0.9987215995788574, + "learning_rate": 2.674355108877722e-05, + "loss": 0.20871660232543945, + "step": 138900 + }, + { + "epoch": 46.56621157550884, + "grad_norm": 0.8866457939147949, + "learning_rate": 2.672696817420436e-05, + "loss": 0.20802412033081055, + "step": 139000 + }, + { + "epoch": 46.59971521903007, + "grad_norm": 0.7644064426422119, + "learning_rate": 2.6710217755443888e-05, + "loss": 0.2100166893005371, + "step": 139100 + }, + { + "epoch": 46.6332188625513, + "grad_norm": 0.832198977470398, + "learning_rate": 2.669346733668342e-05, + "loss": 0.2086174964904785, + "step": 139200 + }, + { + "epoch": 46.66672250607254, + "grad_norm": 0.7455396056175232, + "learning_rate": 2.667671691792295e-05, + "loss": 0.21050701141357422, + "step": 139300 + }, + { + "epoch": 46.70022614959377, + "grad_norm": 0.7941868901252747, + "learning_rate": 2.665996649916248e-05, + "loss": 0.21018735885620118, + "step": 139400 + }, + { + "epoch": 46.733729793115, + "grad_norm": 0.745232105255127, + "learning_rate": 2.664321608040201e-05, + "loss": 0.2106583023071289, + "step": 139500 + }, + { + "epoch": 46.76723343663623, + "grad_norm": 0.8534348011016846, + "learning_rate": 2.6626465661641543e-05, + "loss": 0.21023065567016602, + "step": 139600 + }, + { + "epoch": 46.80073708015747, + "grad_norm": 0.8639134764671326, + "learning_rate": 2.660971524288107e-05, + "loss": 0.20966962814331055, + "step": 139700 + }, + { + "epoch": 46.8342407236787, + "grad_norm": 0.9052923917770386, + "learning_rate": 2.6592964824120604e-05, + "loss": 0.2114642906188965, + "step": 139800 + }, + { + "epoch": 46.86774436719993, + "grad_norm": 0.8590245246887207, + "learning_rate": 2.6576214405360132e-05, + "loss": 0.2110831069946289, + "step": 139900 + }, + { + "epoch": 46.90124801072117, + "grad_norm": 0.8708141446113586, + "learning_rate": 2.6559463986599665e-05, + "loss": 0.21110519409179687, + "step": 140000 + }, + { + "epoch": 46.9347516542424, + "grad_norm": 0.9694708585739136, + "learning_rate": 2.6542713567839193e-05, + "loss": 0.21246437072753907, + "step": 140100 + }, + { + "epoch": 46.96825529776363, + "grad_norm": 0.8531249761581421, + "learning_rate": 2.6525963149078732e-05, + "loss": 0.2127097511291504, + "step": 140200 + }, + { + "epoch": 47.001675182176065, + "grad_norm": 0.7149065136909485, + "learning_rate": 2.650921273031826e-05, + "loss": 0.21077686309814453, + "step": 140300 + }, + { + "epoch": 47.035178825697294, + "grad_norm": 0.906190812587738, + "learning_rate": 2.6492462311557793e-05, + "loss": 0.20198272705078124, + "step": 140400 + }, + { + "epoch": 47.06868246921853, + "grad_norm": 0.8794195652008057, + "learning_rate": 2.6475711892797322e-05, + "loss": 0.20144824981689452, + "step": 140500 + }, + { + "epoch": 47.10218611273976, + "grad_norm": 0.7231687307357788, + "learning_rate": 2.6458961474036854e-05, + "loss": 0.20203954696655274, + "step": 140600 + }, + { + "epoch": 47.135689756260994, + "grad_norm": 0.8035680651664734, + "learning_rate": 2.6442211055276383e-05, + "loss": 0.20453298568725586, + "step": 140700 + }, + { + "epoch": 47.16919339978222, + "grad_norm": 0.7751315832138062, + "learning_rate": 2.6425460636515916e-05, + "loss": 0.20380630493164062, + "step": 140800 + }, + { + "epoch": 47.20269704330346, + "grad_norm": 0.8336166739463806, + "learning_rate": 2.6408710217755444e-05, + "loss": 0.2044701385498047, + "step": 140900 + }, + { + "epoch": 47.236200686824695, + "grad_norm": 0.92495197057724, + "learning_rate": 2.6391959798994977e-05, + "loss": 0.20544666290283203, + "step": 141000 + }, + { + "epoch": 47.269704330345924, + "grad_norm": 0.8691511750221252, + "learning_rate": 2.637537688442211e-05, + "loss": 0.20497919082641602, + "step": 141100 + }, + { + "epoch": 47.30320797386716, + "grad_norm": 0.7744715213775635, + "learning_rate": 2.6358626465661645e-05, + "loss": 0.20545125961303712, + "step": 141200 + }, + { + "epoch": 47.33671161738839, + "grad_norm": 0.8087801337242126, + "learning_rate": 2.6341876046901177e-05, + "loss": 0.20726716995239258, + "step": 141300 + }, + { + "epoch": 47.370215260909625, + "grad_norm": 0.6278528571128845, + "learning_rate": 2.6325125628140706e-05, + "loss": 0.20632375717163087, + "step": 141400 + }, + { + "epoch": 47.40371890443085, + "grad_norm": 0.7197872996330261, + "learning_rate": 2.6308375209380238e-05, + "loss": 0.20561176300048828, + "step": 141500 + }, + { + "epoch": 47.43722254795209, + "grad_norm": 0.8030456900596619, + "learning_rate": 2.6291624790619767e-05, + "loss": 0.20726533889770507, + "step": 141600 + }, + { + "epoch": 47.470726191473325, + "grad_norm": 0.8122235536575317, + "learning_rate": 2.62748743718593e-05, + "loss": 0.20543954849243165, + "step": 141700 + }, + { + "epoch": 47.504229834994554, + "grad_norm": 0.8430666923522949, + "learning_rate": 2.6258123953098828e-05, + "loss": 0.20687795639038087, + "step": 141800 + }, + { + "epoch": 47.53773347851579, + "grad_norm": 0.7796192765235901, + "learning_rate": 2.624137353433836e-05, + "loss": 0.20932218551635742, + "step": 141900 + }, + { + "epoch": 47.57123712203702, + "grad_norm": 0.7568249702453613, + "learning_rate": 2.622462311557789e-05, + "loss": 0.20753023147583008, + "step": 142000 + }, + { + "epoch": 47.604740765558255, + "grad_norm": 0.7766709923744202, + "learning_rate": 2.620787269681742e-05, + "loss": 0.20817523956298828, + "step": 142100 + }, + { + "epoch": 47.63824440907949, + "grad_norm": 0.8407247066497803, + "learning_rate": 2.619112227805695e-05, + "loss": 0.20790090560913085, + "step": 142200 + }, + { + "epoch": 47.67174805260072, + "grad_norm": 1.0693186521530151, + "learning_rate": 2.6174371859296482e-05, + "loss": 0.20879848480224608, + "step": 142300 + }, + { + "epoch": 47.705251696121955, + "grad_norm": 0.9089698791503906, + "learning_rate": 2.615762144053601e-05, + "loss": 0.20962982177734374, + "step": 142400 + }, + { + "epoch": 47.738755339643184, + "grad_norm": 0.9101313948631287, + "learning_rate": 2.614087102177555e-05, + "loss": 0.20881969451904298, + "step": 142500 + }, + { + "epoch": 47.77225898316442, + "grad_norm": 0.9239957332611084, + "learning_rate": 2.612412060301508e-05, + "loss": 0.21106016159057617, + "step": 142600 + }, + { + "epoch": 47.80576262668565, + "grad_norm": 0.7095087170600891, + "learning_rate": 2.610737018425461e-05, + "loss": 0.21043779373168944, + "step": 142700 + }, + { + "epoch": 47.839266270206885, + "grad_norm": 0.8761176466941833, + "learning_rate": 2.609061976549414e-05, + "loss": 0.20853693008422852, + "step": 142800 + }, + { + "epoch": 47.87276991372812, + "grad_norm": 0.9387518763542175, + "learning_rate": 2.6073869346733672e-05, + "loss": 0.21088685989379882, + "step": 142900 + }, + { + "epoch": 47.90627355724935, + "grad_norm": 0.8915501832962036, + "learning_rate": 2.60571189279732e-05, + "loss": 0.21008544921875, + "step": 143000 + }, + { + "epoch": 47.939777200770585, + "grad_norm": 0.9699543714523315, + "learning_rate": 2.6040368509212733e-05, + "loss": 0.21000476837158202, + "step": 143100 + }, + { + "epoch": 47.973280844291814, + "grad_norm": 0.7812904119491577, + "learning_rate": 2.6023785594639865e-05, + "loss": 0.21052337646484376, + "step": 143200 + }, + { + "epoch": 48.006700728704246, + "grad_norm": 0.822690486907959, + "learning_rate": 2.6007035175879398e-05, + "loss": 0.20833581924438477, + "step": 143300 + }, + { + "epoch": 48.04020437222548, + "grad_norm": 0.6735044121742249, + "learning_rate": 2.5990284757118926e-05, + "loss": 0.20092033386230468, + "step": 143400 + }, + { + "epoch": 48.07370801574671, + "grad_norm": 0.7303795218467712, + "learning_rate": 2.5973534338358462e-05, + "loss": 0.2011802864074707, + "step": 143500 + }, + { + "epoch": 48.107211659267946, + "grad_norm": 0.7877155542373657, + "learning_rate": 2.5956783919597994e-05, + "loss": 0.2021241569519043, + "step": 143600 + }, + { + "epoch": 48.140715302789175, + "grad_norm": 0.7610930800437927, + "learning_rate": 2.5940033500837523e-05, + "loss": 0.20223419189453126, + "step": 143700 + }, + { + "epoch": 48.17421894631041, + "grad_norm": 0.81033855676651, + "learning_rate": 2.5923283082077055e-05, + "loss": 0.20270132064819335, + "step": 143800 + }, + { + "epoch": 48.20772258983165, + "grad_norm": 0.7211432456970215, + "learning_rate": 2.5906532663316584e-05, + "loss": 0.2033340072631836, + "step": 143900 + }, + { + "epoch": 48.241226233352876, + "grad_norm": 0.7816910147666931, + "learning_rate": 2.5889782244556116e-05, + "loss": 0.20389623641967775, + "step": 144000 + }, + { + "epoch": 48.27472987687411, + "grad_norm": 0.8680933713912964, + "learning_rate": 2.5873031825795645e-05, + "loss": 0.20449954986572266, + "step": 144100 + }, + { + "epoch": 48.30823352039534, + "grad_norm": 0.6703556776046753, + "learning_rate": 2.5856281407035177e-05, + "loss": 0.20437568664550781, + "step": 144200 + }, + { + "epoch": 48.34173716391658, + "grad_norm": 0.755338191986084, + "learning_rate": 2.5839530988274706e-05, + "loss": 0.20576271057128906, + "step": 144300 + }, + { + "epoch": 48.375240807437805, + "grad_norm": 0.7581430673599243, + "learning_rate": 2.582278056951424e-05, + "loss": 0.2058708953857422, + "step": 144400 + }, + { + "epoch": 48.40874445095904, + "grad_norm": 0.7973390817642212, + "learning_rate": 2.5806030150753767e-05, + "loss": 0.20591938018798828, + "step": 144500 + }, + { + "epoch": 48.44224809448028, + "grad_norm": 0.8226273655891418, + "learning_rate": 2.57892797319933e-05, + "loss": 0.20543519973754884, + "step": 144600 + }, + { + "epoch": 48.475751738001506, + "grad_norm": 0.9298210740089417, + "learning_rate": 2.5772529313232828e-05, + "loss": 0.2074728012084961, + "step": 144700 + }, + { + "epoch": 48.50925538152274, + "grad_norm": 0.7703186273574829, + "learning_rate": 2.5755778894472364e-05, + "loss": 0.2061468505859375, + "step": 144800 + }, + { + "epoch": 48.54275902504397, + "grad_norm": 0.7027441263198853, + "learning_rate": 2.5739028475711896e-05, + "loss": 0.2068248176574707, + "step": 144900 + }, + { + "epoch": 48.57626266856521, + "grad_norm": 0.866961658000946, + "learning_rate": 2.5722278056951425e-05, + "loss": 0.20709081649780273, + "step": 145000 + }, + { + "epoch": 48.60976631208644, + "grad_norm": 0.7900598645210266, + "learning_rate": 2.5705527638190957e-05, + "loss": 0.20745479583740234, + "step": 145100 + }, + { + "epoch": 48.64326995560767, + "grad_norm": 0.7642288208007812, + "learning_rate": 2.568877721943049e-05, + "loss": 0.20698997497558594, + "step": 145200 + }, + { + "epoch": 48.67677359912891, + "grad_norm": 0.8306117653846741, + "learning_rate": 2.5672026800670018e-05, + "loss": 0.20851272583007813, + "step": 145300 + }, + { + "epoch": 48.710277242650136, + "grad_norm": 0.9393877387046814, + "learning_rate": 2.565527638190955e-05, + "loss": 0.2079641914367676, + "step": 145400 + }, + { + "epoch": 48.74378088617137, + "grad_norm": 0.7118200659751892, + "learning_rate": 2.5638693467336683e-05, + "loss": 0.20779979705810547, + "step": 145500 + }, + { + "epoch": 48.7772845296926, + "grad_norm": 0.8508455157279968, + "learning_rate": 2.5621943048576215e-05, + "loss": 0.20885522842407225, + "step": 145600 + }, + { + "epoch": 48.81078817321384, + "grad_norm": 0.7956013083457947, + "learning_rate": 2.5605192629815744e-05, + "loss": 0.2095408821105957, + "step": 145700 + }, + { + "epoch": 48.84429181673507, + "grad_norm": 0.9105645418167114, + "learning_rate": 2.558844221105528e-05, + "loss": 0.20915800094604492, + "step": 145800 + }, + { + "epoch": 48.8777954602563, + "grad_norm": 0.8507822155952454, + "learning_rate": 2.5571691792294812e-05, + "loss": 0.20863231658935547, + "step": 145900 + }, + { + "epoch": 48.91129910377754, + "grad_norm": 0.9350414872169495, + "learning_rate": 2.555494137353434e-05, + "loss": 0.2097511100769043, + "step": 146000 + }, + { + "epoch": 48.944802747298766, + "grad_norm": 0.6584986448287964, + "learning_rate": 2.5538190954773873e-05, + "loss": 0.20917884826660157, + "step": 146100 + }, + { + "epoch": 48.97830639082, + "grad_norm": 0.8874914646148682, + "learning_rate": 2.55214405360134e-05, + "loss": 0.20966741561889649, + "step": 146200 + }, + { + "epoch": 49.011726275232434, + "grad_norm": 0.6621425747871399, + "learning_rate": 2.5504690117252934e-05, + "loss": 0.20701923370361328, + "step": 146300 + }, + { + "epoch": 49.04522991875366, + "grad_norm": 0.772162914276123, + "learning_rate": 2.5487939698492463e-05, + "loss": 0.19997344970703124, + "step": 146400 + }, + { + "epoch": 49.0787335622749, + "grad_norm": 0.7397682666778564, + "learning_rate": 2.5471189279731995e-05, + "loss": 0.19966798782348633, + "step": 146500 + }, + { + "epoch": 49.11223720579613, + "grad_norm": 0.7998943328857422, + "learning_rate": 2.5454438860971524e-05, + "loss": 0.20070135116577148, + "step": 146600 + }, + { + "epoch": 49.14574084931736, + "grad_norm": 0.8297356367111206, + "learning_rate": 2.5437688442211056e-05, + "loss": 0.2032426643371582, + "step": 146700 + }, + { + "epoch": 49.1792444928386, + "grad_norm": 0.6718747615814209, + "learning_rate": 2.5420938023450585e-05, + "loss": 0.20162422180175782, + "step": 146800 + }, + { + "epoch": 49.21274813635983, + "grad_norm": 0.8085470795631409, + "learning_rate": 2.5404187604690117e-05, + "loss": 0.20480926513671874, + "step": 146900 + }, + { + "epoch": 49.246251779881064, + "grad_norm": 0.6637224555015564, + "learning_rate": 2.5387437185929646e-05, + "loss": 0.20419147491455078, + "step": 147000 + }, + { + "epoch": 49.27975542340229, + "grad_norm": 0.8804967999458313, + "learning_rate": 2.537068676716918e-05, + "loss": 0.20260902404785155, + "step": 147100 + }, + { + "epoch": 49.31325906692353, + "grad_norm": 0.6562800407409668, + "learning_rate": 2.5353936348408713e-05, + "loss": 0.2042051887512207, + "step": 147200 + }, + { + "epoch": 49.346762710444764, + "grad_norm": 0.802295446395874, + "learning_rate": 2.5337185929648242e-05, + "loss": 0.20388504028320312, + "step": 147300 + }, + { + "epoch": 49.38026635396599, + "grad_norm": 0.6702427268028259, + "learning_rate": 2.5320435510887775e-05, + "loss": 0.20359308242797852, + "step": 147400 + }, + { + "epoch": 49.41376999748723, + "grad_norm": 0.6546157002449036, + "learning_rate": 2.5303685092127303e-05, + "loss": 0.20544279098510743, + "step": 147500 + }, + { + "epoch": 49.44727364100846, + "grad_norm": 0.7745968103408813, + "learning_rate": 2.528710217755444e-05, + "loss": 0.20460813522338867, + "step": 147600 + }, + { + "epoch": 49.480777284529694, + "grad_norm": 0.754804790019989, + "learning_rate": 2.527035175879397e-05, + "loss": 0.20541131973266602, + "step": 147700 + }, + { + "epoch": 49.51428092805092, + "grad_norm": 0.8245925307273865, + "learning_rate": 2.52536013400335e-05, + "loss": 0.20514223098754883, + "step": 147800 + }, + { + "epoch": 49.54778457157216, + "grad_norm": 0.7658609747886658, + "learning_rate": 2.5236850921273032e-05, + "loss": 0.20672239303588869, + "step": 147900 + }, + { + "epoch": 49.581288215093394, + "grad_norm": 0.8386098742485046, + "learning_rate": 2.522010050251256e-05, + "loss": 0.20576807022094726, + "step": 148000 + }, + { + "epoch": 49.61479185861462, + "grad_norm": 0.9193150997161865, + "learning_rate": 2.5203350083752097e-05, + "loss": 0.20691360473632814, + "step": 148100 + }, + { + "epoch": 49.64829550213586, + "grad_norm": 0.8064738512039185, + "learning_rate": 2.518659966499163e-05, + "loss": 0.20630212783813476, + "step": 148200 + }, + { + "epoch": 49.68179914565709, + "grad_norm": 0.6325901746749878, + "learning_rate": 2.5169849246231158e-05, + "loss": 0.20667299270629882, + "step": 148300 + }, + { + "epoch": 49.715302789178324, + "grad_norm": 0.796997606754303, + "learning_rate": 2.515309882747069e-05, + "loss": 0.20724594116210937, + "step": 148400 + }, + { + "epoch": 49.74880643269955, + "grad_norm": 0.8888092041015625, + "learning_rate": 2.513634840871022e-05, + "loss": 0.20756359100341798, + "step": 148500 + }, + { + "epoch": 49.78231007622079, + "grad_norm": 0.8092156052589417, + "learning_rate": 2.511959798994975e-05, + "loss": 0.2068187713623047, + "step": 148600 + }, + { + "epoch": 49.815813719742025, + "grad_norm": 0.9051980972290039, + "learning_rate": 2.510284757118928e-05, + "loss": 0.20732791900634764, + "step": 148700 + }, + { + "epoch": 49.84931736326325, + "grad_norm": 0.9662907719612122, + "learning_rate": 2.5086097152428812e-05, + "loss": 0.2081096076965332, + "step": 148800 + }, + { + "epoch": 49.88282100678449, + "grad_norm": 0.9831855297088623, + "learning_rate": 2.506934673366834e-05, + "loss": 0.20788869857788086, + "step": 148900 + }, + { + "epoch": 49.91632465030572, + "grad_norm": 0.6909393668174744, + "learning_rate": 2.5052596314907873e-05, + "loss": 0.20930927276611327, + "step": 149000 + }, + { + "epoch": 49.949828293826954, + "grad_norm": 0.7016172409057617, + "learning_rate": 2.5035845896147402e-05, + "loss": 0.20851097106933594, + "step": 149100 + }, + { + "epoch": 49.98333193734819, + "grad_norm": 0.9753764867782593, + "learning_rate": 2.5019095477386934e-05, + "loss": 0.20876035690307618, + "step": 149200 + }, + { + "epoch": 50.016751821760614, + "grad_norm": 0.814017117023468, + "learning_rate": 2.500234505862647e-05, + "loss": 0.20314416885375977, + "step": 149300 + }, + { + "epoch": 50.05025546528185, + "grad_norm": 0.7156041860580444, + "learning_rate": 2.4985594639866e-05, + "loss": 0.19888938903808595, + "step": 149400 + }, + { + "epoch": 50.08375910880308, + "grad_norm": 0.7967144250869751, + "learning_rate": 2.4968844221105528e-05, + "loss": 0.2009027862548828, + "step": 149500 + }, + { + "epoch": 50.117262752324315, + "grad_norm": 0.8211435079574585, + "learning_rate": 2.495209380234506e-05, + "loss": 0.20014671325683595, + "step": 149600 + }, + { + "epoch": 50.15076639584555, + "grad_norm": 0.6646608710289001, + "learning_rate": 2.4935510887772196e-05, + "loss": 0.20111976623535155, + "step": 149700 + }, + { + "epoch": 50.18427003936678, + "grad_norm": 0.7369064092636108, + "learning_rate": 2.4918760469011724e-05, + "loss": 0.20281072616577148, + "step": 149800 + }, + { + "epoch": 50.217773682888016, + "grad_norm": 0.5978965163230896, + "learning_rate": 2.4902010050251257e-05, + "loss": 0.20169940948486328, + "step": 149900 + }, + { + "epoch": 50.251277326409244, + "grad_norm": 0.8313732743263245, + "learning_rate": 2.4885259631490785e-05, + "loss": 0.2015657615661621, + "step": 150000 + }, + { + "epoch": 50.28478096993048, + "grad_norm": 0.9016907811164856, + "learning_rate": 2.486850921273032e-05, + "loss": 0.2032327651977539, + "step": 150100 + }, + { + "epoch": 50.318284613451716, + "grad_norm": 0.7199917435646057, + "learning_rate": 2.485175879396985e-05, + "loss": 0.20292411804199217, + "step": 150200 + }, + { + "epoch": 50.351788256972945, + "grad_norm": 0.8585846424102783, + "learning_rate": 2.4835008375209382e-05, + "loss": 0.20314014434814454, + "step": 150300 + }, + { + "epoch": 50.38529190049418, + "grad_norm": 0.7034669518470764, + "learning_rate": 2.481825795644891e-05, + "loss": 0.20416894912719727, + "step": 150400 + }, + { + "epoch": 50.41879554401541, + "grad_norm": 0.865682065486908, + "learning_rate": 2.4801507537688443e-05, + "loss": 0.20476892471313476, + "step": 150500 + }, + { + "epoch": 50.452299187536646, + "grad_norm": 0.7300936579704285, + "learning_rate": 2.4784757118927972e-05, + "loss": 0.20488790512084962, + "step": 150600 + }, + { + "epoch": 50.485802831057875, + "grad_norm": 0.8905784487724304, + "learning_rate": 2.4768006700167508e-05, + "loss": 0.20429906845092774, + "step": 150700 + }, + { + "epoch": 50.51930647457911, + "grad_norm": 0.759925365447998, + "learning_rate": 2.4751256281407036e-05, + "loss": 0.2061992645263672, + "step": 150800 + }, + { + "epoch": 50.552810118100346, + "grad_norm": 0.7266499996185303, + "learning_rate": 2.473450586264657e-05, + "loss": 0.20576707839965822, + "step": 150900 + }, + { + "epoch": 50.586313761621575, + "grad_norm": 0.6730079650878906, + "learning_rate": 2.4717755443886097e-05, + "loss": 0.20497604370117187, + "step": 151000 + }, + { + "epoch": 50.61981740514281, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.470100502512563e-05, + "loss": 0.20579778671264648, + "step": 151100 + }, + { + "epoch": 50.65332104866404, + "grad_norm": 0.7999610304832458, + "learning_rate": 2.468425460636516e-05, + "loss": 0.20637252807617187, + "step": 151200 + }, + { + "epoch": 50.686824692185276, + "grad_norm": 0.7081186771392822, + "learning_rate": 2.4667504187604694e-05, + "loss": 0.20630395889282227, + "step": 151300 + }, + { + "epoch": 50.720328335706505, + "grad_norm": 0.8061164021492004, + "learning_rate": 2.4650753768844223e-05, + "loss": 0.20621145248413086, + "step": 151400 + }, + { + "epoch": 50.75383197922774, + "grad_norm": 0.826841413974762, + "learning_rate": 2.4634003350083755e-05, + "loss": 0.20574779510498048, + "step": 151500 + }, + { + "epoch": 50.78733562274898, + "grad_norm": 0.7742196321487427, + "learning_rate": 2.4617252931323284e-05, + "loss": 0.205941162109375, + "step": 151600 + }, + { + "epoch": 50.820839266270205, + "grad_norm": 0.8660677075386047, + "learning_rate": 2.4600502512562816e-05, + "loss": 0.20769458770751953, + "step": 151700 + }, + { + "epoch": 50.85434290979144, + "grad_norm": 0.7156419157981873, + "learning_rate": 2.4583752093802345e-05, + "loss": 0.20709629058837892, + "step": 151800 + }, + { + "epoch": 50.88784655331267, + "grad_norm": 0.812447190284729, + "learning_rate": 2.456716917922948e-05, + "loss": 0.20599342346191407, + "step": 151900 + }, + { + "epoch": 50.921350196833906, + "grad_norm": 0.8019922375679016, + "learning_rate": 2.4550418760469013e-05, + "loss": 0.20727943420410155, + "step": 152000 + }, + { + "epoch": 50.95485384035514, + "grad_norm": 0.7810946702957153, + "learning_rate": 2.4533668341708542e-05, + "loss": 0.2080386734008789, + "step": 152100 + }, + { + "epoch": 50.98835748387637, + "grad_norm": 0.7739458084106445, + "learning_rate": 2.4516917922948074e-05, + "loss": 0.2072319793701172, + "step": 152200 + }, + { + "epoch": 51.0217773682888, + "grad_norm": 0.7210680246353149, + "learning_rate": 2.4500167504187606e-05, + "loss": 0.20264469146728514, + "step": 152300 + }, + { + "epoch": 51.05528101181003, + "grad_norm": 0.7153304219245911, + "learning_rate": 2.448341708542714e-05, + "loss": 0.19857017517089845, + "step": 152400 + }, + { + "epoch": 51.08878465533127, + "grad_norm": 0.7581055760383606, + "learning_rate": 2.4466666666666667e-05, + "loss": 0.19956087112426757, + "step": 152500 + }, + { + "epoch": 51.1222882988525, + "grad_norm": 0.7437317967414856, + "learning_rate": 2.44499162479062e-05, + "loss": 0.19829078674316405, + "step": 152600 + }, + { + "epoch": 51.15579194237373, + "grad_norm": 0.6868230104446411, + "learning_rate": 2.443316582914573e-05, + "loss": 0.19977245330810547, + "step": 152700 + }, + { + "epoch": 51.18929558589497, + "grad_norm": 0.7176596522331238, + "learning_rate": 2.441641541038526e-05, + "loss": 0.20137237548828124, + "step": 152800 + }, + { + "epoch": 51.2227992294162, + "grad_norm": 0.7465003132820129, + "learning_rate": 2.439966499162479e-05, + "loss": 0.20151824951171876, + "step": 152900 + }, + { + "epoch": 51.25630287293743, + "grad_norm": 0.8134509325027466, + "learning_rate": 2.4382914572864325e-05, + "loss": 0.20129066467285156, + "step": 153000 + }, + { + "epoch": 51.28980651645867, + "grad_norm": 0.7882896065711975, + "learning_rate": 2.4366164154103854e-05, + "loss": 0.20372648239135743, + "step": 153100 + }, + { + "epoch": 51.3233101599799, + "grad_norm": 0.6261149048805237, + "learning_rate": 2.4349413735343386e-05, + "loss": 0.20317134857177735, + "step": 153200 + }, + { + "epoch": 51.35681380350113, + "grad_norm": 0.7279029488563538, + "learning_rate": 2.4332663316582915e-05, + "loss": 0.20203876495361328, + "step": 153300 + }, + { + "epoch": 51.39031744702236, + "grad_norm": 0.7463719248771667, + "learning_rate": 2.4315912897822447e-05, + "loss": 0.2032138252258301, + "step": 153400 + }, + { + "epoch": 51.4238210905436, + "grad_norm": 0.7583816051483154, + "learning_rate": 2.4299162479061976e-05, + "loss": 0.20314373016357423, + "step": 153500 + }, + { + "epoch": 51.45732473406483, + "grad_norm": 0.7088111042976379, + "learning_rate": 2.428241206030151e-05, + "loss": 0.20380254745483398, + "step": 153600 + }, + { + "epoch": 51.49082837758606, + "grad_norm": 0.6820314526557922, + "learning_rate": 2.426566164154104e-05, + "loss": 0.20396411895751954, + "step": 153700 + }, + { + "epoch": 51.5243320211073, + "grad_norm": 0.6890659332275391, + "learning_rate": 2.4248911222780573e-05, + "loss": 0.20465932846069335, + "step": 153800 + }, + { + "epoch": 51.55783566462853, + "grad_norm": 0.7410996556282043, + "learning_rate": 2.4232328308207705e-05, + "loss": 0.20433155059814453, + "step": 153900 + }, + { + "epoch": 51.59133930814976, + "grad_norm": 0.6642614006996155, + "learning_rate": 2.4215577889447237e-05, + "loss": 0.20583141326904297, + "step": 154000 + }, + { + "epoch": 51.62484295167099, + "grad_norm": 0.8036423921585083, + "learning_rate": 2.419882747068677e-05, + "loss": 0.20297210693359374, + "step": 154100 + }, + { + "epoch": 51.65834659519223, + "grad_norm": 0.7510450482368469, + "learning_rate": 2.4182077051926298e-05, + "loss": 0.20401430130004883, + "step": 154200 + }, + { + "epoch": 51.69185023871346, + "grad_norm": 0.7840591073036194, + "learning_rate": 2.416532663316583e-05, + "loss": 0.205728702545166, + "step": 154300 + }, + { + "epoch": 51.72535388223469, + "grad_norm": 0.8357808589935303, + "learning_rate": 2.414857621440536e-05, + "loss": 0.20580055236816405, + "step": 154400 + }, + { + "epoch": 51.75885752575593, + "grad_norm": 0.7890837788581848, + "learning_rate": 2.413182579564489e-05, + "loss": 0.2051936149597168, + "step": 154500 + }, + { + "epoch": 51.79236116927716, + "grad_norm": 1.031099557876587, + "learning_rate": 2.4115075376884424e-05, + "loss": 0.20656421661376953, + "step": 154600 + }, + { + "epoch": 51.82586481279839, + "grad_norm": 0.7498375773429871, + "learning_rate": 2.4098324958123956e-05, + "loss": 0.2050635528564453, + "step": 154700 + }, + { + "epoch": 51.85936845631962, + "grad_norm": 0.760242760181427, + "learning_rate": 2.4081574539363485e-05, + "loss": 0.20564306259155274, + "step": 154800 + }, + { + "epoch": 51.89287209984086, + "grad_norm": 0.7774176597595215, + "learning_rate": 2.4064824120603017e-05, + "loss": 0.20756494522094726, + "step": 154900 + }, + { + "epoch": 51.926375743362094, + "grad_norm": 0.7169613242149353, + "learning_rate": 2.4048073701842546e-05, + "loss": 0.2062942886352539, + "step": 155000 + }, + { + "epoch": 51.95987938688332, + "grad_norm": 0.8178589344024658, + "learning_rate": 2.4031323283082078e-05, + "loss": 0.20722549438476562, + "step": 155100 + }, + { + "epoch": 51.99338303040456, + "grad_norm": 0.9282923936843872, + "learning_rate": 2.401457286432161e-05, + "loss": 0.20599929809570314, + "step": 155200 + }, + { + "epoch": 52.02680291481698, + "grad_norm": 0.718063235282898, + "learning_rate": 2.3997822445561142e-05, + "loss": 0.19876413345336913, + "step": 155300 + }, + { + "epoch": 52.06030655833822, + "grad_norm": 0.8059532642364502, + "learning_rate": 2.398107202680067e-05, + "loss": 0.19822462081909178, + "step": 155400 + }, + { + "epoch": 52.093810201859455, + "grad_norm": 0.7145259380340576, + "learning_rate": 2.3964321608040203e-05, + "loss": 0.19868303298950196, + "step": 155500 + }, + { + "epoch": 52.127313845380684, + "grad_norm": 0.8659557700157166, + "learning_rate": 2.3947571189279732e-05, + "loss": 0.19922651290893556, + "step": 155600 + }, + { + "epoch": 52.16081748890192, + "grad_norm": 0.6749393939971924, + "learning_rate": 2.3930820770519264e-05, + "loss": 0.1997986602783203, + "step": 155700 + }, + { + "epoch": 52.19432113242315, + "grad_norm": 0.6439624428749084, + "learning_rate": 2.3914070351758793e-05, + "loss": 0.20102750778198242, + "step": 155800 + }, + { + "epoch": 52.227824775944384, + "grad_norm": 0.7515970468521118, + "learning_rate": 2.389748743718593e-05, + "loss": 0.20047502517700194, + "step": 155900 + }, + { + "epoch": 52.26132841946562, + "grad_norm": 0.806867241859436, + "learning_rate": 2.388073701842546e-05, + "loss": 0.19967298507690429, + "step": 156000 + }, + { + "epoch": 52.29483206298685, + "grad_norm": 0.6517553925514221, + "learning_rate": 2.3863986599664994e-05, + "loss": 0.20189517974853516, + "step": 156100 + }, + { + "epoch": 52.328335706508085, + "grad_norm": 0.7536884546279907, + "learning_rate": 2.3847236180904522e-05, + "loss": 0.20110305786132812, + "step": 156200 + }, + { + "epoch": 52.361839350029314, + "grad_norm": 0.6968570947647095, + "learning_rate": 2.3830485762144055e-05, + "loss": 0.20244617462158204, + "step": 156300 + }, + { + "epoch": 52.39534299355055, + "grad_norm": 0.7550085783004761, + "learning_rate": 2.3813735343383587e-05, + "loss": 0.20247106552124022, + "step": 156400 + }, + { + "epoch": 52.42884663707178, + "grad_norm": 0.720716118812561, + "learning_rate": 2.3796984924623116e-05, + "loss": 0.20291017532348632, + "step": 156500 + }, + { + "epoch": 52.462350280593014, + "grad_norm": 0.8645543456077576, + "learning_rate": 2.3780234505862648e-05, + "loss": 0.20293344497680665, + "step": 156600 + }, + { + "epoch": 52.49585392411425, + "grad_norm": 0.8600931167602539, + "learning_rate": 2.3763484087102177e-05, + "loss": 0.20278577804565429, + "step": 156700 + }, + { + "epoch": 52.52935756763548, + "grad_norm": 0.7974618673324585, + "learning_rate": 2.374673366834171e-05, + "loss": 0.202381591796875, + "step": 156800 + }, + { + "epoch": 52.562861211156715, + "grad_norm": 0.7992094159126282, + "learning_rate": 2.372998324958124e-05, + "loss": 0.20381240844726561, + "step": 156900 + }, + { + "epoch": 52.596364854677944, + "grad_norm": 0.8903921842575073, + "learning_rate": 2.3713232830820773e-05, + "loss": 0.20466848373413085, + "step": 157000 + }, + { + "epoch": 52.62986849819918, + "grad_norm": 0.7660692930221558, + "learning_rate": 2.3696482412060302e-05, + "loss": 0.20477258682250976, + "step": 157100 + }, + { + "epoch": 52.663372141720416, + "grad_norm": 0.9394494891166687, + "learning_rate": 2.3679731993299834e-05, + "loss": 0.20499584197998047, + "step": 157200 + }, + { + "epoch": 52.696875785241645, + "grad_norm": 0.7494113445281982, + "learning_rate": 2.3662981574539363e-05, + "loss": 0.20393524169921876, + "step": 157300 + }, + { + "epoch": 52.73037942876288, + "grad_norm": 0.8550491333007812, + "learning_rate": 2.3646231155778895e-05, + "loss": 0.2046040725708008, + "step": 157400 + }, + { + "epoch": 52.76388307228411, + "grad_norm": 0.7414348721504211, + "learning_rate": 2.3629480737018428e-05, + "loss": 0.2042390251159668, + "step": 157500 + }, + { + "epoch": 52.797386715805345, + "grad_norm": 0.7701572775840759, + "learning_rate": 2.361273031825796e-05, + "loss": 0.20498817443847656, + "step": 157600 + }, + { + "epoch": 52.830890359326574, + "grad_norm": 0.8651624917984009, + "learning_rate": 2.359597989949749e-05, + "loss": 0.2049662399291992, + "step": 157700 + }, + { + "epoch": 52.86439400284781, + "grad_norm": 0.7625434398651123, + "learning_rate": 2.357922948073702e-05, + "loss": 0.20496458053588867, + "step": 157800 + }, + { + "epoch": 52.897897646369046, + "grad_norm": 0.7538461685180664, + "learning_rate": 2.356247906197655e-05, + "loss": 0.20603256225585936, + "step": 157900 + }, + { + "epoch": 52.931401289890275, + "grad_norm": 0.8014910221099854, + "learning_rate": 2.3545728643216082e-05, + "loss": 0.20654550552368164, + "step": 158000 + }, + { + "epoch": 52.96490493341151, + "grad_norm": 0.7098953723907471, + "learning_rate": 2.3529145728643218e-05, + "loss": 0.2058616065979004, + "step": 158100 + }, + { + "epoch": 52.99840857693274, + "grad_norm": 0.7502704858779907, + "learning_rate": 2.3512395309882747e-05, + "loss": 0.20542961120605469, + "step": 158200 + }, + { + "epoch": 53.03182846134517, + "grad_norm": 0.7823647260665894, + "learning_rate": 2.349564489112228e-05, + "loss": 0.19869186401367187, + "step": 158300 + }, + { + "epoch": 53.06533210486641, + "grad_norm": 0.6451433300971985, + "learning_rate": 2.3478894472361808e-05, + "loss": 0.19836278915405273, + "step": 158400 + }, + { + "epoch": 53.098835748387636, + "grad_norm": 0.778315544128418, + "learning_rate": 2.346214405360134e-05, + "loss": 0.196907901763916, + "step": 158500 + }, + { + "epoch": 53.13233939190887, + "grad_norm": 0.7905980944633484, + "learning_rate": 2.3445393634840872e-05, + "loss": 0.19891220092773437, + "step": 158600 + }, + { + "epoch": 53.1658430354301, + "grad_norm": 0.7197417616844177, + "learning_rate": 2.3428643216080404e-05, + "loss": 0.19840576171875, + "step": 158700 + }, + { + "epoch": 53.199346678951336, + "grad_norm": 0.8555814623832703, + "learning_rate": 2.3411892797319933e-05, + "loss": 0.20008617401123047, + "step": 158800 + }, + { + "epoch": 53.23285032247257, + "grad_norm": 0.7590495944023132, + "learning_rate": 2.3395142378559465e-05, + "loss": 0.20077667236328126, + "step": 158900 + }, + { + "epoch": 53.2663539659938, + "grad_norm": 0.7683301568031311, + "learning_rate": 2.3378391959798994e-05, + "loss": 0.19980268478393554, + "step": 159000 + }, + { + "epoch": 53.29985760951504, + "grad_norm": 0.7807407379150391, + "learning_rate": 2.3361641541038526e-05, + "loss": 0.20026128768920898, + "step": 159100 + }, + { + "epoch": 53.333361253036266, + "grad_norm": 0.8405656218528748, + "learning_rate": 2.334489112227806e-05, + "loss": 0.20058374404907225, + "step": 159200 + }, + { + "epoch": 53.3668648965575, + "grad_norm": 0.9434088468551636, + "learning_rate": 2.332814070351759e-05, + "loss": 0.2012481689453125, + "step": 159300 + }, + { + "epoch": 53.40036854007873, + "grad_norm": 0.7459748387336731, + "learning_rate": 2.331139028475712e-05, + "loss": 0.20088954925537109, + "step": 159400 + }, + { + "epoch": 53.433872183599966, + "grad_norm": 0.7078500390052795, + "learning_rate": 2.3294639865996652e-05, + "loss": 0.20286613464355469, + "step": 159500 + }, + { + "epoch": 53.4673758271212, + "grad_norm": 0.8187021017074585, + "learning_rate": 2.327788944723618e-05, + "loss": 0.2021192741394043, + "step": 159600 + }, + { + "epoch": 53.50087947064243, + "grad_norm": 0.8571094274520874, + "learning_rate": 2.3261139028475713e-05, + "loss": 0.20223554611206054, + "step": 159700 + }, + { + "epoch": 53.53438311416367, + "grad_norm": 0.7480899691581726, + "learning_rate": 2.3244388609715245e-05, + "loss": 0.20176963806152343, + "step": 159800 + }, + { + "epoch": 53.567886757684896, + "grad_norm": 0.6709027886390686, + "learning_rate": 2.3227638190954777e-05, + "loss": 0.20310573577880858, + "step": 159900 + }, + { + "epoch": 53.60139040120613, + "grad_norm": 0.8324502110481262, + "learning_rate": 2.3210887772194306e-05, + "loss": 0.20389171600341796, + "step": 160000 + }, + { + "epoch": 53.63489404472736, + "grad_norm": 0.7991625666618347, + "learning_rate": 2.3194304857621442e-05, + "loss": 0.20335477828979492, + "step": 160100 + }, + { + "epoch": 53.6683976882486, + "grad_norm": 0.8041797876358032, + "learning_rate": 2.3177554438860974e-05, + "loss": 0.20338481903076172, + "step": 160200 + }, + { + "epoch": 53.70190133176983, + "grad_norm": 0.7331723570823669, + "learning_rate": 2.3160804020100503e-05, + "loss": 0.20225767135620118, + "step": 160300 + }, + { + "epoch": 53.73540497529106, + "grad_norm": 0.8455171585083008, + "learning_rate": 2.3144053601340035e-05, + "loss": 0.20394590377807617, + "step": 160400 + }, + { + "epoch": 53.7689086188123, + "grad_norm": 0.7466434836387634, + "learning_rate": 2.3127303182579564e-05, + "loss": 0.20405231475830077, + "step": 160500 + }, + { + "epoch": 53.802412262333526, + "grad_norm": 0.7956470847129822, + "learning_rate": 2.3110552763819096e-05, + "loss": 0.20502872467041017, + "step": 160600 + }, + { + "epoch": 53.83591590585476, + "grad_norm": 0.8183136582374573, + "learning_rate": 2.3093802345058625e-05, + "loss": 0.20336063385009764, + "step": 160700 + }, + { + "epoch": 53.869419549376, + "grad_norm": 0.6803155541419983, + "learning_rate": 2.307705192629816e-05, + "loss": 0.20551418304443358, + "step": 160800 + }, + { + "epoch": 53.90292319289723, + "grad_norm": 0.7090324759483337, + "learning_rate": 2.306030150753769e-05, + "loss": 0.20483921051025392, + "step": 160900 + }, + { + "epoch": 53.93642683641846, + "grad_norm": 0.6998985409736633, + "learning_rate": 2.304355108877722e-05, + "loss": 0.20418329238891603, + "step": 161000 + }, + { + "epoch": 53.96993047993969, + "grad_norm": 0.7103771567344666, + "learning_rate": 2.302680067001675e-05, + "loss": 0.20509437561035157, + "step": 161100 + }, + { + "epoch": 54.00335036435212, + "grad_norm": 0.9205202460289001, + "learning_rate": 2.3010050251256283e-05, + "loss": 0.20359134674072266, + "step": 161200 + }, + { + "epoch": 54.03685400787336, + "grad_norm": 0.7976627349853516, + "learning_rate": 2.299329983249581e-05, + "loss": 0.19689498901367186, + "step": 161300 + }, + { + "epoch": 54.07035765139459, + "grad_norm": 0.821431040763855, + "learning_rate": 2.2976549413735344e-05, + "loss": 0.1979433059692383, + "step": 161400 + }, + { + "epoch": 54.10386129491582, + "grad_norm": 0.7001577019691467, + "learning_rate": 2.2959798994974876e-05, + "loss": 0.1971571159362793, + "step": 161500 + }, + { + "epoch": 54.13736493843705, + "grad_norm": 0.8949475884437561, + "learning_rate": 2.2943048576214408e-05, + "loss": 0.19859142303466798, + "step": 161600 + }, + { + "epoch": 54.17086858195829, + "grad_norm": 0.7298758029937744, + "learning_rate": 2.2926298157453937e-05, + "loss": 0.19952430725097656, + "step": 161700 + }, + { + "epoch": 54.204372225479524, + "grad_norm": 0.8920609951019287, + "learning_rate": 2.290954773869347e-05, + "loss": 0.1987653160095215, + "step": 161800 + }, + { + "epoch": 54.23787586900075, + "grad_norm": 0.7720832824707031, + "learning_rate": 2.2892797319932998e-05, + "loss": 0.19959186553955077, + "step": 161900 + }, + { + "epoch": 54.27137951252199, + "grad_norm": 0.7590644359588623, + "learning_rate": 2.287604690117253e-05, + "loss": 0.19991098403930663, + "step": 162000 + }, + { + "epoch": 54.30488315604322, + "grad_norm": 0.7114115357398987, + "learning_rate": 2.2859296482412062e-05, + "loss": 0.20001384735107422, + "step": 162100 + }, + { + "epoch": 54.338386799564454, + "grad_norm": 0.6103782057762146, + "learning_rate": 2.28427135678392e-05, + "loss": 0.2000261116027832, + "step": 162200 + }, + { + "epoch": 54.37189044308568, + "grad_norm": 0.678782045841217, + "learning_rate": 2.2825963149078727e-05, + "loss": 0.2014828109741211, + "step": 162300 + }, + { + "epoch": 54.40539408660692, + "grad_norm": 0.8127717971801758, + "learning_rate": 2.280921273031826e-05, + "loss": 0.1989847755432129, + "step": 162400 + }, + { + "epoch": 54.438897730128154, + "grad_norm": 0.8343021273612976, + "learning_rate": 2.279246231155779e-05, + "loss": 0.20117862701416014, + "step": 162500 + }, + { + "epoch": 54.47240137364938, + "grad_norm": 0.7219998240470886, + "learning_rate": 2.277571189279732e-05, + "loss": 0.20171173095703124, + "step": 162600 + }, + { + "epoch": 54.50590501717062, + "grad_norm": 0.817757785320282, + "learning_rate": 2.2758961474036853e-05, + "loss": 0.20216232299804687, + "step": 162700 + }, + { + "epoch": 54.53940866069185, + "grad_norm": 0.8951203227043152, + "learning_rate": 2.274221105527638e-05, + "loss": 0.20124095916748047, + "step": 162800 + }, + { + "epoch": 54.572912304213084, + "grad_norm": 0.8889951109886169, + "learning_rate": 2.2725460636515914e-05, + "loss": 0.20379587173461913, + "step": 162900 + }, + { + "epoch": 54.60641594773432, + "grad_norm": 0.8064408898353577, + "learning_rate": 2.2708710217755442e-05, + "loss": 0.20114097595214844, + "step": 163000 + }, + { + "epoch": 54.63991959125555, + "grad_norm": 0.6613183617591858, + "learning_rate": 2.2691959798994978e-05, + "loss": 0.20306098937988282, + "step": 163100 + }, + { + "epoch": 54.673423234776784, + "grad_norm": 0.8730353713035583, + "learning_rate": 2.2675209380234507e-05, + "loss": 0.20401838302612305, + "step": 163200 + }, + { + "epoch": 54.70692687829801, + "grad_norm": 0.7803497314453125, + "learning_rate": 2.265845896147404e-05, + "loss": 0.20256214141845702, + "step": 163300 + }, + { + "epoch": 54.74043052181925, + "grad_norm": 0.8791249394416809, + "learning_rate": 2.2641708542713568e-05, + "loss": 0.20302362442016603, + "step": 163400 + }, + { + "epoch": 54.77393416534048, + "grad_norm": 0.8422548770904541, + "learning_rate": 2.26249581239531e-05, + "loss": 0.2037299919128418, + "step": 163500 + }, + { + "epoch": 54.807437808861714, + "grad_norm": 0.6493898630142212, + "learning_rate": 2.260820770519263e-05, + "loss": 0.20337121963500976, + "step": 163600 + }, + { + "epoch": 54.84094145238295, + "grad_norm": 0.8213750720024109, + "learning_rate": 2.259145728643216e-05, + "loss": 0.20318853378295898, + "step": 163700 + }, + { + "epoch": 54.87444509590418, + "grad_norm": 0.9080546498298645, + "learning_rate": 2.2574706867671693e-05, + "loss": 0.20395517349243164, + "step": 163800 + }, + { + "epoch": 54.907948739425414, + "grad_norm": 0.9570611715316772, + "learning_rate": 2.2557956448911226e-05, + "loss": 0.20360021591186522, + "step": 163900 + }, + { + "epoch": 54.94145238294664, + "grad_norm": 0.848283588886261, + "learning_rate": 2.2541206030150754e-05, + "loss": 0.20453887939453125, + "step": 164000 + }, + { + "epoch": 54.97495602646788, + "grad_norm": 0.8141411542892456, + "learning_rate": 2.2524455611390287e-05, + "loss": 0.20472782135009765, + "step": 164100 + }, + { + "epoch": 55.00837591088031, + "grad_norm": 0.6006379723548889, + "learning_rate": 2.2507872696817423e-05, + "loss": 0.2019051742553711, + "step": 164200 + }, + { + "epoch": 55.04187955440154, + "grad_norm": 0.6700722575187683, + "learning_rate": 2.249112227805695e-05, + "loss": 0.1957373046875, + "step": 164300 + }, + { + "epoch": 55.075383197922775, + "grad_norm": 0.7176284193992615, + "learning_rate": 2.2474371859296484e-05, + "loss": 0.1963091278076172, + "step": 164400 + }, + { + "epoch": 55.108886841444004, + "grad_norm": 0.6696990132331848, + "learning_rate": 2.2457621440536016e-05, + "loss": 0.19629579544067383, + "step": 164500 + }, + { + "epoch": 55.14239048496524, + "grad_norm": 0.7618410587310791, + "learning_rate": 2.2440871021775545e-05, + "loss": 0.19794061660766601, + "step": 164600 + }, + { + "epoch": 55.175894128486476, + "grad_norm": 0.6654366850852966, + "learning_rate": 2.2424120603015077e-05, + "loss": 0.1991598892211914, + "step": 164700 + }, + { + "epoch": 55.209397772007705, + "grad_norm": 0.9601466059684753, + "learning_rate": 2.240737018425461e-05, + "loss": 0.19887115478515624, + "step": 164800 + }, + { + "epoch": 55.24290141552894, + "grad_norm": 0.766276478767395, + "learning_rate": 2.2390619765494138e-05, + "loss": 0.19863889694213868, + "step": 164900 + }, + { + "epoch": 55.27640505905017, + "grad_norm": 0.7112438678741455, + "learning_rate": 2.237386934673367e-05, + "loss": 0.19905502319335938, + "step": 165000 + }, + { + "epoch": 55.309908702571406, + "grad_norm": 0.6443644165992737, + "learning_rate": 2.23571189279732e-05, + "loss": 0.19937538146972655, + "step": 165100 + }, + { + "epoch": 55.343412346092634, + "grad_norm": 0.8128257393836975, + "learning_rate": 2.234036850921273e-05, + "loss": 0.19976985931396485, + "step": 165200 + }, + { + "epoch": 55.37691598961387, + "grad_norm": 0.7452270984649658, + "learning_rate": 2.232361809045226e-05, + "loss": 0.19971412658691406, + "step": 165300 + }, + { + "epoch": 55.410419633135106, + "grad_norm": 0.7263997197151184, + "learning_rate": 2.2306867671691795e-05, + "loss": 0.19973045349121094, + "step": 165400 + }, + { + "epoch": 55.443923276656335, + "grad_norm": 0.7190716862678528, + "learning_rate": 2.2290117252931324e-05, + "loss": 0.20105569839477538, + "step": 165500 + }, + { + "epoch": 55.47742692017757, + "grad_norm": 0.7603322863578796, + "learning_rate": 2.2273366834170857e-05, + "loss": 0.20152530670166016, + "step": 165600 + }, + { + "epoch": 55.5109305636988, + "grad_norm": 0.6346855759620667, + "learning_rate": 2.2256616415410385e-05, + "loss": 0.20098255157470704, + "step": 165700 + }, + { + "epoch": 55.544434207220036, + "grad_norm": 0.6980137228965759, + "learning_rate": 2.2239865996649918e-05, + "loss": 0.200362548828125, + "step": 165800 + }, + { + "epoch": 55.57793785074127, + "grad_norm": 0.7294763922691345, + "learning_rate": 2.2223115577889446e-05, + "loss": 0.20156070709228516, + "step": 165900 + }, + { + "epoch": 55.6114414942625, + "grad_norm": 0.7770695090293884, + "learning_rate": 2.2206365159128982e-05, + "loss": 0.20071981430053712, + "step": 166000 + }, + { + "epoch": 55.644945137783736, + "grad_norm": 0.6916683316230774, + "learning_rate": 2.218961474036851e-05, + "loss": 0.2019366455078125, + "step": 166100 + }, + { + "epoch": 55.678448781304965, + "grad_norm": 0.6621333360671997, + "learning_rate": 2.2172864321608043e-05, + "loss": 0.2023235321044922, + "step": 166200 + }, + { + "epoch": 55.7119524248262, + "grad_norm": 0.742199718952179, + "learning_rate": 2.2156281407035176e-05, + "loss": 0.2024928092956543, + "step": 166300 + }, + { + "epoch": 55.74545606834743, + "grad_norm": 0.6829848289489746, + "learning_rate": 2.2139530988274708e-05, + "loss": 0.20235004425048828, + "step": 166400 + }, + { + "epoch": 55.778959711868666, + "grad_norm": 0.6780540943145752, + "learning_rate": 2.212278056951424e-05, + "loss": 0.2021579360961914, + "step": 166500 + }, + { + "epoch": 55.8124633553899, + "grad_norm": 0.7976480722427368, + "learning_rate": 2.210603015075377e-05, + "loss": 0.20198610305786133, + "step": 166600 + }, + { + "epoch": 55.84596699891113, + "grad_norm": 0.7261124849319458, + "learning_rate": 2.20892797319933e-05, + "loss": 0.20343488693237305, + "step": 166700 + }, + { + "epoch": 55.879470642432366, + "grad_norm": 0.7780104279518127, + "learning_rate": 2.207252931323283e-05, + "loss": 0.20361764907836913, + "step": 166800 + }, + { + "epoch": 55.912974285953595, + "grad_norm": 0.6498653292655945, + "learning_rate": 2.2055778894472362e-05, + "loss": 0.20432092666625976, + "step": 166900 + }, + { + "epoch": 55.94647792947483, + "grad_norm": 0.8899915814399719, + "learning_rate": 2.2039028475711894e-05, + "loss": 0.2044738006591797, + "step": 167000 + }, + { + "epoch": 55.97998157299606, + "grad_norm": 0.703768789768219, + "learning_rate": 2.2022278056951426e-05, + "loss": 0.2027983283996582, + "step": 167100 + }, + { + "epoch": 56.01340145740849, + "grad_norm": 0.6999773979187012, + "learning_rate": 2.2005527638190955e-05, + "loss": 0.19977279663085937, + "step": 167200 + }, + { + "epoch": 56.04690510092973, + "grad_norm": 0.7234398126602173, + "learning_rate": 2.1988777219430487e-05, + "loss": 0.19637002944946289, + "step": 167300 + }, + { + "epoch": 56.080408744450956, + "grad_norm": 0.7196521162986755, + "learning_rate": 2.1972026800670016e-05, + "loss": 0.1961227035522461, + "step": 167400 + }, + { + "epoch": 56.11391238797219, + "grad_norm": 0.7114014625549316, + "learning_rate": 2.195527638190955e-05, + "loss": 0.19647451400756835, + "step": 167500 + }, + { + "epoch": 56.14741603149343, + "grad_norm": 0.7853075861930847, + "learning_rate": 2.1938525963149077e-05, + "loss": 0.19717487335205078, + "step": 167600 + }, + { + "epoch": 56.18091967501466, + "grad_norm": 0.6808475852012634, + "learning_rate": 2.1921775544388613e-05, + "loss": 0.19807977676391603, + "step": 167700 + }, + { + "epoch": 56.21442331853589, + "grad_norm": 0.6541131734848022, + "learning_rate": 2.1905025125628142e-05, + "loss": 0.19757047653198243, + "step": 167800 + }, + { + "epoch": 56.24792696205712, + "grad_norm": 0.7412530183792114, + "learning_rate": 2.1888274706867674e-05, + "loss": 0.19785118103027344, + "step": 167900 + }, + { + "epoch": 56.28143060557836, + "grad_norm": 0.7527230978012085, + "learning_rate": 2.1871524288107203e-05, + "loss": 0.19891765594482422, + "step": 168000 + }, + { + "epoch": 56.314934249099586, + "grad_norm": 0.7702918648719788, + "learning_rate": 2.1854773869346735e-05, + "loss": 0.19912639617919922, + "step": 168100 + }, + { + "epoch": 56.34843789262082, + "grad_norm": 0.9410870671272278, + "learning_rate": 2.1838023450586264e-05, + "loss": 0.19807853698730468, + "step": 168200 + }, + { + "epoch": 56.38194153614206, + "grad_norm": 0.7551661133766174, + "learning_rate": 2.18212730318258e-05, + "loss": 0.19915082931518555, + "step": 168300 + }, + { + "epoch": 56.41544517966329, + "grad_norm": 0.8068090081214905, + "learning_rate": 2.1804522613065328e-05, + "loss": 0.19918592453002928, + "step": 168400 + }, + { + "epoch": 56.44894882318452, + "grad_norm": 0.8415470123291016, + "learning_rate": 2.1787939698492464e-05, + "loss": 0.19998703002929688, + "step": 168500 + }, + { + "epoch": 56.48245246670575, + "grad_norm": 0.6690595149993896, + "learning_rate": 2.1771189279731993e-05, + "loss": 0.2002570152282715, + "step": 168600 + }, + { + "epoch": 56.51595611022699, + "grad_norm": 0.8166069984436035, + "learning_rate": 2.1754438860971525e-05, + "loss": 0.20179470062255858, + "step": 168700 + }, + { + "epoch": 56.54945975374822, + "grad_norm": 0.7660237550735474, + "learning_rate": 2.1737688442211057e-05, + "loss": 0.20062505722045898, + "step": 168800 + }, + { + "epoch": 56.58296339726945, + "grad_norm": 0.8243525624275208, + "learning_rate": 2.1720938023450586e-05, + "loss": 0.2011745071411133, + "step": 168900 + }, + { + "epoch": 56.61646704079069, + "grad_norm": 0.7057405114173889, + "learning_rate": 2.170418760469012e-05, + "loss": 0.2007113838195801, + "step": 169000 + }, + { + "epoch": 56.64997068431192, + "grad_norm": 0.8495818376541138, + "learning_rate": 2.1687437185929647e-05, + "loss": 0.20225597381591798, + "step": 169100 + }, + { + "epoch": 56.68347432783315, + "grad_norm": 0.6715584397315979, + "learning_rate": 2.167068676716918e-05, + "loss": 0.20023557662963867, + "step": 169200 + }, + { + "epoch": 56.71697797135438, + "grad_norm": 0.6438612937927246, + "learning_rate": 2.1653936348408708e-05, + "loss": 0.2012915802001953, + "step": 169300 + }, + { + "epoch": 56.75048161487562, + "grad_norm": 0.854141116142273, + "learning_rate": 2.1637185929648244e-05, + "loss": 0.20242010116577147, + "step": 169400 + }, + { + "epoch": 56.783985258396854, + "grad_norm": 0.7206624150276184, + "learning_rate": 2.1620435510887773e-05, + "loss": 0.20245513916015626, + "step": 169500 + }, + { + "epoch": 56.81748890191808, + "grad_norm": 0.6744206547737122, + "learning_rate": 2.1603685092127305e-05, + "loss": 0.20179567337036133, + "step": 169600 + }, + { + "epoch": 56.85099254543932, + "grad_norm": 0.7552564740180969, + "learning_rate": 2.1586934673366834e-05, + "loss": 0.20230600357055664, + "step": 169700 + }, + { + "epoch": 56.88449618896055, + "grad_norm": 0.8486445546150208, + "learning_rate": 2.1570184254606366e-05, + "loss": 0.20117643356323242, + "step": 169800 + }, + { + "epoch": 56.91799983248178, + "grad_norm": 0.5880848169326782, + "learning_rate": 2.1553433835845895e-05, + "loss": 0.20292966842651367, + "step": 169900 + }, + { + "epoch": 56.95150347600301, + "grad_norm": 0.7727257013320923, + "learning_rate": 2.153668341708543e-05, + "loss": 0.2035549736022949, + "step": 170000 + }, + { + "epoch": 56.98500711952425, + "grad_norm": 0.7095633745193481, + "learning_rate": 2.151993299832496e-05, + "loss": 0.20257196426391602, + "step": 170100 + }, + { + "epoch": 57.01842700393668, + "grad_norm": 0.5395858883857727, + "learning_rate": 2.150318257956449e-05, + "loss": 0.19870391845703125, + "step": 170200 + }, + { + "epoch": 57.05193064745791, + "grad_norm": 0.6598409414291382, + "learning_rate": 2.148643216080402e-05, + "loss": 0.1953832244873047, + "step": 170300 + }, + { + "epoch": 57.085434290979144, + "grad_norm": 0.9595073461532593, + "learning_rate": 2.1469681742043552e-05, + "loss": 0.19685894012451172, + "step": 170400 + }, + { + "epoch": 57.11893793450038, + "grad_norm": 0.5701305866241455, + "learning_rate": 2.1453098827470688e-05, + "loss": 0.19607532501220704, + "step": 170500 + }, + { + "epoch": 57.15244157802161, + "grad_norm": 0.6835476160049438, + "learning_rate": 2.143634840871022e-05, + "loss": 0.1967610549926758, + "step": 170600 + }, + { + "epoch": 57.185945221542845, + "grad_norm": 0.5928249955177307, + "learning_rate": 2.141959798994975e-05, + "loss": 0.19592588424682617, + "step": 170700 + }, + { + "epoch": 57.219448865064074, + "grad_norm": 0.7820493578910828, + "learning_rate": 2.140284757118928e-05, + "loss": 0.19711441040039063, + "step": 170800 + }, + { + "epoch": 57.25295250858531, + "grad_norm": 0.7720481753349304, + "learning_rate": 2.138609715242881e-05, + "loss": 0.19725584030151366, + "step": 170900 + }, + { + "epoch": 57.28645615210654, + "grad_norm": 0.7418736219406128, + "learning_rate": 2.1369346733668343e-05, + "loss": 0.19777252197265624, + "step": 171000 + }, + { + "epoch": 57.319959795627774, + "grad_norm": 0.7071073055267334, + "learning_rate": 2.1352596314907875e-05, + "loss": 0.19808469772338866, + "step": 171100 + }, + { + "epoch": 57.35346343914901, + "grad_norm": 0.7375087738037109, + "learning_rate": 2.1335845896147404e-05, + "loss": 0.19767127990722655, + "step": 171200 + }, + { + "epoch": 57.38696708267024, + "grad_norm": 0.8487064838409424, + "learning_rate": 2.1319095477386936e-05, + "loss": 0.19986190795898437, + "step": 171300 + }, + { + "epoch": 57.420470726191475, + "grad_norm": 0.8072951436042786, + "learning_rate": 2.1302345058626465e-05, + "loss": 0.19746374130249023, + "step": 171400 + }, + { + "epoch": 57.453974369712704, + "grad_norm": 0.8079342842102051, + "learning_rate": 2.1285594639865997e-05, + "loss": 0.19960382461547851, + "step": 171500 + }, + { + "epoch": 57.48747801323394, + "grad_norm": 0.8104588389396667, + "learning_rate": 2.126884422110553e-05, + "loss": 0.20039827346801758, + "step": 171600 + }, + { + "epoch": 57.520981656755175, + "grad_norm": 0.753643274307251, + "learning_rate": 2.125209380234506e-05, + "loss": 0.1997998046875, + "step": 171700 + }, + { + "epoch": 57.554485300276404, + "grad_norm": 0.8228442668914795, + "learning_rate": 2.123534338358459e-05, + "loss": 0.19931909561157227, + "step": 171800 + }, + { + "epoch": 57.58798894379764, + "grad_norm": 0.8214404582977295, + "learning_rate": 2.1218592964824122e-05, + "loss": 0.19911916732788085, + "step": 171900 + }, + { + "epoch": 57.62149258731887, + "grad_norm": 0.6019760370254517, + "learning_rate": 2.120184254606365e-05, + "loss": 0.2016813850402832, + "step": 172000 + }, + { + "epoch": 57.654996230840105, + "grad_norm": 0.6880699396133423, + "learning_rate": 2.1185092127303183e-05, + "loss": 0.19929651260375977, + "step": 172100 + }, + { + "epoch": 57.688499874361334, + "grad_norm": 0.69806969165802, + "learning_rate": 2.1168341708542712e-05, + "loss": 0.2015073585510254, + "step": 172200 + }, + { + "epoch": 57.72200351788257, + "grad_norm": 0.6724705100059509, + "learning_rate": 2.1151591289782248e-05, + "loss": 0.20101812362670898, + "step": 172300 + }, + { + "epoch": 57.755507161403806, + "grad_norm": 0.8854671716690063, + "learning_rate": 2.1134840871021777e-05, + "loss": 0.20211099624633788, + "step": 172400 + }, + { + "epoch": 57.789010804925034, + "grad_norm": 0.7592790722846985, + "learning_rate": 2.111809045226131e-05, + "loss": 0.20073314666748046, + "step": 172500 + }, + { + "epoch": 57.82251444844627, + "grad_norm": 0.7253840565681458, + "learning_rate": 2.1101340033500838e-05, + "loss": 0.2017323112487793, + "step": 172600 + }, + { + "epoch": 57.8560180919675, + "grad_norm": 0.7471290230751038, + "learning_rate": 2.1084757118927977e-05, + "loss": 0.20244625091552734, + "step": 172700 + }, + { + "epoch": 57.889521735488735, + "grad_norm": 0.8345232009887695, + "learning_rate": 2.1068006700167506e-05, + "loss": 0.20169891357421876, + "step": 172800 + }, + { + "epoch": 57.923025379009964, + "grad_norm": 0.8078505396842957, + "learning_rate": 2.1051256281407038e-05, + "loss": 0.20322864532470702, + "step": 172900 + }, + { + "epoch": 57.9565290225312, + "grad_norm": 0.8274567127227783, + "learning_rate": 2.1034505862646567e-05, + "loss": 0.20089473724365234, + "step": 173000 + }, + { + "epoch": 57.990032666052436, + "grad_norm": 0.6914857029914856, + "learning_rate": 2.10177554438861e-05, + "loss": 0.20304906845092774, + "step": 173100 + }, + { + "epoch": 58.02345255046486, + "grad_norm": 0.6851274371147156, + "learning_rate": 2.1001005025125628e-05, + "loss": 0.1973126220703125, + "step": 173200 + }, + { + "epoch": 58.056956193986096, + "grad_norm": 0.5594986081123352, + "learning_rate": 2.098425460636516e-05, + "loss": 0.19482255935668946, + "step": 173300 + }, + { + "epoch": 58.09045983750733, + "grad_norm": 0.6892759203910828, + "learning_rate": 2.0967504187604692e-05, + "loss": 0.19560087203979493, + "step": 173400 + }, + { + "epoch": 58.12396348102856, + "grad_norm": 0.6023077368736267, + "learning_rate": 2.095075376884422e-05, + "loss": 0.1957664108276367, + "step": 173500 + }, + { + "epoch": 58.1574671245498, + "grad_norm": 0.6524220108985901, + "learning_rate": 2.0934003350083753e-05, + "loss": 0.19625062942504884, + "step": 173600 + }, + { + "epoch": 58.190970768071026, + "grad_norm": 0.9801384806632996, + "learning_rate": 2.0917252931323282e-05, + "loss": 0.1955522346496582, + "step": 173700 + }, + { + "epoch": 58.22447441159226, + "grad_norm": 0.8744773864746094, + "learning_rate": 2.0900502512562814e-05, + "loss": 0.19638490676879883, + "step": 173800 + }, + { + "epoch": 58.25797805511349, + "grad_norm": 0.6583356261253357, + "learning_rate": 2.0883752093802346e-05, + "loss": 0.1966208267211914, + "step": 173900 + }, + { + "epoch": 58.291481698634726, + "grad_norm": 0.6736335754394531, + "learning_rate": 2.086700167504188e-05, + "loss": 0.1969454765319824, + "step": 174000 + }, + { + "epoch": 58.32498534215596, + "grad_norm": 0.9140983819961548, + "learning_rate": 2.0850251256281408e-05, + "loss": 0.19811725616455078, + "step": 174100 + }, + { + "epoch": 58.35848898567719, + "grad_norm": 0.825357973575592, + "learning_rate": 2.083350083752094e-05, + "loss": 0.19800840377807616, + "step": 174200 + }, + { + "epoch": 58.39199262919843, + "grad_norm": 0.8800440430641174, + "learning_rate": 2.081675041876047e-05, + "loss": 0.1982166862487793, + "step": 174300 + }, + { + "epoch": 58.425496272719656, + "grad_norm": 0.7681903839111328, + "learning_rate": 2.08e-05, + "loss": 0.199152889251709, + "step": 174400 + }, + { + "epoch": 58.45899991624089, + "grad_norm": 0.7516371607780457, + "learning_rate": 2.0783249581239533e-05, + "loss": 0.1978353500366211, + "step": 174500 + }, + { + "epoch": 58.49250355976213, + "grad_norm": 0.7671756148338318, + "learning_rate": 2.0766499162479065e-05, + "loss": 0.19854022979736327, + "step": 174600 + }, + { + "epoch": 58.526007203283356, + "grad_norm": 0.6201814413070679, + "learning_rate": 2.0749916247906198e-05, + "loss": 0.19920494079589843, + "step": 174700 + }, + { + "epoch": 58.55951084680459, + "grad_norm": 0.8798500299453735, + "learning_rate": 2.073316582914573e-05, + "loss": 0.20001602172851562, + "step": 174800 + }, + { + "epoch": 58.59301449032582, + "grad_norm": 0.5957375168800354, + "learning_rate": 2.071641541038526e-05, + "loss": 0.1991959571838379, + "step": 174900 + }, + { + "epoch": 58.62651813384706, + "grad_norm": 0.84260493516922, + "learning_rate": 2.069966499162479e-05, + "loss": 0.20048974990844726, + "step": 175000 + }, + { + "epoch": 58.660021777368286, + "grad_norm": 0.6994961500167847, + "learning_rate": 2.0682914572864323e-05, + "loss": 0.19937900543212891, + "step": 175100 + }, + { + "epoch": 58.69352542088952, + "grad_norm": 0.7235148549079895, + "learning_rate": 2.0666164154103852e-05, + "loss": 0.20066232681274415, + "step": 175200 + }, + { + "epoch": 58.72702906441076, + "grad_norm": 0.7542918920516968, + "learning_rate": 2.0649413735343384e-05, + "loss": 0.20042539596557618, + "step": 175300 + }, + { + "epoch": 58.760532707931986, + "grad_norm": 0.6566546559333801, + "learning_rate": 2.0632663316582916e-05, + "loss": 0.20085683822631836, + "step": 175400 + }, + { + "epoch": 58.79403635145322, + "grad_norm": 0.7434055209159851, + "learning_rate": 2.0615912897822445e-05, + "loss": 0.20140844345092773, + "step": 175500 + }, + { + "epoch": 58.82753999497445, + "grad_norm": 0.6652776002883911, + "learning_rate": 2.0599162479061977e-05, + "loss": 0.2017723274230957, + "step": 175600 + }, + { + "epoch": 58.86104363849569, + "grad_norm": 0.7438784837722778, + "learning_rate": 2.058241206030151e-05, + "loss": 0.20224170684814452, + "step": 175700 + }, + { + "epoch": 58.894547282016916, + "grad_norm": 0.842480480670929, + "learning_rate": 2.056566164154104e-05, + "loss": 0.2010243797302246, + "step": 175800 + }, + { + "epoch": 58.92805092553815, + "grad_norm": 0.777508020401001, + "learning_rate": 2.054891122278057e-05, + "loss": 0.20120513916015625, + "step": 175900 + }, + { + "epoch": 58.96155456905939, + "grad_norm": 0.7863830327987671, + "learning_rate": 2.05321608040201e-05, + "loss": 0.20216922760009765, + "step": 176000 + }, + { + "epoch": 58.995058212580616, + "grad_norm": 0.720203161239624, + "learning_rate": 2.051541038525963e-05, + "loss": 0.20130184173583984, + "step": 176100 + }, + { + "epoch": 59.02847809699305, + "grad_norm": 0.7132588028907776, + "learning_rate": 2.0498659966499164e-05, + "loss": 0.1958163070678711, + "step": 176200 + }, + { + "epoch": 59.061981740514284, + "grad_norm": 0.6386404037475586, + "learning_rate": 2.0481909547738696e-05, + "loss": 0.19423696517944336, + "step": 176300 + }, + { + "epoch": 59.09548538403551, + "grad_norm": 0.5817972421646118, + "learning_rate": 2.0465159128978225e-05, + "loss": 0.19470659255981446, + "step": 176400 + }, + { + "epoch": 59.12898902755675, + "grad_norm": 0.5699682831764221, + "learning_rate": 2.0448408710217757e-05, + "loss": 0.19486974716186523, + "step": 176500 + }, + { + "epoch": 59.16249267107798, + "grad_norm": 0.6849201321601868, + "learning_rate": 2.0431658291457286e-05, + "loss": 0.19612747192382812, + "step": 176600 + }, + { + "epoch": 59.19599631459921, + "grad_norm": 0.7165812253952026, + "learning_rate": 2.0414907872696818e-05, + "loss": 0.19578189849853517, + "step": 176700 + }, + { + "epoch": 59.22949995812044, + "grad_norm": 0.7262609004974365, + "learning_rate": 2.0398324958123954e-05, + "loss": 0.19529666900634765, + "step": 176800 + }, + { + "epoch": 59.26300360164168, + "grad_norm": 0.7515226006507874, + "learning_rate": 2.0381574539363486e-05, + "loss": 0.1967916488647461, + "step": 176900 + }, + { + "epoch": 59.296507245162914, + "grad_norm": 0.675984799861908, + "learning_rate": 2.0364824120603015e-05, + "loss": 0.19698150634765624, + "step": 177000 + }, + { + "epoch": 59.33001088868414, + "grad_norm": 0.9520745277404785, + "learning_rate": 2.0348073701842547e-05, + "loss": 0.19764524459838867, + "step": 177100 + }, + { + "epoch": 59.36351453220538, + "grad_norm": 0.6780461072921753, + "learning_rate": 2.033132328308208e-05, + "loss": 0.19658233642578124, + "step": 177200 + }, + { + "epoch": 59.39701817572661, + "grad_norm": 0.6440721750259399, + "learning_rate": 2.031457286432161e-05, + "loss": 0.19660577774047852, + "step": 177300 + }, + { + "epoch": 59.43052181924784, + "grad_norm": 0.7188435196876526, + "learning_rate": 2.029782244556114e-05, + "loss": 0.19726680755615233, + "step": 177400 + }, + { + "epoch": 59.46402546276908, + "grad_norm": 0.680558979511261, + "learning_rate": 2.028107202680067e-05, + "loss": 0.19743047714233397, + "step": 177500 + }, + { + "epoch": 59.49752910629031, + "grad_norm": 0.7961515188217163, + "learning_rate": 2.02643216080402e-05, + "loss": 0.19772005081176758, + "step": 177600 + }, + { + "epoch": 59.531032749811544, + "grad_norm": 0.6180649995803833, + "learning_rate": 2.024757118927973e-05, + "loss": 0.1990138053894043, + "step": 177700 + }, + { + "epoch": 59.56453639333277, + "grad_norm": 0.7766602039337158, + "learning_rate": 2.0230820770519263e-05, + "loss": 0.19866539001464845, + "step": 177800 + }, + { + "epoch": 59.59804003685401, + "grad_norm": 0.7700449824333191, + "learning_rate": 2.0214070351758795e-05, + "loss": 0.198470516204834, + "step": 177900 + }, + { + "epoch": 59.63154368037524, + "grad_norm": 0.7601004838943481, + "learning_rate": 2.0197319932998327e-05, + "loss": 0.20065229415893554, + "step": 178000 + }, + { + "epoch": 59.665047323896474, + "grad_norm": 0.8511313796043396, + "learning_rate": 2.0180569514237856e-05, + "loss": 0.20094491958618163, + "step": 178100 + }, + { + "epoch": 59.69855096741771, + "grad_norm": 0.6393927931785583, + "learning_rate": 2.0163819095477388e-05, + "loss": 0.19916282653808592, + "step": 178200 + }, + { + "epoch": 59.73205461093894, + "grad_norm": 0.8600590229034424, + "learning_rate": 2.0147068676716917e-05, + "loss": 0.19939659118652345, + "step": 178300 + }, + { + "epoch": 59.765558254460174, + "grad_norm": 0.642556369304657, + "learning_rate": 2.013031825795645e-05, + "loss": 0.2003472137451172, + "step": 178400 + }, + { + "epoch": 59.7990618979814, + "grad_norm": 0.7224367260932922, + "learning_rate": 2.011356783919598e-05, + "loss": 0.19969842910766603, + "step": 178500 + }, + { + "epoch": 59.83256554150264, + "grad_norm": 0.7427322268486023, + "learning_rate": 2.0096817420435514e-05, + "loss": 0.19960586547851564, + "step": 178600 + }, + { + "epoch": 59.866069185023875, + "grad_norm": 0.7013212442398071, + "learning_rate": 2.0080067001675042e-05, + "loss": 0.2002570915222168, + "step": 178700 + }, + { + "epoch": 59.899572828545104, + "grad_norm": 0.852935791015625, + "learning_rate": 2.0063484087102178e-05, + "loss": 0.2009134292602539, + "step": 178800 + }, + { + "epoch": 59.93307647206634, + "grad_norm": 0.875970184803009, + "learning_rate": 2.004673366834171e-05, + "loss": 0.20090538024902344, + "step": 178900 + }, + { + "epoch": 59.96658011558757, + "grad_norm": 0.7883792519569397, + "learning_rate": 2.0029983249581243e-05, + "loss": 0.20025901794433593, + "step": 179000 + }, + { + "epoch": 60.0, + "grad_norm": 0.8162919878959656, + "learning_rate": 2.001323283082077e-05, + "loss": 0.2026140022277832, + "step": 179100 + }, + { + "epoch": 60.033503643521236, + "grad_norm": 0.6830130219459534, + "learning_rate": 1.9996482412060304e-05, + "loss": 0.19378650665283204, + "step": 179200 + }, + { + "epoch": 60.067007287042465, + "grad_norm": 0.6668891906738281, + "learning_rate": 1.9979731993299833e-05, + "loss": 0.19362451553344726, + "step": 179300 + }, + { + "epoch": 60.1005109305637, + "grad_norm": 0.7308112382888794, + "learning_rate": 1.9962981574539365e-05, + "loss": 0.19429069519042969, + "step": 179400 + }, + { + "epoch": 60.13401457408493, + "grad_norm": 0.7730607390403748, + "learning_rate": 1.9946231155778897e-05, + "loss": 0.19423646926879884, + "step": 179500 + }, + { + "epoch": 60.167518217606165, + "grad_norm": 0.624254047870636, + "learning_rate": 1.9929480737018426e-05, + "loss": 0.19518238067626953, + "step": 179600 + }, + { + "epoch": 60.201021861127394, + "grad_norm": 0.917464017868042, + "learning_rate": 1.9912730318257958e-05, + "loss": 0.1952109718322754, + "step": 179700 + }, + { + "epoch": 60.23452550464863, + "grad_norm": 0.7360493540763855, + "learning_rate": 1.9895979899497487e-05, + "loss": 0.19446746826171876, + "step": 179800 + }, + { + "epoch": 60.268029148169866, + "grad_norm": 0.7760195732116699, + "learning_rate": 1.987922948073702e-05, + "loss": 0.1961222457885742, + "step": 179900 + }, + { + "epoch": 60.301532791691095, + "grad_norm": 0.7055202126502991, + "learning_rate": 1.9862479061976548e-05, + "loss": 0.19603208541870118, + "step": 180000 + }, + { + "epoch": 60.33503643521233, + "grad_norm": 0.7124981880187988, + "learning_rate": 1.9845728643216083e-05, + "loss": 0.19644119262695312, + "step": 180100 + }, + { + "epoch": 60.36854007873356, + "grad_norm": 0.6831589341163635, + "learning_rate": 1.9828978224455612e-05, + "loss": 0.19591159820556642, + "step": 180200 + }, + { + "epoch": 60.402043722254795, + "grad_norm": 0.6932199001312256, + "learning_rate": 1.9812227805695144e-05, + "loss": 0.19705738067626954, + "step": 180300 + }, + { + "epoch": 60.43554736577603, + "grad_norm": 0.6487602591514587, + "learning_rate": 1.9795477386934673e-05, + "loss": 0.19764183044433595, + "step": 180400 + }, + { + "epoch": 60.46905100929726, + "grad_norm": 0.760643720626831, + "learning_rate": 1.9778726968174205e-05, + "loss": 0.19725812911987306, + "step": 180500 + }, + { + "epoch": 60.502554652818496, + "grad_norm": 0.8425685167312622, + "learning_rate": 1.9761976549413734e-05, + "loss": 0.19825616836547852, + "step": 180600 + }, + { + "epoch": 60.536058296339725, + "grad_norm": 0.7290912866592407, + "learning_rate": 1.9745226130653267e-05, + "loss": 0.19793628692626952, + "step": 180700 + }, + { + "epoch": 60.56956193986096, + "grad_norm": 0.7724213004112244, + "learning_rate": 1.9728643216080402e-05, + "loss": 0.19957996368408204, + "step": 180800 + }, + { + "epoch": 60.60306558338219, + "grad_norm": 0.8002983927726746, + "learning_rate": 1.9711892797319935e-05, + "loss": 0.19841293334960938, + "step": 180900 + }, + { + "epoch": 60.636569226903426, + "grad_norm": 0.8721250295639038, + "learning_rate": 1.9695142378559463e-05, + "loss": 0.1982705307006836, + "step": 181000 + }, + { + "epoch": 60.67007287042466, + "grad_norm": 0.9120819568634033, + "learning_rate": 1.9678391959798996e-05, + "loss": 0.19878549575805665, + "step": 181100 + }, + { + "epoch": 60.70357651394589, + "grad_norm": 0.7080308198928833, + "learning_rate": 1.9661641541038528e-05, + "loss": 0.19935232162475586, + "step": 181200 + }, + { + "epoch": 60.737080157467126, + "grad_norm": 0.7024886012077332, + "learning_rate": 1.964489112227806e-05, + "loss": 0.19872413635253905, + "step": 181300 + }, + { + "epoch": 60.770583800988355, + "grad_norm": 0.6947377324104309, + "learning_rate": 1.962814070351759e-05, + "loss": 0.19973325729370117, + "step": 181400 + }, + { + "epoch": 60.80408744450959, + "grad_norm": 0.7923586964607239, + "learning_rate": 1.961139028475712e-05, + "loss": 0.1994416046142578, + "step": 181500 + }, + { + "epoch": 60.83759108803083, + "grad_norm": 0.7876746654510498, + "learning_rate": 1.959463986599665e-05, + "loss": 0.20001832962036134, + "step": 181600 + }, + { + "epoch": 60.871094731552056, + "grad_norm": 0.6669028401374817, + "learning_rate": 1.9577889447236182e-05, + "loss": 0.19931718826293945, + "step": 181700 + }, + { + "epoch": 60.90459837507329, + "grad_norm": 0.8376245498657227, + "learning_rate": 1.9561139028475714e-05, + "loss": 0.19980306625366212, + "step": 181800 + }, + { + "epoch": 60.93810201859452, + "grad_norm": 0.8353832960128784, + "learning_rate": 1.9544388609715243e-05, + "loss": 0.19981901168823243, + "step": 181900 + }, + { + "epoch": 60.971605662115756, + "grad_norm": 0.7106568217277527, + "learning_rate": 1.9527638190954775e-05, + "loss": 0.19973602294921874, + "step": 182000 + }, + { + "epoch": 61.00502554652819, + "grad_norm": 0.6675083637237549, + "learning_rate": 1.9510887772194304e-05, + "loss": 0.20030658721923827, + "step": 182100 + }, + { + "epoch": 61.03852919004942, + "grad_norm": 0.6827961206436157, + "learning_rate": 1.9494137353433836e-05, + "loss": 0.19295509338378905, + "step": 182200 + }, + { + "epoch": 61.07203283357065, + "grad_norm": 0.8352850675582886, + "learning_rate": 1.9477386934673365e-05, + "loss": 0.19397199630737305, + "step": 182300 + }, + { + "epoch": 61.10553647709188, + "grad_norm": 0.6060226559638977, + "learning_rate": 1.94606365159129e-05, + "loss": 0.19397262573242188, + "step": 182400 + }, + { + "epoch": 61.13904012061312, + "grad_norm": 0.6782211065292358, + "learning_rate": 1.944388609715243e-05, + "loss": 0.1942317581176758, + "step": 182500 + }, + { + "epoch": 61.172543764134346, + "grad_norm": 0.6505800485610962, + "learning_rate": 1.9427135678391962e-05, + "loss": 0.19382064819335937, + "step": 182600 + }, + { + "epoch": 61.20604740765558, + "grad_norm": 0.6470309495925903, + "learning_rate": 1.941038525963149e-05, + "loss": 0.19352495193481445, + "step": 182700 + }, + { + "epoch": 61.23955105117682, + "grad_norm": 0.7394313216209412, + "learning_rate": 1.9393634840871023e-05, + "loss": 0.19527189254760743, + "step": 182800 + }, + { + "epoch": 61.27305469469805, + "grad_norm": 0.6375427842140198, + "learning_rate": 1.937705192629816e-05, + "loss": 0.19507966995239256, + "step": 182900 + }, + { + "epoch": 61.30655833821928, + "grad_norm": 0.7445289492607117, + "learning_rate": 1.936030150753769e-05, + "loss": 0.19499330520629882, + "step": 183000 + }, + { + "epoch": 61.34006198174051, + "grad_norm": 0.6758365631103516, + "learning_rate": 1.934355108877722e-05, + "loss": 0.19620643615722655, + "step": 183100 + }, + { + "epoch": 61.37356562526175, + "grad_norm": 0.682247519493103, + "learning_rate": 1.9326800670016752e-05, + "loss": 0.19641605377197266, + "step": 183200 + }, + { + "epoch": 61.40706926878298, + "grad_norm": 0.6681833267211914, + "learning_rate": 1.931005025125628e-05, + "loss": 0.1975366973876953, + "step": 183300 + }, + { + "epoch": 61.44057291230421, + "grad_norm": 0.6850043535232544, + "learning_rate": 1.9293299832495813e-05, + "loss": 0.1968943405151367, + "step": 183400 + }, + { + "epoch": 61.47407655582545, + "grad_norm": 0.769083559513092, + "learning_rate": 1.9276549413735345e-05, + "loss": 0.19727476119995116, + "step": 183500 + }, + { + "epoch": 61.50758019934668, + "grad_norm": 0.5792109370231628, + "learning_rate": 1.9259798994974878e-05, + "loss": 0.19699573516845703, + "step": 183600 + }, + { + "epoch": 61.54108384286791, + "grad_norm": 0.7564917206764221, + "learning_rate": 1.9243048576214406e-05, + "loss": 0.19748397827148437, + "step": 183700 + }, + { + "epoch": 61.57458748638914, + "grad_norm": 0.6447178721427917, + "learning_rate": 1.922629815745394e-05, + "loss": 0.1989639663696289, + "step": 183800 + }, + { + "epoch": 61.60809112991038, + "grad_norm": 0.5742529034614563, + "learning_rate": 1.9209547738693467e-05, + "loss": 0.19746633529663085, + "step": 183900 + }, + { + "epoch": 61.64159477343161, + "grad_norm": 0.7394194006919861, + "learning_rate": 1.9192797319933e-05, + "loss": 0.19821161270141602, + "step": 184000 + }, + { + "epoch": 61.67509841695284, + "grad_norm": 0.6600359678268433, + "learning_rate": 1.9176046901172532e-05, + "loss": 0.1982976722717285, + "step": 184100 + }, + { + "epoch": 61.70860206047408, + "grad_norm": 0.5898655652999878, + "learning_rate": 1.915929648241206e-05, + "loss": 0.19801706314086914, + "step": 184200 + }, + { + "epoch": 61.74210570399531, + "grad_norm": 0.7864146828651428, + "learning_rate": 1.9142546063651593e-05, + "loss": 0.19834369659423828, + "step": 184300 + }, + { + "epoch": 61.77560934751654, + "grad_norm": 0.783885657787323, + "learning_rate": 1.912579564489112e-05, + "loss": 0.19943191528320312, + "step": 184400 + }, + { + "epoch": 61.80911299103778, + "grad_norm": 0.7565669417381287, + "learning_rate": 1.9109045226130654e-05, + "loss": 0.19939350128173827, + "step": 184500 + }, + { + "epoch": 61.84261663455901, + "grad_norm": 0.663527250289917, + "learning_rate": 1.9092294807370183e-05, + "loss": 0.1986519241333008, + "step": 184600 + }, + { + "epoch": 61.87612027808024, + "grad_norm": 0.7392609715461731, + "learning_rate": 1.9075544388609718e-05, + "loss": 0.19995809555053712, + "step": 184700 + }, + { + "epoch": 61.90962392160147, + "grad_norm": 0.7164571285247803, + "learning_rate": 1.9058793969849247e-05, + "loss": 0.1989099884033203, + "step": 184800 + }, + { + "epoch": 61.94312756512271, + "grad_norm": 0.7456199526786804, + "learning_rate": 1.904204355108878e-05, + "loss": 0.19987648010253906, + "step": 184900 + }, + { + "epoch": 61.97663120864394, + "grad_norm": 0.6419495344161987, + "learning_rate": 1.9025460636515912e-05, + "loss": 0.1988045310974121, + "step": 185000 + }, + { + "epoch": 62.01005109305637, + "grad_norm": 0.6616671085357666, + "learning_rate": 1.9008710217755447e-05, + "loss": 0.19750312805175782, + "step": 185100 + }, + { + "epoch": 62.043554736577605, + "grad_norm": 0.667393147945404, + "learning_rate": 1.8991959798994976e-05, + "loss": 0.19275453567504883, + "step": 185200 + }, + { + "epoch": 62.07705838009883, + "grad_norm": 0.75070720911026, + "learning_rate": 1.897520938023451e-05, + "loss": 0.19383440017700196, + "step": 185300 + }, + { + "epoch": 62.11056202362007, + "grad_norm": 0.6957711577415466, + "learning_rate": 1.8958458961474037e-05, + "loss": 0.19298004150390624, + "step": 185400 + }, + { + "epoch": 62.1440656671413, + "grad_norm": 0.7118070721626282, + "learning_rate": 1.894170854271357e-05, + "loss": 0.19372062683105468, + "step": 185500 + }, + { + "epoch": 62.177569310662534, + "grad_norm": 0.6568797826766968, + "learning_rate": 1.8924958123953098e-05, + "loss": 0.19365182876586914, + "step": 185600 + }, + { + "epoch": 62.21107295418377, + "grad_norm": 0.6880303621292114, + "learning_rate": 1.890820770519263e-05, + "loss": 0.1950899887084961, + "step": 185700 + }, + { + "epoch": 62.244576597705, + "grad_norm": 0.6604440808296204, + "learning_rate": 1.8891457286432163e-05, + "loss": 0.19547990798950196, + "step": 185800 + }, + { + "epoch": 62.278080241226235, + "grad_norm": 0.7336467504501343, + "learning_rate": 1.887470686767169e-05, + "loss": 0.19477594375610352, + "step": 185900 + }, + { + "epoch": 62.31158388474746, + "grad_norm": 0.6443986296653748, + "learning_rate": 1.8857956448911224e-05, + "loss": 0.19533748626708985, + "step": 186000 + }, + { + "epoch": 62.3450875282687, + "grad_norm": 0.617526650428772, + "learning_rate": 1.8841206030150753e-05, + "loss": 0.19593568801879882, + "step": 186100 + }, + { + "epoch": 62.378591171789935, + "grad_norm": 0.6622116565704346, + "learning_rate": 1.8824455611390285e-05, + "loss": 0.19563573837280274, + "step": 186200 + }, + { + "epoch": 62.412094815311164, + "grad_norm": 0.6662573218345642, + "learning_rate": 1.8807705192629817e-05, + "loss": 0.19559219360351562, + "step": 186300 + }, + { + "epoch": 62.4455984588324, + "grad_norm": 0.7779511213302612, + "learning_rate": 1.879095477386935e-05, + "loss": 0.19570056915283204, + "step": 186400 + }, + { + "epoch": 62.47910210235363, + "grad_norm": 0.6488950848579407, + "learning_rate": 1.8774204355108878e-05, + "loss": 0.19671340942382812, + "step": 186500 + }, + { + "epoch": 62.512605745874865, + "grad_norm": 0.6302568316459656, + "learning_rate": 1.875745393634841e-05, + "loss": 0.19646032333374022, + "step": 186600 + }, + { + "epoch": 62.54610938939609, + "grad_norm": 0.6451594829559326, + "learning_rate": 1.874070351758794e-05, + "loss": 0.19605607986450196, + "step": 186700 + }, + { + "epoch": 62.57961303291733, + "grad_norm": 0.7226560711860657, + "learning_rate": 1.872395309882747e-05, + "loss": 0.19651512145996095, + "step": 186800 + }, + { + "epoch": 62.613116676438565, + "grad_norm": 0.7879689335823059, + "learning_rate": 1.8707202680067e-05, + "loss": 0.1969459342956543, + "step": 186900 + }, + { + "epoch": 62.646620319959794, + "grad_norm": 0.859521746635437, + "learning_rate": 1.869061976549414e-05, + "loss": 0.19710365295410157, + "step": 187000 + }, + { + "epoch": 62.68012396348103, + "grad_norm": 0.7182042002677917, + "learning_rate": 1.8673869346733668e-05, + "loss": 0.1975703239440918, + "step": 187100 + }, + { + "epoch": 62.71362760700226, + "grad_norm": 0.7117863893508911, + "learning_rate": 1.86571189279732e-05, + "loss": 0.19800674438476562, + "step": 187200 + }, + { + "epoch": 62.747131250523495, + "grad_norm": 0.8124322295188904, + "learning_rate": 1.864036850921273e-05, + "loss": 0.1976396369934082, + "step": 187300 + }, + { + "epoch": 62.78063489404473, + "grad_norm": 0.8003492951393127, + "learning_rate": 1.8623618090452265e-05, + "loss": 0.19788177490234374, + "step": 187400 + }, + { + "epoch": 62.81413853756596, + "grad_norm": 0.7933449149131775, + "learning_rate": 1.8606867671691794e-05, + "loss": 0.19794113159179688, + "step": 187500 + }, + { + "epoch": 62.847642181087195, + "grad_norm": 0.743191123008728, + "learning_rate": 1.8590117252931326e-05, + "loss": 0.19989189147949218, + "step": 187600 + }, + { + "epoch": 62.881145824608424, + "grad_norm": 0.662010669708252, + "learning_rate": 1.8573366834170855e-05, + "loss": 0.19854124069213866, + "step": 187700 + }, + { + "epoch": 62.91464946812966, + "grad_norm": 0.8278148174285889, + "learning_rate": 1.8556616415410387e-05, + "loss": 0.19968727111816406, + "step": 187800 + }, + { + "epoch": 62.94815311165089, + "grad_norm": 0.804415762424469, + "learning_rate": 1.8539865996649916e-05, + "loss": 0.19895530700683595, + "step": 187900 + }, + { + "epoch": 62.981656755172125, + "grad_norm": 0.7077623605728149, + "learning_rate": 1.8523115577889448e-05, + "loss": 0.19983070373535156, + "step": 188000 + }, + { + "epoch": 63.01507663958456, + "grad_norm": 0.5905118584632874, + "learning_rate": 1.850636515912898e-05, + "loss": 0.1953744888305664, + "step": 188100 + }, + { + "epoch": 63.048580283105785, + "grad_norm": 0.5887221693992615, + "learning_rate": 1.848961474036851e-05, + "loss": 0.19252130508422852, + "step": 188200 + }, + { + "epoch": 63.08208392662702, + "grad_norm": 0.6429964900016785, + "learning_rate": 1.847286432160804e-05, + "loss": 0.1936810302734375, + "step": 188300 + }, + { + "epoch": 63.11558757014826, + "grad_norm": 0.6943151354789734, + "learning_rate": 1.845611390284757e-05, + "loss": 0.1928156280517578, + "step": 188400 + }, + { + "epoch": 63.149091213669486, + "grad_norm": 0.7247923016548157, + "learning_rate": 1.8439363484087102e-05, + "loss": 0.19320756912231446, + "step": 188500 + }, + { + "epoch": 63.18259485719072, + "grad_norm": 0.6283583641052246, + "learning_rate": 1.842261306532663e-05, + "loss": 0.19241600036621093, + "step": 188600 + }, + { + "epoch": 63.21609850071195, + "grad_norm": 0.6737943291664124, + "learning_rate": 1.8405862646566167e-05, + "loss": 0.1937045669555664, + "step": 188700 + }, + { + "epoch": 63.24960214423319, + "grad_norm": 0.6524550914764404, + "learning_rate": 1.8389112227805695e-05, + "loss": 0.1929795265197754, + "step": 188800 + }, + { + "epoch": 63.283105787754415, + "grad_norm": 0.7188290953636169, + "learning_rate": 1.8372361809045228e-05, + "loss": 0.19419048309326173, + "step": 188900 + }, + { + "epoch": 63.31660943127565, + "grad_norm": 0.6564083099365234, + "learning_rate": 1.835577889447236e-05, + "loss": 0.1945943069458008, + "step": 189000 + }, + { + "epoch": 63.35011307479689, + "grad_norm": 0.9156805276870728, + "learning_rate": 1.8339028475711896e-05, + "loss": 0.1947199821472168, + "step": 189100 + }, + { + "epoch": 63.383616718318116, + "grad_norm": 0.6628890633583069, + "learning_rate": 1.8322278056951425e-05, + "loss": 0.19428998947143555, + "step": 189200 + }, + { + "epoch": 63.41712036183935, + "grad_norm": 0.5167578458786011, + "learning_rate": 1.8305527638190957e-05, + "loss": 0.19555074691772462, + "step": 189300 + }, + { + "epoch": 63.45062400536058, + "grad_norm": 0.8341636657714844, + "learning_rate": 1.8288777219430486e-05, + "loss": 0.1958403205871582, + "step": 189400 + }, + { + "epoch": 63.48412764888182, + "grad_norm": 0.7699781656265259, + "learning_rate": 1.8272026800670018e-05, + "loss": 0.1960818099975586, + "step": 189500 + }, + { + "epoch": 63.517631292403046, + "grad_norm": 0.7461984753608704, + "learning_rate": 1.8255276381909547e-05, + "loss": 0.1969795799255371, + "step": 189600 + }, + { + "epoch": 63.55113493592428, + "grad_norm": 0.8196810483932495, + "learning_rate": 1.8238525963149082e-05, + "loss": 0.1966191864013672, + "step": 189700 + }, + { + "epoch": 63.58463857944552, + "grad_norm": 0.7453595399856567, + "learning_rate": 1.822177554438861e-05, + "loss": 0.19745317459106446, + "step": 189800 + }, + { + "epoch": 63.618142222966746, + "grad_norm": 0.638787031173706, + "learning_rate": 1.8205025125628143e-05, + "loss": 0.19748239517211913, + "step": 189900 + }, + { + "epoch": 63.65164586648798, + "grad_norm": 0.8472653031349182, + "learning_rate": 1.8188274706867672e-05, + "loss": 0.19711460113525392, + "step": 190000 + }, + { + "epoch": 63.68514951000921, + "grad_norm": 0.6634200215339661, + "learning_rate": 1.8171524288107204e-05, + "loss": 0.19727699279785157, + "step": 190100 + }, + { + "epoch": 63.71865315353045, + "grad_norm": 0.7622882127761841, + "learning_rate": 1.8154773869346733e-05, + "loss": 0.19806449890136718, + "step": 190200 + }, + { + "epoch": 63.75215679705168, + "grad_norm": 0.6492070555686951, + "learning_rate": 1.8138023450586265e-05, + "loss": 0.19782337188720703, + "step": 190300 + }, + { + "epoch": 63.78566044057291, + "grad_norm": 0.7956305146217346, + "learning_rate": 1.8121273031825798e-05, + "loss": 0.19663129806518553, + "step": 190400 + }, + { + "epoch": 63.81916408409415, + "grad_norm": 0.5923272967338562, + "learning_rate": 1.8104522613065326e-05, + "loss": 0.19800495147705077, + "step": 190500 + }, + { + "epoch": 63.852667727615376, + "grad_norm": 0.6325972676277161, + "learning_rate": 1.808777219430486e-05, + "loss": 0.19802473068237306, + "step": 190600 + }, + { + "epoch": 63.88617137113661, + "grad_norm": 0.7037030458450317, + "learning_rate": 1.8071021775544387e-05, + "loss": 0.19737031936645508, + "step": 190700 + }, + { + "epoch": 63.91967501465784, + "grad_norm": 0.6459951996803284, + "learning_rate": 1.805427135678392e-05, + "loss": 0.19749345779418945, + "step": 190800 + }, + { + "epoch": 63.95317865817908, + "grad_norm": 0.7572121024131775, + "learning_rate": 1.8037520938023452e-05, + "loss": 0.199870548248291, + "step": 190900 + }, + { + "epoch": 63.98668230170031, + "grad_norm": 0.6550577878952026, + "learning_rate": 1.8020938023450588e-05, + "loss": 0.19845205307006836, + "step": 191000 + }, + { + "epoch": 64.02010218611274, + "grad_norm": 0.5528762340545654, + "learning_rate": 1.8004187604690117e-05, + "loss": 0.19315372467041014, + "step": 191100 + }, + { + "epoch": 64.05360582963397, + "grad_norm": 0.7415011525154114, + "learning_rate": 1.798743718592965e-05, + "loss": 0.1906199836730957, + "step": 191200 + }, + { + "epoch": 64.08710947315521, + "grad_norm": 0.5133525729179382, + "learning_rate": 1.797068676716918e-05, + "loss": 0.19169828414916992, + "step": 191300 + }, + { + "epoch": 64.12061311667644, + "grad_norm": 0.7105311155319214, + "learning_rate": 1.7953936348408713e-05, + "loss": 0.19295671463012695, + "step": 191400 + }, + { + "epoch": 64.15411676019767, + "grad_norm": 0.6510593295097351, + "learning_rate": 1.7937185929648242e-05, + "loss": 0.19301687240600585, + "step": 191500 + }, + { + "epoch": 64.18762040371891, + "grad_norm": 0.737304151058197, + "learning_rate": 1.7920435510887774e-05, + "loss": 0.19341800689697267, + "step": 191600 + }, + { + "epoch": 64.22112404724014, + "grad_norm": 0.7213296890258789, + "learning_rate": 1.7903685092127303e-05, + "loss": 0.19339723587036134, + "step": 191700 + }, + { + "epoch": 64.25462769076137, + "grad_norm": 0.6387230157852173, + "learning_rate": 1.7886934673366835e-05, + "loss": 0.19426511764526366, + "step": 191800 + }, + { + "epoch": 64.2881313342826, + "grad_norm": 0.5896677374839783, + "learning_rate": 1.7870184254606364e-05, + "loss": 0.19313657760620118, + "step": 191900 + }, + { + "epoch": 64.32163497780384, + "grad_norm": 0.6253547668457031, + "learning_rate": 1.78534338358459e-05, + "loss": 0.19436355590820312, + "step": 192000 + }, + { + "epoch": 64.35513862132507, + "grad_norm": 0.6272561550140381, + "learning_rate": 1.783668341708543e-05, + "loss": 0.1950385284423828, + "step": 192100 + }, + { + "epoch": 64.3886422648463, + "grad_norm": 0.6820735335350037, + "learning_rate": 1.781993299832496e-05, + "loss": 0.19447114944458008, + "step": 192200 + }, + { + "epoch": 64.42214590836754, + "grad_norm": 0.8564963340759277, + "learning_rate": 1.780318257956449e-05, + "loss": 0.19415367126464844, + "step": 192300 + }, + { + "epoch": 64.45564955188877, + "grad_norm": 0.6703295111656189, + "learning_rate": 1.7786432160804022e-05, + "loss": 0.19531801223754883, + "step": 192400 + }, + { + "epoch": 64.48915319541, + "grad_norm": 0.7819051146507263, + "learning_rate": 1.776968174204355e-05, + "loss": 0.19491588592529296, + "step": 192500 + }, + { + "epoch": 64.52265683893124, + "grad_norm": 0.5364665985107422, + "learning_rate": 1.7752931323283083e-05, + "loss": 0.1953544235229492, + "step": 192600 + }, + { + "epoch": 64.55616048245247, + "grad_norm": 0.5155049562454224, + "learning_rate": 1.7736180904522615e-05, + "loss": 0.19612747192382812, + "step": 192700 + }, + { + "epoch": 64.5896641259737, + "grad_norm": 0.809084951877594, + "learning_rate": 1.7719430485762144e-05, + "loss": 0.1966937255859375, + "step": 192800 + }, + { + "epoch": 64.62316776949493, + "grad_norm": 0.7905207276344299, + "learning_rate": 1.7702680067001676e-05, + "loss": 0.19525121688842773, + "step": 192900 + }, + { + "epoch": 64.65667141301617, + "grad_norm": 0.7242773771286011, + "learning_rate": 1.7686097152428812e-05, + "loss": 0.19637462615966797, + "step": 193000 + }, + { + "epoch": 64.6901750565374, + "grad_norm": 0.696966826915741, + "learning_rate": 1.7669346733668344e-05, + "loss": 0.19756622314453126, + "step": 193100 + }, + { + "epoch": 64.72367870005863, + "grad_norm": 0.6258018612861633, + "learning_rate": 1.7652596314907873e-05, + "loss": 0.19659183502197267, + "step": 193200 + }, + { + "epoch": 64.75718234357987, + "grad_norm": 0.6579128503799438, + "learning_rate": 1.7635845896147405e-05, + "loss": 0.19634262084960938, + "step": 193300 + }, + { + "epoch": 64.7906859871011, + "grad_norm": 0.6634902954101562, + "learning_rate": 1.7619095477386934e-05, + "loss": 0.19719581604003905, + "step": 193400 + }, + { + "epoch": 64.82418963062233, + "grad_norm": 0.7709892988204956, + "learning_rate": 1.7602345058626466e-05, + "loss": 0.19753650665283204, + "step": 193500 + }, + { + "epoch": 64.85769327414356, + "grad_norm": 0.7069748044013977, + "learning_rate": 1.7585594639866e-05, + "loss": 0.19717281341552734, + "step": 193600 + }, + { + "epoch": 64.8911969176648, + "grad_norm": 0.756540060043335, + "learning_rate": 1.756884422110553e-05, + "loss": 0.19797266006469727, + "step": 193700 + }, + { + "epoch": 64.92470056118603, + "grad_norm": 0.8358628749847412, + "learning_rate": 1.755209380234506e-05, + "loss": 0.19739683151245116, + "step": 193800 + }, + { + "epoch": 64.95820420470726, + "grad_norm": 0.7340553998947144, + "learning_rate": 1.753534338358459e-05, + "loss": 0.19825174331665038, + "step": 193900 + }, + { + "epoch": 64.9917078482285, + "grad_norm": 0.7182520627975464, + "learning_rate": 1.751859296482412e-05, + "loss": 0.1992794418334961, + "step": 194000 + }, + { + "epoch": 65.02512773264093, + "grad_norm": 0.7197110652923584, + "learning_rate": 1.7501842546063653e-05, + "loss": 0.19224626541137696, + "step": 194100 + }, + { + "epoch": 65.05863137616215, + "grad_norm": 0.704738199710846, + "learning_rate": 1.7485092127303185e-05, + "loss": 0.1910837173461914, + "step": 194200 + }, + { + "epoch": 65.0921350196834, + "grad_norm": 0.7330573201179504, + "learning_rate": 1.7468341708542714e-05, + "loss": 0.1925986099243164, + "step": 194300 + }, + { + "epoch": 65.12563866320463, + "grad_norm": 0.6279468536376953, + "learning_rate": 1.7451591289782246e-05, + "loss": 0.19241338729858398, + "step": 194400 + }, + { + "epoch": 65.15914230672585, + "grad_norm": 0.7558215856552124, + "learning_rate": 1.7434840871021778e-05, + "loss": 0.19235986709594727, + "step": 194500 + }, + { + "epoch": 65.19264595024708, + "grad_norm": 0.7638766765594482, + "learning_rate": 1.7418090452261307e-05, + "loss": 0.19314172744750976, + "step": 194600 + }, + { + "epoch": 65.22614959376833, + "grad_norm": 0.8271517753601074, + "learning_rate": 1.740134003350084e-05, + "loss": 0.19355636596679687, + "step": 194700 + }, + { + "epoch": 65.25965323728956, + "grad_norm": 0.6696556806564331, + "learning_rate": 1.7384589614740368e-05, + "loss": 0.19400758743286134, + "step": 194800 + }, + { + "epoch": 65.29315688081078, + "grad_norm": 0.6253610849380493, + "learning_rate": 1.73678391959799e-05, + "loss": 0.1946131706237793, + "step": 194900 + }, + { + "epoch": 65.32666052433203, + "grad_norm": 0.7860012054443359, + "learning_rate": 1.7351088777219432e-05, + "loss": 0.19406192779541015, + "step": 195000 + }, + { + "epoch": 65.36016416785326, + "grad_norm": 0.6729128360748291, + "learning_rate": 1.7334505862646565e-05, + "loss": 0.19439397811889647, + "step": 195100 + }, + { + "epoch": 65.39366781137448, + "grad_norm": 0.5755062699317932, + "learning_rate": 1.7317755443886097e-05, + "loss": 0.1932700538635254, + "step": 195200 + }, + { + "epoch": 65.42717145489571, + "grad_norm": 0.726636528968811, + "learning_rate": 1.730100502512563e-05, + "loss": 0.19444786071777342, + "step": 195300 + }, + { + "epoch": 65.46067509841696, + "grad_norm": 0.699719250202179, + "learning_rate": 1.728425460636516e-05, + "loss": 0.19458566665649413, + "step": 195400 + }, + { + "epoch": 65.49417874193819, + "grad_norm": 0.5866639614105225, + "learning_rate": 1.726750418760469e-05, + "loss": 0.19407997131347657, + "step": 195500 + }, + { + "epoch": 65.52768238545941, + "grad_norm": 0.6109085083007812, + "learning_rate": 1.7250753768844223e-05, + "loss": 0.19484548568725585, + "step": 195600 + }, + { + "epoch": 65.56118602898066, + "grad_norm": 0.6569064855575562, + "learning_rate": 1.723400335008375e-05, + "loss": 0.19527423858642579, + "step": 195700 + }, + { + "epoch": 65.59468967250189, + "grad_norm": 0.7762038707733154, + "learning_rate": 1.7217252931323284e-05, + "loss": 0.19620054244995117, + "step": 195800 + }, + { + "epoch": 65.62819331602311, + "grad_norm": 0.7439081072807312, + "learning_rate": 1.7200502512562816e-05, + "loss": 0.19575105667114256, + "step": 195900 + }, + { + "epoch": 65.66169695954434, + "grad_norm": 0.6967695951461792, + "learning_rate": 1.7183752093802348e-05, + "loss": 0.19645559310913085, + "step": 196000 + }, + { + "epoch": 65.69520060306559, + "grad_norm": 0.7349697351455688, + "learning_rate": 1.7167001675041877e-05, + "loss": 0.19642463684082032, + "step": 196100 + }, + { + "epoch": 65.72870424658682, + "grad_norm": 0.6738443970680237, + "learning_rate": 1.715025125628141e-05, + "loss": 0.19574283599853515, + "step": 196200 + }, + { + "epoch": 65.76220789010804, + "grad_norm": 0.6993250250816345, + "learning_rate": 1.7133500837520938e-05, + "loss": 0.19748226165771485, + "step": 196300 + }, + { + "epoch": 65.79571153362929, + "grad_norm": 0.7072445750236511, + "learning_rate": 1.711675041876047e-05, + "loss": 0.19640846252441407, + "step": 196400 + }, + { + "epoch": 65.82921517715052, + "grad_norm": 0.7074381709098816, + "learning_rate": 1.7100000000000002e-05, + "loss": 0.19640003204345702, + "step": 196500 + }, + { + "epoch": 65.86271882067174, + "grad_norm": 0.6643349528312683, + "learning_rate": 1.708324958123953e-05, + "loss": 0.1962619400024414, + "step": 196600 + }, + { + "epoch": 65.89622246419299, + "grad_norm": 0.6393887400627136, + "learning_rate": 1.7066499162479063e-05, + "loss": 0.19662002563476563, + "step": 196700 + }, + { + "epoch": 65.92972610771422, + "grad_norm": 0.6912117600440979, + "learning_rate": 1.7049748743718592e-05, + "loss": 0.19711755752563476, + "step": 196800 + }, + { + "epoch": 65.96322975123545, + "grad_norm": 0.6061841249465942, + "learning_rate": 1.7032998324958124e-05, + "loss": 0.19713987350463869, + "step": 196900 + }, + { + "epoch": 65.99673339475667, + "grad_norm": 0.8009989857673645, + "learning_rate": 1.7016247906197653e-05, + "loss": 0.19686588287353515, + "step": 197000 + }, + { + "epoch": 66.03015327916911, + "grad_norm": 0.5211619734764099, + "learning_rate": 1.6999497487437185e-05, + "loss": 0.19180856704711913, + "step": 197100 + }, + { + "epoch": 66.06365692269034, + "grad_norm": 0.8374447822570801, + "learning_rate": 1.698291457286432e-05, + "loss": 0.1912846565246582, + "step": 197200 + }, + { + "epoch": 66.09716056621157, + "grad_norm": 0.5720506310462952, + "learning_rate": 1.6966164154103854e-05, + "loss": 0.1917406463623047, + "step": 197300 + }, + { + "epoch": 66.13066420973281, + "grad_norm": 0.6164358258247375, + "learning_rate": 1.6949413735343382e-05, + "loss": 0.19152711868286132, + "step": 197400 + }, + { + "epoch": 66.16416785325404, + "grad_norm": 0.6611140370368958, + "learning_rate": 1.6932663316582915e-05, + "loss": 0.1916365623474121, + "step": 197500 + }, + { + "epoch": 66.19767149677527, + "grad_norm": 0.8065768480300903, + "learning_rate": 1.6915912897822447e-05, + "loss": 0.19188701629638671, + "step": 197600 + }, + { + "epoch": 66.23117514029651, + "grad_norm": 0.832007646560669, + "learning_rate": 1.689916247906198e-05, + "loss": 0.19254329681396484, + "step": 197700 + }, + { + "epoch": 66.26467878381774, + "grad_norm": 0.6256246566772461, + "learning_rate": 1.6882412060301508e-05, + "loss": 0.19245880126953124, + "step": 197800 + }, + { + "epoch": 66.29818242733897, + "grad_norm": 0.6906976103782654, + "learning_rate": 1.686566164154104e-05, + "loss": 0.19253412246704102, + "step": 197900 + }, + { + "epoch": 66.3316860708602, + "grad_norm": 0.8333529233932495, + "learning_rate": 1.684891122278057e-05, + "loss": 0.19308279037475587, + "step": 198000 + }, + { + "epoch": 66.36518971438144, + "grad_norm": 0.6668996810913086, + "learning_rate": 1.68321608040201e-05, + "loss": 0.19387590408325195, + "step": 198100 + }, + { + "epoch": 66.39869335790267, + "grad_norm": 0.6531146764755249, + "learning_rate": 1.6815410385259633e-05, + "loss": 0.19346897125244142, + "step": 198200 + }, + { + "epoch": 66.4321970014239, + "grad_norm": 0.5391746163368225, + "learning_rate": 1.6798659966499165e-05, + "loss": 0.19385696411132813, + "step": 198300 + }, + { + "epoch": 66.46570064494514, + "grad_norm": 0.7026568055152893, + "learning_rate": 1.6781909547738694e-05, + "loss": 0.19465816497802735, + "step": 198400 + }, + { + "epoch": 66.49920428846637, + "grad_norm": 0.7220622301101685, + "learning_rate": 1.6765159128978226e-05, + "loss": 0.19388059616088868, + "step": 198500 + }, + { + "epoch": 66.5327079319876, + "grad_norm": 0.6891744136810303, + "learning_rate": 1.6748408710217755e-05, + "loss": 0.1932676887512207, + "step": 198600 + }, + { + "epoch": 66.56621157550883, + "grad_norm": 0.5302000045776367, + "learning_rate": 1.6731658291457288e-05, + "loss": 0.19477445602416993, + "step": 198700 + }, + { + "epoch": 66.59971521903007, + "grad_norm": 0.7118658423423767, + "learning_rate": 1.671490787269682e-05, + "loss": 0.1960425567626953, + "step": 198800 + }, + { + "epoch": 66.6332188625513, + "grad_norm": 0.6674960255622864, + "learning_rate": 1.669815745393635e-05, + "loss": 0.19594356536865234, + "step": 198900 + }, + { + "epoch": 66.66672250607253, + "grad_norm": 0.7001693844795227, + "learning_rate": 1.668140703517588e-05, + "loss": 0.1959066581726074, + "step": 199000 + }, + { + "epoch": 66.70022614959377, + "grad_norm": 0.7504046559333801, + "learning_rate": 1.666465661641541e-05, + "loss": 0.19596036911010742, + "step": 199100 + }, + { + "epoch": 66.733729793115, + "grad_norm": 0.540820837020874, + "learning_rate": 1.6647906197654942e-05, + "loss": 0.19496715545654297, + "step": 199200 + }, + { + "epoch": 66.76723343663623, + "grad_norm": 0.659315288066864, + "learning_rate": 1.6631323283082078e-05, + "loss": 0.19592731475830077, + "step": 199300 + }, + { + "epoch": 66.80073708015746, + "grad_norm": 0.6407586336135864, + "learning_rate": 1.661457286432161e-05, + "loss": 0.1966596221923828, + "step": 199400 + }, + { + "epoch": 66.8342407236787, + "grad_norm": 0.8105034828186035, + "learning_rate": 1.659782244556114e-05, + "loss": 0.19701980590820312, + "step": 199500 + }, + { + "epoch": 66.86774436719993, + "grad_norm": 0.693172812461853, + "learning_rate": 1.658107202680067e-05, + "loss": 0.19503232955932617, + "step": 199600 + }, + { + "epoch": 66.90124801072116, + "grad_norm": 0.7639322876930237, + "learning_rate": 1.65643216080402e-05, + "loss": 0.1977808380126953, + "step": 199700 + }, + { + "epoch": 66.9347516542424, + "grad_norm": 0.7706619501113892, + "learning_rate": 1.6547571189279735e-05, + "loss": 0.19528146743774413, + "step": 199800 + }, + { + "epoch": 66.96825529776363, + "grad_norm": 0.8017984628677368, + "learning_rate": 1.6530820770519264e-05, + "loss": 0.19607614517211913, + "step": 199900 + }, + { + "epoch": 67.00167518217606, + "grad_norm": 0.6076714992523193, + "learning_rate": 1.6514070351758796e-05, + "loss": 0.196212100982666, + "step": 200000 + }, + { + "epoch": 67.0351788256973, + "grad_norm": 0.7155037522315979, + "learning_rate": 1.6497319932998325e-05, + "loss": 0.19083133697509766, + "step": 200100 + }, + { + "epoch": 67.06868246921853, + "grad_norm": 0.6289516687393188, + "learning_rate": 1.6480569514237857e-05, + "loss": 0.19047863006591798, + "step": 200200 + }, + { + "epoch": 67.10218611273976, + "grad_norm": 0.6958616375923157, + "learning_rate": 1.6463819095477386e-05, + "loss": 0.1900768280029297, + "step": 200300 + }, + { + "epoch": 67.13568975626099, + "grad_norm": 0.5616253018379211, + "learning_rate": 1.644706867671692e-05, + "loss": 0.19233095169067382, + "step": 200400 + }, + { + "epoch": 67.16919339978223, + "grad_norm": 0.6665573120117188, + "learning_rate": 1.643031825795645e-05, + "loss": 0.1919367218017578, + "step": 200500 + }, + { + "epoch": 67.20269704330346, + "grad_norm": 0.6951255798339844, + "learning_rate": 1.6413567839195983e-05, + "loss": 0.19197673797607423, + "step": 200600 + }, + { + "epoch": 67.23620068682469, + "grad_norm": 0.6771343946456909, + "learning_rate": 1.639681742043551e-05, + "loss": 0.1921021270751953, + "step": 200700 + }, + { + "epoch": 67.26970433034593, + "grad_norm": 0.6687894463539124, + "learning_rate": 1.6380067001675044e-05, + "loss": 0.19192752838134766, + "step": 200800 + }, + { + "epoch": 67.30320797386716, + "grad_norm": 0.7397539019584656, + "learning_rate": 1.6363316582914573e-05, + "loss": 0.1915091323852539, + "step": 200900 + }, + { + "epoch": 67.33671161738839, + "grad_norm": 0.6094964742660522, + "learning_rate": 1.6346566164154105e-05, + "loss": 0.1940443992614746, + "step": 201000 + }, + { + "epoch": 67.37021526090962, + "grad_norm": 0.5608842372894287, + "learning_rate": 1.6329815745393637e-05, + "loss": 0.19360294342041015, + "step": 201100 + }, + { + "epoch": 67.40371890443086, + "grad_norm": 0.6738369464874268, + "learning_rate": 1.6313065326633166e-05, + "loss": 0.19352413177490235, + "step": 201200 + }, + { + "epoch": 67.43722254795209, + "grad_norm": 0.7028993964195251, + "learning_rate": 1.6296482412060302e-05, + "loss": 0.1933650016784668, + "step": 201300 + }, + { + "epoch": 67.47072619147332, + "grad_norm": 0.5576817989349365, + "learning_rate": 1.627973199329983e-05, + "loss": 0.19390420913696288, + "step": 201400 + }, + { + "epoch": 67.50422983499456, + "grad_norm": 0.6411824226379395, + "learning_rate": 1.6262981574539366e-05, + "loss": 0.1935529899597168, + "step": 201500 + }, + { + "epoch": 67.53773347851579, + "grad_norm": 0.6373094916343689, + "learning_rate": 1.6246231155778895e-05, + "loss": 0.19391347885131835, + "step": 201600 + }, + { + "epoch": 67.57123712203702, + "grad_norm": 0.6556655168533325, + "learning_rate": 1.6229480737018427e-05, + "loss": 0.19495166778564454, + "step": 201700 + }, + { + "epoch": 67.60474076555825, + "grad_norm": 0.6322004199028015, + "learning_rate": 1.6212730318257956e-05, + "loss": 0.1953642463684082, + "step": 201800 + }, + { + "epoch": 67.63824440907949, + "grad_norm": 0.6095288395881653, + "learning_rate": 1.619597989949749e-05, + "loss": 0.19500333786010743, + "step": 201900 + }, + { + "epoch": 67.67174805260072, + "grad_norm": 0.5999951362609863, + "learning_rate": 1.6179229480737017e-05, + "loss": 0.19503114700317384, + "step": 202000 + }, + { + "epoch": 67.70525169612195, + "grad_norm": 0.7297765016555786, + "learning_rate": 1.6162479061976553e-05, + "loss": 0.19440362930297853, + "step": 202100 + }, + { + "epoch": 67.73875533964319, + "grad_norm": 0.7177837491035461, + "learning_rate": 1.614572864321608e-05, + "loss": 0.19499702453613282, + "step": 202200 + }, + { + "epoch": 67.77225898316442, + "grad_norm": 0.8244702219963074, + "learning_rate": 1.6128978224455614e-05, + "loss": 0.19555707931518554, + "step": 202300 + }, + { + "epoch": 67.80576262668565, + "grad_norm": 0.6373338103294373, + "learning_rate": 1.6112227805695143e-05, + "loss": 0.195418758392334, + "step": 202400 + }, + { + "epoch": 67.83926627020689, + "grad_norm": 0.6217545866966248, + "learning_rate": 1.6095477386934675e-05, + "loss": 0.19555667877197266, + "step": 202500 + }, + { + "epoch": 67.87276991372812, + "grad_norm": 0.6853159070014954, + "learning_rate": 1.6078726968174204e-05, + "loss": 0.19608963012695313, + "step": 202600 + }, + { + "epoch": 67.90627355724935, + "grad_norm": 0.6794860363006592, + "learning_rate": 1.6061976549413736e-05, + "loss": 0.19546913146972655, + "step": 202700 + }, + { + "epoch": 67.93977720077058, + "grad_norm": 0.6505772471427917, + "learning_rate": 1.6045226130653268e-05, + "loss": 0.19603317260742187, + "step": 202800 + }, + { + "epoch": 67.97328084429182, + "grad_norm": 0.6339512467384338, + "learning_rate": 1.60284757118928e-05, + "loss": 0.19620756149291993, + "step": 202900 + }, + { + "epoch": 68.00670072870425, + "grad_norm": 0.602581799030304, + "learning_rate": 1.601172529313233e-05, + "loss": 0.19463903427124024, + "step": 203000 + }, + { + "epoch": 68.04020437222547, + "grad_norm": 0.5730949640274048, + "learning_rate": 1.599497487437186e-05, + "loss": 0.19001585006713867, + "step": 203100 + }, + { + "epoch": 68.07370801574672, + "grad_norm": 0.5395110845565796, + "learning_rate": 1.597822445561139e-05, + "loss": 0.19011409759521483, + "step": 203200 + }, + { + "epoch": 68.10721165926795, + "grad_norm": 0.5770024657249451, + "learning_rate": 1.5961474036850922e-05, + "loss": 0.1901267433166504, + "step": 203300 + }, + { + "epoch": 68.14071530278918, + "grad_norm": 0.7738876342773438, + "learning_rate": 1.5944891122278058e-05, + "loss": 0.1905143928527832, + "step": 203400 + }, + { + "epoch": 68.17421894631042, + "grad_norm": 0.7363227605819702, + "learning_rate": 1.5928140703517587e-05, + "loss": 0.19049446105957032, + "step": 203500 + }, + { + "epoch": 68.20772258983165, + "grad_norm": 0.7116740345954895, + "learning_rate": 1.591139028475712e-05, + "loss": 0.19107500076293946, + "step": 203600 + }, + { + "epoch": 68.24122623335288, + "grad_norm": 0.715164840221405, + "learning_rate": 1.5894639865996648e-05, + "loss": 0.19192060470581054, + "step": 203700 + }, + { + "epoch": 68.2747298768741, + "grad_norm": 0.7426648736000061, + "learning_rate": 1.5877889447236184e-05, + "loss": 0.19199298858642577, + "step": 203800 + }, + { + "epoch": 68.30823352039535, + "grad_norm": 0.6598964929580688, + "learning_rate": 1.5861139028475713e-05, + "loss": 0.19214748382568358, + "step": 203900 + }, + { + "epoch": 68.34173716391658, + "grad_norm": 0.7202093601226807, + "learning_rate": 1.5844388609715245e-05, + "loss": 0.191875, + "step": 204000 + }, + { + "epoch": 68.3752408074378, + "grad_norm": 0.7151044607162476, + "learning_rate": 1.5827638190954774e-05, + "loss": 0.1921199607849121, + "step": 204100 + }, + { + "epoch": 68.40874445095905, + "grad_norm": 0.6264718174934387, + "learning_rate": 1.5810887772194306e-05, + "loss": 0.1933818244934082, + "step": 204200 + }, + { + "epoch": 68.44224809448028, + "grad_norm": 0.6225735545158386, + "learning_rate": 1.5794137353433835e-05, + "loss": 0.19361408233642577, + "step": 204300 + }, + { + "epoch": 68.4757517380015, + "grad_norm": 0.7502007484436035, + "learning_rate": 1.577738693467337e-05, + "loss": 0.1928209114074707, + "step": 204400 + }, + { + "epoch": 68.50925538152273, + "grad_norm": 0.6535805463790894, + "learning_rate": 1.57606365159129e-05, + "loss": 0.1925800323486328, + "step": 204500 + }, + { + "epoch": 68.54275902504398, + "grad_norm": 0.6184046864509583, + "learning_rate": 1.574388609715243e-05, + "loss": 0.1938844680786133, + "step": 204600 + }, + { + "epoch": 68.5762626685652, + "grad_norm": 0.642119824886322, + "learning_rate": 1.572713567839196e-05, + "loss": 0.1933103942871094, + "step": 204700 + }, + { + "epoch": 68.60976631208644, + "grad_norm": 0.6790170669555664, + "learning_rate": 1.5710385259631492e-05, + "loss": 0.1948932647705078, + "step": 204800 + }, + { + "epoch": 68.64326995560768, + "grad_norm": 0.647903323173523, + "learning_rate": 1.569363484087102e-05, + "loss": 0.1952429962158203, + "step": 204900 + }, + { + "epoch": 68.67677359912891, + "grad_norm": 0.77556312084198, + "learning_rate": 1.5676884422110553e-05, + "loss": 0.19408275604248046, + "step": 205000 + }, + { + "epoch": 68.71027724265014, + "grad_norm": 0.6710578203201294, + "learning_rate": 1.5660134003350085e-05, + "loss": 0.1949919319152832, + "step": 205100 + }, + { + "epoch": 68.74378088617136, + "grad_norm": 0.6515961289405823, + "learning_rate": 1.5643383584589614e-05, + "loss": 0.19462379455566406, + "step": 205200 + }, + { + "epoch": 68.77728452969261, + "grad_norm": 0.7134996652603149, + "learning_rate": 1.5626633165829147e-05, + "loss": 0.19480768203735352, + "step": 205300 + }, + { + "epoch": 68.81078817321384, + "grad_norm": 0.5678537487983704, + "learning_rate": 1.5610050251256282e-05, + "loss": 0.1956866455078125, + "step": 205400 + }, + { + "epoch": 68.84429181673507, + "grad_norm": 0.627916157245636, + "learning_rate": 1.5593299832495815e-05, + "loss": 0.19494726181030272, + "step": 205500 + }, + { + "epoch": 68.87779546025631, + "grad_norm": 0.5940144062042236, + "learning_rate": 1.5576549413735343e-05, + "loss": 0.19554563522338866, + "step": 205600 + }, + { + "epoch": 68.91129910377754, + "grad_norm": 0.7416447401046753, + "learning_rate": 1.5559798994974876e-05, + "loss": 0.19647571563720703, + "step": 205700 + }, + { + "epoch": 68.94480274729877, + "grad_norm": 0.6104159355163574, + "learning_rate": 1.5543048576214404e-05, + "loss": 0.19543346405029297, + "step": 205800 + }, + { + "epoch": 68.97830639082, + "grad_norm": 0.7064023613929749, + "learning_rate": 1.5526298157453937e-05, + "loss": 0.19565975189208984, + "step": 205900 + }, + { + "epoch": 69.01172627523243, + "grad_norm": 0.6279042363166809, + "learning_rate": 1.5509547738693466e-05, + "loss": 0.1939265251159668, + "step": 206000 + }, + { + "epoch": 69.04522991875366, + "grad_norm": 0.6966283917427063, + "learning_rate": 1.5492797319933e-05, + "loss": 0.18873752593994142, + "step": 206100 + }, + { + "epoch": 69.07873356227489, + "grad_norm": 0.598598062992096, + "learning_rate": 1.547604690117253e-05, + "loss": 0.19044071197509765, + "step": 206200 + }, + { + "epoch": 69.11223720579613, + "grad_norm": 0.6215249300003052, + "learning_rate": 1.5459296482412062e-05, + "loss": 0.18954809188842772, + "step": 206300 + }, + { + "epoch": 69.14574084931736, + "grad_norm": 0.6590831279754639, + "learning_rate": 1.544254606365159e-05, + "loss": 0.1906461524963379, + "step": 206400 + }, + { + "epoch": 69.17924449283859, + "grad_norm": 0.5938999056816101, + "learning_rate": 1.5425795644891123e-05, + "loss": 0.1904694175720215, + "step": 206500 + }, + { + "epoch": 69.21274813635983, + "grad_norm": 0.5933434367179871, + "learning_rate": 1.5409045226130652e-05, + "loss": 0.19135387420654296, + "step": 206600 + }, + { + "epoch": 69.24625177988106, + "grad_norm": 0.7321082353591919, + "learning_rate": 1.5392294807370188e-05, + "loss": 0.19140138626098632, + "step": 206700 + }, + { + "epoch": 69.27975542340229, + "grad_norm": 0.7632362842559814, + "learning_rate": 1.5375544388609716e-05, + "loss": 0.19026206970214843, + "step": 206800 + }, + { + "epoch": 69.31325906692352, + "grad_norm": 0.5204057097434998, + "learning_rate": 1.535879396984925e-05, + "loss": 0.19211410522460937, + "step": 206900 + }, + { + "epoch": 69.34676271044476, + "grad_norm": 0.5607998967170715, + "learning_rate": 1.5342043551088777e-05, + "loss": 0.19179800033569336, + "step": 207000 + }, + { + "epoch": 69.380266353966, + "grad_norm": 0.6838735342025757, + "learning_rate": 1.532529313232831e-05, + "loss": 0.1921243476867676, + "step": 207100 + }, + { + "epoch": 69.41376999748722, + "grad_norm": 0.7290564179420471, + "learning_rate": 1.530854271356784e-05, + "loss": 0.1927803611755371, + "step": 207200 + }, + { + "epoch": 69.44727364100847, + "grad_norm": 0.678501307964325, + "learning_rate": 1.529179229480737e-05, + "loss": 0.19337810516357423, + "step": 207300 + }, + { + "epoch": 69.4807772845297, + "grad_norm": 0.6822425723075867, + "learning_rate": 1.5275041876046903e-05, + "loss": 0.1925121307373047, + "step": 207400 + }, + { + "epoch": 69.51428092805092, + "grad_norm": 0.5909448266029358, + "learning_rate": 1.5258458961474037e-05, + "loss": 0.1932221221923828, + "step": 207500 + }, + { + "epoch": 69.54778457157215, + "grad_norm": 0.5861632823944092, + "learning_rate": 1.5241708542713568e-05, + "loss": 0.19226568222045898, + "step": 207600 + }, + { + "epoch": 69.5812882150934, + "grad_norm": 0.6072438359260559, + "learning_rate": 1.5224958123953102e-05, + "loss": 0.19327423095703125, + "step": 207700 + }, + { + "epoch": 69.61479185861462, + "grad_norm": 0.7752787470817566, + "learning_rate": 1.5208207705192632e-05, + "loss": 0.19411521911621094, + "step": 207800 + }, + { + "epoch": 69.64829550213585, + "grad_norm": 0.604340672492981, + "learning_rate": 1.5191457286432163e-05, + "loss": 0.19500984191894533, + "step": 207900 + }, + { + "epoch": 69.6817991456571, + "grad_norm": 0.5669907331466675, + "learning_rate": 1.5174706867671693e-05, + "loss": 0.19465980529785157, + "step": 208000 + }, + { + "epoch": 69.71530278917832, + "grad_norm": 0.624899685382843, + "learning_rate": 1.5157956448911224e-05, + "loss": 0.1940926742553711, + "step": 208100 + }, + { + "epoch": 69.74880643269955, + "grad_norm": 0.7137749195098877, + "learning_rate": 1.5141206030150754e-05, + "loss": 0.19328271865844726, + "step": 208200 + }, + { + "epoch": 69.7823100762208, + "grad_norm": 0.7387290000915527, + "learning_rate": 1.5124455611390285e-05, + "loss": 0.1953897285461426, + "step": 208300 + }, + { + "epoch": 69.81581371974202, + "grad_norm": 0.5705156326293945, + "learning_rate": 1.5107705192629817e-05, + "loss": 0.194132022857666, + "step": 208400 + }, + { + "epoch": 69.84931736326325, + "grad_norm": 0.6383335590362549, + "learning_rate": 1.5090954773869347e-05, + "loss": 0.1951007652282715, + "step": 208500 + }, + { + "epoch": 69.88282100678448, + "grad_norm": 0.6704970002174377, + "learning_rate": 1.5074204355108878e-05, + "loss": 0.19534845352172853, + "step": 208600 + }, + { + "epoch": 69.91632465030573, + "grad_norm": 0.5984908938407898, + "learning_rate": 1.5057453936348408e-05, + "loss": 0.19434907913208008, + "step": 208700 + }, + { + "epoch": 69.94982829382695, + "grad_norm": 0.6464018821716309, + "learning_rate": 1.5040703517587939e-05, + "loss": 0.19456119537353517, + "step": 208800 + }, + { + "epoch": 69.98333193734818, + "grad_norm": 0.7534891366958618, + "learning_rate": 1.502395309882747e-05, + "loss": 0.1956119155883789, + "step": 208900 + }, + { + "epoch": 70.01675182176062, + "grad_norm": 0.7756277918815613, + "learning_rate": 1.5007202680067003e-05, + "loss": 0.19219749450683593, + "step": 209000 + }, + { + "epoch": 70.05025546528185, + "grad_norm": 0.6661693453788757, + "learning_rate": 1.4990452261306534e-05, + "loss": 0.1881481170654297, + "step": 209100 + }, + { + "epoch": 70.08375910880308, + "grad_norm": 0.6152818202972412, + "learning_rate": 1.4973701842546064e-05, + "loss": 0.18986621856689453, + "step": 209200 + }, + { + "epoch": 70.11726275232432, + "grad_norm": 0.5430614352226257, + "learning_rate": 1.4956951423785595e-05, + "loss": 0.1886882209777832, + "step": 209300 + }, + { + "epoch": 70.15076639584555, + "grad_norm": 0.6443721652030945, + "learning_rate": 1.4940201005025125e-05, + "loss": 0.19037208557128907, + "step": 209400 + }, + { + "epoch": 70.18427003936678, + "grad_norm": 0.6034039855003357, + "learning_rate": 1.4923450586264656e-05, + "loss": 0.18961322784423829, + "step": 209500 + }, + { + "epoch": 70.21777368288801, + "grad_norm": 0.6922727227210999, + "learning_rate": 1.4906867671691794e-05, + "loss": 0.19092901229858397, + "step": 209600 + }, + { + "epoch": 70.25127732640925, + "grad_norm": 0.7775962352752686, + "learning_rate": 1.4890117252931324e-05, + "loss": 0.1911904525756836, + "step": 209700 + }, + { + "epoch": 70.28478096993048, + "grad_norm": 0.6121329665184021, + "learning_rate": 1.4873366834170855e-05, + "loss": 0.19077373504638673, + "step": 209800 + }, + { + "epoch": 70.31828461345171, + "grad_norm": 0.6311072707176208, + "learning_rate": 1.4856616415410385e-05, + "loss": 0.19276874542236327, + "step": 209900 + }, + { + "epoch": 70.35178825697295, + "grad_norm": 0.6190215349197388, + "learning_rate": 1.4839865996649919e-05, + "loss": 0.1920265007019043, + "step": 210000 + }, + { + "epoch": 70.38529190049418, + "grad_norm": 0.7317872047424316, + "learning_rate": 1.482311557788945e-05, + "loss": 0.1915855026245117, + "step": 210100 + }, + { + "epoch": 70.41879554401541, + "grad_norm": 0.5770769715309143, + "learning_rate": 1.480636515912898e-05, + "loss": 0.19160455703735352, + "step": 210200 + }, + { + "epoch": 70.45229918753664, + "grad_norm": 0.4898484945297241, + "learning_rate": 1.478961474036851e-05, + "loss": 0.19282726287841798, + "step": 210300 + }, + { + "epoch": 70.48580283105788, + "grad_norm": 0.7757408618927002, + "learning_rate": 1.4772864321608041e-05, + "loss": 0.19382453918457032, + "step": 210400 + }, + { + "epoch": 70.51930647457911, + "grad_norm": 0.7815673351287842, + "learning_rate": 1.4756113902847572e-05, + "loss": 0.19315202713012694, + "step": 210500 + }, + { + "epoch": 70.55281011810034, + "grad_norm": 0.6631892323493958, + "learning_rate": 1.4739363484087104e-05, + "loss": 0.1935376739501953, + "step": 210600 + }, + { + "epoch": 70.58631376162158, + "grad_norm": 0.6759666204452515, + "learning_rate": 1.4722613065326634e-05, + "loss": 0.19363182067871093, + "step": 210700 + }, + { + "epoch": 70.61981740514281, + "grad_norm": 0.7577219605445862, + "learning_rate": 1.4705862646566165e-05, + "loss": 0.19298139572143555, + "step": 210800 + }, + { + "epoch": 70.65332104866404, + "grad_norm": 0.5035127997398376, + "learning_rate": 1.4689112227805695e-05, + "loss": 0.19403892517089844, + "step": 210900 + }, + { + "epoch": 70.68682469218527, + "grad_norm": 0.6267746090888977, + "learning_rate": 1.4672361809045226e-05, + "loss": 0.19389795303344726, + "step": 211000 + }, + { + "epoch": 70.72032833570651, + "grad_norm": 0.7773340344429016, + "learning_rate": 1.4655611390284756e-05, + "loss": 0.19378913879394533, + "step": 211100 + }, + { + "epoch": 70.75383197922774, + "grad_norm": 0.6656227111816406, + "learning_rate": 1.4638860971524287e-05, + "loss": 0.19349145889282227, + "step": 211200 + }, + { + "epoch": 70.78733562274897, + "grad_norm": 0.5681379437446594, + "learning_rate": 1.462211055276382e-05, + "loss": 0.19408063888549804, + "step": 211300 + }, + { + "epoch": 70.82083926627021, + "grad_norm": 0.7380396127700806, + "learning_rate": 1.4605360134003351e-05, + "loss": 0.19320615768432617, + "step": 211400 + }, + { + "epoch": 70.85434290979144, + "grad_norm": 0.5551620721817017, + "learning_rate": 1.4588609715242882e-05, + "loss": 0.19429174423217774, + "step": 211500 + }, + { + "epoch": 70.88784655331267, + "grad_norm": 0.6880864500999451, + "learning_rate": 1.4572026800670016e-05, + "loss": 0.19458511352539062, + "step": 211600 + }, + { + "epoch": 70.9213501968339, + "grad_norm": 0.6348493099212646, + "learning_rate": 1.455527638190955e-05, + "loss": 0.19401802062988283, + "step": 211700 + }, + { + "epoch": 70.95485384035514, + "grad_norm": 0.8191368579864502, + "learning_rate": 1.453852596314908e-05, + "loss": 0.19446285247802733, + "step": 211800 + }, + { + "epoch": 70.98835748387637, + "grad_norm": 0.7762120366096497, + "learning_rate": 1.4521775544388611e-05, + "loss": 0.19511171340942382, + "step": 211900 + }, + { + "epoch": 71.0217773682888, + "grad_norm": 0.5584473609924316, + "learning_rate": 1.4505025125628141e-05, + "loss": 0.19062902450561522, + "step": 212000 + }, + { + "epoch": 71.05528101181004, + "grad_norm": 0.5374318957328796, + "learning_rate": 1.4488274706867672e-05, + "loss": 0.18799392700195314, + "step": 212100 + }, + { + "epoch": 71.08878465533127, + "grad_norm": 0.5808698534965515, + "learning_rate": 1.4471524288107202e-05, + "loss": 0.18921010971069335, + "step": 212200 + }, + { + "epoch": 71.1222882988525, + "grad_norm": 0.5353220701217651, + "learning_rate": 1.4454773869346735e-05, + "loss": 0.18873760223388672, + "step": 212300 + }, + { + "epoch": 71.15579194237374, + "grad_norm": 0.8585773706436157, + "learning_rate": 1.4438023450586265e-05, + "loss": 0.1902440071105957, + "step": 212400 + }, + { + "epoch": 71.18929558589497, + "grad_norm": 0.5950562357902527, + "learning_rate": 1.4421273031825797e-05, + "loss": 0.19001707077026367, + "step": 212500 + }, + { + "epoch": 71.2227992294162, + "grad_norm": 0.61844801902771, + "learning_rate": 1.4404522613065328e-05, + "loss": 0.1902621269226074, + "step": 212600 + }, + { + "epoch": 71.25630287293743, + "grad_norm": 0.6289156079292297, + "learning_rate": 1.4387772194304858e-05, + "loss": 0.19079328536987306, + "step": 212700 + }, + { + "epoch": 71.28980651645867, + "grad_norm": 0.5846434235572815, + "learning_rate": 1.4371021775544389e-05, + "loss": 0.19066036224365235, + "step": 212800 + }, + { + "epoch": 71.3233101599799, + "grad_norm": 0.5743843913078308, + "learning_rate": 1.4354271356783921e-05, + "loss": 0.19171554565429688, + "step": 212900 + }, + { + "epoch": 71.35681380350113, + "grad_norm": 0.7006944417953491, + "learning_rate": 1.4337520938023452e-05, + "loss": 0.19167909622192383, + "step": 213000 + }, + { + "epoch": 71.39031744702237, + "grad_norm": 0.8413968086242676, + "learning_rate": 1.4320770519262982e-05, + "loss": 0.19105392456054687, + "step": 213100 + }, + { + "epoch": 71.4238210905436, + "grad_norm": 0.5824098587036133, + "learning_rate": 1.4304020100502513e-05, + "loss": 0.1920245933532715, + "step": 213200 + }, + { + "epoch": 71.45732473406483, + "grad_norm": 0.6288939714431763, + "learning_rate": 1.4287269681742043e-05, + "loss": 0.19186897277832032, + "step": 213300 + }, + { + "epoch": 71.49082837758607, + "grad_norm": 0.691856324672699, + "learning_rate": 1.4270519262981574e-05, + "loss": 0.19312944412231445, + "step": 213400 + }, + { + "epoch": 71.5243320211073, + "grad_norm": 0.7578767538070679, + "learning_rate": 1.4253768844221108e-05, + "loss": 0.19235544204711913, + "step": 213500 + }, + { + "epoch": 71.55783566462853, + "grad_norm": 0.6085563898086548, + "learning_rate": 1.4237185929648242e-05, + "loss": 0.1931236457824707, + "step": 213600 + }, + { + "epoch": 71.59133930814976, + "grad_norm": 0.6119518876075745, + "learning_rate": 1.4220435510887772e-05, + "loss": 0.1938382339477539, + "step": 213700 + }, + { + "epoch": 71.624842951671, + "grad_norm": 0.6922339797019958, + "learning_rate": 1.4203685092127303e-05, + "loss": 0.19215814590454103, + "step": 213800 + }, + { + "epoch": 71.65834659519223, + "grad_norm": 0.7278738021850586, + "learning_rate": 1.4186934673366837e-05, + "loss": 0.19262287139892578, + "step": 213900 + }, + { + "epoch": 71.69185023871346, + "grad_norm": 0.6596753597259521, + "learning_rate": 1.4170184254606367e-05, + "loss": 0.19238534927368164, + "step": 214000 + }, + { + "epoch": 71.7253538822347, + "grad_norm": 0.6864719986915588, + "learning_rate": 1.4153433835845898e-05, + "loss": 0.1925214958190918, + "step": 214100 + }, + { + "epoch": 71.75885752575593, + "grad_norm": 0.6517135500907898, + "learning_rate": 1.4136683417085428e-05, + "loss": 0.1944540786743164, + "step": 214200 + }, + { + "epoch": 71.79236116927716, + "grad_norm": 0.7503974437713623, + "learning_rate": 1.4119932998324959e-05, + "loss": 0.1933121109008789, + "step": 214300 + }, + { + "epoch": 71.82586481279839, + "grad_norm": 0.60938960313797, + "learning_rate": 1.410318257956449e-05, + "loss": 0.19333812713623047, + "step": 214400 + }, + { + "epoch": 71.85936845631963, + "grad_norm": 0.659631073474884, + "learning_rate": 1.408643216080402e-05, + "loss": 0.19322057723999023, + "step": 214500 + }, + { + "epoch": 71.89287209984086, + "grad_norm": 0.6466450095176697, + "learning_rate": 1.4069681742043552e-05, + "loss": 0.19311923980712892, + "step": 214600 + }, + { + "epoch": 71.92637574336209, + "grad_norm": 0.6093922853469849, + "learning_rate": 1.4052931323283083e-05, + "loss": 0.19498254776000976, + "step": 214700 + }, + { + "epoch": 71.95987938688333, + "grad_norm": 0.7445212602615356, + "learning_rate": 1.4036180904522613e-05, + "loss": 0.19384960174560548, + "step": 214800 + }, + { + "epoch": 71.99338303040456, + "grad_norm": 0.5651571750640869, + "learning_rate": 1.4019430485762144e-05, + "loss": 0.193801212310791, + "step": 214900 + }, + { + "epoch": 72.02680291481698, + "grad_norm": 0.6022223234176636, + "learning_rate": 1.4002680067001674e-05, + "loss": 0.18981178283691405, + "step": 215000 + }, + { + "epoch": 72.06030655833823, + "grad_norm": 0.6050201058387756, + "learning_rate": 1.3985929648241206e-05, + "loss": 0.18904420852661133, + "step": 215100 + }, + { + "epoch": 72.09381020185945, + "grad_norm": 0.6156114935874939, + "learning_rate": 1.3969179229480739e-05, + "loss": 0.18817174911499024, + "step": 215200 + }, + { + "epoch": 72.12731384538068, + "grad_norm": 0.5546871423721313, + "learning_rate": 1.3952428810720269e-05, + "loss": 0.1889004898071289, + "step": 215300 + }, + { + "epoch": 72.16081748890191, + "grad_norm": 0.6833284497261047, + "learning_rate": 1.39356783919598e-05, + "loss": 0.18958877563476562, + "step": 215400 + }, + { + "epoch": 72.19432113242316, + "grad_norm": 0.6149327754974365, + "learning_rate": 1.391892797319933e-05, + "loss": 0.1900411605834961, + "step": 215500 + }, + { + "epoch": 72.22782477594438, + "grad_norm": 0.7087824940681458, + "learning_rate": 1.3902345058626468e-05, + "loss": 0.1900062370300293, + "step": 215600 + }, + { + "epoch": 72.26132841946561, + "grad_norm": 0.7365740537643433, + "learning_rate": 1.3885594639865998e-05, + "loss": 0.18973686218261718, + "step": 215700 + }, + { + "epoch": 72.29483206298686, + "grad_norm": 0.6139353513717651, + "learning_rate": 1.3868844221105529e-05, + "loss": 0.19053438186645508, + "step": 215800 + }, + { + "epoch": 72.32833570650808, + "grad_norm": 0.5968282222747803, + "learning_rate": 1.385209380234506e-05, + "loss": 0.19114097595214843, + "step": 215900 + }, + { + "epoch": 72.36183935002931, + "grad_norm": 0.6676009893417358, + "learning_rate": 1.383534338358459e-05, + "loss": 0.1919625473022461, + "step": 216000 + }, + { + "epoch": 72.39534299355054, + "grad_norm": 0.7123656272888184, + "learning_rate": 1.381859296482412e-05, + "loss": 0.19244312286376952, + "step": 216100 + }, + { + "epoch": 72.42884663707179, + "grad_norm": 0.6703692078590393, + "learning_rate": 1.3801842546063654e-05, + "loss": 0.1909078025817871, + "step": 216200 + }, + { + "epoch": 72.46235028059301, + "grad_norm": 0.7729817032814026, + "learning_rate": 1.3785092127303185e-05, + "loss": 0.192000789642334, + "step": 216300 + }, + { + "epoch": 72.49585392411424, + "grad_norm": 0.7377496361732483, + "learning_rate": 1.3768341708542715e-05, + "loss": 0.19194664001464845, + "step": 216400 + }, + { + "epoch": 72.52935756763549, + "grad_norm": 0.7420958876609802, + "learning_rate": 1.3751591289782246e-05, + "loss": 0.19183109283447267, + "step": 216500 + }, + { + "epoch": 72.56286121115672, + "grad_norm": 0.5992802381515503, + "learning_rate": 1.3734840871021776e-05, + "loss": 0.19208011627197266, + "step": 216600 + }, + { + "epoch": 72.59636485467794, + "grad_norm": 0.7813421487808228, + "learning_rate": 1.3718090452261307e-05, + "loss": 0.19179468154907225, + "step": 216700 + }, + { + "epoch": 72.62986849819917, + "grad_norm": 0.6775956153869629, + "learning_rate": 1.3701340033500837e-05, + "loss": 0.19274057388305665, + "step": 216800 + }, + { + "epoch": 72.66337214172042, + "grad_norm": 0.7122693657875061, + "learning_rate": 1.368458961474037e-05, + "loss": 0.1917710304260254, + "step": 216900 + }, + { + "epoch": 72.69687578524164, + "grad_norm": 0.7028974890708923, + "learning_rate": 1.36678391959799e-05, + "loss": 0.1918616485595703, + "step": 217000 + }, + { + "epoch": 72.73037942876287, + "grad_norm": 0.6234395503997803, + "learning_rate": 1.365108877721943e-05, + "loss": 0.192793025970459, + "step": 217100 + }, + { + "epoch": 72.76388307228412, + "grad_norm": 0.7795095443725586, + "learning_rate": 1.3634338358458961e-05, + "loss": 0.19276504516601561, + "step": 217200 + }, + { + "epoch": 72.79738671580535, + "grad_norm": 0.5714548230171204, + "learning_rate": 1.3617587939698492e-05, + "loss": 0.19352224349975586, + "step": 217300 + }, + { + "epoch": 72.83089035932657, + "grad_norm": 0.6443431973457336, + "learning_rate": 1.3600837520938022e-05, + "loss": 0.19274961471557617, + "step": 217400 + }, + { + "epoch": 72.8643940028478, + "grad_norm": 0.732292890548706, + "learning_rate": 1.3584087102177556e-05, + "loss": 0.19329883575439452, + "step": 217500 + }, + { + "epoch": 72.89789764636905, + "grad_norm": 0.6586911082267761, + "learning_rate": 1.3567336683417087e-05, + "loss": 0.19275350570678712, + "step": 217600 + }, + { + "epoch": 72.93140128989027, + "grad_norm": 0.4131799638271332, + "learning_rate": 1.355075376884422e-05, + "loss": 0.19394960403442382, + "step": 217700 + }, + { + "epoch": 72.9649049334115, + "grad_norm": 0.720600426197052, + "learning_rate": 1.3534003350083751e-05, + "loss": 0.19370002746582032, + "step": 217800 + }, + { + "epoch": 72.99840857693275, + "grad_norm": 0.7249190211296082, + "learning_rate": 1.3517252931323285e-05, + "loss": 0.19390350341796875, + "step": 217900 + }, + { + "epoch": 73.03182846134517, + "grad_norm": 0.7347325086593628, + "learning_rate": 1.3500502512562816e-05, + "loss": 0.18822053909301759, + "step": 218000 + }, + { + "epoch": 73.0653321048664, + "grad_norm": 0.6100323796272278, + "learning_rate": 1.3483752093802346e-05, + "loss": 0.1878873062133789, + "step": 218100 + }, + { + "epoch": 73.09883574838764, + "grad_norm": 0.6328092217445374, + "learning_rate": 1.3467001675041877e-05, + "loss": 0.18838220596313476, + "step": 218200 + }, + { + "epoch": 73.13233939190887, + "grad_norm": 0.6140354871749878, + "learning_rate": 1.3450251256281407e-05, + "loss": 0.18931222915649415, + "step": 218300 + }, + { + "epoch": 73.1658430354301, + "grad_norm": 0.6713184118270874, + "learning_rate": 1.3433500837520938e-05, + "loss": 0.18979503631591796, + "step": 218400 + }, + { + "epoch": 73.19934667895133, + "grad_norm": 0.5946479439735413, + "learning_rate": 1.3416750418760472e-05, + "loss": 0.19020790100097656, + "step": 218500 + }, + { + "epoch": 73.23285032247257, + "grad_norm": 0.635026216506958, + "learning_rate": 1.3400000000000002e-05, + "loss": 0.19073740005493164, + "step": 218600 + }, + { + "epoch": 73.2663539659938, + "grad_norm": 0.8429803252220154, + "learning_rate": 1.3383249581239533e-05, + "loss": 0.19040184020996093, + "step": 218700 + }, + { + "epoch": 73.29985760951503, + "grad_norm": 0.6116558909416199, + "learning_rate": 1.3366499162479063e-05, + "loss": 0.1910529327392578, + "step": 218800 + }, + { + "epoch": 73.33336125303627, + "grad_norm": 0.6104078888893127, + "learning_rate": 1.3349748743718594e-05, + "loss": 0.19013742446899415, + "step": 218900 + }, + { + "epoch": 73.3668648965575, + "grad_norm": 0.6935064196586609, + "learning_rate": 1.3332998324958124e-05, + "loss": 0.19089607238769532, + "step": 219000 + }, + { + "epoch": 73.40036854007873, + "grad_norm": 0.6205075979232788, + "learning_rate": 1.3316247906197656e-05, + "loss": 0.18985008239746093, + "step": 219100 + }, + { + "epoch": 73.43387218359997, + "grad_norm": 0.6838747262954712, + "learning_rate": 1.3299497487437187e-05, + "loss": 0.19136251449584962, + "step": 219200 + }, + { + "epoch": 73.4673758271212, + "grad_norm": 0.5892935395240784, + "learning_rate": 1.3282747068676717e-05, + "loss": 0.19115791320800782, + "step": 219300 + }, + { + "epoch": 73.50087947064243, + "grad_norm": 0.6625847220420837, + "learning_rate": 1.3265996649916248e-05, + "loss": 0.1914684295654297, + "step": 219400 + }, + { + "epoch": 73.53438311416366, + "grad_norm": 0.5886939764022827, + "learning_rate": 1.3249246231155778e-05, + "loss": 0.19140581130981446, + "step": 219500 + }, + { + "epoch": 73.5678867576849, + "grad_norm": 0.6432992219924927, + "learning_rate": 1.3232495812395309e-05, + "loss": 0.19217498779296874, + "step": 219600 + }, + { + "epoch": 73.60139040120613, + "grad_norm": 0.537247896194458, + "learning_rate": 1.3215912897822447e-05, + "loss": 0.1916472816467285, + "step": 219700 + }, + { + "epoch": 73.63489404472736, + "grad_norm": 0.7746627330780029, + "learning_rate": 1.3199162479061977e-05, + "loss": 0.1921250343322754, + "step": 219800 + }, + { + "epoch": 73.6683976882486, + "grad_norm": 0.6342955827713013, + "learning_rate": 1.3182412060301508e-05, + "loss": 0.19181474685668945, + "step": 219900 + }, + { + "epoch": 73.70190133176983, + "grad_norm": 0.6556417346000671, + "learning_rate": 1.3165661641541038e-05, + "loss": 0.1932265853881836, + "step": 220000 + }, + { + "epoch": 73.73540497529106, + "grad_norm": 0.627204179763794, + "learning_rate": 1.3148911222780569e-05, + "loss": 0.19127828598022462, + "step": 220100 + }, + { + "epoch": 73.76890861881229, + "grad_norm": 0.5481722950935364, + "learning_rate": 1.3132160804020103e-05, + "loss": 0.19317052841186524, + "step": 220200 + }, + { + "epoch": 73.80241226233353, + "grad_norm": 0.6881102323532104, + "learning_rate": 1.3115410385259633e-05, + "loss": 0.1921912384033203, + "step": 220300 + }, + { + "epoch": 73.83591590585476, + "grad_norm": 0.5679818987846375, + "learning_rate": 1.3098659966499164e-05, + "loss": 0.19210420608520506, + "step": 220400 + }, + { + "epoch": 73.86941954937599, + "grad_norm": 0.6412058472633362, + "learning_rate": 1.3081909547738694e-05, + "loss": 0.19206573486328124, + "step": 220500 + }, + { + "epoch": 73.90292319289723, + "grad_norm": 0.586617648601532, + "learning_rate": 1.3065159128978225e-05, + "loss": 0.19283601760864258, + "step": 220600 + }, + { + "epoch": 73.93642683641846, + "grad_norm": 0.6339001655578613, + "learning_rate": 1.3048408710217755e-05, + "loss": 0.19282327651977538, + "step": 220700 + }, + { + "epoch": 73.96993047993969, + "grad_norm": 0.5810698866844177, + "learning_rate": 1.3031658291457289e-05, + "loss": 0.19248931884765624, + "step": 220800 + }, + { + "epoch": 74.00335036435213, + "grad_norm": 0.5315734148025513, + "learning_rate": 1.301490787269682e-05, + "loss": 0.19272197723388673, + "step": 220900 + }, + { + "epoch": 74.03685400787336, + "grad_norm": 0.5988895893096924, + "learning_rate": 1.299815745393635e-05, + "loss": 0.18879865646362304, + "step": 221000 + }, + { + "epoch": 74.07035765139459, + "grad_norm": 0.6475368142127991, + "learning_rate": 1.298140703517588e-05, + "loss": 0.18721097946166992, + "step": 221100 + }, + { + "epoch": 74.10386129491582, + "grad_norm": 0.5875990986824036, + "learning_rate": 1.2964656616415411e-05, + "loss": 0.18884235382080078, + "step": 221200 + }, + { + "epoch": 74.13736493843706, + "grad_norm": 0.7056507468223572, + "learning_rate": 1.2947906197654942e-05, + "loss": 0.1880255889892578, + "step": 221300 + }, + { + "epoch": 74.17086858195829, + "grad_norm": 0.7191376090049744, + "learning_rate": 1.2931155778894474e-05, + "loss": 0.18832271575927734, + "step": 221400 + }, + { + "epoch": 74.20437222547952, + "grad_norm": 0.6161214113235474, + "learning_rate": 1.2914405360134004e-05, + "loss": 0.1886260414123535, + "step": 221500 + }, + { + "epoch": 74.23787586900076, + "grad_norm": 0.6850497126579285, + "learning_rate": 1.2897654941373535e-05, + "loss": 0.18944147109985351, + "step": 221600 + }, + { + "epoch": 74.27137951252199, + "grad_norm": 0.7031293511390686, + "learning_rate": 1.2880904522613065e-05, + "loss": 0.18980978012084962, + "step": 221700 + }, + { + "epoch": 74.30488315604322, + "grad_norm": 0.7116613388061523, + "learning_rate": 1.2864321608040203e-05, + "loss": 0.19084714889526366, + "step": 221800 + }, + { + "epoch": 74.33838679956445, + "grad_norm": 0.6668044328689575, + "learning_rate": 1.2847571189279734e-05, + "loss": 0.1889169120788574, + "step": 221900 + }, + { + "epoch": 74.37189044308569, + "grad_norm": 0.7630614638328552, + "learning_rate": 1.2830820770519264e-05, + "loss": 0.1901887321472168, + "step": 222000 + }, + { + "epoch": 74.40539408660692, + "grad_norm": 0.6210822463035583, + "learning_rate": 1.2814070351758795e-05, + "loss": 0.18958797454833984, + "step": 222100 + }, + { + "epoch": 74.43889773012815, + "grad_norm": 0.674400806427002, + "learning_rate": 1.2797319932998325e-05, + "loss": 0.19211307525634766, + "step": 222200 + }, + { + "epoch": 74.47240137364939, + "grad_norm": 0.5624780058860779, + "learning_rate": 1.2780569514237856e-05, + "loss": 0.19077470779418945, + "step": 222300 + }, + { + "epoch": 74.50590501717062, + "grad_norm": 0.6902910470962524, + "learning_rate": 1.2763819095477386e-05, + "loss": 0.19062641143798828, + "step": 222400 + }, + { + "epoch": 74.53940866069185, + "grad_norm": 0.6203210353851318, + "learning_rate": 1.274706867671692e-05, + "loss": 0.19215831756591797, + "step": 222500 + }, + { + "epoch": 74.57291230421308, + "grad_norm": 0.6973204016685486, + "learning_rate": 1.273031825795645e-05, + "loss": 0.19094465255737306, + "step": 222600 + }, + { + "epoch": 74.60641594773432, + "grad_norm": 0.5848397016525269, + "learning_rate": 1.2713567839195981e-05, + "loss": 0.1918341827392578, + "step": 222700 + }, + { + "epoch": 74.63991959125555, + "grad_norm": 0.5930863618850708, + "learning_rate": 1.2696817420435512e-05, + "loss": 0.19197944641113282, + "step": 222800 + }, + { + "epoch": 74.67342323477678, + "grad_norm": 0.6419515609741211, + "learning_rate": 1.2680067001675042e-05, + "loss": 0.19171865463256835, + "step": 222900 + }, + { + "epoch": 74.70692687829802, + "grad_norm": 0.6278107762336731, + "learning_rate": 1.2663316582914573e-05, + "loss": 0.19249353408813477, + "step": 223000 + }, + { + "epoch": 74.74043052181925, + "grad_norm": 0.5512995719909668, + "learning_rate": 1.2646566164154105e-05, + "loss": 0.19145532608032226, + "step": 223100 + }, + { + "epoch": 74.77393416534048, + "grad_norm": 0.6217749714851379, + "learning_rate": 1.2629815745393635e-05, + "loss": 0.19141609191894532, + "step": 223200 + }, + { + "epoch": 74.8074378088617, + "grad_norm": 0.672197699546814, + "learning_rate": 1.2613065326633166e-05, + "loss": 0.19206232070922852, + "step": 223300 + }, + { + "epoch": 74.84094145238295, + "grad_norm": 0.6256102919578552, + "learning_rate": 1.2596314907872698e-05, + "loss": 0.19332118988037109, + "step": 223400 + }, + { + "epoch": 74.87444509590418, + "grad_norm": 0.5120044350624084, + "learning_rate": 1.2579564489112229e-05, + "loss": 0.19207197189331054, + "step": 223500 + }, + { + "epoch": 74.90794873942541, + "grad_norm": 0.6199808120727539, + "learning_rate": 1.2562814070351759e-05, + "loss": 0.19157859802246094, + "step": 223600 + }, + { + "epoch": 74.94145238294665, + "grad_norm": 0.7454675436019897, + "learning_rate": 1.2546063651591291e-05, + "loss": 0.19300016403198242, + "step": 223700 + }, + { + "epoch": 74.97495602646788, + "grad_norm": 0.5340383052825928, + "learning_rate": 1.2529313232830822e-05, + "loss": 0.1914585304260254, + "step": 223800 + }, + { + "epoch": 75.0083759108803, + "grad_norm": 0.529868483543396, + "learning_rate": 1.2512730318257956e-05, + "loss": 0.19096315383911133, + "step": 223900 + }, + { + "epoch": 75.04187955440155, + "grad_norm": 0.5163419246673584, + "learning_rate": 1.2495979899497488e-05, + "loss": 0.18681686401367187, + "step": 224000 + }, + { + "epoch": 75.07538319792278, + "grad_norm": 0.6350462436676025, + "learning_rate": 1.2479229480737019e-05, + "loss": 0.1882038688659668, + "step": 224100 + }, + { + "epoch": 75.108886841444, + "grad_norm": 0.5319573283195496, + "learning_rate": 1.246247906197655e-05, + "loss": 0.18803632736206055, + "step": 224200 + }, + { + "epoch": 75.14239048496523, + "grad_norm": 0.5288993120193481, + "learning_rate": 1.2445728643216081e-05, + "loss": 0.18808624267578125, + "step": 224300 + }, + { + "epoch": 75.17589412848648, + "grad_norm": 0.6789448261260986, + "learning_rate": 1.2428978224455612e-05, + "loss": 0.18842166900634766, + "step": 224400 + }, + { + "epoch": 75.2093977720077, + "grad_norm": 0.661927342414856, + "learning_rate": 1.2412227805695142e-05, + "loss": 0.18897750854492187, + "step": 224500 + }, + { + "epoch": 75.24290141552893, + "grad_norm": 0.5049561262130737, + "learning_rate": 1.2395477386934675e-05, + "loss": 0.18828922271728515, + "step": 224600 + }, + { + "epoch": 75.27640505905018, + "grad_norm": 0.5841866135597229, + "learning_rate": 1.2378726968174205e-05, + "loss": 0.18943553924560547, + "step": 224700 + }, + { + "epoch": 75.3099087025714, + "grad_norm": 0.6885756254196167, + "learning_rate": 1.2361976549413736e-05, + "loss": 0.18894081115722655, + "step": 224800 + }, + { + "epoch": 75.34341234609263, + "grad_norm": 0.7039951086044312, + "learning_rate": 1.2345226130653268e-05, + "loss": 0.18984657287597656, + "step": 224900 + }, + { + "epoch": 75.37691598961388, + "grad_norm": 0.6714735627174377, + "learning_rate": 1.2328475711892798e-05, + "loss": 0.19007621765136717, + "step": 225000 + }, + { + "epoch": 75.4104196331351, + "grad_norm": 0.637840986251831, + "learning_rate": 1.2311725293132329e-05, + "loss": 0.18986061096191406, + "step": 225100 + }, + { + "epoch": 75.44392327665634, + "grad_norm": 0.5885179042816162, + "learning_rate": 1.2294974874371861e-05, + "loss": 0.18973173141479494, + "step": 225200 + }, + { + "epoch": 75.47742692017756, + "grad_norm": 0.6655402779579163, + "learning_rate": 1.2278224455611392e-05, + "loss": 0.19028383255004883, + "step": 225300 + }, + { + "epoch": 75.5109305636988, + "grad_norm": 0.6711523532867432, + "learning_rate": 1.2261474036850922e-05, + "loss": 0.19036417007446288, + "step": 225400 + }, + { + "epoch": 75.54443420722004, + "grad_norm": 0.7367367744445801, + "learning_rate": 1.2244723618090453e-05, + "loss": 0.1918941307067871, + "step": 225500 + }, + { + "epoch": 75.57793785074126, + "grad_norm": 0.8443908095359802, + "learning_rate": 1.2227973199329983e-05, + "loss": 0.19089139938354494, + "step": 225600 + }, + { + "epoch": 75.61144149426251, + "grad_norm": 0.5808036923408508, + "learning_rate": 1.2211222780569514e-05, + "loss": 0.19058563232421874, + "step": 225700 + }, + { + "epoch": 75.64494513778374, + "grad_norm": 0.5212644934654236, + "learning_rate": 1.2194472361809046e-05, + "loss": 0.19121980667114258, + "step": 225800 + }, + { + "epoch": 75.67844878130497, + "grad_norm": 0.7097404599189758, + "learning_rate": 1.2177889447236182e-05, + "loss": 0.1912353515625, + "step": 225900 + }, + { + "epoch": 75.7119524248262, + "grad_norm": 0.6513300538063049, + "learning_rate": 1.2161139028475712e-05, + "loss": 0.19171392440795898, + "step": 226000 + }, + { + "epoch": 75.74545606834744, + "grad_norm": 0.6188165545463562, + "learning_rate": 1.2144388609715243e-05, + "loss": 0.19226541519165039, + "step": 226100 + }, + { + "epoch": 75.77895971186867, + "grad_norm": 0.6310757994651794, + "learning_rate": 1.2127638190954775e-05, + "loss": 0.1912686538696289, + "step": 226200 + }, + { + "epoch": 75.8124633553899, + "grad_norm": 0.6972214579582214, + "learning_rate": 1.2110887772194306e-05, + "loss": 0.19245899200439454, + "step": 226300 + }, + { + "epoch": 75.84596699891114, + "grad_norm": 0.6156506538391113, + "learning_rate": 1.2094137353433836e-05, + "loss": 0.1912640380859375, + "step": 226400 + }, + { + "epoch": 75.87947064243237, + "grad_norm": 0.627688467502594, + "learning_rate": 1.2077386934673367e-05, + "loss": 0.19346479415893555, + "step": 226500 + }, + { + "epoch": 75.9129742859536, + "grad_norm": 0.620262622833252, + "learning_rate": 1.2060636515912899e-05, + "loss": 0.19184036254882814, + "step": 226600 + }, + { + "epoch": 75.94647792947482, + "grad_norm": 0.6578592658042908, + "learning_rate": 1.204388609715243e-05, + "loss": 0.1920124626159668, + "step": 226700 + }, + { + "epoch": 75.97998157299607, + "grad_norm": 0.4712987542152405, + "learning_rate": 1.202713567839196e-05, + "loss": 0.19146875381469727, + "step": 226800 + }, + { + "epoch": 76.01340145740849, + "grad_norm": 0.5716565251350403, + "learning_rate": 1.2010385259631492e-05, + "loss": 0.19078388214111328, + "step": 226900 + }, + { + "epoch": 76.04690510092972, + "grad_norm": 0.7094972133636475, + "learning_rate": 1.1993634840871023e-05, + "loss": 0.18728803634643554, + "step": 227000 + }, + { + "epoch": 76.08040874445096, + "grad_norm": 0.6303561329841614, + "learning_rate": 1.1976884422110553e-05, + "loss": 0.18724044799804687, + "step": 227100 + }, + { + "epoch": 76.11391238797219, + "grad_norm": 0.7359886765480042, + "learning_rate": 1.1960134003350085e-05, + "loss": 0.1879755973815918, + "step": 227200 + }, + { + "epoch": 76.14741603149342, + "grad_norm": 0.857787013053894, + "learning_rate": 1.1943383584589616e-05, + "loss": 0.18758907318115234, + "step": 227300 + }, + { + "epoch": 76.18091967501466, + "grad_norm": 0.607428252696991, + "learning_rate": 1.1926633165829146e-05, + "loss": 0.18798053741455079, + "step": 227400 + }, + { + "epoch": 76.21442331853589, + "grad_norm": 0.8037320375442505, + "learning_rate": 1.1909882747068679e-05, + "loss": 0.1890050506591797, + "step": 227500 + }, + { + "epoch": 76.24792696205712, + "grad_norm": 0.6359191536903381, + "learning_rate": 1.1893132328308209e-05, + "loss": 0.18898937225341797, + "step": 227600 + }, + { + "epoch": 76.28143060557835, + "grad_norm": 0.6721845269203186, + "learning_rate": 1.187638190954774e-05, + "loss": 0.1883324432373047, + "step": 227700 + }, + { + "epoch": 76.3149342490996, + "grad_norm": 0.6467797756195068, + "learning_rate": 1.185963149078727e-05, + "loss": 0.1888943099975586, + "step": 227800 + }, + { + "epoch": 76.34843789262082, + "grad_norm": 0.7214395999908447, + "learning_rate": 1.1843048576214406e-05, + "loss": 0.1892184829711914, + "step": 227900 + }, + { + "epoch": 76.38194153614205, + "grad_norm": 0.6020253896713257, + "learning_rate": 1.1826298157453937e-05, + "loss": 0.1896377372741699, + "step": 228000 + }, + { + "epoch": 76.4154451796633, + "grad_norm": 0.6029198169708252, + "learning_rate": 1.1809547738693467e-05, + "loss": 0.18889514923095704, + "step": 228100 + }, + { + "epoch": 76.44894882318452, + "grad_norm": 0.7419018745422363, + "learning_rate": 1.1792797319933e-05, + "loss": 0.18998069763183595, + "step": 228200 + }, + { + "epoch": 76.48245246670575, + "grad_norm": 0.6079985499382019, + "learning_rate": 1.177604690117253e-05, + "loss": 0.19057266235351564, + "step": 228300 + }, + { + "epoch": 76.51595611022698, + "grad_norm": 0.6738330125808716, + "learning_rate": 1.175929648241206e-05, + "loss": 0.19021852493286132, + "step": 228400 + }, + { + "epoch": 76.54945975374822, + "grad_norm": 0.6184301376342773, + "learning_rate": 1.1742546063651593e-05, + "loss": 0.19030994415283203, + "step": 228500 + }, + { + "epoch": 76.58296339726945, + "grad_norm": 0.6210246682167053, + "learning_rate": 1.1725795644891123e-05, + "loss": 0.18975492477416991, + "step": 228600 + }, + { + "epoch": 76.61646704079068, + "grad_norm": 0.6398160457611084, + "learning_rate": 1.1709045226130654e-05, + "loss": 0.19056596755981445, + "step": 228700 + }, + { + "epoch": 76.64997068431192, + "grad_norm": 0.5791774392127991, + "learning_rate": 1.1692294807370186e-05, + "loss": 0.19000568389892578, + "step": 228800 + }, + { + "epoch": 76.68347432783315, + "grad_norm": 0.6452813744544983, + "learning_rate": 1.1675544388609716e-05, + "loss": 0.19119565963745117, + "step": 228900 + }, + { + "epoch": 76.71697797135438, + "grad_norm": 0.5637299418449402, + "learning_rate": 1.1658793969849247e-05, + "loss": 0.1906993293762207, + "step": 229000 + }, + { + "epoch": 76.75048161487561, + "grad_norm": 0.6561068892478943, + "learning_rate": 1.1642043551088777e-05, + "loss": 0.1915520668029785, + "step": 229100 + }, + { + "epoch": 76.78398525839685, + "grad_norm": 0.6777018904685974, + "learning_rate": 1.162529313232831e-05, + "loss": 0.19029684066772462, + "step": 229200 + }, + { + "epoch": 76.81748890191808, + "grad_norm": 0.4779558479785919, + "learning_rate": 1.160854271356784e-05, + "loss": 0.19119384765625, + "step": 229300 + }, + { + "epoch": 76.85099254543931, + "grad_norm": 0.5411806106567383, + "learning_rate": 1.159179229480737e-05, + "loss": 0.19078275680541992, + "step": 229400 + }, + { + "epoch": 76.88449618896055, + "grad_norm": 0.623041033744812, + "learning_rate": 1.1575041876046903e-05, + "loss": 0.19250349044799805, + "step": 229500 + }, + { + "epoch": 76.91799983248178, + "grad_norm": 0.5169858336448669, + "learning_rate": 1.1558291457286433e-05, + "loss": 0.19133710861206055, + "step": 229600 + }, + { + "epoch": 76.95150347600301, + "grad_norm": 0.5985132455825806, + "learning_rate": 1.1541541038525964e-05, + "loss": 0.19112289428710938, + "step": 229700 + }, + { + "epoch": 76.98500711952425, + "grad_norm": 0.6158753633499146, + "learning_rate": 1.1524790619765494e-05, + "loss": 0.1921292495727539, + "step": 229800 + }, + { + "epoch": 77.01842700393668, + "grad_norm": 0.5963013172149658, + "learning_rate": 1.1508040201005025e-05, + "loss": 0.18872583389282227, + "step": 229900 + }, + { + "epoch": 77.05193064745791, + "grad_norm": 0.5578435659408569, + "learning_rate": 1.149145728643216e-05, + "loss": 0.1861967658996582, + "step": 230000 + }, + { + "epoch": 77.08543429097914, + "grad_norm": 0.5361016988754272, + "learning_rate": 1.1474706867671691e-05, + "loss": 0.18753931045532227, + "step": 230100 + }, + { + "epoch": 77.11893793450038, + "grad_norm": 0.7023466229438782, + "learning_rate": 1.1457956448911223e-05, + "loss": 0.18739143371582032, + "step": 230200 + }, + { + "epoch": 77.15244157802161, + "grad_norm": 0.5231741666793823, + "learning_rate": 1.1441206030150754e-05, + "loss": 0.1882183074951172, + "step": 230300 + }, + { + "epoch": 77.18594522154284, + "grad_norm": 0.7267812490463257, + "learning_rate": 1.1424455611390284e-05, + "loss": 0.18830036163330077, + "step": 230400 + }, + { + "epoch": 77.21944886506408, + "grad_norm": 0.5698330998420715, + "learning_rate": 1.1407705192629817e-05, + "loss": 0.18730653762817384, + "step": 230500 + }, + { + "epoch": 77.25295250858531, + "grad_norm": 0.6907638907432556, + "learning_rate": 1.1390954773869347e-05, + "loss": 0.18742834091186522, + "step": 230600 + }, + { + "epoch": 77.28645615210654, + "grad_norm": 0.5616415739059448, + "learning_rate": 1.1374204355108878e-05, + "loss": 0.1885102844238281, + "step": 230700 + }, + { + "epoch": 77.31995979562778, + "grad_norm": 0.6362226009368896, + "learning_rate": 1.135745393634841e-05, + "loss": 0.18842847824096678, + "step": 230800 + }, + { + "epoch": 77.35346343914901, + "grad_norm": 0.5648617744445801, + "learning_rate": 1.134070351758794e-05, + "loss": 0.18916454315185546, + "step": 230900 + }, + { + "epoch": 77.38696708267024, + "grad_norm": 0.7212550044059753, + "learning_rate": 1.1323953098827471e-05, + "loss": 0.1888494873046875, + "step": 231000 + }, + { + "epoch": 77.42047072619147, + "grad_norm": 0.8556243777275085, + "learning_rate": 1.1307202680067003e-05, + "loss": 0.18897062301635742, + "step": 231100 + }, + { + "epoch": 77.45397436971271, + "grad_norm": 0.8663336634635925, + "learning_rate": 1.1290452261306534e-05, + "loss": 0.18911514282226563, + "step": 231200 + }, + { + "epoch": 77.48747801323394, + "grad_norm": 0.555095911026001, + "learning_rate": 1.1273701842546064e-05, + "loss": 0.19008974075317384, + "step": 231300 + }, + { + "epoch": 77.52098165675517, + "grad_norm": 0.5795916318893433, + "learning_rate": 1.1256951423785596e-05, + "loss": 0.19058879852294922, + "step": 231400 + }, + { + "epoch": 77.55448530027641, + "grad_norm": 0.6374692916870117, + "learning_rate": 1.1240201005025127e-05, + "loss": 0.19093334197998046, + "step": 231500 + }, + { + "epoch": 77.58798894379764, + "grad_norm": 0.5286735892295837, + "learning_rate": 1.1223450586264657e-05, + "loss": 0.18953340530395507, + "step": 231600 + }, + { + "epoch": 77.62149258731887, + "grad_norm": 0.7152593731880188, + "learning_rate": 1.120670016750419e-05, + "loss": 0.18968648910522462, + "step": 231700 + }, + { + "epoch": 77.6549962308401, + "grad_norm": 0.6775063276290894, + "learning_rate": 1.118994974874372e-05, + "loss": 0.19057016372680663, + "step": 231800 + }, + { + "epoch": 77.68849987436134, + "grad_norm": 0.5843816995620728, + "learning_rate": 1.117319932998325e-05, + "loss": 0.18996496200561525, + "step": 231900 + }, + { + "epoch": 77.72200351788257, + "grad_norm": 0.6201971769332886, + "learning_rate": 1.1156616415410385e-05, + "loss": 0.1909531021118164, + "step": 232000 + }, + { + "epoch": 77.7555071614038, + "grad_norm": 0.6630064249038696, + "learning_rate": 1.1139865996649915e-05, + "loss": 0.18996026992797851, + "step": 232100 + }, + { + "epoch": 77.78901080492504, + "grad_norm": 0.6778659224510193, + "learning_rate": 1.1123115577889448e-05, + "loss": 0.19063941955566407, + "step": 232200 + }, + { + "epoch": 77.82251444844627, + "grad_norm": 0.6163811087608337, + "learning_rate": 1.1106365159128978e-05, + "loss": 0.19099504470825196, + "step": 232300 + }, + { + "epoch": 77.8560180919675, + "grad_norm": 0.5668363571166992, + "learning_rate": 1.1089614740368509e-05, + "loss": 0.1901922607421875, + "step": 232400 + }, + { + "epoch": 77.88952173548873, + "grad_norm": 0.5424449443817139, + "learning_rate": 1.1072864321608041e-05, + "loss": 0.19019113540649413, + "step": 232500 + }, + { + "epoch": 77.92302537900997, + "grad_norm": 0.5976355671882629, + "learning_rate": 1.1056113902847571e-05, + "loss": 0.19223594665527344, + "step": 232600 + }, + { + "epoch": 77.9565290225312, + "grad_norm": 0.586529016494751, + "learning_rate": 1.1039363484087102e-05, + "loss": 0.19147846221923828, + "step": 232700 + }, + { + "epoch": 77.99003266605243, + "grad_norm": 0.478441447019577, + "learning_rate": 1.1022613065326634e-05, + "loss": 0.19069934844970704, + "step": 232800 + }, + { + "epoch": 78.02345255046487, + "grad_norm": 0.595913290977478, + "learning_rate": 1.1005862646566165e-05, + "loss": 0.188853759765625, + "step": 232900 + }, + { + "epoch": 78.0569561939861, + "grad_norm": 0.7776252031326294, + "learning_rate": 1.0989112227805695e-05, + "loss": 0.18635259628295897, + "step": 233000 + }, + { + "epoch": 78.09045983750732, + "grad_norm": 0.5748878717422485, + "learning_rate": 1.0972361809045227e-05, + "loss": 0.18685552597045899, + "step": 233100 + }, + { + "epoch": 78.12396348102857, + "grad_norm": 0.5180676579475403, + "learning_rate": 1.0955611390284758e-05, + "loss": 0.1877056121826172, + "step": 233200 + }, + { + "epoch": 78.1574671245498, + "grad_norm": 0.673117458820343, + "learning_rate": 1.0938860971524288e-05, + "loss": 0.18688018798828124, + "step": 233300 + }, + { + "epoch": 78.19097076807103, + "grad_norm": 0.6519831418991089, + "learning_rate": 1.092211055276382e-05, + "loss": 0.18750722885131835, + "step": 233400 + }, + { + "epoch": 78.22447441159225, + "grad_norm": 0.5309635400772095, + "learning_rate": 1.0905360134003351e-05, + "loss": 0.18738748550415038, + "step": 233500 + }, + { + "epoch": 78.2579780551135, + "grad_norm": 0.6039297580718994, + "learning_rate": 1.0888609715242882e-05, + "loss": 0.18785961151123046, + "step": 233600 + }, + { + "epoch": 78.29148169863473, + "grad_norm": 0.4987012445926666, + "learning_rate": 1.0871859296482414e-05, + "loss": 0.18820880889892577, + "step": 233700 + }, + { + "epoch": 78.32498534215595, + "grad_norm": 0.6190744638442993, + "learning_rate": 1.0855108877721944e-05, + "loss": 0.18877883911132812, + "step": 233800 + }, + { + "epoch": 78.3584889856772, + "grad_norm": 0.6907918453216553, + "learning_rate": 1.0838358458961475e-05, + "loss": 0.18849582672119142, + "step": 233900 + }, + { + "epoch": 78.39199262919843, + "grad_norm": 0.5600749850273132, + "learning_rate": 1.0821608040201005e-05, + "loss": 0.18884668350219727, + "step": 234000 + }, + { + "epoch": 78.42549627271966, + "grad_norm": 0.6390280723571777, + "learning_rate": 1.0805025125628141e-05, + "loss": 0.1880735397338867, + "step": 234100 + }, + { + "epoch": 78.45899991624088, + "grad_norm": 0.6333056688308716, + "learning_rate": 1.0788274706867672e-05, + "loss": 0.18834163665771483, + "step": 234200 + }, + { + "epoch": 78.49250355976213, + "grad_norm": 0.5011644959449768, + "learning_rate": 1.0771524288107202e-05, + "loss": 0.18952463150024415, + "step": 234300 + }, + { + "epoch": 78.52600720328336, + "grad_norm": 0.7219404578208923, + "learning_rate": 1.0754773869346735e-05, + "loss": 0.18985385894775392, + "step": 234400 + }, + { + "epoch": 78.55951084680459, + "grad_norm": 0.6397419571876526, + "learning_rate": 1.0738023450586265e-05, + "loss": 0.18919252395629882, + "step": 234500 + }, + { + "epoch": 78.59301449032583, + "grad_norm": 0.6841224431991577, + "learning_rate": 1.0721273031825796e-05, + "loss": 0.18944778442382812, + "step": 234600 + }, + { + "epoch": 78.62651813384706, + "grad_norm": 0.7453842163085938, + "learning_rate": 1.0704522613065328e-05, + "loss": 0.19007984161376953, + "step": 234700 + }, + { + "epoch": 78.66002177736829, + "grad_norm": 0.5905109643936157, + "learning_rate": 1.0687772194304858e-05, + "loss": 0.18957454681396485, + "step": 234800 + }, + { + "epoch": 78.69352542088953, + "grad_norm": 0.6769446134567261, + "learning_rate": 1.0671021775544389e-05, + "loss": 0.19039548873901369, + "step": 234900 + }, + { + "epoch": 78.72702906441076, + "grad_norm": 0.5825620293617249, + "learning_rate": 1.065427135678392e-05, + "loss": 0.1897379684448242, + "step": 235000 + }, + { + "epoch": 78.76053270793199, + "grad_norm": 0.6064398288726807, + "learning_rate": 1.0637520938023452e-05, + "loss": 0.18956695556640624, + "step": 235100 + }, + { + "epoch": 78.79403635145322, + "grad_norm": 0.5826224088668823, + "learning_rate": 1.0620770519262982e-05, + "loss": 0.19094810485839844, + "step": 235200 + }, + { + "epoch": 78.82753999497446, + "grad_norm": 0.6187439560890198, + "learning_rate": 1.0604020100502513e-05, + "loss": 0.190173397064209, + "step": 235300 + }, + { + "epoch": 78.86104363849569, + "grad_norm": 0.7878564596176147, + "learning_rate": 1.0587269681742045e-05, + "loss": 0.19098638534545898, + "step": 235400 + }, + { + "epoch": 78.89454728201692, + "grad_norm": 0.7218932509422302, + "learning_rate": 1.0570519262981575e-05, + "loss": 0.19098539352416993, + "step": 235500 + }, + { + "epoch": 78.92805092553816, + "grad_norm": 0.5134685635566711, + "learning_rate": 1.0553768844221106e-05, + "loss": 0.19038022994995119, + "step": 235600 + }, + { + "epoch": 78.96155456905939, + "grad_norm": 0.641615092754364, + "learning_rate": 1.0537018425460638e-05, + "loss": 0.1914260482788086, + "step": 235700 + }, + { + "epoch": 78.99505821258062, + "grad_norm": 0.6211548447608948, + "learning_rate": 1.0520268006700169e-05, + "loss": 0.1908476448059082, + "step": 235800 + }, + { + "epoch": 79.02847809699304, + "grad_norm": 0.5376355648040771, + "learning_rate": 1.0503517587939699e-05, + "loss": 0.18590696334838866, + "step": 235900 + }, + { + "epoch": 79.06198174051428, + "grad_norm": 0.5554808974266052, + "learning_rate": 1.0486767169179231e-05, + "loss": 0.18621206283569336, + "step": 236000 + }, + { + "epoch": 79.09548538403551, + "grad_norm": 0.6652063727378845, + "learning_rate": 1.0470184254606365e-05, + "loss": 0.18646297454833985, + "step": 236100 + }, + { + "epoch": 79.12898902755674, + "grad_norm": 0.6671931147575378, + "learning_rate": 1.0453433835845896e-05, + "loss": 0.18682302474975587, + "step": 236200 + }, + { + "epoch": 79.16249267107798, + "grad_norm": 0.6100969910621643, + "learning_rate": 1.0436683417085426e-05, + "loss": 0.18717609405517577, + "step": 236300 + }, + { + "epoch": 79.19599631459921, + "grad_norm": 0.7126432061195374, + "learning_rate": 1.0419932998324959e-05, + "loss": 0.18632455825805663, + "step": 236400 + }, + { + "epoch": 79.22949995812044, + "grad_norm": 0.5226724147796631, + "learning_rate": 1.040318257956449e-05, + "loss": 0.18794141769409178, + "step": 236500 + }, + { + "epoch": 79.26300360164169, + "grad_norm": 0.5243064165115356, + "learning_rate": 1.038643216080402e-05, + "loss": 0.18816068649291992, + "step": 236600 + }, + { + "epoch": 79.29650724516291, + "grad_norm": 0.607912003993988, + "learning_rate": 1.0369681742043552e-05, + "loss": 0.18687108993530274, + "step": 236700 + }, + { + "epoch": 79.33001088868414, + "grad_norm": 0.5773678421974182, + "learning_rate": 1.0352931323283082e-05, + "loss": 0.18846334457397462, + "step": 236800 + }, + { + "epoch": 79.36351453220537, + "grad_norm": 0.6360297203063965, + "learning_rate": 1.0336180904522613e-05, + "loss": 0.18933845520019532, + "step": 236900 + }, + { + "epoch": 79.39701817572661, + "grad_norm": 0.6809837222099304, + "learning_rate": 1.0319430485762145e-05, + "loss": 0.18878520965576173, + "step": 237000 + }, + { + "epoch": 79.43052181924784, + "grad_norm": 0.6212404370307922, + "learning_rate": 1.0302680067001676e-05, + "loss": 0.18835649490356446, + "step": 237100 + }, + { + "epoch": 79.46402546276907, + "grad_norm": 0.5026853680610657, + "learning_rate": 1.0285929648241206e-05, + "loss": 0.18797584533691405, + "step": 237200 + }, + { + "epoch": 79.49752910629032, + "grad_norm": 0.5610924959182739, + "learning_rate": 1.0269179229480738e-05, + "loss": 0.18864788055419923, + "step": 237300 + }, + { + "epoch": 79.53103274981154, + "grad_norm": 0.5812443494796753, + "learning_rate": 1.0252428810720269e-05, + "loss": 0.18857982635498047, + "step": 237400 + }, + { + "epoch": 79.56453639333277, + "grad_norm": 0.5942834615707397, + "learning_rate": 1.02356783919598e-05, + "loss": 0.18995513916015624, + "step": 237500 + }, + { + "epoch": 79.598040036854, + "grad_norm": 0.780934751033783, + "learning_rate": 1.021892797319933e-05, + "loss": 0.1898634147644043, + "step": 237600 + }, + { + "epoch": 79.63154368037524, + "grad_norm": 0.6805693507194519, + "learning_rate": 1.0202177554438862e-05, + "loss": 0.18985597610473634, + "step": 237700 + }, + { + "epoch": 79.66504732389647, + "grad_norm": 0.6133860349655151, + "learning_rate": 1.0185427135678393e-05, + "loss": 0.18866056442260742, + "step": 237800 + }, + { + "epoch": 79.6985509674177, + "grad_norm": 0.509017825126648, + "learning_rate": 1.0168676716917923e-05, + "loss": 0.1894827651977539, + "step": 237900 + }, + { + "epoch": 79.73205461093895, + "grad_norm": 0.7108103036880493, + "learning_rate": 1.0151926298157455e-05, + "loss": 0.18957220077514647, + "step": 238000 + }, + { + "epoch": 79.76555825446017, + "grad_norm": 0.5843678712844849, + "learning_rate": 1.013534338358459e-05, + "loss": 0.1894863700866699, + "step": 238100 + }, + { + "epoch": 79.7990618979814, + "grad_norm": 0.5689200758934021, + "learning_rate": 1.011859296482412e-05, + "loss": 0.189605712890625, + "step": 238200 + }, + { + "epoch": 79.83256554150263, + "grad_norm": 0.5582265257835388, + "learning_rate": 1.010184254606365e-05, + "loss": 0.1899770736694336, + "step": 238300 + }, + { + "epoch": 79.86606918502387, + "grad_norm": 0.7666222453117371, + "learning_rate": 1.0085092127303183e-05, + "loss": 0.19003982543945314, + "step": 238400 + }, + { + "epoch": 79.8995728285451, + "grad_norm": 0.5454803109169006, + "learning_rate": 1.0068341708542713e-05, + "loss": 0.1902810287475586, + "step": 238500 + }, + { + "epoch": 79.93307647206633, + "grad_norm": 0.7217103838920593, + "learning_rate": 1.0051591289782244e-05, + "loss": 0.19129709243774415, + "step": 238600 + }, + { + "epoch": 79.96658011558758, + "grad_norm": 0.5859233140945435, + "learning_rate": 1.0034840871021776e-05, + "loss": 0.19089550018310547, + "step": 238700 + }, + { + "epoch": 80.0, + "grad_norm": 0.7871226072311401, + "learning_rate": 1.0018090452261307e-05, + "loss": 0.19010568618774415, + "step": 238800 + }, + { + "epoch": 80.03350364352123, + "grad_norm": 0.6410444974899292, + "learning_rate": 1.0001340033500837e-05, + "loss": 0.18579286575317383, + "step": 238900 + }, + { + "epoch": 80.06700728704247, + "grad_norm": 0.49249953031539917, + "learning_rate": 9.98458961474037e-06, + "loss": 0.18595710754394532, + "step": 239000 + }, + { + "epoch": 80.1005109305637, + "grad_norm": 0.4707689583301544, + "learning_rate": 9.9678391959799e-06, + "loss": 0.1854451370239258, + "step": 239100 + }, + { + "epoch": 80.13401457408493, + "grad_norm": 0.6049455404281616, + "learning_rate": 9.95108877721943e-06, + "loss": 0.18605972290039063, + "step": 239200 + }, + { + "epoch": 80.16751821760616, + "grad_norm": 0.5813843011856079, + "learning_rate": 9.934338358458963e-06, + "loss": 0.18595891952514648, + "step": 239300 + }, + { + "epoch": 80.2010218611274, + "grad_norm": 0.6518586277961731, + "learning_rate": 9.917587939698493e-06, + "loss": 0.18725431442260743, + "step": 239400 + }, + { + "epoch": 80.23452550464863, + "grad_norm": 0.7379871010780334, + "learning_rate": 9.900837520938024e-06, + "loss": 0.18730653762817384, + "step": 239500 + }, + { + "epoch": 80.26802914816986, + "grad_norm": 0.7457312941551208, + "learning_rate": 9.884087102177556e-06, + "loss": 0.18689844131469727, + "step": 239600 + }, + { + "epoch": 80.3015327916911, + "grad_norm": 0.8484863638877869, + "learning_rate": 9.867336683417086e-06, + "loss": 0.18761758804321288, + "step": 239700 + }, + { + "epoch": 80.33503643521233, + "grad_norm": 0.6102080941200256, + "learning_rate": 9.850586264656617e-06, + "loss": 0.18688488006591797, + "step": 239800 + }, + { + "epoch": 80.36854007873356, + "grad_norm": 0.6622928380966187, + "learning_rate": 9.833835845896149e-06, + "loss": 0.18741252899169922, + "step": 239900 + }, + { + "epoch": 80.40204372225479, + "grad_norm": 0.5935907959938049, + "learning_rate": 9.81708542713568e-06, + "loss": 0.1878078269958496, + "step": 240000 + }, + { + "epoch": 80.43554736577603, + "grad_norm": 0.6074280142784119, + "learning_rate": 9.800502512562816e-06, + "loss": 0.18737226486206054, + "step": 240100 + }, + { + "epoch": 80.46905100929726, + "grad_norm": 0.6889368295669556, + "learning_rate": 9.783752093802346e-06, + "loss": 0.18822650909423827, + "step": 240200 + }, + { + "epoch": 80.50255465281849, + "grad_norm": 0.5317627787590027, + "learning_rate": 9.767001675041877e-06, + "loss": 0.1878480339050293, + "step": 240300 + }, + { + "epoch": 80.53605829633973, + "grad_norm": 0.5207783579826355, + "learning_rate": 9.750251256281407e-06, + "loss": 0.1882781219482422, + "step": 240400 + }, + { + "epoch": 80.56956193986096, + "grad_norm": 0.6113369464874268, + "learning_rate": 9.733500837520938e-06, + "loss": 0.1896601676940918, + "step": 240500 + }, + { + "epoch": 80.60306558338219, + "grad_norm": 0.6112746000289917, + "learning_rate": 9.716750418760468e-06, + "loss": 0.18931255340576172, + "step": 240600 + }, + { + "epoch": 80.63656922690343, + "grad_norm": 0.5978585481643677, + "learning_rate": 9.7e-06, + "loss": 0.18961137771606446, + "step": 240700 + }, + { + "epoch": 80.67007287042466, + "grad_norm": 0.5999939441680908, + "learning_rate": 9.68324958123953e-06, + "loss": 0.1893038558959961, + "step": 240800 + }, + { + "epoch": 80.70357651394589, + "grad_norm": 0.7477551698684692, + "learning_rate": 9.666499162479061e-06, + "loss": 0.19065048217773437, + "step": 240900 + }, + { + "epoch": 80.73708015746712, + "grad_norm": 0.49969878792762756, + "learning_rate": 9.649748743718594e-06, + "loss": 0.18887239456176758, + "step": 241000 + }, + { + "epoch": 80.77058380098836, + "grad_norm": 0.6229384541511536, + "learning_rate": 9.632998324958124e-06, + "loss": 0.18931352615356445, + "step": 241100 + }, + { + "epoch": 80.80408744450959, + "grad_norm": 0.5331135988235474, + "learning_rate": 9.616247906197655e-06, + "loss": 0.18917076110839845, + "step": 241200 + }, + { + "epoch": 80.83759108803082, + "grad_norm": 0.5475077629089355, + "learning_rate": 9.599497487437187e-06, + "loss": 0.18999635696411132, + "step": 241300 + }, + { + "epoch": 80.87109473155206, + "grad_norm": 0.6110318303108215, + "learning_rate": 9.582747068676717e-06, + "loss": 0.18988681793212892, + "step": 241400 + }, + { + "epoch": 80.90459837507329, + "grad_norm": 0.6834789514541626, + "learning_rate": 9.565996649916248e-06, + "loss": 0.18972234725952147, + "step": 241500 + }, + { + "epoch": 80.93810201859452, + "grad_norm": 0.5601489543914795, + "learning_rate": 9.54924623115578e-06, + "loss": 0.1901242446899414, + "step": 241600 + }, + { + "epoch": 80.97160566211575, + "grad_norm": 0.5707966685295105, + "learning_rate": 9.53249581239531e-06, + "loss": 0.19092308044433592, + "step": 241700 + }, + { + "epoch": 81.00502554652819, + "grad_norm": 0.6027684211730957, + "learning_rate": 9.515745393634841e-06, + "loss": 0.18986186981201172, + "step": 241800 + }, + { + "epoch": 81.03852919004942, + "grad_norm": 0.43851712346076965, + "learning_rate": 9.498994974874373e-06, + "loss": 0.1864785385131836, + "step": 241900 + }, + { + "epoch": 81.07203283357065, + "grad_norm": 0.5600922107696533, + "learning_rate": 9.482244556113904e-06, + "loss": 0.18667762756347656, + "step": 242000 + }, + { + "epoch": 81.10553647709189, + "grad_norm": 0.639335036277771, + "learning_rate": 9.46566164154104e-06, + "loss": 0.18642004013061522, + "step": 242100 + }, + { + "epoch": 81.13904012061312, + "grad_norm": 0.6750245690345764, + "learning_rate": 9.44891122278057e-06, + "loss": 0.18629102706909179, + "step": 242200 + }, + { + "epoch": 81.17254376413435, + "grad_norm": 0.5700585842132568, + "learning_rate": 9.4321608040201e-06, + "loss": 0.18613723754882813, + "step": 242300 + }, + { + "epoch": 81.20604740765559, + "grad_norm": 0.6852511167526245, + "learning_rate": 9.415410385259631e-06, + "loss": 0.18597820281982422, + "step": 242400 + }, + { + "epoch": 81.23955105117682, + "grad_norm": 0.5194628834724426, + "learning_rate": 9.398659966499162e-06, + "loss": 0.18753597259521484, + "step": 242500 + }, + { + "epoch": 81.27305469469805, + "grad_norm": 0.6448808312416077, + "learning_rate": 9.381909547738694e-06, + "loss": 0.18645841598510743, + "step": 242600 + }, + { + "epoch": 81.30655833821928, + "grad_norm": 0.4830906391143799, + "learning_rate": 9.365159128978224e-06, + "loss": 0.18598066329956053, + "step": 242700 + }, + { + "epoch": 81.34006198174052, + "grad_norm": 0.5368765592575073, + "learning_rate": 9.348408710217755e-06, + "loss": 0.18756242752075195, + "step": 242800 + }, + { + "epoch": 81.37356562526175, + "grad_norm": 0.7084921598434448, + "learning_rate": 9.331658291457287e-06, + "loss": 0.18713598251342772, + "step": 242900 + }, + { + "epoch": 81.40706926878298, + "grad_norm": 0.5406467318534851, + "learning_rate": 9.314907872696818e-06, + "loss": 0.18767911911010743, + "step": 243000 + }, + { + "epoch": 81.44057291230422, + "grad_norm": 0.6811279654502869, + "learning_rate": 9.298157453936348e-06, + "loss": 0.18792261123657228, + "step": 243100 + }, + { + "epoch": 81.47407655582545, + "grad_norm": 0.6793702244758606, + "learning_rate": 9.281407035175879e-06, + "loss": 0.18808685302734374, + "step": 243200 + }, + { + "epoch": 81.50758019934668, + "grad_norm": 0.5923267006874084, + "learning_rate": 9.264656616415411e-06, + "loss": 0.1878205108642578, + "step": 243300 + }, + { + "epoch": 81.5410838428679, + "grad_norm": 0.5069772005081177, + "learning_rate": 9.247906197654941e-06, + "loss": 0.18798334121704102, + "step": 243400 + }, + { + "epoch": 81.57458748638915, + "grad_norm": 0.6971927881240845, + "learning_rate": 9.231155778894472e-06, + "loss": 0.18779460906982423, + "step": 243500 + }, + { + "epoch": 81.60809112991038, + "grad_norm": 0.4844462275505066, + "learning_rate": 9.214405360134004e-06, + "loss": 0.1885888671875, + "step": 243600 + }, + { + "epoch": 81.6415947734316, + "grad_norm": 0.6287949085235596, + "learning_rate": 9.197654941373535e-06, + "loss": 0.18853179931640626, + "step": 243700 + }, + { + "epoch": 81.67509841695285, + "grad_norm": 0.5208948254585266, + "learning_rate": 9.180904522613065e-06, + "loss": 0.18876758575439453, + "step": 243800 + }, + { + "epoch": 81.70860206047408, + "grad_norm": 0.559596598148346, + "learning_rate": 9.164154103852597e-06, + "loss": 0.18983572006225585, + "step": 243900 + }, + { + "epoch": 81.7421057039953, + "grad_norm": 0.6286110877990723, + "learning_rate": 9.147403685092128e-06, + "loss": 0.18990949630737305, + "step": 244000 + }, + { + "epoch": 81.77560934751654, + "grad_norm": 0.6826990246772766, + "learning_rate": 9.130820770519264e-06, + "loss": 0.18897735595703125, + "step": 244100 + }, + { + "epoch": 81.80911299103778, + "grad_norm": 0.6137732267379761, + "learning_rate": 9.114070351758794e-06, + "loss": 0.1890528106689453, + "step": 244200 + }, + { + "epoch": 81.84261663455901, + "grad_norm": 0.6284852027893066, + "learning_rate": 9.097319932998327e-06, + "loss": 0.18912405014038086, + "step": 244300 + }, + { + "epoch": 81.87612027808024, + "grad_norm": 0.5774878859519958, + "learning_rate": 9.080569514237857e-06, + "loss": 0.18894084930419922, + "step": 244400 + }, + { + "epoch": 81.90962392160148, + "grad_norm": 0.6259322166442871, + "learning_rate": 9.063819095477388e-06, + "loss": 0.1898725700378418, + "step": 244500 + }, + { + "epoch": 81.94312756512271, + "grad_norm": 0.5645041465759277, + "learning_rate": 9.047068676716918e-06, + "loss": 0.18911539077758788, + "step": 244600 + }, + { + "epoch": 81.97663120864394, + "grad_norm": 0.5545311570167542, + "learning_rate": 9.030318257956449e-06, + "loss": 0.18874195098876953, + "step": 244700 + }, + { + "epoch": 82.01005109305638, + "grad_norm": 0.5122572779655457, + "learning_rate": 9.01356783919598e-06, + "loss": 0.1884039306640625, + "step": 244800 + }, + { + "epoch": 82.0435547365776, + "grad_norm": 0.5515125393867493, + "learning_rate": 8.996817420435511e-06, + "loss": 0.18567270278930664, + "step": 244900 + }, + { + "epoch": 82.07705838009883, + "grad_norm": 0.6537274122238159, + "learning_rate": 8.980067001675042e-06, + "loss": 0.18508878707885743, + "step": 245000 + }, + { + "epoch": 82.11056202362006, + "grad_norm": 0.5276825428009033, + "learning_rate": 8.963316582914572e-06, + "loss": 0.18604862213134765, + "step": 245100 + }, + { + "epoch": 82.1440656671413, + "grad_norm": 0.5946404933929443, + "learning_rate": 8.946566164154105e-06, + "loss": 0.18516014099121095, + "step": 245200 + }, + { + "epoch": 82.17756931066253, + "grad_norm": 0.5449401140213013, + "learning_rate": 8.929815745393635e-06, + "loss": 0.18614362716674804, + "step": 245300 + }, + { + "epoch": 82.21107295418376, + "grad_norm": 0.5503102540969849, + "learning_rate": 8.913065326633166e-06, + "loss": 0.18611763000488282, + "step": 245400 + }, + { + "epoch": 82.244576597705, + "grad_norm": 0.6990886330604553, + "learning_rate": 8.896314907872698e-06, + "loss": 0.1872243881225586, + "step": 245500 + }, + { + "epoch": 82.27808024122623, + "grad_norm": 0.5072383880615234, + "learning_rate": 8.879564489112228e-06, + "loss": 0.1860810661315918, + "step": 245600 + }, + { + "epoch": 82.31158388474746, + "grad_norm": 0.5636463165283203, + "learning_rate": 8.862814070351759e-06, + "loss": 0.18700706481933593, + "step": 245700 + }, + { + "epoch": 82.34508752826869, + "grad_norm": 0.5329198837280273, + "learning_rate": 8.84606365159129e-06, + "loss": 0.18637537002563476, + "step": 245800 + }, + { + "epoch": 82.37859117178994, + "grad_norm": 0.7562859654426575, + "learning_rate": 8.829313232830822e-06, + "loss": 0.1869906997680664, + "step": 245900 + }, + { + "epoch": 82.41209481531116, + "grad_norm": 0.642741322517395, + "learning_rate": 8.812562814070352e-06, + "loss": 0.18656137466430664, + "step": 246000 + }, + { + "epoch": 82.4455984588324, + "grad_norm": 0.62885582447052, + "learning_rate": 8.795979899497488e-06, + "loss": 0.18802295684814452, + "step": 246100 + }, + { + "epoch": 82.47910210235364, + "grad_norm": 0.5594859719276428, + "learning_rate": 8.779229480737019e-06, + "loss": 0.18712615966796875, + "step": 246200 + }, + { + "epoch": 82.51260574587486, + "grad_norm": 0.6333134174346924, + "learning_rate": 8.76247906197655e-06, + "loss": 0.18846635818481444, + "step": 246300 + }, + { + "epoch": 82.5461093893961, + "grad_norm": 0.6623076796531677, + "learning_rate": 8.745728643216081e-06, + "loss": 0.1880592155456543, + "step": 246400 + }, + { + "epoch": 82.57961303291734, + "grad_norm": 0.5541040301322937, + "learning_rate": 8.728978224455612e-06, + "loss": 0.1872352409362793, + "step": 246500 + }, + { + "epoch": 82.61311667643857, + "grad_norm": 0.5087713599205017, + "learning_rate": 8.712227805695142e-06, + "loss": 0.1888579559326172, + "step": 246600 + }, + { + "epoch": 82.6466203199598, + "grad_norm": 0.5055890679359436, + "learning_rate": 8.695477386934673e-06, + "loss": 0.18866750717163086, + "step": 246700 + }, + { + "epoch": 82.68012396348102, + "grad_norm": 0.4937209188938141, + "learning_rate": 8.678726968174205e-06, + "loss": 0.18850959777832033, + "step": 246800 + }, + { + "epoch": 82.71362760700227, + "grad_norm": 0.6762095093727112, + "learning_rate": 8.661976549413736e-06, + "loss": 0.1879727554321289, + "step": 246900 + }, + { + "epoch": 82.7471312505235, + "grad_norm": 0.6171196699142456, + "learning_rate": 8.645226130653266e-06, + "loss": 0.18954423904418946, + "step": 247000 + }, + { + "epoch": 82.78063489404472, + "grad_norm": 0.6400672197341919, + "learning_rate": 8.628475711892797e-06, + "loss": 0.18838544845581054, + "step": 247100 + }, + { + "epoch": 82.81413853756597, + "grad_norm": 0.5874627828598022, + "learning_rate": 8.611725293132329e-06, + "loss": 0.18863496780395508, + "step": 247200 + }, + { + "epoch": 82.8476421810872, + "grad_norm": 0.6051297187805176, + "learning_rate": 8.59497487437186e-06, + "loss": 0.1890684509277344, + "step": 247300 + }, + { + "epoch": 82.88114582460842, + "grad_norm": 0.6647644639015198, + "learning_rate": 8.57822445561139e-06, + "loss": 0.18968358993530274, + "step": 247400 + }, + { + "epoch": 82.91464946812965, + "grad_norm": 0.6016401648521423, + "learning_rate": 8.561474036850922e-06, + "loss": 0.18822206497192384, + "step": 247500 + }, + { + "epoch": 82.9481531116509, + "grad_norm": 0.5627951622009277, + "learning_rate": 8.544723618090453e-06, + "loss": 0.18971824645996094, + "step": 247600 + }, + { + "epoch": 82.98165675517212, + "grad_norm": 0.6368587613105774, + "learning_rate": 8.527973199329983e-06, + "loss": 0.18886089324951172, + "step": 247700 + }, + { + "epoch": 83.01507663958455, + "grad_norm": 0.5568286180496216, + "learning_rate": 8.511222780569515e-06, + "loss": 0.18792394638061524, + "step": 247800 + }, + { + "epoch": 83.04858028310579, + "grad_norm": 0.750466525554657, + "learning_rate": 8.494472361809046e-06, + "loss": 0.18552347183227538, + "step": 247900 + }, + { + "epoch": 83.08208392662702, + "grad_norm": 0.5758387446403503, + "learning_rate": 8.477721943048576e-06, + "loss": 0.18548595428466796, + "step": 248000 + }, + { + "epoch": 83.11558757014825, + "grad_norm": 0.6715633273124695, + "learning_rate": 8.461139028475712e-06, + "loss": 0.1856230354309082, + "step": 248100 + }, + { + "epoch": 83.1490912136695, + "grad_norm": 0.6111332178115845, + "learning_rate": 8.444388609715244e-06, + "loss": 0.1855340576171875, + "step": 248200 + }, + { + "epoch": 83.18259485719072, + "grad_norm": 0.5966615676879883, + "learning_rate": 8.427638190954775e-06, + "loss": 0.18604198455810547, + "step": 248300 + }, + { + "epoch": 83.21609850071195, + "grad_norm": 0.612937331199646, + "learning_rate": 8.410887772194305e-06, + "loss": 0.18526275634765624, + "step": 248400 + }, + { + "epoch": 83.24960214423318, + "grad_norm": 0.6167147159576416, + "learning_rate": 8.394137353433838e-06, + "loss": 0.18677328109741212, + "step": 248500 + }, + { + "epoch": 83.28310578775442, + "grad_norm": 0.5629482865333557, + "learning_rate": 8.377386934673368e-06, + "loss": 0.18594594955444335, + "step": 248600 + }, + { + "epoch": 83.31660943127565, + "grad_norm": 0.5856372714042664, + "learning_rate": 8.360636515912899e-06, + "loss": 0.18747835159301757, + "step": 248700 + }, + { + "epoch": 83.35011307479688, + "grad_norm": 0.6533538103103638, + "learning_rate": 8.34388609715243e-06, + "loss": 0.18700716018676758, + "step": 248800 + }, + { + "epoch": 83.38361671831812, + "grad_norm": 0.5694628953933716, + "learning_rate": 8.32713567839196e-06, + "loss": 0.1867087936401367, + "step": 248900 + }, + { + "epoch": 83.41712036183935, + "grad_norm": 0.7100234031677246, + "learning_rate": 8.31038525963149e-06, + "loss": 0.18678861618041992, + "step": 249000 + }, + { + "epoch": 83.45062400536058, + "grad_norm": 0.528014063835144, + "learning_rate": 8.29363484087102e-06, + "loss": 0.18693504333496094, + "step": 249100 + }, + { + "epoch": 83.48412764888181, + "grad_norm": 0.6683924198150635, + "learning_rate": 8.276884422110553e-06, + "loss": 0.18630191802978516, + "step": 249200 + }, + { + "epoch": 83.51763129240305, + "grad_norm": 0.6140015125274658, + "learning_rate": 8.260134003350083e-06, + "loss": 0.18822259902954103, + "step": 249300 + }, + { + "epoch": 83.55113493592428, + "grad_norm": 0.6404419541358948, + "learning_rate": 8.243383584589614e-06, + "loss": 0.18734935760498048, + "step": 249400 + }, + { + "epoch": 83.58463857944551, + "grad_norm": 0.5253821611404419, + "learning_rate": 8.226633165829146e-06, + "loss": 0.18713035583496093, + "step": 249500 + }, + { + "epoch": 83.61814222296675, + "grad_norm": 0.592951774597168, + "learning_rate": 8.209882747068677e-06, + "loss": 0.1879220962524414, + "step": 249600 + }, + { + "epoch": 83.65164586648798, + "grad_norm": 0.6963580846786499, + "learning_rate": 8.193132328308207e-06, + "loss": 0.18711292266845703, + "step": 249700 + }, + { + "epoch": 83.68514951000921, + "grad_norm": 0.5152623653411865, + "learning_rate": 8.17638190954774e-06, + "loss": 0.18781234741210937, + "step": 249800 + }, + { + "epoch": 83.71865315353044, + "grad_norm": 0.6002013087272644, + "learning_rate": 8.15963149078727e-06, + "loss": 0.18788719177246094, + "step": 249900 + }, + { + "epoch": 83.75215679705168, + "grad_norm": 0.7012782692909241, + "learning_rate": 8.1428810720268e-06, + "loss": 0.1878870391845703, + "step": 250000 + }, + { + "epoch": 83.78566044057291, + "grad_norm": 0.5836089849472046, + "learning_rate": 8.126130653266333e-06, + "loss": 0.18869754791259766, + "step": 250100 + }, + { + "epoch": 83.81916408409414, + "grad_norm": 0.5142480134963989, + "learning_rate": 8.109547738693469e-06, + "loss": 0.18811010360717773, + "step": 250200 + }, + { + "epoch": 83.85266772761538, + "grad_norm": 0.5308085083961487, + "learning_rate": 8.092797319932999e-06, + "loss": 0.18894163131713868, + "step": 250300 + }, + { + "epoch": 83.88617137113661, + "grad_norm": 0.5777791142463684, + "learning_rate": 8.07604690117253e-06, + "loss": 0.18823001861572267, + "step": 250400 + }, + { + "epoch": 83.91967501465784, + "grad_norm": 0.5273643732070923, + "learning_rate": 8.059296482412062e-06, + "loss": 0.18896015167236327, + "step": 250500 + }, + { + "epoch": 83.95317865817908, + "grad_norm": 0.5124455094337463, + "learning_rate": 8.042546063651592e-06, + "loss": 0.18926893234252928, + "step": 250600 + }, + { + "epoch": 83.98668230170031, + "grad_norm": 0.6289759278297424, + "learning_rate": 8.025795644891123e-06, + "loss": 0.18870933532714843, + "step": 250700 + }, + { + "epoch": 84.02010218611274, + "grad_norm": 0.6009929776191711, + "learning_rate": 8.009045226130653e-06, + "loss": 0.1856600570678711, + "step": 250800 + }, + { + "epoch": 84.05360582963397, + "grad_norm": 0.6856387257575989, + "learning_rate": 7.992294807370186e-06, + "loss": 0.18487995147705077, + "step": 250900 + }, + { + "epoch": 84.08710947315521, + "grad_norm": 0.5233118534088135, + "learning_rate": 7.975544388609716e-06, + "loss": 0.18613203048706053, + "step": 251000 + }, + { + "epoch": 84.12061311667644, + "grad_norm": 0.6100374460220337, + "learning_rate": 7.958793969849247e-06, + "loss": 0.18532003402709962, + "step": 251100 + }, + { + "epoch": 84.15411676019767, + "grad_norm": 0.5868030786514282, + "learning_rate": 7.942043551088777e-06, + "loss": 0.18455961227416992, + "step": 251200 + }, + { + "epoch": 84.18762040371891, + "grad_norm": 0.6049501299858093, + "learning_rate": 7.925293132328308e-06, + "loss": 0.1862618064880371, + "step": 251300 + }, + { + "epoch": 84.22112404724014, + "grad_norm": 0.6399788856506348, + "learning_rate": 7.90854271356784e-06, + "loss": 0.18547624588012696, + "step": 251400 + }, + { + "epoch": 84.25462769076137, + "grad_norm": 0.6293793320655823, + "learning_rate": 7.89179229480737e-06, + "loss": 0.18608217239379882, + "step": 251500 + }, + { + "epoch": 84.2881313342826, + "grad_norm": 0.5287208557128906, + "learning_rate": 7.875041876046901e-06, + "loss": 0.18579626083374023, + "step": 251600 + }, + { + "epoch": 84.32163497780384, + "grad_norm": 0.5985024571418762, + "learning_rate": 7.858291457286431e-06, + "loss": 0.18519624710083007, + "step": 251700 + }, + { + "epoch": 84.35513862132507, + "grad_norm": 0.594869077205658, + "learning_rate": 7.841541038525964e-06, + "loss": 0.18641794204711915, + "step": 251800 + }, + { + "epoch": 84.3886422648463, + "grad_norm": 0.6310123801231384, + "learning_rate": 7.824790619765494e-06, + "loss": 0.18554765701293946, + "step": 251900 + }, + { + "epoch": 84.42214590836754, + "grad_norm": 0.6834468841552734, + "learning_rate": 7.808040201005025e-06, + "loss": 0.18662025451660155, + "step": 252000 + }, + { + "epoch": 84.45564955188877, + "grad_norm": 0.5541797280311584, + "learning_rate": 7.791289782244557e-06, + "loss": 0.18684375762939454, + "step": 252100 + }, + { + "epoch": 84.48915319541, + "grad_norm": 0.6487085223197937, + "learning_rate": 7.774706867671693e-06, + "loss": 0.18705474853515625, + "step": 252200 + }, + { + "epoch": 84.52265683893124, + "grad_norm": 0.4895366430282593, + "learning_rate": 7.757956448911223e-06, + "loss": 0.18700340270996094, + "step": 252300 + }, + { + "epoch": 84.55616048245247, + "grad_norm": 0.5531443357467651, + "learning_rate": 7.741206030150754e-06, + "loss": 0.18807411193847656, + "step": 252400 + }, + { + "epoch": 84.5896641259737, + "grad_norm": 0.5510408878326416, + "learning_rate": 7.724455611390286e-06, + "loss": 0.18698272705078126, + "step": 252500 + }, + { + "epoch": 84.62316776949493, + "grad_norm": 0.6708593964576721, + "learning_rate": 7.707705192629817e-06, + "loss": 0.1877949905395508, + "step": 252600 + }, + { + "epoch": 84.65667141301617, + "grad_norm": 0.5115278363227844, + "learning_rate": 7.690954773869347e-06, + "loss": 0.1879779052734375, + "step": 252700 + }, + { + "epoch": 84.6901750565374, + "grad_norm": 0.6127870082855225, + "learning_rate": 7.67420435510888e-06, + "loss": 0.18695253372192383, + "step": 252800 + }, + { + "epoch": 84.72367870005863, + "grad_norm": 0.7335399389266968, + "learning_rate": 7.65745393634841e-06, + "loss": 0.18774644851684572, + "step": 252900 + }, + { + "epoch": 84.75718234357987, + "grad_norm": 0.5237014293670654, + "learning_rate": 7.64070351758794e-06, + "loss": 0.1880354881286621, + "step": 253000 + }, + { + "epoch": 84.7906859871011, + "grad_norm": 0.5270113348960876, + "learning_rate": 7.623953098827472e-06, + "loss": 0.18749366760253905, + "step": 253100 + }, + { + "epoch": 84.82418963062233, + "grad_norm": 0.6281821727752686, + "learning_rate": 7.607202680067002e-06, + "loss": 0.1876792335510254, + "step": 253200 + }, + { + "epoch": 84.85769327414356, + "grad_norm": 0.5125153064727783, + "learning_rate": 7.590452261306533e-06, + "loss": 0.18819995880126952, + "step": 253300 + }, + { + "epoch": 84.8911969176648, + "grad_norm": 0.5630070567131042, + "learning_rate": 7.573701842546065e-06, + "loss": 0.18900468826293945, + "step": 253400 + }, + { + "epoch": 84.92470056118603, + "grad_norm": 0.551005482673645, + "learning_rate": 7.556951423785595e-06, + "loss": 0.188682861328125, + "step": 253500 + }, + { + "epoch": 84.95820420470726, + "grad_norm": 0.5519696474075317, + "learning_rate": 7.540201005025126e-06, + "loss": 0.18850210189819336, + "step": 253600 + }, + { + "epoch": 84.9917078482285, + "grad_norm": 0.64322829246521, + "learning_rate": 7.523450586264657e-06, + "loss": 0.18925397872924804, + "step": 253700 + }, + { + "epoch": 85.02512773264093, + "grad_norm": 0.569341778755188, + "learning_rate": 7.506700167504188e-06, + "loss": 0.18594614028930664, + "step": 253800 + }, + { + "epoch": 85.05863137616215, + "grad_norm": 0.5993043184280396, + "learning_rate": 7.489949748743718e-06, + "loss": 0.18460994720458984, + "step": 253900 + }, + { + "epoch": 85.0921350196834, + "grad_norm": 0.4627517759799957, + "learning_rate": 7.4731993299832505e-06, + "loss": 0.18417888641357422, + "step": 254000 + }, + { + "epoch": 85.12563866320463, + "grad_norm": 0.5186675190925598, + "learning_rate": 7.456448911222781e-06, + "loss": 0.18561904907226562, + "step": 254100 + }, + { + "epoch": 85.15914230672585, + "grad_norm": 0.6953118443489075, + "learning_rate": 7.439865996649917e-06, + "loss": 0.18514400482177734, + "step": 254200 + }, + { + "epoch": 85.19264595024708, + "grad_norm": 0.507422685623169, + "learning_rate": 7.4231155778894475e-06, + "loss": 0.18599794387817384, + "step": 254300 + }, + { + "epoch": 85.22614959376833, + "grad_norm": 0.5243151783943176, + "learning_rate": 7.40636515912898e-06, + "loss": 0.18585119247436524, + "step": 254400 + }, + { + "epoch": 85.25965323728956, + "grad_norm": 0.5282275676727295, + "learning_rate": 7.38961474036851e-06, + "loss": 0.18537141799926757, + "step": 254500 + }, + { + "epoch": 85.29315688081078, + "grad_norm": 0.8133143782615662, + "learning_rate": 7.372864321608041e-06, + "loss": 0.18567739486694335, + "step": 254600 + }, + { + "epoch": 85.32666052433203, + "grad_norm": 0.5648775100708008, + "learning_rate": 7.356113902847571e-06, + "loss": 0.1864516830444336, + "step": 254700 + }, + { + "epoch": 85.36016416785326, + "grad_norm": 0.6094685792922974, + "learning_rate": 7.339363484087103e-06, + "loss": 0.1870036506652832, + "step": 254800 + }, + { + "epoch": 85.39366781137448, + "grad_norm": 0.5950913429260254, + "learning_rate": 7.322613065326633e-06, + "loss": 0.18513656616210938, + "step": 254900 + }, + { + "epoch": 85.42717145489571, + "grad_norm": 0.5510959029197693, + "learning_rate": 7.305862646566164e-06, + "loss": 0.18647272109985352, + "step": 255000 + }, + { + "epoch": 85.46067509841696, + "grad_norm": 0.7267409563064575, + "learning_rate": 7.289112227805696e-06, + "loss": 0.1857898712158203, + "step": 255100 + }, + { + "epoch": 85.49417874193819, + "grad_norm": 0.45163479447364807, + "learning_rate": 7.272361809045226e-06, + "loss": 0.18607278823852538, + "step": 255200 + }, + { + "epoch": 85.52768238545941, + "grad_norm": 0.4602172374725342, + "learning_rate": 7.255611390284757e-06, + "loss": 0.18727361679077148, + "step": 255300 + }, + { + "epoch": 85.56118602898066, + "grad_norm": 0.635420024394989, + "learning_rate": 7.238860971524289e-06, + "loss": 0.18634784698486329, + "step": 255400 + }, + { + "epoch": 85.59468967250189, + "grad_norm": 0.7202033996582031, + "learning_rate": 7.22211055276382e-06, + "loss": 0.18726907730102538, + "step": 255500 + }, + { + "epoch": 85.62819331602311, + "grad_norm": 0.5407751798629761, + "learning_rate": 7.20536013400335e-06, + "loss": 0.18667268753051758, + "step": 255600 + }, + { + "epoch": 85.66169695954434, + "grad_norm": 0.5636637806892395, + "learning_rate": 7.188609715242882e-06, + "loss": 0.18750267028808593, + "step": 255700 + }, + { + "epoch": 85.69520060306559, + "grad_norm": 0.4898567199707031, + "learning_rate": 7.171859296482413e-06, + "loss": 0.1871859359741211, + "step": 255800 + }, + { + "epoch": 85.72870424658682, + "grad_norm": 0.5712749361991882, + "learning_rate": 7.155108877721943e-06, + "loss": 0.18638862609863283, + "step": 255900 + }, + { + "epoch": 85.76220789010804, + "grad_norm": 0.46651607751846313, + "learning_rate": 7.138358458961475e-06, + "loss": 0.18812761306762696, + "step": 256000 + }, + { + "epoch": 85.79571153362929, + "grad_norm": 0.5160844326019287, + "learning_rate": 7.121608040201005e-06, + "loss": 0.18870893478393555, + "step": 256100 + }, + { + "epoch": 85.82921517715052, + "grad_norm": 0.5459625124931335, + "learning_rate": 7.105025125628141e-06, + "loss": 0.18762758255004883, + "step": 256200 + }, + { + "epoch": 85.86271882067174, + "grad_norm": 0.5653469562530518, + "learning_rate": 7.088274706867672e-06, + "loss": 0.18779273986816405, + "step": 256300 + }, + { + "epoch": 85.89622246419299, + "grad_norm": 0.6370869278907776, + "learning_rate": 7.071524288107204e-06, + "loss": 0.18751178741455077, + "step": 256400 + }, + { + "epoch": 85.92972610771422, + "grad_norm": 0.5533131957054138, + "learning_rate": 7.054773869346734e-06, + "loss": 0.1884653663635254, + "step": 256500 + }, + { + "epoch": 85.96322975123545, + "grad_norm": 0.6711784601211548, + "learning_rate": 7.038023450586265e-06, + "loss": 0.18683214187622071, + "step": 256600 + }, + { + "epoch": 85.99673339475667, + "grad_norm": 0.5515606999397278, + "learning_rate": 7.021273031825796e-06, + "loss": 0.1888846969604492, + "step": 256700 + }, + { + "epoch": 86.03015327916911, + "grad_norm": 0.5068252086639404, + "learning_rate": 7.004522613065327e-06, + "loss": 0.18496566772460937, + "step": 256800 + }, + { + "epoch": 86.06365692269034, + "grad_norm": 0.47771593928337097, + "learning_rate": 6.987772194304857e-06, + "loss": 0.184095401763916, + "step": 256900 + }, + { + "epoch": 86.09716056621157, + "grad_norm": 0.47911855578422546, + "learning_rate": 6.9710217755443895e-06, + "loss": 0.18482202529907227, + "step": 257000 + }, + { + "epoch": 86.13066420973281, + "grad_norm": 0.5584221482276917, + "learning_rate": 6.95427135678392e-06, + "loss": 0.18487674713134766, + "step": 257100 + }, + { + "epoch": 86.16416785325404, + "grad_norm": 0.47040486335754395, + "learning_rate": 6.9375209380234505e-06, + "loss": 0.18475263595581054, + "step": 257200 + }, + { + "epoch": 86.19767149677527, + "grad_norm": 0.6007068753242493, + "learning_rate": 6.920770519262981e-06, + "loss": 0.18603864669799805, + "step": 257300 + }, + { + "epoch": 86.23117514029651, + "grad_norm": 0.6026456356048584, + "learning_rate": 6.904020100502513e-06, + "loss": 0.18502817153930665, + "step": 257400 + }, + { + "epoch": 86.26467878381774, + "grad_norm": 0.4999913275241852, + "learning_rate": 6.887269681742044e-06, + "loss": 0.1868625259399414, + "step": 257500 + }, + { + "epoch": 86.29818242733897, + "grad_norm": 0.5064532160758972, + "learning_rate": 6.870519262981574e-06, + "loss": 0.18557401657104491, + "step": 257600 + }, + { + "epoch": 86.3316860708602, + "grad_norm": 0.47061556577682495, + "learning_rate": 6.8537688442211065e-06, + "loss": 0.1852064323425293, + "step": 257700 + }, + { + "epoch": 86.36518971438144, + "grad_norm": 0.5401563048362732, + "learning_rate": 6.837018425460637e-06, + "loss": 0.18540374755859376, + "step": 257800 + }, + { + "epoch": 86.39869335790267, + "grad_norm": 0.46041640639305115, + "learning_rate": 6.8202680067001675e-06, + "loss": 0.18596946716308593, + "step": 257900 + }, + { + "epoch": 86.4321970014239, + "grad_norm": 0.597866415977478, + "learning_rate": 6.803517587939699e-06, + "loss": 0.18595813751220702, + "step": 258000 + }, + { + "epoch": 86.46570064494514, + "grad_norm": 0.6081616878509521, + "learning_rate": 6.786767169179229e-06, + "loss": 0.18565729141235351, + "step": 258100 + }, + { + "epoch": 86.49920428846637, + "grad_norm": 0.5523788332939148, + "learning_rate": 6.770184254606365e-06, + "loss": 0.187158260345459, + "step": 258200 + }, + { + "epoch": 86.5327079319876, + "grad_norm": 0.5216212272644043, + "learning_rate": 6.753433835845896e-06, + "loss": 0.1858182144165039, + "step": 258300 + }, + { + "epoch": 86.56621157550883, + "grad_norm": 0.5936647057533264, + "learning_rate": 6.736683417085428e-06, + "loss": 0.1869313621520996, + "step": 258400 + }, + { + "epoch": 86.59971521903007, + "grad_norm": 0.6182869672775269, + "learning_rate": 6.7199329983249586e-06, + "loss": 0.18541063308715822, + "step": 258500 + }, + { + "epoch": 86.6332188625513, + "grad_norm": 0.5022922158241272, + "learning_rate": 6.703182579564489e-06, + "loss": 0.18641475677490235, + "step": 258600 + }, + { + "epoch": 86.66672250607253, + "grad_norm": 0.5892537832260132, + "learning_rate": 6.686432160804021e-06, + "loss": 0.1863780975341797, + "step": 258700 + }, + { + "epoch": 86.70022614959377, + "grad_norm": 0.6023449301719666, + "learning_rate": 6.669681742043552e-06, + "loss": 0.18697059631347657, + "step": 258800 + }, + { + "epoch": 86.733729793115, + "grad_norm": 0.4677959680557251, + "learning_rate": 6.652931323283082e-06, + "loss": 0.1872576904296875, + "step": 258900 + }, + { + "epoch": 86.76723343663623, + "grad_norm": 0.5693555474281311, + "learning_rate": 6.636180904522614e-06, + "loss": 0.18713676452636718, + "step": 259000 + }, + { + "epoch": 86.80073708015746, + "grad_norm": 0.6497491598129272, + "learning_rate": 6.619430485762144e-06, + "loss": 0.1870942497253418, + "step": 259100 + }, + { + "epoch": 86.8342407236787, + "grad_norm": 0.548832356929779, + "learning_rate": 6.602680067001675e-06, + "loss": 0.18688385009765626, + "step": 259200 + }, + { + "epoch": 86.86774436719993, + "grad_norm": 0.596001923084259, + "learning_rate": 6.585929648241207e-06, + "loss": 0.1876131248474121, + "step": 259300 + }, + { + "epoch": 86.90124801072116, + "grad_norm": 0.4879089891910553, + "learning_rate": 6.5691792294807374e-06, + "loss": 0.18763301849365235, + "step": 259400 + }, + { + "epoch": 86.9347516542424, + "grad_norm": 0.637677013874054, + "learning_rate": 6.552428810720268e-06, + "loss": 0.18786365509033204, + "step": 259500 + }, + { + "epoch": 86.96825529776363, + "grad_norm": 0.6771053671836853, + "learning_rate": 6.5356783919598e-06, + "loss": 0.18699560165405274, + "step": 259600 + }, + { + "epoch": 87.00167518217606, + "grad_norm": 0.4932768940925598, + "learning_rate": 6.518927973199331e-06, + "loss": 0.18727890014648438, + "step": 259700 + }, + { + "epoch": 87.0351788256973, + "grad_norm": 0.5554237961769104, + "learning_rate": 6.502177554438861e-06, + "loss": 0.18363922119140624, + "step": 259800 + }, + { + "epoch": 87.06868246921853, + "grad_norm": 0.49361878633499146, + "learning_rate": 6.485427135678392e-06, + "loss": 0.18403356552124023, + "step": 259900 + }, + { + "epoch": 87.10218611273976, + "grad_norm": 0.5164247155189514, + "learning_rate": 6.468676716917924e-06, + "loss": 0.1847250556945801, + "step": 260000 + }, + { + "epoch": 87.13568975626099, + "grad_norm": 0.6231299638748169, + "learning_rate": 6.4519262981574544e-06, + "loss": 0.18410905838012695, + "step": 260100 + }, + { + "epoch": 87.16919339978223, + "grad_norm": 0.510552167892456, + "learning_rate": 6.4353433835845895e-06, + "loss": 0.18483367919921875, + "step": 260200 + }, + { + "epoch": 87.20269704330346, + "grad_norm": 0.5737383961677551, + "learning_rate": 6.41859296482412e-06, + "loss": 0.18470308303833008, + "step": 260300 + }, + { + "epoch": 87.23620068682469, + "grad_norm": 0.5129623413085938, + "learning_rate": 6.401842546063652e-06, + "loss": 0.18547887802124025, + "step": 260400 + }, + { + "epoch": 87.26970433034593, + "grad_norm": 0.6173266172409058, + "learning_rate": 6.385092127303183e-06, + "loss": 0.18598060607910155, + "step": 260500 + }, + { + "epoch": 87.30320797386716, + "grad_norm": 0.544044554233551, + "learning_rate": 6.368341708542713e-06, + "loss": 0.18537967681884765, + "step": 260600 + }, + { + "epoch": 87.33671161738839, + "grad_norm": 0.5292858481407166, + "learning_rate": 6.3515912897822455e-06, + "loss": 0.18521123886108398, + "step": 260700 + }, + { + "epoch": 87.37021526090962, + "grad_norm": 0.594588041305542, + "learning_rate": 6.334840871021776e-06, + "loss": 0.18591339111328126, + "step": 260800 + }, + { + "epoch": 87.40371890443086, + "grad_norm": 0.5692018270492554, + "learning_rate": 6.3180904522613065e-06, + "loss": 0.1846309471130371, + "step": 260900 + }, + { + "epoch": 87.43722254795209, + "grad_norm": 0.6212311387062073, + "learning_rate": 6.301340033500838e-06, + "loss": 0.18584171295166016, + "step": 261000 + }, + { + "epoch": 87.47072619147332, + "grad_norm": 0.6049195528030396, + "learning_rate": 6.284589614740368e-06, + "loss": 0.1861904716491699, + "step": 261100 + }, + { + "epoch": 87.50422983499456, + "grad_norm": 0.5650988221168518, + "learning_rate": 6.2678391959799e-06, + "loss": 0.18642744064331054, + "step": 261200 + }, + { + "epoch": 87.53773347851579, + "grad_norm": 0.6198245286941528, + "learning_rate": 6.251088777219431e-06, + "loss": 0.1867201805114746, + "step": 261300 + }, + { + "epoch": 87.57123712203702, + "grad_norm": 0.6500935554504395, + "learning_rate": 6.234338358458962e-06, + "loss": 0.1860578727722168, + "step": 261400 + }, + { + "epoch": 87.60474076555825, + "grad_norm": 0.5311732888221741, + "learning_rate": 6.217587939698493e-06, + "loss": 0.18565948486328124, + "step": 261500 + }, + { + "epoch": 87.63824440907949, + "grad_norm": 0.736834704875946, + "learning_rate": 6.2008375209380235e-06, + "loss": 0.18650445938110352, + "step": 261600 + }, + { + "epoch": 87.67174805260072, + "grad_norm": 0.567558228969574, + "learning_rate": 6.184087102177555e-06, + "loss": 0.18658845901489257, + "step": 261700 + }, + { + "epoch": 87.70525169612195, + "grad_norm": 0.4581720232963562, + "learning_rate": 6.167336683417086e-06, + "loss": 0.18680118560791015, + "step": 261800 + }, + { + "epoch": 87.73875533964319, + "grad_norm": 0.6665058135986328, + "learning_rate": 6.150586264656617e-06, + "loss": 0.18713037490844728, + "step": 261900 + }, + { + "epoch": 87.77225898316442, + "grad_norm": 0.5811572670936584, + "learning_rate": 6.133835845896148e-06, + "loss": 0.1872100830078125, + "step": 262000 + }, + { + "epoch": 87.80576262668565, + "grad_norm": 0.5392748117446899, + "learning_rate": 6.117085427135679e-06, + "loss": 0.18684432983398438, + "step": 262100 + }, + { + "epoch": 87.83926627020689, + "grad_norm": 0.5572375655174255, + "learning_rate": 6.100502512562814e-06, + "loss": 0.18601211547851562, + "step": 262200 + }, + { + "epoch": 87.87276991372812, + "grad_norm": 0.6901904940605164, + "learning_rate": 6.083752093802345e-06, + "loss": 0.18694435119628905, + "step": 262300 + }, + { + "epoch": 87.90627355724935, + "grad_norm": 0.5973819494247437, + "learning_rate": 6.067001675041876e-06, + "loss": 0.18795061111450195, + "step": 262400 + }, + { + "epoch": 87.93977720077058, + "grad_norm": 0.5847058296203613, + "learning_rate": 6.050251256281407e-06, + "loss": 0.1869793701171875, + "step": 262500 + }, + { + "epoch": 87.97328084429182, + "grad_norm": 0.5993967056274414, + "learning_rate": 6.033500837520938e-06, + "loss": 0.1878180694580078, + "step": 262600 + }, + { + "epoch": 88.00670072870425, + "grad_norm": 0.532988429069519, + "learning_rate": 6.01675041876047e-06, + "loss": 0.18654600143432618, + "step": 262700 + }, + { + "epoch": 88.04020437222547, + "grad_norm": 0.5655828714370728, + "learning_rate": 6e-06, + "loss": 0.18439163208007814, + "step": 262800 + }, + { + "epoch": 88.07370801574672, + "grad_norm": 0.5616503357887268, + "learning_rate": 5.9832495812395315e-06, + "loss": 0.1837614631652832, + "step": 262900 + }, + { + "epoch": 88.10721165926795, + "grad_norm": 0.4429595470428467, + "learning_rate": 5.966499162479063e-06, + "loss": 0.18412097930908203, + "step": 263000 + }, + { + "epoch": 88.14071530278918, + "grad_norm": 0.4846174120903015, + "learning_rate": 5.949748743718593e-06, + "loss": 0.18443714141845702, + "step": 263100 + }, + { + "epoch": 88.17421894631042, + "grad_norm": 0.5053496956825256, + "learning_rate": 5.932998324958124e-06, + "loss": 0.1849221420288086, + "step": 263200 + }, + { + "epoch": 88.20772258983165, + "grad_norm": 0.5732136368751526, + "learning_rate": 5.916247906197655e-06, + "loss": 0.18445537567138673, + "step": 263300 + }, + { + "epoch": 88.24122623335288, + "grad_norm": 0.671688437461853, + "learning_rate": 5.899497487437186e-06, + "loss": 0.18499351501464845, + "step": 263400 + }, + { + "epoch": 88.2747298768741, + "grad_norm": 0.5794471502304077, + "learning_rate": 5.882747068676717e-06, + "loss": 0.18498233795166016, + "step": 263500 + }, + { + "epoch": 88.30823352039535, + "grad_norm": 0.5552869439125061, + "learning_rate": 5.865996649916248e-06, + "loss": 0.18548328399658204, + "step": 263600 + }, + { + "epoch": 88.34173716391658, + "grad_norm": 0.5315948724746704, + "learning_rate": 5.849246231155779e-06, + "loss": 0.18444686889648437, + "step": 263700 + }, + { + "epoch": 88.3752408074378, + "grad_norm": 0.6291096210479736, + "learning_rate": 5.83249581239531e-06, + "loss": 0.18497331619262694, + "step": 263800 + }, + { + "epoch": 88.40874445095905, + "grad_norm": 0.6358299851417542, + "learning_rate": 5.815745393634841e-06, + "loss": 0.1851169967651367, + "step": 263900 + }, + { + "epoch": 88.44224809448028, + "grad_norm": 0.5641636848449707, + "learning_rate": 5.798994974874372e-06, + "loss": 0.18581708908081054, + "step": 264000 + }, + { + "epoch": 88.4757517380015, + "grad_norm": 0.646516740322113, + "learning_rate": 5.782244556113904e-06, + "loss": 0.18616880416870119, + "step": 264100 + }, + { + "epoch": 88.50925538152273, + "grad_norm": 0.5487529635429382, + "learning_rate": 5.765494137353434e-06, + "loss": 0.18532644271850585, + "step": 264200 + }, + { + "epoch": 88.54275902504398, + "grad_norm": 0.5325868129730225, + "learning_rate": 5.748911222780569e-06, + "loss": 0.1863404655456543, + "step": 264300 + }, + { + "epoch": 88.5762626685652, + "grad_norm": 0.5119947195053101, + "learning_rate": 5.7321608040201006e-06, + "loss": 0.1858821678161621, + "step": 264400 + }, + { + "epoch": 88.60976631208644, + "grad_norm": 0.5027479529380798, + "learning_rate": 5.715410385259632e-06, + "loss": 0.18715795516967773, + "step": 264500 + }, + { + "epoch": 88.64326995560768, + "grad_norm": 0.6127695441246033, + "learning_rate": 5.6986599664991625e-06, + "loss": 0.1849302864074707, + "step": 264600 + }, + { + "epoch": 88.67677359912891, + "grad_norm": 0.5115147233009338, + "learning_rate": 5.681909547738694e-06, + "loss": 0.18587541580200195, + "step": 264700 + }, + { + "epoch": 88.71027724265014, + "grad_norm": 0.5533451437950134, + "learning_rate": 5.665159128978225e-06, + "loss": 0.1865237045288086, + "step": 264800 + }, + { + "epoch": 88.74378088617136, + "grad_norm": 0.7907216548919678, + "learning_rate": 5.648408710217756e-06, + "loss": 0.18539291381835937, + "step": 264900 + }, + { + "epoch": 88.77728452969261, + "grad_norm": 0.6062288284301758, + "learning_rate": 5.631658291457287e-06, + "loss": 0.18620302200317382, + "step": 265000 + }, + { + "epoch": 88.81078817321384, + "grad_norm": 0.5403768420219421, + "learning_rate": 5.6149078726968176e-06, + "loss": 0.18627490997314453, + "step": 265100 + }, + { + "epoch": 88.84429181673507, + "grad_norm": 0.47379136085510254, + "learning_rate": 5.598157453936349e-06, + "loss": 0.18624238967895507, + "step": 265200 + }, + { + "epoch": 88.87779546025631, + "grad_norm": 0.6376839280128479, + "learning_rate": 5.5814070351758794e-06, + "loss": 0.18673583984375, + "step": 265300 + }, + { + "epoch": 88.91129910377754, + "grad_norm": 0.5186110138893127, + "learning_rate": 5.564656616415411e-06, + "loss": 0.18633831024169922, + "step": 265400 + }, + { + "epoch": 88.94480274729877, + "grad_norm": 0.5298460721969604, + "learning_rate": 5.547906197654941e-06, + "loss": 0.18666128158569337, + "step": 265500 + }, + { + "epoch": 88.97830639082, + "grad_norm": 0.6699676513671875, + "learning_rate": 5.531155778894473e-06, + "loss": 0.18743110656738282, + "step": 265600 + }, + { + "epoch": 89.01172627523243, + "grad_norm": 0.7564083933830261, + "learning_rate": 5.514405360134003e-06, + "loss": 0.18580760955810546, + "step": 265700 + }, + { + "epoch": 89.04522991875366, + "grad_norm": 0.4524352252483368, + "learning_rate": 5.4976549413735346e-06, + "loss": 0.18369712829589843, + "step": 265800 + }, + { + "epoch": 89.07873356227489, + "grad_norm": 0.5215601325035095, + "learning_rate": 5.480904522613066e-06, + "loss": 0.18392160415649414, + "step": 265900 + }, + { + "epoch": 89.11223720579613, + "grad_norm": 0.5558773875236511, + "learning_rate": 5.4641541038525964e-06, + "loss": 0.18470701217651367, + "step": 266000 + }, + { + "epoch": 89.14574084931736, + "grad_norm": 0.5827058553695679, + "learning_rate": 5.447403685092128e-06, + "loss": 0.18471426010131836, + "step": 266100 + }, + { + "epoch": 89.17924449283859, + "grad_norm": 0.6175124645233154, + "learning_rate": 5.430653266331658e-06, + "loss": 0.18419244766235351, + "step": 266200 + }, + { + "epoch": 89.21274813635983, + "grad_norm": 0.5262554883956909, + "learning_rate": 5.41390284757119e-06, + "loss": 0.18310293197631836, + "step": 266300 + }, + { + "epoch": 89.24625177988106, + "grad_norm": 0.5767905712127686, + "learning_rate": 5.397319932998325e-06, + "loss": 0.1847786521911621, + "step": 266400 + }, + { + "epoch": 89.27975542340229, + "grad_norm": 0.45258834958076477, + "learning_rate": 5.380569514237856e-06, + "loss": 0.18412622451782226, + "step": 266500 + }, + { + "epoch": 89.31325906692352, + "grad_norm": 0.546626091003418, + "learning_rate": 5.363819095477387e-06, + "loss": 0.1842401695251465, + "step": 266600 + }, + { + "epoch": 89.34676271044476, + "grad_norm": 0.48357829451560974, + "learning_rate": 5.347068676716918e-06, + "loss": 0.18534393310546876, + "step": 266700 + }, + { + "epoch": 89.380266353966, + "grad_norm": 0.5069622993469238, + "learning_rate": 5.330318257956449e-06, + "loss": 0.18502262115478516, + "step": 266800 + }, + { + "epoch": 89.41376999748722, + "grad_norm": 0.6336747407913208, + "learning_rate": 5.31356783919598e-06, + "loss": 0.18472951889038086, + "step": 266900 + }, + { + "epoch": 89.44727364100847, + "grad_norm": 0.5919739603996277, + "learning_rate": 5.296817420435511e-06, + "loss": 0.185218505859375, + "step": 267000 + }, + { + "epoch": 89.4807772845297, + "grad_norm": 0.48863354325294495, + "learning_rate": 5.280067001675043e-06, + "loss": 0.18563102722167968, + "step": 267100 + }, + { + "epoch": 89.51428092805092, + "grad_norm": 0.6356630921363831, + "learning_rate": 5.263316582914573e-06, + "loss": 0.18483596801757812, + "step": 267200 + }, + { + "epoch": 89.54778457157215, + "grad_norm": 0.6572123765945435, + "learning_rate": 5.2465661641541045e-06, + "loss": 0.18614835739135743, + "step": 267300 + }, + { + "epoch": 89.5812882150934, + "grad_norm": 0.4905427396297455, + "learning_rate": 5.229815745393636e-06, + "loss": 0.18502700805664063, + "step": 267400 + }, + { + "epoch": 89.61479185861462, + "grad_norm": 0.53782057762146, + "learning_rate": 5.213065326633166e-06, + "loss": 0.1857935905456543, + "step": 267500 + }, + { + "epoch": 89.64829550213585, + "grad_norm": 0.6450851559638977, + "learning_rate": 5.196314907872697e-06, + "loss": 0.18643198013305665, + "step": 267600 + }, + { + "epoch": 89.6817991456571, + "grad_norm": 0.6173422336578369, + "learning_rate": 5.179564489112227e-06, + "loss": 0.1862980079650879, + "step": 267700 + }, + { + "epoch": 89.71530278917832, + "grad_norm": 0.564839243888855, + "learning_rate": 5.162814070351759e-06, + "loss": 0.1857726287841797, + "step": 267800 + }, + { + "epoch": 89.74880643269955, + "grad_norm": 0.5647773742675781, + "learning_rate": 5.14606365159129e-06, + "loss": 0.18673162460327147, + "step": 267900 + }, + { + "epoch": 89.7823100762208, + "grad_norm": 0.5144478678703308, + "learning_rate": 5.129313232830821e-06, + "loss": 0.18588918685913086, + "step": 268000 + }, + { + "epoch": 89.81581371974202, + "grad_norm": 0.47654643654823303, + "learning_rate": 5.112562814070352e-06, + "loss": 0.1857970428466797, + "step": 268100 + }, + { + "epoch": 89.84931736326325, + "grad_norm": 0.6091083288192749, + "learning_rate": 5.095812395309883e-06, + "loss": 0.18509552001953125, + "step": 268200 + }, + { + "epoch": 89.88282100678448, + "grad_norm": 0.5405870676040649, + "learning_rate": 5.079061976549414e-06, + "loss": 0.18604494094848634, + "step": 268300 + }, + { + "epoch": 89.91632465030573, + "grad_norm": 0.5205516815185547, + "learning_rate": 5.06247906197655e-06, + "loss": 0.1859523582458496, + "step": 268400 + }, + { + "epoch": 89.94982829382695, + "grad_norm": 0.5739098787307739, + "learning_rate": 5.04572864321608e-06, + "loss": 0.1862436866760254, + "step": 268500 + }, + { + "epoch": 89.98333193734818, + "grad_norm": 0.6661388278007507, + "learning_rate": 5.028978224455612e-06, + "loss": 0.18580772399902343, + "step": 268600 + }, + { + "epoch": 90.01675182176062, + "grad_norm": 0.5268995761871338, + "learning_rate": 5.012227805695142e-06, + "loss": 0.18514154434204103, + "step": 268700 + }, + { + "epoch": 90.05025546528185, + "grad_norm": 0.752692461013794, + "learning_rate": 4.9954773869346735e-06, + "loss": 0.18381275177001954, + "step": 268800 + }, + { + "epoch": 90.08375910880308, + "grad_norm": 0.6190829873085022, + "learning_rate": 4.978726968174205e-06, + "loss": 0.1839034652709961, + "step": 268900 + }, + { + "epoch": 90.11726275232432, + "grad_norm": 0.5042902827262878, + "learning_rate": 4.961976549413735e-06, + "loss": 0.18465267181396483, + "step": 269000 + }, + { + "epoch": 90.15076639584555, + "grad_norm": 0.5969473719596863, + "learning_rate": 4.945226130653267e-06, + "loss": 0.18303195953369142, + "step": 269100 + }, + { + "epoch": 90.18427003936678, + "grad_norm": 0.6725231409072876, + "learning_rate": 4.928475711892797e-06, + "loss": 0.18475696563720703, + "step": 269200 + }, + { + "epoch": 90.21777368288801, + "grad_norm": 0.456318736076355, + "learning_rate": 4.911725293132329e-06, + "loss": 0.18457313537597655, + "step": 269300 + }, + { + "epoch": 90.25127732640925, + "grad_norm": 0.5855475068092346, + "learning_rate": 4.89497487437186e-06, + "loss": 0.18437076568603517, + "step": 269400 + }, + { + "epoch": 90.28478096993048, + "grad_norm": 0.529436469078064, + "learning_rate": 4.8782244556113905e-06, + "loss": 0.18375736236572265, + "step": 269500 + }, + { + "epoch": 90.31828461345171, + "grad_norm": 0.5961082577705383, + "learning_rate": 4.861474036850922e-06, + "loss": 0.18455684661865235, + "step": 269600 + }, + { + "epoch": 90.35178825697295, + "grad_norm": 0.5185309052467346, + "learning_rate": 4.844723618090452e-06, + "loss": 0.1851878547668457, + "step": 269700 + }, + { + "epoch": 90.38529190049418, + "grad_norm": 0.40312084555625916, + "learning_rate": 4.827973199329983e-06, + "loss": 0.18382146835327148, + "step": 269800 + }, + { + "epoch": 90.41879554401541, + "grad_norm": 0.5168654322624207, + "learning_rate": 4.811222780569514e-06, + "loss": 0.18515111923217772, + "step": 269900 + }, + { + "epoch": 90.45229918753664, + "grad_norm": 0.5459558963775635, + "learning_rate": 4.794472361809046e-06, + "loss": 0.18459436416625977, + "step": 270000 + }, + { + "epoch": 90.48580283105788, + "grad_norm": 0.5190539956092834, + "learning_rate": 4.777721943048576e-06, + "loss": 0.1858159065246582, + "step": 270100 + }, + { + "epoch": 90.51930647457911, + "grad_norm": 0.4919435381889343, + "learning_rate": 4.7609715242881075e-06, + "loss": 0.18439708709716796, + "step": 270200 + }, + { + "epoch": 90.55281011810034, + "grad_norm": 0.4750555157661438, + "learning_rate": 4.744221105527638e-06, + "loss": 0.1842019462585449, + "step": 270300 + }, + { + "epoch": 90.58631376162158, + "grad_norm": 0.6852492690086365, + "learning_rate": 4.727638190954775e-06, + "loss": 0.18526426315307618, + "step": 270400 + }, + { + "epoch": 90.61981740514281, + "grad_norm": 0.6319891810417175, + "learning_rate": 4.710887772194305e-06, + "loss": 0.1851023864746094, + "step": 270500 + }, + { + "epoch": 90.65332104866404, + "grad_norm": 0.49747490882873535, + "learning_rate": 4.694137353433836e-06, + "loss": 0.18547800064086914, + "step": 270600 + }, + { + "epoch": 90.68682469218527, + "grad_norm": 0.4589165151119232, + "learning_rate": 4.677386934673366e-06, + "loss": 0.1850799560546875, + "step": 270700 + }, + { + "epoch": 90.72032833570651, + "grad_norm": 0.647290050983429, + "learning_rate": 4.660636515912898e-06, + "loss": 0.18597793579101562, + "step": 270800 + }, + { + "epoch": 90.75383197922774, + "grad_norm": 0.6682136058807373, + "learning_rate": 4.643886097152429e-06, + "loss": 0.1855238914489746, + "step": 270900 + }, + { + "epoch": 90.78733562274897, + "grad_norm": 0.5782601237297058, + "learning_rate": 4.62713567839196e-06, + "loss": 0.18538637161254884, + "step": 271000 + }, + { + "epoch": 90.82083926627021, + "grad_norm": 0.5579448938369751, + "learning_rate": 4.610385259631491e-06, + "loss": 0.1856587600708008, + "step": 271100 + }, + { + "epoch": 90.85434290979144, + "grad_norm": 0.5620039105415344, + "learning_rate": 4.593634840871022e-06, + "loss": 0.18588842391967775, + "step": 271200 + }, + { + "epoch": 90.88784655331267, + "grad_norm": 0.6530576348304749, + "learning_rate": 4.576884422110553e-06, + "loss": 0.18567676544189454, + "step": 271300 + }, + { + "epoch": 90.9213501968339, + "grad_norm": 0.6144570708274841, + "learning_rate": 4.560134003350084e-06, + "loss": 0.18605300903320313, + "step": 271400 + }, + { + "epoch": 90.95485384035514, + "grad_norm": 0.5530267357826233, + "learning_rate": 4.5433835845896156e-06, + "loss": 0.18595090866088868, + "step": 271500 + }, + { + "epoch": 90.98835748387637, + "grad_norm": 0.5598485469818115, + "learning_rate": 4.526633165829146e-06, + "loss": 0.1865631675720215, + "step": 271600 + }, + { + "epoch": 91.0217773682888, + "grad_norm": 0.4829404652118683, + "learning_rate": 4.5098827470686774e-06, + "loss": 0.18459095001220704, + "step": 271700 + }, + { + "epoch": 91.05528101181004, + "grad_norm": 0.7115753889083862, + "learning_rate": 4.493132328308208e-06, + "loss": 0.1838077163696289, + "step": 271800 + }, + { + "epoch": 91.08878465533127, + "grad_norm": 0.557543158531189, + "learning_rate": 4.4763819095477385e-06, + "loss": 0.1847819519042969, + "step": 271900 + }, + { + "epoch": 91.1222882988525, + "grad_norm": 0.5555517077445984, + "learning_rate": 4.45963149078727e-06, + "loss": 0.18323816299438478, + "step": 272000 + }, + { + "epoch": 91.15579194237374, + "grad_norm": 0.5963297486305237, + "learning_rate": 4.4428810720268e-06, + "loss": 0.1839584732055664, + "step": 272100 + }, + { + "epoch": 91.18929558589497, + "grad_norm": 0.58128821849823, + "learning_rate": 4.426130653266332e-06, + "loss": 0.1841065788269043, + "step": 272200 + }, + { + "epoch": 91.2227992294162, + "grad_norm": 0.4545518457889557, + "learning_rate": 4.409380234505863e-06, + "loss": 0.1835637855529785, + "step": 272300 + }, + { + "epoch": 91.25630287293743, + "grad_norm": 0.5214167237281799, + "learning_rate": 4.392629815745394e-06, + "loss": 0.18443021774291993, + "step": 272400 + }, + { + "epoch": 91.28980651645867, + "grad_norm": 0.46389076113700867, + "learning_rate": 4.3760469011725295e-06, + "loss": 0.18393590927124023, + "step": 272500 + }, + { + "epoch": 91.3233101599799, + "grad_norm": 0.6274188160896301, + "learning_rate": 4.359296482412061e-06, + "loss": 0.18395915985107422, + "step": 272600 + }, + { + "epoch": 91.35681380350113, + "grad_norm": 0.5550768971443176, + "learning_rate": 4.342546063651591e-06, + "loss": 0.18435438156127928, + "step": 272700 + }, + { + "epoch": 91.39031744702237, + "grad_norm": 0.5795305967330933, + "learning_rate": 4.325795644891122e-06, + "loss": 0.18411699295043946, + "step": 272800 + }, + { + "epoch": 91.4238210905436, + "grad_norm": 0.5524510145187378, + "learning_rate": 4.309045226130653e-06, + "loss": 0.18482681274414062, + "step": 272900 + }, + { + "epoch": 91.45732473406483, + "grad_norm": 0.4713156521320343, + "learning_rate": 4.292294807370185e-06, + "loss": 0.18384735107421876, + "step": 273000 + }, + { + "epoch": 91.49082837758607, + "grad_norm": 0.5844002366065979, + "learning_rate": 4.275544388609715e-06, + "loss": 0.1849127197265625, + "step": 273100 + }, + { + "epoch": 91.5243320211073, + "grad_norm": 0.5675417184829712, + "learning_rate": 4.2587939698492465e-06, + "loss": 0.18468017578125, + "step": 273200 + }, + { + "epoch": 91.55783566462853, + "grad_norm": 0.5666652917861938, + "learning_rate": 4.242043551088777e-06, + "loss": 0.18494237899780275, + "step": 273300 + }, + { + "epoch": 91.59133930814976, + "grad_norm": 0.46655622124671936, + "learning_rate": 4.225293132328308e-06, + "loss": 0.18492658615112303, + "step": 273400 + }, + { + "epoch": 91.624842951671, + "grad_norm": 0.5972129106521606, + "learning_rate": 4.20854271356784e-06, + "loss": 0.1859132766723633, + "step": 273500 + }, + { + "epoch": 91.65834659519223, + "grad_norm": 0.5144099593162537, + "learning_rate": 4.19179229480737e-06, + "loss": 0.1850869369506836, + "step": 273600 + }, + { + "epoch": 91.69185023871346, + "grad_norm": 0.46821364760398865, + "learning_rate": 4.175041876046902e-06, + "loss": 0.1852436828613281, + "step": 273700 + }, + { + "epoch": 91.7253538822347, + "grad_norm": 0.6473614573478699, + "learning_rate": 4.158291457286433e-06, + "loss": 0.1850813102722168, + "step": 273800 + }, + { + "epoch": 91.75885752575593, + "grad_norm": 0.7392449378967285, + "learning_rate": 4.1415410385259635e-06, + "loss": 0.18418787002563478, + "step": 273900 + }, + { + "epoch": 91.79236116927716, + "grad_norm": 0.5982920527458191, + "learning_rate": 4.124790619765494e-06, + "loss": 0.18475706100463868, + "step": 274000 + }, + { + "epoch": 91.82586481279839, + "grad_norm": 0.5010756254196167, + "learning_rate": 4.108040201005025e-06, + "loss": 0.18550140380859376, + "step": 274100 + }, + { + "epoch": 91.85936845631963, + "grad_norm": 0.42886313796043396, + "learning_rate": 4.091289782244556e-06, + "loss": 0.1851121711730957, + "step": 274200 + }, + { + "epoch": 91.89287209984086, + "grad_norm": 0.6056686043739319, + "learning_rate": 4.074539363484087e-06, + "loss": 0.18567405700683592, + "step": 274300 + }, + { + "epoch": 91.92637574336209, + "grad_norm": 0.6657816171646118, + "learning_rate": 4.057788944723618e-06, + "loss": 0.185372314453125, + "step": 274400 + }, + { + "epoch": 91.95987938688333, + "grad_norm": 0.7955371737480164, + "learning_rate": 4.041038525963149e-06, + "loss": 0.18559362411499022, + "step": 274500 + }, + { + "epoch": 91.99338303040456, + "grad_norm": 0.5486671924591064, + "learning_rate": 4.024455611390285e-06, + "loss": 0.18554763793945311, + "step": 274600 + }, + { + "epoch": 92.02680291481698, + "grad_norm": 0.4851992130279541, + "learning_rate": 4.007705192629816e-06, + "loss": 0.1837984085083008, + "step": 274700 + }, + { + "epoch": 92.06030655833823, + "grad_norm": 0.6564006805419922, + "learning_rate": 3.990954773869347e-06, + "loss": 0.1828889274597168, + "step": 274800 + }, + { + "epoch": 92.09381020185945, + "grad_norm": 0.4906276762485504, + "learning_rate": 3.974204355108877e-06, + "loss": 0.18224969863891602, + "step": 274900 + }, + { + "epoch": 92.12731384538068, + "grad_norm": 0.47474029660224915, + "learning_rate": 3.957453936348409e-06, + "loss": 0.18334747314453126, + "step": 275000 + }, + { + "epoch": 92.16081748890191, + "grad_norm": 0.5322253704071045, + "learning_rate": 3.940703517587939e-06, + "loss": 0.18336933135986327, + "step": 275100 + }, + { + "epoch": 92.19432113242316, + "grad_norm": 0.6422849297523499, + "learning_rate": 3.923953098827471e-06, + "loss": 0.18472524642944335, + "step": 275200 + }, + { + "epoch": 92.22782477594438, + "grad_norm": 0.555906355381012, + "learning_rate": 3.907202680067002e-06, + "loss": 0.18407018661499022, + "step": 275300 + }, + { + "epoch": 92.26132841946561, + "grad_norm": 0.5680630207061768, + "learning_rate": 3.8904522613065325e-06, + "loss": 0.18363739013671876, + "step": 275400 + }, + { + "epoch": 92.29483206298686, + "grad_norm": 0.5128674507141113, + "learning_rate": 3.873701842546064e-06, + "loss": 0.18399686813354493, + "step": 275500 + }, + { + "epoch": 92.32833570650808, + "grad_norm": 0.6279745697975159, + "learning_rate": 3.856951423785595e-06, + "loss": 0.18378208160400392, + "step": 275600 + }, + { + "epoch": 92.36183935002931, + "grad_norm": 0.601681113243103, + "learning_rate": 3.840201005025126e-06, + "loss": 0.18319509506225587, + "step": 275700 + }, + { + "epoch": 92.39534299355054, + "grad_norm": 0.5092858672142029, + "learning_rate": 3.823450586264657e-06, + "loss": 0.18382539749145507, + "step": 275800 + }, + { + "epoch": 92.42884663707179, + "grad_norm": 0.5969312191009521, + "learning_rate": 3.8067001675041877e-06, + "loss": 0.1847224235534668, + "step": 275900 + }, + { + "epoch": 92.46235028059301, + "grad_norm": 0.49249494075775146, + "learning_rate": 3.7899497487437186e-06, + "loss": 0.18417783737182616, + "step": 276000 + }, + { + "epoch": 92.49585392411424, + "grad_norm": 0.5279737710952759, + "learning_rate": 3.77319932998325e-06, + "loss": 0.18486669540405273, + "step": 276100 + }, + { + "epoch": 92.52935756763549, + "grad_norm": 0.5199563503265381, + "learning_rate": 3.7564489112227805e-06, + "loss": 0.18549766540527343, + "step": 276200 + }, + { + "epoch": 92.56286121115672, + "grad_norm": 0.5814909934997559, + "learning_rate": 3.739698492462312e-06, + "loss": 0.18439958572387696, + "step": 276300 + }, + { + "epoch": 92.59636485467794, + "grad_norm": 0.5165287852287292, + "learning_rate": 3.7229480737018428e-06, + "loss": 0.18408321380615233, + "step": 276400 + }, + { + "epoch": 92.62986849819917, + "grad_norm": 0.47519955039024353, + "learning_rate": 3.7061976549413733e-06, + "loss": 0.18507766723632812, + "step": 276500 + }, + { + "epoch": 92.66337214172042, + "grad_norm": 0.5444027185440063, + "learning_rate": 3.6894472361809047e-06, + "loss": 0.1847231101989746, + "step": 276600 + }, + { + "epoch": 92.69687578524164, + "grad_norm": 0.46999087929725647, + "learning_rate": 3.6728643216080406e-06, + "loss": 0.18614614486694336, + "step": 276700 + }, + { + "epoch": 92.73037942876287, + "grad_norm": 0.8311703205108643, + "learning_rate": 3.6561139028475715e-06, + "loss": 0.18451465606689454, + "step": 276800 + }, + { + "epoch": 92.76388307228412, + "grad_norm": 0.5036934614181519, + "learning_rate": 3.639363484087102e-06, + "loss": 0.18498050689697265, + "step": 276900 + }, + { + "epoch": 92.79738671580535, + "grad_norm": 0.7324947714805603, + "learning_rate": 3.6226130653266334e-06, + "loss": 0.184973087310791, + "step": 277000 + }, + { + "epoch": 92.83089035932657, + "grad_norm": 0.4393749535083771, + "learning_rate": 3.6058626465661647e-06, + "loss": 0.1858364486694336, + "step": 277100 + }, + { + "epoch": 92.8643940028478, + "grad_norm": 0.6435522437095642, + "learning_rate": 3.5891122278056953e-06, + "loss": 0.18547016143798828, + "step": 277200 + }, + { + "epoch": 92.89789764636905, + "grad_norm": 0.4739900529384613, + "learning_rate": 3.572361809045226e-06, + "loss": 0.18432489395141602, + "step": 277300 + }, + { + "epoch": 92.93140128989027, + "grad_norm": 0.5389711856842041, + "learning_rate": 3.555611390284757e-06, + "loss": 0.18447877883911132, + "step": 277400 + }, + { + "epoch": 92.9649049334115, + "grad_norm": 0.5507364869117737, + "learning_rate": 3.538860971524288e-06, + "loss": 0.18475034713745117, + "step": 277500 + }, + { + "epoch": 92.99840857693275, + "grad_norm": 0.6159628629684448, + "learning_rate": 3.5221105527638194e-06, + "loss": 0.18557378768920899, + "step": 277600 + }, + { + "epoch": 93.03182846134517, + "grad_norm": 0.555902361869812, + "learning_rate": 3.50536013400335e-06, + "loss": 0.18302148818969727, + "step": 277700 + }, + { + "epoch": 93.0653321048664, + "grad_norm": 0.6510830521583557, + "learning_rate": 3.4886097152428813e-06, + "loss": 0.18316720962524413, + "step": 277800 + }, + { + "epoch": 93.09883574838764, + "grad_norm": 0.5541417598724365, + "learning_rate": 3.4718592964824123e-06, + "loss": 0.18269014358520508, + "step": 277900 + }, + { + "epoch": 93.13233939190887, + "grad_norm": 0.5546096563339233, + "learning_rate": 3.455108877721943e-06, + "loss": 0.18281387329101562, + "step": 278000 + }, + { + "epoch": 93.1658430354301, + "grad_norm": 0.5906556248664856, + "learning_rate": 3.438358458961474e-06, + "loss": 0.18238527297973633, + "step": 278100 + }, + { + "epoch": 93.19934667895133, + "grad_norm": 0.5291375517845154, + "learning_rate": 3.4216080402010055e-06, + "loss": 0.18321968078613282, + "step": 278200 + }, + { + "epoch": 93.23285032247257, + "grad_norm": 0.49932029843330383, + "learning_rate": 3.404857621440536e-06, + "loss": 0.18250431060791017, + "step": 278300 + }, + { + "epoch": 93.2663539659938, + "grad_norm": 0.5344804525375366, + "learning_rate": 3.3881072026800674e-06, + "loss": 0.18370258331298828, + "step": 278400 + }, + { + "epoch": 93.29985760951503, + "grad_norm": 0.547133207321167, + "learning_rate": 3.371356783919598e-06, + "loss": 0.18311479568481445, + "step": 278500 + }, + { + "epoch": 93.33336125303627, + "grad_norm": 0.6846116185188293, + "learning_rate": 3.354606365159129e-06, + "loss": 0.18370712280273438, + "step": 278600 + }, + { + "epoch": 93.3668648965575, + "grad_norm": 0.5736503005027771, + "learning_rate": 3.33785594639866e-06, + "loss": 0.18427995681762696, + "step": 278700 + }, + { + "epoch": 93.40036854007873, + "grad_norm": 0.5363325476646423, + "learning_rate": 3.321273031825796e-06, + "loss": 0.18477426528930663, + "step": 278800 + }, + { + "epoch": 93.43387218359997, + "grad_norm": 0.5641268491744995, + "learning_rate": 3.3045226130653266e-06, + "loss": 0.18418367385864257, + "step": 278900 + }, + { + "epoch": 93.4673758271212, + "grad_norm": 0.5597323179244995, + "learning_rate": 3.2877721943048576e-06, + "loss": 0.18357982635498046, + "step": 279000 + }, + { + "epoch": 93.50087947064243, + "grad_norm": 0.5814647078514099, + "learning_rate": 3.271021775544389e-06, + "loss": 0.18340383529663085, + "step": 279100 + }, + { + "epoch": 93.53438311416366, + "grad_norm": 0.6923455595970154, + "learning_rate": 3.2542713567839194e-06, + "loss": 0.18384368896484374, + "step": 279200 + }, + { + "epoch": 93.5678867576849, + "grad_norm": 0.5960889458656311, + "learning_rate": 3.237520938023451e-06, + "loss": 0.18405187606811524, + "step": 279300 + }, + { + "epoch": 93.60139040120613, + "grad_norm": 0.4457511305809021, + "learning_rate": 3.2207705192629817e-06, + "loss": 0.1838911247253418, + "step": 279400 + }, + { + "epoch": 93.63489404472736, + "grad_norm": 0.5525141954421997, + "learning_rate": 3.2040201005025127e-06, + "loss": 0.18411317825317383, + "step": 279500 + }, + { + "epoch": 93.6683976882486, + "grad_norm": 0.4308946430683136, + "learning_rate": 3.1872696817420436e-06, + "loss": 0.18421003341674805, + "step": 279600 + }, + { + "epoch": 93.70190133176983, + "grad_norm": 0.4606753885746002, + "learning_rate": 3.170519262981575e-06, + "loss": 0.1856534194946289, + "step": 279700 + }, + { + "epoch": 93.73540497529106, + "grad_norm": 0.5044844150543213, + "learning_rate": 3.1537688442211055e-06, + "loss": 0.1849703598022461, + "step": 279800 + }, + { + "epoch": 93.76890861881229, + "grad_norm": 0.5462206602096558, + "learning_rate": 3.137018425460637e-06, + "loss": 0.18439491271972655, + "step": 279900 + }, + { + "epoch": 93.80241226233353, + "grad_norm": 0.6235095262527466, + "learning_rate": 3.120268006700168e-06, + "loss": 0.18433120727539062, + "step": 280000 + }, + { + "epoch": 93.83591590585476, + "grad_norm": 0.49713248014450073, + "learning_rate": 3.1035175879396987e-06, + "loss": 0.18527395248413087, + "step": 280100 + }, + { + "epoch": 93.86941954937599, + "grad_norm": 0.43499988317489624, + "learning_rate": 3.0867671691792297e-06, + "loss": 0.1845208740234375, + "step": 280200 + }, + { + "epoch": 93.90292319289723, + "grad_norm": 0.5285036563873291, + "learning_rate": 3.0700167504187606e-06, + "loss": 0.1845704460144043, + "step": 280300 + }, + { + "epoch": 93.93642683641846, + "grad_norm": 0.7002624869346619, + "learning_rate": 3.0532663316582916e-06, + "loss": 0.18544256210327148, + "step": 280400 + }, + { + "epoch": 93.96993047993969, + "grad_norm": 0.5086694955825806, + "learning_rate": 3.0365159128978225e-06, + "loss": 0.18481266021728515, + "step": 280500 + }, + { + "epoch": 94.00335036435213, + "grad_norm": 0.541530966758728, + "learning_rate": 3.019765494137354e-06, + "loss": 0.18497087478637694, + "step": 280600 + }, + { + "epoch": 94.03685400787336, + "grad_norm": 0.5113808512687683, + "learning_rate": 3.0030150753768844e-06, + "loss": 0.1830722427368164, + "step": 280700 + }, + { + "epoch": 94.07035765139459, + "grad_norm": 0.578902542591095, + "learning_rate": 2.9864321608040203e-06, + "loss": 0.1829450798034668, + "step": 280800 + }, + { + "epoch": 94.10386129491582, + "grad_norm": 0.47617286443710327, + "learning_rate": 2.9696817420435512e-06, + "loss": 0.18288434982299806, + "step": 280900 + }, + { + "epoch": 94.13736493843706, + "grad_norm": 0.5248568654060364, + "learning_rate": 2.952931323283082e-06, + "loss": 0.18265800476074218, + "step": 281000 + }, + { + "epoch": 94.17086858195829, + "grad_norm": 0.5427269339561462, + "learning_rate": 2.936180904522613e-06, + "loss": 0.1820301628112793, + "step": 281100 + }, + { + "epoch": 94.20437222547952, + "grad_norm": 0.5137001276016235, + "learning_rate": 2.919430485762144e-06, + "loss": 0.18303417205810546, + "step": 281200 + }, + { + "epoch": 94.23787586900076, + "grad_norm": 0.5321929454803467, + "learning_rate": 2.902680067001675e-06, + "loss": 0.1835261344909668, + "step": 281300 + }, + { + "epoch": 94.27137951252199, + "grad_norm": 0.4833122491836548, + "learning_rate": 2.8859296482412063e-06, + "loss": 0.18361148834228516, + "step": 281400 + }, + { + "epoch": 94.30488315604322, + "grad_norm": 0.6427774429321289, + "learning_rate": 2.8691792294807373e-06, + "loss": 0.18336435317993163, + "step": 281500 + }, + { + "epoch": 94.33838679956445, + "grad_norm": 0.45124322175979614, + "learning_rate": 2.8524288107202682e-06, + "loss": 0.1830876350402832, + "step": 281600 + }, + { + "epoch": 94.37189044308569, + "grad_norm": 0.5530322194099426, + "learning_rate": 2.835678391959799e-06, + "loss": 0.18310989379882814, + "step": 281700 + }, + { + "epoch": 94.40539408660692, + "grad_norm": 0.4179496169090271, + "learning_rate": 2.81892797319933e-06, + "loss": 0.18375337600708008, + "step": 281800 + }, + { + "epoch": 94.43889773012815, + "grad_norm": 0.5519108772277832, + "learning_rate": 2.802177554438861e-06, + "loss": 0.1845833969116211, + "step": 281900 + }, + { + "epoch": 94.47240137364939, + "grad_norm": 0.5219084620475769, + "learning_rate": 2.785427135678392e-06, + "loss": 0.18406974792480468, + "step": 282000 + }, + { + "epoch": 94.50590501717062, + "grad_norm": 0.6132789850234985, + "learning_rate": 2.7686767169179233e-06, + "loss": 0.18442945480346679, + "step": 282100 + }, + { + "epoch": 94.53940866069185, + "grad_norm": 0.5181702971458435, + "learning_rate": 2.7519262981574543e-06, + "loss": 0.1834421730041504, + "step": 282200 + }, + { + "epoch": 94.57291230421308, + "grad_norm": 0.549511194229126, + "learning_rate": 2.735175879396985e-06, + "loss": 0.18456022262573243, + "step": 282300 + }, + { + "epoch": 94.60641594773432, + "grad_norm": 0.5756514072418213, + "learning_rate": 2.7184254606365157e-06, + "loss": 0.1831919479370117, + "step": 282400 + }, + { + "epoch": 94.63991959125555, + "grad_norm": 0.5692307949066162, + "learning_rate": 2.701675041876047e-06, + "loss": 0.18358297348022462, + "step": 282500 + }, + { + "epoch": 94.67342323477678, + "grad_norm": 0.6947788596153259, + "learning_rate": 2.684924623115578e-06, + "loss": 0.1838298225402832, + "step": 282600 + }, + { + "epoch": 94.70692687829802, + "grad_norm": 0.5112714767456055, + "learning_rate": 2.668174204355109e-06, + "loss": 0.18363580703735352, + "step": 282700 + }, + { + "epoch": 94.74043052181925, + "grad_norm": 0.6610069274902344, + "learning_rate": 2.6515912897822445e-06, + "loss": 0.184285888671875, + "step": 282800 + }, + { + "epoch": 94.77393416534048, + "grad_norm": 0.5555760860443115, + "learning_rate": 2.634840871021776e-06, + "loss": 0.18415529251098633, + "step": 282900 + }, + { + "epoch": 94.8074378088617, + "grad_norm": 0.6111050844192505, + "learning_rate": 2.6180904522613068e-06, + "loss": 0.18409820556640624, + "step": 283000 + }, + { + "epoch": 94.84094145238295, + "grad_norm": 0.5163633227348328, + "learning_rate": 2.6013400335008377e-06, + "loss": 0.18490222930908204, + "step": 283100 + }, + { + "epoch": 94.87444509590418, + "grad_norm": 0.5600749254226685, + "learning_rate": 2.5845896147403686e-06, + "loss": 0.18375289916992188, + "step": 283200 + }, + { + "epoch": 94.90794873942541, + "grad_norm": 0.49500954151153564, + "learning_rate": 2.5678391959798996e-06, + "loss": 0.18480894088745117, + "step": 283300 + }, + { + "epoch": 94.94145238294665, + "grad_norm": 0.5733513236045837, + "learning_rate": 2.5510887772194305e-06, + "loss": 0.1837126922607422, + "step": 283400 + }, + { + "epoch": 94.97495602646788, + "grad_norm": 0.549117386341095, + "learning_rate": 2.5343383584589615e-06, + "loss": 0.18447158813476563, + "step": 283500 + }, + { + "epoch": 95.0083759108803, + "grad_norm": 0.4763764441013336, + "learning_rate": 2.517587939698493e-06, + "loss": 0.18384462356567383, + "step": 283600 + }, + { + "epoch": 95.04187955440155, + "grad_norm": 0.5236153602600098, + "learning_rate": 2.5008375209380238e-06, + "loss": 0.18261993408203125, + "step": 283700 + }, + { + "epoch": 95.07538319792278, + "grad_norm": 0.4592667818069458, + "learning_rate": 2.4840871021775543e-06, + "loss": 0.18320878982543945, + "step": 283800 + }, + { + "epoch": 95.108886841444, + "grad_norm": 0.506898820400238, + "learning_rate": 2.4673366834170852e-06, + "loss": 0.18264638900756835, + "step": 283900 + }, + { + "epoch": 95.14239048496523, + "grad_norm": 0.619023859500885, + "learning_rate": 2.4505862646566166e-06, + "loss": 0.18314945220947265, + "step": 284000 + }, + { + "epoch": 95.17589412848648, + "grad_norm": 0.48291823267936707, + "learning_rate": 2.4338358458961475e-06, + "loss": 0.18282480239868165, + "step": 284100 + }, + { + "epoch": 95.2093977720077, + "grad_norm": 0.48036035895347595, + "learning_rate": 2.4170854271356785e-06, + "loss": 0.1841721534729004, + "step": 284200 + }, + { + "epoch": 95.24290141552893, + "grad_norm": 0.5450857877731323, + "learning_rate": 2.40033500837521e-06, + "loss": 0.18397005081176757, + "step": 284300 + }, + { + "epoch": 95.27640505905018, + "grad_norm": 0.47729921340942383, + "learning_rate": 2.3835845896147403e-06, + "loss": 0.18345026016235352, + "step": 284400 + }, + { + "epoch": 95.3099087025714, + "grad_norm": 0.6052916646003723, + "learning_rate": 2.3668341708542713e-06, + "loss": 0.1844022560119629, + "step": 284500 + }, + { + "epoch": 95.34341234609263, + "grad_norm": 0.5513006448745728, + "learning_rate": 2.3500837520938022e-06, + "loss": 0.1827683639526367, + "step": 284600 + }, + { + "epoch": 95.37691598961388, + "grad_norm": 0.48488298058509827, + "learning_rate": 2.3333333333333336e-06, + "loss": 0.1831340026855469, + "step": 284700 + }, + { + "epoch": 95.4104196331351, + "grad_norm": 0.5309977531433105, + "learning_rate": 2.316750418760469e-06, + "loss": 0.18309810638427734, + "step": 284800 + }, + { + "epoch": 95.44392327665634, + "grad_norm": 0.43957263231277466, + "learning_rate": 2.3e-06, + "loss": 0.1831692123413086, + "step": 284900 + }, + { + "epoch": 95.47742692017756, + "grad_norm": 0.5356688499450684, + "learning_rate": 2.283249581239531e-06, + "loss": 0.18342973709106444, + "step": 285000 + }, + { + "epoch": 95.5109305636988, + "grad_norm": 0.5657954812049866, + "learning_rate": 2.2664991624790623e-06, + "loss": 0.18340103149414064, + "step": 285100 + }, + { + "epoch": 95.54443420722004, + "grad_norm": 0.5092414617538452, + "learning_rate": 2.2497487437185932e-06, + "loss": 0.18338417053222655, + "step": 285200 + }, + { + "epoch": 95.57793785074126, + "grad_norm": 0.4153210520744324, + "learning_rate": 2.232998324958124e-06, + "loss": 0.1836545181274414, + "step": 285300 + }, + { + "epoch": 95.61144149426251, + "grad_norm": 0.5015280842781067, + "learning_rate": 2.2162479061976547e-06, + "loss": 0.1827981948852539, + "step": 285400 + }, + { + "epoch": 95.64494513778374, + "grad_norm": 0.7179563641548157, + "learning_rate": 2.199497487437186e-06, + "loss": 0.18311439514160155, + "step": 285500 + }, + { + "epoch": 95.67844878130497, + "grad_norm": 0.5288705825805664, + "learning_rate": 2.182747068676717e-06, + "loss": 0.18439481735229493, + "step": 285600 + }, + { + "epoch": 95.7119524248262, + "grad_norm": 0.5110313296318054, + "learning_rate": 2.165996649916248e-06, + "loss": 0.18332534790039062, + "step": 285700 + }, + { + "epoch": 95.74545606834744, + "grad_norm": 0.5360533595085144, + "learning_rate": 2.1492462311557793e-06, + "loss": 0.18395133972167968, + "step": 285800 + }, + { + "epoch": 95.77895971186867, + "grad_norm": 0.534217894077301, + "learning_rate": 2.13249581239531e-06, + "loss": 0.18385652542114259, + "step": 285900 + }, + { + "epoch": 95.8124633553899, + "grad_norm": 0.6536206007003784, + "learning_rate": 2.1157453936348408e-06, + "loss": 0.18364360809326172, + "step": 286000 + }, + { + "epoch": 95.84596699891114, + "grad_norm": 0.5675894618034363, + "learning_rate": 2.0989949748743717e-06, + "loss": 0.18334434509277345, + "step": 286100 + }, + { + "epoch": 95.87947064243237, + "grad_norm": 0.5131775736808777, + "learning_rate": 2.082244556113903e-06, + "loss": 0.18401821136474608, + "step": 286200 + }, + { + "epoch": 95.9129742859536, + "grad_norm": 0.4480537176132202, + "learning_rate": 2.065494137353434e-06, + "loss": 0.18490314483642578, + "step": 286300 + }, + { + "epoch": 95.94647792947482, + "grad_norm": 0.566072404384613, + "learning_rate": 2.048743718592965e-06, + "loss": 0.18334156036376953, + "step": 286400 + }, + { + "epoch": 95.97998157299607, + "grad_norm": 0.5423669815063477, + "learning_rate": 2.031993299832496e-06, + "loss": 0.18419130325317382, + "step": 286500 + }, + { + "epoch": 96.01340145740849, + "grad_norm": 0.5609968900680542, + "learning_rate": 2.015242881072027e-06, + "loss": 0.18358615875244141, + "step": 286600 + }, + { + "epoch": 96.04690510092972, + "grad_norm": 0.4528324604034424, + "learning_rate": 1.9984924623115578e-06, + "loss": 0.18235225677490235, + "step": 286700 + }, + { + "epoch": 96.08040874445096, + "grad_norm": 0.4424758851528168, + "learning_rate": 1.9817420435510887e-06, + "loss": 0.18314834594726562, + "step": 286800 + }, + { + "epoch": 96.11391238797219, + "grad_norm": 0.5286248922348022, + "learning_rate": 1.965159128978224e-06, + "loss": 0.18267539978027345, + "step": 286900 + }, + { + "epoch": 96.14741603149342, + "grad_norm": 0.44464874267578125, + "learning_rate": 1.9484087102177555e-06, + "loss": 0.18318920135498046, + "step": 287000 + }, + { + "epoch": 96.18091967501466, + "grad_norm": 0.5130648016929626, + "learning_rate": 1.9316582914572865e-06, + "loss": 0.18308115005493164, + "step": 287100 + }, + { + "epoch": 96.21442331853589, + "grad_norm": 0.8183990120887756, + "learning_rate": 1.9149078726968174e-06, + "loss": 0.1834044075012207, + "step": 287200 + }, + { + "epoch": 96.24792696205712, + "grad_norm": 0.5199669599533081, + "learning_rate": 1.8981574539363486e-06, + "loss": 0.18283458709716796, + "step": 287300 + }, + { + "epoch": 96.28143060557835, + "grad_norm": 0.4842471778392792, + "learning_rate": 1.8814070351758795e-06, + "loss": 0.18268014907836913, + "step": 287400 + }, + { + "epoch": 96.3149342490996, + "grad_norm": 0.6083213686943054, + "learning_rate": 1.8646566164154105e-06, + "loss": 0.18216041564941407, + "step": 287500 + }, + { + "epoch": 96.34843789262082, + "grad_norm": 0.46411433815956116, + "learning_rate": 1.8479061976549414e-06, + "loss": 0.18271490097045898, + "step": 287600 + }, + { + "epoch": 96.38194153614205, + "grad_norm": 0.5906765460968018, + "learning_rate": 1.8311557788944725e-06, + "loss": 0.18355520248413085, + "step": 287700 + }, + { + "epoch": 96.4154451796633, + "grad_norm": 0.6398022174835205, + "learning_rate": 1.8144053601340035e-06, + "loss": 0.18388975143432618, + "step": 287800 + }, + { + "epoch": 96.44894882318452, + "grad_norm": 0.5343595147132874, + "learning_rate": 1.7976549413735344e-06, + "loss": 0.1829561996459961, + "step": 287900 + }, + { + "epoch": 96.48245246670575, + "grad_norm": 0.5307978987693787, + "learning_rate": 1.7809045226130656e-06, + "loss": 0.1831664276123047, + "step": 288000 + }, + { + "epoch": 96.51595611022698, + "grad_norm": 0.42967861890792847, + "learning_rate": 1.7641541038525965e-06, + "loss": 0.18227174758911133, + "step": 288100 + }, + { + "epoch": 96.54945975374822, + "grad_norm": 0.5349688529968262, + "learning_rate": 1.7474036850921274e-06, + "loss": 0.1833807945251465, + "step": 288200 + }, + { + "epoch": 96.58296339726945, + "grad_norm": 0.5560780167579651, + "learning_rate": 1.7306532663316582e-06, + "loss": 0.1837186622619629, + "step": 288300 + }, + { + "epoch": 96.61646704079068, + "grad_norm": 0.6274934411048889, + "learning_rate": 1.7139028475711895e-06, + "loss": 0.18322343826293946, + "step": 288400 + }, + { + "epoch": 96.64997068431192, + "grad_norm": 0.4825371503829956, + "learning_rate": 1.6971524288107205e-06, + "loss": 0.18326036453247072, + "step": 288500 + }, + { + "epoch": 96.68347432783315, + "grad_norm": 0.6797924041748047, + "learning_rate": 1.6804020100502512e-06, + "loss": 0.18284734725952148, + "step": 288600 + }, + { + "epoch": 96.71697797135438, + "grad_norm": 0.5788692235946655, + "learning_rate": 1.6636515912897821e-06, + "loss": 0.1840299606323242, + "step": 288700 + }, + { + "epoch": 96.75048161487561, + "grad_norm": 0.49273577332496643, + "learning_rate": 1.6469011725293135e-06, + "loss": 0.18266069412231445, + "step": 288800 + }, + { + "epoch": 96.78398525839685, + "grad_norm": 0.5252591967582703, + "learning_rate": 1.630318257956449e-06, + "loss": 0.1839330291748047, + "step": 288900 + }, + { + "epoch": 96.81748890191808, + "grad_norm": 0.6281270980834961, + "learning_rate": 1.61356783919598e-06, + "loss": 0.18259082794189452, + "step": 289000 + }, + { + "epoch": 96.85099254543931, + "grad_norm": 0.589600682258606, + "learning_rate": 1.5968174204355109e-06, + "loss": 0.18413593292236327, + "step": 289100 + }, + { + "epoch": 96.88449618896055, + "grad_norm": 0.52843177318573, + "learning_rate": 1.580067001675042e-06, + "loss": 0.18312227249145507, + "step": 289200 + }, + { + "epoch": 96.91799983248178, + "grad_norm": 0.5499556660652161, + "learning_rate": 1.563316582914573e-06, + "loss": 0.18327688217163085, + "step": 289300 + }, + { + "epoch": 96.95150347600301, + "grad_norm": 0.5910999178886414, + "learning_rate": 1.5465661641541041e-06, + "loss": 0.18362533569335937, + "step": 289400 + }, + { + "epoch": 96.98500711952425, + "grad_norm": 0.47498592734336853, + "learning_rate": 1.5298157453936348e-06, + "loss": 0.18386016845703124, + "step": 289500 + }, + { + "epoch": 97.01842700393668, + "grad_norm": 0.5408181548118591, + "learning_rate": 1.513065326633166e-06, + "loss": 0.18346582412719725, + "step": 289600 + }, + { + "epoch": 97.05193064745791, + "grad_norm": 0.6393353939056396, + "learning_rate": 1.496314907872697e-06, + "loss": 0.18178239822387696, + "step": 289700 + }, + { + "epoch": 97.08543429097914, + "grad_norm": 0.568048894405365, + "learning_rate": 1.4795644891122279e-06, + "loss": 0.1829755973815918, + "step": 289800 + }, + { + "epoch": 97.11893793450038, + "grad_norm": 0.4984806776046753, + "learning_rate": 1.4628140703517588e-06, + "loss": 0.1820225715637207, + "step": 289900 + }, + { + "epoch": 97.15244157802161, + "grad_norm": 0.4840709865093231, + "learning_rate": 1.44606365159129e-06, + "loss": 0.18249683380126952, + "step": 290000 + }, + { + "epoch": 97.18594522154284, + "grad_norm": 0.5016071200370789, + "learning_rate": 1.4293132328308207e-06, + "loss": 0.18231712341308592, + "step": 290100 + }, + { + "epoch": 97.21944886506408, + "grad_norm": 0.6901659965515137, + "learning_rate": 1.4125628140703518e-06, + "loss": 0.18322145462036132, + "step": 290200 + }, + { + "epoch": 97.25295250858531, + "grad_norm": 0.4563469886779785, + "learning_rate": 1.3958123953098828e-06, + "loss": 0.18245380401611327, + "step": 290300 + }, + { + "epoch": 97.28645615210654, + "grad_norm": 0.6341580152511597, + "learning_rate": 1.3790619765494137e-06, + "loss": 0.18248394012451172, + "step": 290400 + }, + { + "epoch": 97.31995979562778, + "grad_norm": 0.681046187877655, + "learning_rate": 1.3623115577889449e-06, + "loss": 0.18289484024047853, + "step": 290500 + }, + { + "epoch": 97.35346343914901, + "grad_norm": 0.5641540884971619, + "learning_rate": 1.3455611390284758e-06, + "loss": 0.18241430282592774, + "step": 290600 + }, + { + "epoch": 97.38696708267024, + "grad_norm": 0.46917444467544556, + "learning_rate": 1.3288107202680067e-06, + "loss": 0.18300029754638672, + "step": 290700 + }, + { + "epoch": 97.42047072619147, + "grad_norm": 0.5886017084121704, + "learning_rate": 1.3120603015075377e-06, + "loss": 0.18347707748413086, + "step": 290800 + }, + { + "epoch": 97.45397436971271, + "grad_norm": 0.5818371772766113, + "learning_rate": 1.2954773869346736e-06, + "loss": 0.1830360221862793, + "step": 290900 + }, + { + "epoch": 97.48747801323394, + "grad_norm": 0.5439379215240479, + "learning_rate": 1.2787269681742043e-06, + "loss": 0.18396745681762694, + "step": 291000 + }, + { + "epoch": 97.52098165675517, + "grad_norm": 0.5070674419403076, + "learning_rate": 1.2619765494137355e-06, + "loss": 0.1832095718383789, + "step": 291100 + }, + { + "epoch": 97.55448530027641, + "grad_norm": 0.4415448307991028, + "learning_rate": 1.2452261306532664e-06, + "loss": 0.18289644241333008, + "step": 291200 + }, + { + "epoch": 97.58798894379764, + "grad_norm": 0.4324808418750763, + "learning_rate": 1.2284757118927973e-06, + "loss": 0.18389009475708007, + "step": 291300 + }, + { + "epoch": 97.62149258731887, + "grad_norm": 0.653737485408783, + "learning_rate": 1.2117252931323283e-06, + "loss": 0.1822391700744629, + "step": 291400 + }, + { + "epoch": 97.6549962308401, + "grad_norm": 0.5741151571273804, + "learning_rate": 1.1949748743718594e-06, + "loss": 0.18301633834838868, + "step": 291500 + }, + { + "epoch": 97.68849987436134, + "grad_norm": 0.526233971118927, + "learning_rate": 1.1782244556113904e-06, + "loss": 0.18326601028442382, + "step": 291600 + }, + { + "epoch": 97.72200351788257, + "grad_norm": 0.4789596498012543, + "learning_rate": 1.1614740368509213e-06, + "loss": 0.18228565216064452, + "step": 291700 + }, + { + "epoch": 97.7555071614038, + "grad_norm": 0.711111307144165, + "learning_rate": 1.1447236180904523e-06, + "loss": 0.18288152694702148, + "step": 291800 + }, + { + "epoch": 97.78901080492504, + "grad_norm": 0.5140437483787537, + "learning_rate": 1.1279731993299832e-06, + "loss": 0.18254825592041016, + "step": 291900 + }, + { + "epoch": 97.82251444844627, + "grad_norm": 0.47034555673599243, + "learning_rate": 1.1112227805695143e-06, + "loss": 0.18244110107421874, + "step": 292000 + }, + { + "epoch": 97.8560180919675, + "grad_norm": 0.5814681053161621, + "learning_rate": 1.0944723618090453e-06, + "loss": 0.1832912254333496, + "step": 292100 + }, + { + "epoch": 97.88952173548873, + "grad_norm": 0.5516090393066406, + "learning_rate": 1.0777219430485762e-06, + "loss": 0.18352859497070312, + "step": 292200 + }, + { + "epoch": 97.92302537900997, + "grad_norm": 0.5123777985572815, + "learning_rate": 1.0609715242881072e-06, + "loss": 0.18379606246948244, + "step": 292300 + }, + { + "epoch": 97.9565290225312, + "grad_norm": 0.6835401654243469, + "learning_rate": 1.0442211055276383e-06, + "loss": 0.18410768508911132, + "step": 292400 + }, + { + "epoch": 97.99003266605243, + "grad_norm": 0.5012428760528564, + "learning_rate": 1.0274706867671693e-06, + "loss": 0.18317014694213868, + "step": 292500 + }, + { + "epoch": 98.02345255046487, + "grad_norm": 0.4708642065525055, + "learning_rate": 1.0107202680067002e-06, + "loss": 0.18331142425537109, + "step": 292600 + }, + { + "epoch": 98.0569561939861, + "grad_norm": 0.5567511320114136, + "learning_rate": 9.939698492462311e-07, + "loss": 0.18246702194213868, + "step": 292700 + }, + { + "epoch": 98.09045983750732, + "grad_norm": 0.7058369517326355, + "learning_rate": 9.772194304857623e-07, + "loss": 0.18259771347045897, + "step": 292800 + }, + { + "epoch": 98.12396348102857, + "grad_norm": 0.6134818196296692, + "learning_rate": 9.604690117252932e-07, + "loss": 0.1822067070007324, + "step": 292900 + }, + { + "epoch": 98.1574671245498, + "grad_norm": 0.4781286418437958, + "learning_rate": 9.438860971524289e-07, + "loss": 0.18297542572021486, + "step": 293000 + }, + { + "epoch": 98.19097076807103, + "grad_norm": 0.49279746413230896, + "learning_rate": 9.271356783919598e-07, + "loss": 0.18277181625366212, + "step": 293100 + }, + { + "epoch": 98.22447441159225, + "grad_norm": 0.5490056276321411, + "learning_rate": 9.103852596314908e-07, + "loss": 0.1828497314453125, + "step": 293200 + }, + { + "epoch": 98.2579780551135, + "grad_norm": 0.6629262566566467, + "learning_rate": 8.936348408710217e-07, + "loss": 0.1831769371032715, + "step": 293300 + }, + { + "epoch": 98.29148169863473, + "grad_norm": 0.6081374883651733, + "learning_rate": 8.768844221105528e-07, + "loss": 0.18234825134277344, + "step": 293400 + }, + { + "epoch": 98.32498534215595, + "grad_norm": 0.5573914051055908, + "learning_rate": 8.601340033500838e-07, + "loss": 0.18284347534179687, + "step": 293500 + }, + { + "epoch": 98.3584889856772, + "grad_norm": 0.4881286025047302, + "learning_rate": 8.433835845896148e-07, + "loss": 0.18250568389892577, + "step": 293600 + }, + { + "epoch": 98.39199262919843, + "grad_norm": 0.5479198694229126, + "learning_rate": 8.266331658291458e-07, + "loss": 0.1822296905517578, + "step": 293700 + }, + { + "epoch": 98.42549627271966, + "grad_norm": 0.48754844069480896, + "learning_rate": 8.098827470686768e-07, + "loss": 0.1824342918395996, + "step": 293800 + }, + { + "epoch": 98.45899991624088, + "grad_norm": 0.5909836292266846, + "learning_rate": 7.931323283082078e-07, + "loss": 0.18264894485473632, + "step": 293900 + }, + { + "epoch": 98.49250355976213, + "grad_norm": 0.6499689817428589, + "learning_rate": 7.763819095477387e-07, + "loss": 0.1826353645324707, + "step": 294000 + }, + { + "epoch": 98.52600720328336, + "grad_norm": 0.5792352557182312, + "learning_rate": 7.596314907872698e-07, + "loss": 0.18250282287597655, + "step": 294100 + }, + { + "epoch": 98.55951084680459, + "grad_norm": 0.6496483087539673, + "learning_rate": 7.428810720268007e-07, + "loss": 0.18278635025024415, + "step": 294200 + }, + { + "epoch": 98.59301449032583, + "grad_norm": 0.5034297704696655, + "learning_rate": 7.261306532663317e-07, + "loss": 0.18362100601196288, + "step": 294300 + }, + { + "epoch": 98.62651813384706, + "grad_norm": 0.4216485917568207, + "learning_rate": 7.093802345058627e-07, + "loss": 0.18190402984619142, + "step": 294400 + }, + { + "epoch": 98.66002177736829, + "grad_norm": 0.4336554706096649, + "learning_rate": 6.926298157453936e-07, + "loss": 0.18188596725463868, + "step": 294500 + }, + { + "epoch": 98.69352542088953, + "grad_norm": 0.557890772819519, + "learning_rate": 6.758793969849246e-07, + "loss": 0.1827729797363281, + "step": 294600 + }, + { + "epoch": 98.72702906441076, + "grad_norm": 0.5158662796020508, + "learning_rate": 6.591289782244556e-07, + "loss": 0.18270872116088868, + "step": 294700 + }, + { + "epoch": 98.76053270793199, + "grad_norm": 0.5574226975440979, + "learning_rate": 6.423785594639867e-07, + "loss": 0.18279212951660156, + "step": 294800 + }, + { + "epoch": 98.79403635145322, + "grad_norm": 0.6103866696357727, + "learning_rate": 6.256281407035176e-07, + "loss": 0.18242774963378905, + "step": 294900 + }, + { + "epoch": 98.82753999497446, + "grad_norm": 0.6679960489273071, + "learning_rate": 6.088777219430487e-07, + "loss": 0.18265195846557616, + "step": 295000 + }, + { + "epoch": 98.86104363849569, + "grad_norm": 0.5146142244338989, + "learning_rate": 5.922948073701842e-07, + "loss": 0.1826561737060547, + "step": 295100 + }, + { + "epoch": 98.89454728201692, + "grad_norm": 0.4862828850746155, + "learning_rate": 5.755443886097152e-07, + "loss": 0.1830119514465332, + "step": 295200 + }, + { + "epoch": 98.92805092553816, + "grad_norm": 0.5384283661842346, + "learning_rate": 5.587939698492462e-07, + "loss": 0.18346889495849608, + "step": 295300 + }, + { + "epoch": 98.96155456905939, + "grad_norm": 0.5220957398414612, + "learning_rate": 5.420435510887773e-07, + "loss": 0.18368080139160156, + "step": 295400 + }, + { + "epoch": 98.99505821258062, + "grad_norm": 0.4835510849952698, + "learning_rate": 5.252931323283082e-07, + "loss": 0.1819740867614746, + "step": 295500 + }, + { + "epoch": 99.02847809699304, + "grad_norm": 0.599375307559967, + "learning_rate": 5.085427135678393e-07, + "loss": 0.18192974090576172, + "step": 295600 + }, + { + "epoch": 99.06198174051428, + "grad_norm": 0.7051849365234375, + "learning_rate": 4.917922948073702e-07, + "loss": 0.1823443603515625, + "step": 295700 + }, + { + "epoch": 99.09548538403551, + "grad_norm": 0.503696858882904, + "learning_rate": 4.750418760469012e-07, + "loss": 0.18231864929199218, + "step": 295800 + }, + { + "epoch": 99.12898902755674, + "grad_norm": 0.48068055510520935, + "learning_rate": 4.582914572864322e-07, + "loss": 0.1825026512145996, + "step": 295900 + }, + { + "epoch": 99.16249267107798, + "grad_norm": 0.5054277777671814, + "learning_rate": 4.415410385259632e-07, + "loss": 0.18171930313110352, + "step": 296000 + }, + { + "epoch": 99.19599631459921, + "grad_norm": 0.4834759831428528, + "learning_rate": 4.247906197654941e-07, + "loss": 0.18209936141967772, + "step": 296100 + }, + { + "epoch": 99.22949995812044, + "grad_norm": 0.5204523205757141, + "learning_rate": 4.080402010050251e-07, + "loss": 0.18290546417236328, + "step": 296200 + }, + { + "epoch": 99.26300360164169, + "grad_norm": 0.4851609766483307, + "learning_rate": 3.9128978224455616e-07, + "loss": 0.18262216567993164, + "step": 296300 + }, + { + "epoch": 99.29650724516291, + "grad_norm": 0.506882905960083, + "learning_rate": 3.745393634840871e-07, + "loss": 0.18311552047729493, + "step": 296400 + }, + { + "epoch": 99.33001088868414, + "grad_norm": 0.4979182183742523, + "learning_rate": 3.577889447236181e-07, + "loss": 0.18193258285522462, + "step": 296500 + }, + { + "epoch": 99.36351453220537, + "grad_norm": 0.41721171140670776, + "learning_rate": 3.4103852596314913e-07, + "loss": 0.18166379928588866, + "step": 296600 + }, + { + "epoch": 99.39701817572661, + "grad_norm": 0.5125341415405273, + "learning_rate": 3.2428810720268007e-07, + "loss": 0.1818573760986328, + "step": 296700 + }, + { + "epoch": 99.43052181924784, + "grad_norm": 0.5992101430892944, + "learning_rate": 3.0753768844221106e-07, + "loss": 0.1827593421936035, + "step": 296800 + }, + { + "epoch": 99.46402546276907, + "grad_norm": 0.551201343536377, + "learning_rate": 2.9078726968174206e-07, + "loss": 0.18226703643798828, + "step": 296900 + }, + { + "epoch": 99.49752910629032, + "grad_norm": 0.4715881645679474, + "learning_rate": 2.7403685092127305e-07, + "loss": 0.18271636962890625, + "step": 297000 + }, + { + "epoch": 99.53103274981154, + "grad_norm": 0.48507949709892273, + "learning_rate": 2.5728643216080404e-07, + "loss": 0.18286649703979493, + "step": 297100 + }, + { + "epoch": 99.56453639333277, + "grad_norm": 0.5795986652374268, + "learning_rate": 2.4070351758793973e-07, + "loss": 0.18219593048095703, + "step": 297200 + }, + { + "epoch": 99.598040036854, + "grad_norm": 0.4794217646121979, + "learning_rate": 2.239530988274707e-07, + "loss": 0.18355159759521483, + "step": 297300 + }, + { + "epoch": 99.63154368037524, + "grad_norm": 0.5386576056480408, + "learning_rate": 2.0720268006700167e-07, + "loss": 0.1827494430541992, + "step": 297400 + }, + { + "epoch": 99.66504732389647, + "grad_norm": 0.5734672546386719, + "learning_rate": 1.9045226130653268e-07, + "loss": 0.18233570098876953, + "step": 297500 + }, + { + "epoch": 99.6985509674177, + "grad_norm": 0.49709200859069824, + "learning_rate": 1.7370184254606365e-07, + "loss": 0.18292242050170898, + "step": 297600 + }, + { + "epoch": 99.73205461093895, + "grad_norm": 0.46515047550201416, + "learning_rate": 1.5695142378559464e-07, + "loss": 0.18247623443603517, + "step": 297700 + }, + { + "epoch": 99.76555825446017, + "grad_norm": 0.5647607445716858, + "learning_rate": 1.4020100502512564e-07, + "loss": 0.18333343505859376, + "step": 297800 + }, + { + "epoch": 99.7990618979814, + "grad_norm": 0.5439239144325256, + "learning_rate": 1.2345058626465663e-07, + "loss": 0.1823881721496582, + "step": 297900 + }, + { + "epoch": 99.83256554150263, + "grad_norm": 0.5171498656272888, + "learning_rate": 1.067001675041876e-07, + "loss": 0.18236944198608399, + "step": 298000 + }, + { + "epoch": 99.86606918502387, + "grad_norm": 0.5662410259246826, + "learning_rate": 8.99497487437186e-08, + "loss": 0.18176408767700195, + "step": 298100 + }, + { + "epoch": 99.8995728285451, + "grad_norm": 0.5604025721549988, + "learning_rate": 7.319932998324959e-08, + "loss": 0.18264013290405273, + "step": 298200 + }, + { + "epoch": 99.93307647206633, + "grad_norm": 0.47708413004875183, + "learning_rate": 5.644891122278057e-08, + "loss": 0.1830152130126953, + "step": 298300 + } + ], + "logging_steps": 100, + "max_steps": 298500, + "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.5100556011359437e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/training_args.bin b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..4243bd5e526d7e7d0d142ff9063a8e0096d948ea --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.0.0", + "use_cache": false, + "vocab_size": 1534 +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/generation_config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/model.safetensors b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fe3874ba9d224e1bee081a4eb88fb9ca9203143c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9367c340995cc7c93214b3a0e57137f34525756de2590dcb490b32e6feeb9462 +size 177980872 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/optimizer.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4468c485839f26be9d579559b5850580991e5b69 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591e8f6413187fcf4fbdb226dc566f817252961aa31014ccd04a3c09a7f6f419 +size 356010827 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/rng_state.pth b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..8298611988f0dd3f84e848f5375d67730e2b1cee --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d42538694381f5fc898d3b8d8b93159a06a65eedf46fad1407ac9c1c65a709 +size 14645 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/scaler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f6233e07bf227ebd5a579a3d4b2ee1142cce986c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07fd7353366672758710f320eb9b2625d349e6a9e4c5457673325d3a1ef11561 +size 1383 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/scheduler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..48a2764b8115490dd2dc50bf679318e848ebb478 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd02381051010ff95aae77478e6d793be0f564fd0fa6307c40d7a1b1a7ccfa35 +size 1465 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/trainer_state.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e9157f4f4cc321de6f9db5fefae8fa1df6012627 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/trainer_state.json @@ -0,0 +1,20922 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.96658011558758, + "eval_steps": 100, + "global_step": 298400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.03350364352123293, + "grad_norm": 0.8461591005325317, + "learning_rate": 4.9983417085427135e-05, + "loss": 1.800863037109375, + "step": 100 + }, + { + "epoch": 0.06700728704246586, + "grad_norm": 0.7391623258590698, + "learning_rate": 4.996666666666667e-05, + "loss": 0.8150953674316406, + "step": 200 + }, + { + "epoch": 0.10051093056369881, + "grad_norm": 0.6344850659370422, + "learning_rate": 4.99499162479062e-05, + "loss": 0.7532137298583984, + "step": 300 + }, + { + "epoch": 0.13401457408493173, + "grad_norm": 0.6711709499359131, + "learning_rate": 4.993316582914573e-05, + "loss": 0.7202082061767578, + "step": 400 + }, + { + "epoch": 0.16751821760616467, + "grad_norm": 0.6779165267944336, + "learning_rate": 4.9916415410385264e-05, + "loss": 0.7091973114013672, + "step": 500 + }, + { + "epoch": 0.20102186112739762, + "grad_norm": 0.6654858589172363, + "learning_rate": 4.989966499162479e-05, + "loss": 0.685182876586914, + "step": 600 + }, + { + "epoch": 0.23452550464863053, + "grad_norm": 0.6182253956794739, + "learning_rate": 4.988291457286433e-05, + "loss": 0.6745145416259766, + "step": 700 + }, + { + "epoch": 0.26802914816986345, + "grad_norm": 0.6512383818626404, + "learning_rate": 4.986616415410386e-05, + "loss": 0.6662254333496094, + "step": 800 + }, + { + "epoch": 0.3015327916910964, + "grad_norm": 0.6715951561927795, + "learning_rate": 4.9849413735343386e-05, + "loss": 0.6557020568847656, + "step": 900 + }, + { + "epoch": 0.33503643521232934, + "grad_norm": 0.5785344839096069, + "learning_rate": 4.9832663316582915e-05, + "loss": 0.6456297302246093, + "step": 1000 + }, + { + "epoch": 0.36854007873356226, + "grad_norm": 0.6495988368988037, + "learning_rate": 4.981591289782245e-05, + "loss": 0.6365409851074219, + "step": 1100 + }, + { + "epoch": 0.40204372225479523, + "grad_norm": 0.634831428527832, + "learning_rate": 4.979916247906198e-05, + "loss": 0.6296848678588867, + "step": 1200 + }, + { + "epoch": 0.43554736577602815, + "grad_norm": 0.5968198180198669, + "learning_rate": 4.978241206030151e-05, + "loss": 0.6211205673217773, + "step": 1300 + }, + { + "epoch": 0.46905100929726107, + "grad_norm": 0.634230375289917, + "learning_rate": 4.976566164154104e-05, + "loss": 0.6164393997192383, + "step": 1400 + }, + { + "epoch": 0.502554652818494, + "grad_norm": 0.5891489386558533, + "learning_rate": 4.974891122278057e-05, + "loss": 0.6082125854492187, + "step": 1500 + }, + { + "epoch": 0.5360582963397269, + "grad_norm": 0.6446542739868164, + "learning_rate": 4.97321608040201e-05, + "loss": 0.611778564453125, + "step": 1600 + }, + { + "epoch": 0.5695619398609599, + "grad_norm": 0.6366457343101501, + "learning_rate": 4.971541038525964e-05, + "loss": 0.6013064193725586, + "step": 1700 + }, + { + "epoch": 0.6030655833821928, + "grad_norm": 0.6310938596725464, + "learning_rate": 4.9698659966499166e-05, + "loss": 0.5960189819335937, + "step": 1800 + }, + { + "epoch": 0.6365692269034258, + "grad_norm": 0.6312111616134644, + "learning_rate": 4.9681909547738694e-05, + "loss": 0.5902027511596679, + "step": 1900 + }, + { + "epoch": 0.6700728704246587, + "grad_norm": 0.6359553337097168, + "learning_rate": 4.966515912897823e-05, + "loss": 0.5884978485107422, + "step": 2000 + }, + { + "epoch": 0.7035765139458916, + "grad_norm": 0.6602451205253601, + "learning_rate": 4.964840871021776e-05, + "loss": 0.58427734375, + "step": 2100 + }, + { + "epoch": 0.7370801574671245, + "grad_norm": 0.6105899810791016, + "learning_rate": 4.963165829145729e-05, + "loss": 0.5838186645507812, + "step": 2200 + }, + { + "epoch": 0.7705838009883574, + "grad_norm": 0.5694506764411926, + "learning_rate": 4.9614907872696816e-05, + "loss": 0.5781952667236329, + "step": 2300 + }, + { + "epoch": 0.8040874445095905, + "grad_norm": 0.6220190525054932, + "learning_rate": 4.959815745393635e-05, + "loss": 0.5734509658813477, + "step": 2400 + }, + { + "epoch": 0.8375910880308234, + "grad_norm": 0.5669824481010437, + "learning_rate": 4.958140703517588e-05, + "loss": 0.573906478881836, + "step": 2500 + }, + { + "epoch": 0.8710947315520563, + "grad_norm": 0.6178188920021057, + "learning_rate": 4.956465661641541e-05, + "loss": 0.5677206802368164, + "step": 2600 + }, + { + "epoch": 0.9045983750732892, + "grad_norm": 0.5571620464324951, + "learning_rate": 4.9547906197654945e-05, + "loss": 0.5622820663452148, + "step": 2700 + }, + { + "epoch": 0.9381020185945221, + "grad_norm": 0.5818703770637512, + "learning_rate": 4.9531155778894474e-05, + "loss": 0.5609216690063477, + "step": 2800 + }, + { + "epoch": 0.971605662115755, + "grad_norm": 0.5967586040496826, + "learning_rate": 4.9514405360134e-05, + "loss": 0.5596435165405274, + "step": 2900 + }, + { + "epoch": 1.005025546528185, + "grad_norm": 0.6468071937561035, + "learning_rate": 4.949765494137354e-05, + "loss": 0.5584405899047852, + "step": 3000 + }, + { + "epoch": 1.0385291900494178, + "grad_norm": 0.6350861191749573, + "learning_rate": 4.948090452261307e-05, + "loss": 0.5500188446044922, + "step": 3100 + }, + { + "epoch": 1.0720328335706508, + "grad_norm": 0.6933004260063171, + "learning_rate": 4.94641541038526e-05, + "loss": 0.546169662475586, + "step": 3200 + }, + { + "epoch": 1.1055364770918836, + "grad_norm": 0.6557233333587646, + "learning_rate": 4.944740368509213e-05, + "loss": 0.5476358795166015, + "step": 3300 + }, + { + "epoch": 1.1390401206131167, + "grad_norm": 0.6253458857536316, + "learning_rate": 4.943065326633166e-05, + "loss": 0.544293212890625, + "step": 3400 + }, + { + "epoch": 1.1725437641343497, + "grad_norm": 0.6146714091300964, + "learning_rate": 4.941390284757119e-05, + "loss": 0.5420544052124023, + "step": 3500 + }, + { + "epoch": 1.2060474076555825, + "grad_norm": 0.6168274879455566, + "learning_rate": 4.9397152428810725e-05, + "loss": 0.5440950775146485, + "step": 3600 + }, + { + "epoch": 1.2395510511768155, + "grad_norm": 0.6314318180084229, + "learning_rate": 4.9380402010050254e-05, + "loss": 0.5422676086425782, + "step": 3700 + }, + { + "epoch": 1.2730546946980486, + "grad_norm": 0.6257957816123962, + "learning_rate": 4.936365159128978e-05, + "loss": 0.5370346069335937, + "step": 3800 + }, + { + "epoch": 1.3065583382192814, + "grad_norm": 0.6324900984764099, + "learning_rate": 4.934690117252931e-05, + "loss": 0.5346813583374024, + "step": 3900 + }, + { + "epoch": 1.3400619817405142, + "grad_norm": 0.6128197312355042, + "learning_rate": 4.933015075376885e-05, + "loss": 0.5321989822387695, + "step": 4000 + }, + { + "epoch": 1.3735656252617472, + "grad_norm": 0.5664730072021484, + "learning_rate": 4.9313400335008376e-05, + "loss": 0.5304061126708984, + "step": 4100 + }, + { + "epoch": 1.4070692687829802, + "grad_norm": 0.5894239544868469, + "learning_rate": 4.929664991624791e-05, + "loss": 0.5285339736938477, + "step": 4200 + }, + { + "epoch": 1.440572912304213, + "grad_norm": 0.6181634068489075, + "learning_rate": 4.927989949748744e-05, + "loss": 0.5315813446044921, + "step": 4300 + }, + { + "epoch": 1.474076555825446, + "grad_norm": 0.6103029251098633, + "learning_rate": 4.926314907872697e-05, + "loss": 0.5283493423461914, + "step": 4400 + }, + { + "epoch": 1.507580199346679, + "grad_norm": 0.5960842967033386, + "learning_rate": 4.9246398659966505e-05, + "loss": 0.5253337097167968, + "step": 4500 + }, + { + "epoch": 1.541083842867912, + "grad_norm": 0.6720269918441772, + "learning_rate": 4.9229648241206034e-05, + "loss": 0.5257507705688477, + "step": 4600 + }, + { + "epoch": 1.5745874863891447, + "grad_norm": 0.6651366949081421, + "learning_rate": 4.921289782244556e-05, + "loss": 0.5222479248046875, + "step": 4700 + }, + { + "epoch": 1.6080911299103777, + "grad_norm": 0.6316231489181519, + "learning_rate": 4.919614740368509e-05, + "loss": 0.5179043197631836, + "step": 4800 + }, + { + "epoch": 1.6415947734316108, + "grad_norm": 0.5880525708198547, + "learning_rate": 4.917939698492463e-05, + "loss": 0.5151556777954102, + "step": 4900 + }, + { + "epoch": 1.6750984169528436, + "grad_norm": 0.6046984195709229, + "learning_rate": 4.9162646566164156e-05, + "loss": 0.5172126007080078, + "step": 5000 + }, + { + "epoch": 1.7086020604740766, + "grad_norm": 0.6584818959236145, + "learning_rate": 4.9145896147403684e-05, + "loss": 0.5168862533569336, + "step": 5100 + }, + { + "epoch": 1.7421057039953096, + "grad_norm": 0.644334077835083, + "learning_rate": 4.912914572864321e-05, + "loss": 0.516330337524414, + "step": 5200 + }, + { + "epoch": 1.7756093475165424, + "grad_norm": 0.6277704834938049, + "learning_rate": 4.911239530988275e-05, + "loss": 0.5101805114746094, + "step": 5300 + }, + { + "epoch": 1.8091129910377752, + "grad_norm": 0.6398980617523193, + "learning_rate": 4.909564489112228e-05, + "loss": 0.5114438247680664, + "step": 5400 + }, + { + "epoch": 1.8426166345590083, + "grad_norm": 0.6116181015968323, + "learning_rate": 4.907889447236181e-05, + "loss": 0.5063412094116211, + "step": 5500 + }, + { + "epoch": 1.8761202780802413, + "grad_norm": 0.6046104431152344, + "learning_rate": 4.906214405360134e-05, + "loss": 0.5081657409667969, + "step": 5600 + }, + { + "epoch": 1.909623921601474, + "grad_norm": 0.5920073390007019, + "learning_rate": 4.904539363484088e-05, + "loss": 0.5051012802124023, + "step": 5700 + }, + { + "epoch": 1.9431275651227071, + "grad_norm": 0.6170016527175903, + "learning_rate": 4.9028643216080407e-05, + "loss": 0.5026112747192383, + "step": 5800 + }, + { + "epoch": 1.9766312086439402, + "grad_norm": 0.6302964091300964, + "learning_rate": 4.9011892797319935e-05, + "loss": 0.501869125366211, + "step": 5900 + }, + { + "epoch": 2.01005109305637, + "grad_norm": 0.6208528280258179, + "learning_rate": 4.8995142378559464e-05, + "loss": 0.49743770599365233, + "step": 6000 + }, + { + "epoch": 2.043554736577603, + "grad_norm": 0.6439351439476013, + "learning_rate": 4.8978391959799e-05, + "loss": 0.49052135467529295, + "step": 6100 + }, + { + "epoch": 2.0770583800988356, + "grad_norm": 0.6153578162193298, + "learning_rate": 4.896164154103853e-05, + "loss": 0.4963309860229492, + "step": 6200 + }, + { + "epoch": 2.110562023620069, + "grad_norm": 0.5905429720878601, + "learning_rate": 4.894489112227806e-05, + "loss": 0.4935873413085938, + "step": 6300 + }, + { + "epoch": 2.1440656671413016, + "grad_norm": 0.5844092965126038, + "learning_rate": 4.8928140703517586e-05, + "loss": 0.49054019927978515, + "step": 6400 + }, + { + "epoch": 2.1775693106625345, + "grad_norm": 0.6116010546684265, + "learning_rate": 4.891139028475712e-05, + "loss": 0.4881373596191406, + "step": 6500 + }, + { + "epoch": 2.2110729541837673, + "grad_norm": 0.5920172333717346, + "learning_rate": 4.889463986599665e-05, + "loss": 0.48111820220947266, + "step": 6600 + }, + { + "epoch": 2.2445765977050005, + "grad_norm": 0.6223201155662537, + "learning_rate": 4.8877889447236186e-05, + "loss": 0.4858921813964844, + "step": 6700 + }, + { + "epoch": 2.2780802412262333, + "grad_norm": 0.679458737373352, + "learning_rate": 4.8861139028475715e-05, + "loss": 0.4880897903442383, + "step": 6800 + }, + { + "epoch": 2.311583884747466, + "grad_norm": 0.6320315003395081, + "learning_rate": 4.8844388609715244e-05, + "loss": 0.4870236587524414, + "step": 6900 + }, + { + "epoch": 2.3450875282686994, + "grad_norm": 0.6325832009315491, + "learning_rate": 4.882763819095478e-05, + "loss": 0.4866282272338867, + "step": 7000 + }, + { + "epoch": 2.378591171789932, + "grad_norm": 0.6240285634994507, + "learning_rate": 4.881088777219431e-05, + "loss": 0.48300540924072266, + "step": 7100 + }, + { + "epoch": 2.412094815311165, + "grad_norm": 0.6501027941703796, + "learning_rate": 4.879413735343384e-05, + "loss": 0.48553779602050784, + "step": 7200 + }, + { + "epoch": 2.4455984588323982, + "grad_norm": 0.6311469078063965, + "learning_rate": 4.8777386934673366e-05, + "loss": 0.4865619659423828, + "step": 7300 + }, + { + "epoch": 2.479102102353631, + "grad_norm": 0.6794814467430115, + "learning_rate": 4.87606365159129e-05, + "loss": 0.4808743286132813, + "step": 7400 + }, + { + "epoch": 2.512605745874864, + "grad_norm": 0.5595630407333374, + "learning_rate": 4.874388609715243e-05, + "loss": 0.48029510498046873, + "step": 7500 + }, + { + "epoch": 2.546109389396097, + "grad_norm": 0.6712229251861572, + "learning_rate": 4.872713567839196e-05, + "loss": 0.476650276184082, + "step": 7600 + }, + { + "epoch": 2.57961303291733, + "grad_norm": 0.6312442421913147, + "learning_rate": 4.871038525963149e-05, + "loss": 0.4794431686401367, + "step": 7700 + }, + { + "epoch": 2.6131166764385627, + "grad_norm": 0.6586233377456665, + "learning_rate": 4.8693634840871024e-05, + "loss": 0.4789765930175781, + "step": 7800 + }, + { + "epoch": 2.6466203199597955, + "grad_norm": 0.6464796662330627, + "learning_rate": 4.867688442211055e-05, + "loss": 0.4760271072387695, + "step": 7900 + }, + { + "epoch": 2.6801239634810283, + "grad_norm": 0.6250919103622437, + "learning_rate": 4.866013400335009e-05, + "loss": 0.47466728210449216, + "step": 8000 + }, + { + "epoch": 2.7136276070022616, + "grad_norm": 0.6650984287261963, + "learning_rate": 4.864338358458962e-05, + "loss": 0.4735995864868164, + "step": 8100 + }, + { + "epoch": 2.7471312505234944, + "grad_norm": 0.6536551713943481, + "learning_rate": 4.862663316582915e-05, + "loss": 0.47292491912841794, + "step": 8200 + }, + { + "epoch": 2.780634894044727, + "grad_norm": 0.6191151142120361, + "learning_rate": 4.860988274706868e-05, + "loss": 0.4695613479614258, + "step": 8300 + }, + { + "epoch": 2.8141385375659604, + "grad_norm": 0.6110975742340088, + "learning_rate": 4.859313232830821e-05, + "loss": 0.47242835998535154, + "step": 8400 + }, + { + "epoch": 2.8476421810871932, + "grad_norm": 0.6511522531509399, + "learning_rate": 4.857638190954774e-05, + "loss": 0.46818080902099607, + "step": 8500 + }, + { + "epoch": 2.881145824608426, + "grad_norm": 0.640023410320282, + "learning_rate": 4.8559631490787275e-05, + "loss": 0.4684713745117188, + "step": 8600 + }, + { + "epoch": 2.9146494681296593, + "grad_norm": 0.6558462381362915, + "learning_rate": 4.85428810720268e-05, + "loss": 0.47039485931396485, + "step": 8700 + }, + { + "epoch": 2.948153111650892, + "grad_norm": 0.64987713098526, + "learning_rate": 4.852613065326633e-05, + "loss": 0.46639087677001956, + "step": 8800 + }, + { + "epoch": 2.981656755172125, + "grad_norm": 0.6003667712211609, + "learning_rate": 4.850938023450586e-05, + "loss": 0.4636190795898438, + "step": 8900 + }, + { + "epoch": 3.0150766395845547, + "grad_norm": 0.6194270253181458, + "learning_rate": 4.8492629815745397e-05, + "loss": 0.4602717590332031, + "step": 9000 + }, + { + "epoch": 3.0485802831057875, + "grad_norm": 0.6473113894462585, + "learning_rate": 4.8475879396984925e-05, + "loss": 0.4513474655151367, + "step": 9100 + }, + { + "epoch": 3.082083926627021, + "grad_norm": 0.581709086894989, + "learning_rate": 4.845912897822446e-05, + "loss": 0.45967998504638674, + "step": 9200 + }, + { + "epoch": 3.1155875701482536, + "grad_norm": 0.6870703101158142, + "learning_rate": 4.844237855946399e-05, + "loss": 0.4573031997680664, + "step": 9300 + }, + { + "epoch": 3.1490912136694864, + "grad_norm": 0.6703235507011414, + "learning_rate": 4.842562814070352e-05, + "loss": 0.45413665771484374, + "step": 9400 + }, + { + "epoch": 3.1825948571907197, + "grad_norm": 0.6165799498558044, + "learning_rate": 4.8408877721943054e-05, + "loss": 0.4570289993286133, + "step": 9500 + }, + { + "epoch": 3.2160985007119525, + "grad_norm": 0.6460033059120178, + "learning_rate": 4.839212730318258e-05, + "loss": 0.4591374969482422, + "step": 9600 + }, + { + "epoch": 3.2496021442331853, + "grad_norm": 0.6148829460144043, + "learning_rate": 4.837537688442211e-05, + "loss": 0.4580984115600586, + "step": 9700 + }, + { + "epoch": 3.283105787754418, + "grad_norm": 0.6245681047439575, + "learning_rate": 4.835862646566164e-05, + "loss": 0.4545408248901367, + "step": 9800 + }, + { + "epoch": 3.3166094312756513, + "grad_norm": 0.6586223840713501, + "learning_rate": 4.8341876046901176e-05, + "loss": 0.4529739761352539, + "step": 9900 + }, + { + "epoch": 3.350113074796884, + "grad_norm": 0.6357883810997009, + "learning_rate": 4.8325125628140705e-05, + "loss": 0.4568283843994141, + "step": 10000 + }, + { + "epoch": 3.383616718318117, + "grad_norm": 0.6078239679336548, + "learning_rate": 4.8308375209380234e-05, + "loss": 0.45651729583740236, + "step": 10100 + }, + { + "epoch": 3.41712036183935, + "grad_norm": 0.6468596458435059, + "learning_rate": 4.829162479061976e-05, + "loss": 0.45133846282958984, + "step": 10200 + }, + { + "epoch": 3.450624005360583, + "grad_norm": 0.6487044095993042, + "learning_rate": 4.82748743718593e-05, + "loss": 0.4508181381225586, + "step": 10300 + }, + { + "epoch": 3.484127648881816, + "grad_norm": 0.642910897731781, + "learning_rate": 4.825812395309883e-05, + "loss": 0.45145717620849607, + "step": 10400 + }, + { + "epoch": 3.517631292403049, + "grad_norm": 0.6625356674194336, + "learning_rate": 4.824137353433836e-05, + "loss": 0.45529659271240236, + "step": 10500 + }, + { + "epoch": 3.551134935924282, + "grad_norm": 0.6431829929351807, + "learning_rate": 4.822462311557789e-05, + "loss": 0.4476095962524414, + "step": 10600 + }, + { + "epoch": 3.5846385794455147, + "grad_norm": 0.6072223782539368, + "learning_rate": 4.820787269681743e-05, + "loss": 0.4495735168457031, + "step": 10700 + }, + { + "epoch": 3.6181422229667475, + "grad_norm": 0.586395800113678, + "learning_rate": 4.8191122278056956e-05, + "loss": 0.44253528594970704, + "step": 10800 + }, + { + "epoch": 3.6516458664879807, + "grad_norm": 0.5829164981842041, + "learning_rate": 4.8174371859296485e-05, + "loss": 0.44407268524169924, + "step": 10900 + }, + { + "epoch": 3.6851495100092135, + "grad_norm": 0.612237274646759, + "learning_rate": 4.8157621440536014e-05, + "loss": 0.44537506103515623, + "step": 11000 + }, + { + "epoch": 3.7186531535304463, + "grad_norm": 0.5877944827079773, + "learning_rate": 4.814087102177555e-05, + "loss": 0.44692161560058596, + "step": 11100 + }, + { + "epoch": 3.752156797051679, + "grad_norm": 0.6447933316230774, + "learning_rate": 4.812412060301508e-05, + "loss": 0.44803882598876954, + "step": 11200 + }, + { + "epoch": 3.7856604405729124, + "grad_norm": 0.6374318599700928, + "learning_rate": 4.810737018425461e-05, + "loss": 0.4482523345947266, + "step": 11300 + }, + { + "epoch": 3.819164084094145, + "grad_norm": 0.7126030921936035, + "learning_rate": 4.8090619765494136e-05, + "loss": 0.44646026611328127, + "step": 11400 + }, + { + "epoch": 3.852667727615378, + "grad_norm": 0.6466185450553894, + "learning_rate": 4.807386934673367e-05, + "loss": 0.44249160766601564, + "step": 11500 + }, + { + "epoch": 3.8861713711366113, + "grad_norm": 0.6428183913230896, + "learning_rate": 4.80571189279732e-05, + "loss": 0.44268692016601563, + "step": 11600 + }, + { + "epoch": 3.919675014657844, + "grad_norm": 0.5706833600997925, + "learning_rate": 4.8040368509212736e-05, + "loss": 0.4477870559692383, + "step": 11700 + }, + { + "epoch": 3.953178658179077, + "grad_norm": 0.6583021879196167, + "learning_rate": 4.8023618090452265e-05, + "loss": 0.44658790588378905, + "step": 11800 + }, + { + "epoch": 3.98668230170031, + "grad_norm": 0.6143375039100647, + "learning_rate": 4.800686767169179e-05, + "loss": 0.4439199447631836, + "step": 11900 + }, + { + "epoch": 4.02010218611274, + "grad_norm": 0.5873826146125793, + "learning_rate": 4.799011725293133e-05, + "loss": 0.43299171447753904, + "step": 12000 + }, + { + "epoch": 4.053605829633972, + "grad_norm": 0.652965247631073, + "learning_rate": 4.797336683417086e-05, + "loss": 0.43379459381103513, + "step": 12100 + }, + { + "epoch": 4.087109473155206, + "grad_norm": 0.6809676885604858, + "learning_rate": 4.795661641541039e-05, + "loss": 0.434725341796875, + "step": 12200 + }, + { + "epoch": 4.120613116676439, + "grad_norm": 0.7001864314079285, + "learning_rate": 4.7939865996649915e-05, + "loss": 0.4402421188354492, + "step": 12300 + }, + { + "epoch": 4.154116760197671, + "grad_norm": 0.5879281759262085, + "learning_rate": 4.792311557788945e-05, + "loss": 0.436952018737793, + "step": 12400 + }, + { + "epoch": 4.187620403718904, + "grad_norm": 0.6814981698989868, + "learning_rate": 4.790636515912898e-05, + "loss": 0.43582103729248045, + "step": 12500 + }, + { + "epoch": 4.221124047240138, + "grad_norm": 0.6850152611732483, + "learning_rate": 4.788961474036851e-05, + "loss": 0.4337678527832031, + "step": 12600 + }, + { + "epoch": 4.25462769076137, + "grad_norm": 0.6886492967605591, + "learning_rate": 4.787286432160804e-05, + "loss": 0.4366899108886719, + "step": 12700 + }, + { + "epoch": 4.288131334282603, + "grad_norm": 0.6915615797042847, + "learning_rate": 4.785611390284757e-05, + "loss": 0.4344156265258789, + "step": 12800 + }, + { + "epoch": 4.3216349778038365, + "grad_norm": 0.6565848588943481, + "learning_rate": 4.78393634840871e-05, + "loss": 0.43212577819824216, + "step": 12900 + }, + { + "epoch": 4.355138621325069, + "grad_norm": 0.6957235336303711, + "learning_rate": 4.782261306532664e-05, + "loss": 0.4340908432006836, + "step": 13000 + }, + { + "epoch": 4.388642264846302, + "grad_norm": 0.6763550043106079, + "learning_rate": 4.7805862646566166e-05, + "loss": 0.43744525909423826, + "step": 13100 + }, + { + "epoch": 4.4221459083675345, + "grad_norm": 0.6657949090003967, + "learning_rate": 4.77891122278057e-05, + "loss": 0.4336092758178711, + "step": 13200 + }, + { + "epoch": 4.455649551888768, + "grad_norm": 0.6623894572257996, + "learning_rate": 4.777236180904523e-05, + "loss": 0.43067619323730466, + "step": 13300 + }, + { + "epoch": 4.489153195410001, + "grad_norm": 0.7518236041069031, + "learning_rate": 4.775561139028476e-05, + "loss": 0.4269240951538086, + "step": 13400 + }, + { + "epoch": 4.522656838931233, + "grad_norm": 0.6672277450561523, + "learning_rate": 4.773886097152429e-05, + "loss": 0.42989879608154297, + "step": 13500 + }, + { + "epoch": 4.556160482452467, + "grad_norm": 0.6400379538536072, + "learning_rate": 4.7722110552763824e-05, + "loss": 0.4264271926879883, + "step": 13600 + }, + { + "epoch": 4.5896641259737, + "grad_norm": 0.5992236733436584, + "learning_rate": 4.770536013400335e-05, + "loss": 0.4286244964599609, + "step": 13700 + }, + { + "epoch": 4.623167769494932, + "grad_norm": 0.674788773059845, + "learning_rate": 4.768860971524288e-05, + "loss": 0.42616188049316406, + "step": 13800 + }, + { + "epoch": 4.6566714130161655, + "grad_norm": 0.6788604259490967, + "learning_rate": 4.767185929648241e-05, + "loss": 0.4273800277709961, + "step": 13900 + }, + { + "epoch": 4.690175056537399, + "grad_norm": 0.6140567064285278, + "learning_rate": 4.7655108877721946e-05, + "loss": 0.43147178649902346, + "step": 14000 + }, + { + "epoch": 4.723678700058631, + "grad_norm": 0.6155766248703003, + "learning_rate": 4.7638525963149085e-05, + "loss": 0.4265935134887695, + "step": 14100 + }, + { + "epoch": 4.757182343579864, + "grad_norm": 0.6408616304397583, + "learning_rate": 4.7621775544388614e-05, + "loss": 0.4271296691894531, + "step": 14200 + }, + { + "epoch": 4.790685987101098, + "grad_norm": 0.6060003638267517, + "learning_rate": 4.760502512562814e-05, + "loss": 0.42877567291259766, + "step": 14300 + }, + { + "epoch": 4.82418963062233, + "grad_norm": 0.594854474067688, + "learning_rate": 4.758827470686767e-05, + "loss": 0.42625518798828127, + "step": 14400 + }, + { + "epoch": 4.857693274143563, + "grad_norm": 0.7048496007919312, + "learning_rate": 4.757152428810721e-05, + "loss": 0.4247948455810547, + "step": 14500 + }, + { + "epoch": 4.8911969176647965, + "grad_norm": 0.6743406057357788, + "learning_rate": 4.7554773869346736e-05, + "loss": 0.42869789123535157, + "step": 14600 + }, + { + "epoch": 4.924700561186029, + "grad_norm": 0.6159805059432983, + "learning_rate": 4.7538023450586265e-05, + "loss": 0.42471588134765625, + "step": 14700 + }, + { + "epoch": 4.958204204707262, + "grad_norm": 0.6490402817726135, + "learning_rate": 4.7521273031825794e-05, + "loss": 0.42407047271728515, + "step": 14800 + }, + { + "epoch": 4.991707848228495, + "grad_norm": 0.6755446791648865, + "learning_rate": 4.750452261306533e-05, + "loss": 0.42307563781738283, + "step": 14900 + }, + { + "epoch": 5.025127732640924, + "grad_norm": 0.6245474219322205, + "learning_rate": 4.748777219430486e-05, + "loss": 0.4140509796142578, + "step": 15000 + }, + { + "epoch": 5.0586313761621575, + "grad_norm": 0.6199154257774353, + "learning_rate": 4.747102177554439e-05, + "loss": 0.4141695785522461, + "step": 15100 + }, + { + "epoch": 5.092135019683391, + "grad_norm": 0.6318620443344116, + "learning_rate": 4.7454271356783916e-05, + "loss": 0.4133845520019531, + "step": 15200 + }, + { + "epoch": 5.125638663204623, + "grad_norm": 0.6261297464370728, + "learning_rate": 4.743752093802346e-05, + "loss": 0.41985397338867186, + "step": 15300 + }, + { + "epoch": 5.159142306725856, + "grad_norm": 0.6642125248908997, + "learning_rate": 4.742077051926299e-05, + "loss": 0.41414112091064453, + "step": 15400 + }, + { + "epoch": 5.19264595024709, + "grad_norm": 0.7118062973022461, + "learning_rate": 4.7404020100502516e-05, + "loss": 0.4157746505737305, + "step": 15500 + }, + { + "epoch": 5.226149593768322, + "grad_norm": 0.6888347268104553, + "learning_rate": 4.7387269681742045e-05, + "loss": 0.41798015594482424, + "step": 15600 + }, + { + "epoch": 5.259653237289555, + "grad_norm": 0.6572776436805725, + "learning_rate": 4.737051926298158e-05, + "loss": 0.4158905029296875, + "step": 15700 + }, + { + "epoch": 5.2931568808107885, + "grad_norm": 0.6731371283531189, + "learning_rate": 4.735376884422111e-05, + "loss": 0.4200982666015625, + "step": 15800 + }, + { + "epoch": 5.326660524332021, + "grad_norm": 0.6026290655136108, + "learning_rate": 4.733701842546064e-05, + "loss": 0.4160591125488281, + "step": 15900 + }, + { + "epoch": 5.360164167853254, + "grad_norm": 0.6480405926704407, + "learning_rate": 4.732026800670017e-05, + "loss": 0.4141067123413086, + "step": 16000 + }, + { + "epoch": 5.393667811374487, + "grad_norm": 0.7435486912727356, + "learning_rate": 4.7303685092127306e-05, + "loss": 0.4195803451538086, + "step": 16100 + }, + { + "epoch": 5.42717145489572, + "grad_norm": 0.6561776995658875, + "learning_rate": 4.7286934673366835e-05, + "loss": 0.41183818817138673, + "step": 16200 + }, + { + "epoch": 5.460675098416953, + "grad_norm": 0.637554407119751, + "learning_rate": 4.727018425460637e-05, + "loss": 0.41124614715576174, + "step": 16300 + }, + { + "epoch": 5.494178741938185, + "grad_norm": 0.6575638055801392, + "learning_rate": 4.72534338358459e-05, + "loss": 0.41794925689697265, + "step": 16400 + }, + { + "epoch": 5.527682385459419, + "grad_norm": 0.678394079208374, + "learning_rate": 4.723668341708543e-05, + "loss": 0.4172962188720703, + "step": 16500 + }, + { + "epoch": 5.561186028980652, + "grad_norm": 0.6401932835578918, + "learning_rate": 4.7219932998324964e-05, + "loss": 0.4176398468017578, + "step": 16600 + }, + { + "epoch": 5.594689672501884, + "grad_norm": 0.7197437286376953, + "learning_rate": 4.720318257956449e-05, + "loss": 0.4155929183959961, + "step": 16700 + }, + { + "epoch": 5.6281933160231175, + "grad_norm": 0.6697796583175659, + "learning_rate": 4.718643216080402e-05, + "loss": 0.41755367279052735, + "step": 16800 + }, + { + "epoch": 5.661696959544351, + "grad_norm": 0.6090868711471558, + "learning_rate": 4.716968174204355e-05, + "loss": 0.4136951446533203, + "step": 16900 + }, + { + "epoch": 5.695200603065583, + "grad_norm": 0.6004068851470947, + "learning_rate": 4.7152931323283086e-05, + "loss": 0.4162490463256836, + "step": 17000 + }, + { + "epoch": 5.728704246586816, + "grad_norm": 0.6552139520645142, + "learning_rate": 4.7136180904522615e-05, + "loss": 0.4109830856323242, + "step": 17100 + }, + { + "epoch": 5.76220789010805, + "grad_norm": 0.7132771015167236, + "learning_rate": 4.7119430485762144e-05, + "loss": 0.4129109573364258, + "step": 17200 + }, + { + "epoch": 5.795711533629282, + "grad_norm": 0.6571471095085144, + "learning_rate": 4.710268006700167e-05, + "loss": 0.4140293121337891, + "step": 17300 + }, + { + "epoch": 5.829215177150515, + "grad_norm": 0.6521652936935425, + "learning_rate": 4.708592964824121e-05, + "loss": 0.41335311889648435, + "step": 17400 + }, + { + "epoch": 5.862718820671748, + "grad_norm": 0.6223021149635315, + "learning_rate": 4.706917922948074e-05, + "loss": 0.41415943145751954, + "step": 17500 + }, + { + "epoch": 5.896222464192981, + "grad_norm": 0.6671064496040344, + "learning_rate": 4.705242881072027e-05, + "loss": 0.4121688461303711, + "step": 17600 + }, + { + "epoch": 5.929726107714214, + "grad_norm": 0.6168386340141296, + "learning_rate": 4.70356783919598e-05, + "loss": 0.40964771270751954, + "step": 17700 + }, + { + "epoch": 5.963229751235447, + "grad_norm": 0.6829288601875305, + "learning_rate": 4.701892797319934e-05, + "loss": 0.4161583709716797, + "step": 17800 + }, + { + "epoch": 5.99673339475668, + "grad_norm": 0.6415479183197021, + "learning_rate": 4.7002177554438866e-05, + "loss": 0.4163412857055664, + "step": 17900 + }, + { + "epoch": 6.0301532791691095, + "grad_norm": 0.6762277483940125, + "learning_rate": 4.6985427135678394e-05, + "loss": 0.40404136657714845, + "step": 18000 + }, + { + "epoch": 6.063656922690343, + "grad_norm": 0.7215397357940674, + "learning_rate": 4.696884422110553e-05, + "loss": 0.40555873870849607, + "step": 18100 + }, + { + "epoch": 6.097160566211575, + "grad_norm": 0.6093649864196777, + "learning_rate": 4.695209380234506e-05, + "loss": 0.3959674072265625, + "step": 18200 + }, + { + "epoch": 6.130664209732808, + "grad_norm": 0.6576215624809265, + "learning_rate": 4.693534338358459e-05, + "loss": 0.4000381851196289, + "step": 18300 + }, + { + "epoch": 6.164167853254042, + "grad_norm": 0.6869475841522217, + "learning_rate": 4.691859296482412e-05, + "loss": 0.40716861724853515, + "step": 18400 + }, + { + "epoch": 6.197671496775274, + "grad_norm": 0.6864603161811829, + "learning_rate": 4.690184254606365e-05, + "loss": 0.4014585494995117, + "step": 18500 + }, + { + "epoch": 6.231175140296507, + "grad_norm": 0.68086177110672, + "learning_rate": 4.6885092127303185e-05, + "loss": 0.3985603713989258, + "step": 18600 + }, + { + "epoch": 6.2646787838177405, + "grad_norm": 0.700307309627533, + "learning_rate": 4.686834170854272e-05, + "loss": 0.3990879440307617, + "step": 18700 + }, + { + "epoch": 6.298182427338973, + "grad_norm": 0.7301186919212341, + "learning_rate": 4.685159128978225e-05, + "loss": 0.4010288619995117, + "step": 18800 + }, + { + "epoch": 6.331686070860206, + "grad_norm": 0.6819117069244385, + "learning_rate": 4.683484087102178e-05, + "loss": 0.4012245941162109, + "step": 18900 + }, + { + "epoch": 6.365189714381439, + "grad_norm": 0.6428888440132141, + "learning_rate": 4.681809045226131e-05, + "loss": 0.40439247131347655, + "step": 19000 + }, + { + "epoch": 6.398693357902672, + "grad_norm": 0.6879697442054749, + "learning_rate": 4.680134003350084e-05, + "loss": 0.4002133560180664, + "step": 19100 + }, + { + "epoch": 6.432197001423905, + "grad_norm": 0.7050502300262451, + "learning_rate": 4.678458961474037e-05, + "loss": 0.40451095581054686, + "step": 19200 + }, + { + "epoch": 6.465700644945138, + "grad_norm": 0.6575663685798645, + "learning_rate": 4.67678391959799e-05, + "loss": 0.40367134094238283, + "step": 19300 + }, + { + "epoch": 6.4992042884663705, + "grad_norm": 0.725883424282074, + "learning_rate": 4.675108877721943e-05, + "loss": 0.40375911712646484, + "step": 19400 + }, + { + "epoch": 6.532707931987604, + "grad_norm": 0.6960121989250183, + "learning_rate": 4.6734338358458964e-05, + "loss": 0.39711700439453124, + "step": 19500 + }, + { + "epoch": 6.566211575508836, + "grad_norm": 0.6402387022972107, + "learning_rate": 4.671758793969849e-05, + "loss": 0.40309242248535154, + "step": 19600 + }, + { + "epoch": 6.599715219030069, + "grad_norm": 0.6541135311126709, + "learning_rate": 4.670083752093802e-05, + "loss": 0.3986012268066406, + "step": 19700 + }, + { + "epoch": 6.633218862551303, + "grad_norm": 0.7802708745002747, + "learning_rate": 4.668408710217756e-05, + "loss": 0.4055080795288086, + "step": 19800 + }, + { + "epoch": 6.666722506072535, + "grad_norm": 0.7293182015419006, + "learning_rate": 4.666733668341709e-05, + "loss": 0.39762969970703127, + "step": 19900 + }, + { + "epoch": 6.700226149593768, + "grad_norm": 0.6476279497146606, + "learning_rate": 4.665058626465662e-05, + "loss": 0.39965827941894533, + "step": 20000 + }, + { + "epoch": 6.7337297931150015, + "grad_norm": 0.7234406471252441, + "learning_rate": 4.663383584589615e-05, + "loss": 0.40417919158935545, + "step": 20100 + }, + { + "epoch": 6.767233436636234, + "grad_norm": 0.6661069989204407, + "learning_rate": 4.661725293132328e-05, + "loss": 0.40048927307128906, + "step": 20200 + }, + { + "epoch": 6.800737080157467, + "grad_norm": 0.6745995283126831, + "learning_rate": 4.660050251256282e-05, + "loss": 0.40084247589111327, + "step": 20300 + }, + { + "epoch": 6.8342407236787, + "grad_norm": 0.6546103954315186, + "learning_rate": 4.658375209380235e-05, + "loss": 0.40273414611816405, + "step": 20400 + }, + { + "epoch": 6.867744367199933, + "grad_norm": 0.6249874830245972, + "learning_rate": 4.6567001675041877e-05, + "loss": 0.4047482299804688, + "step": 20500 + }, + { + "epoch": 6.901248010721166, + "grad_norm": 0.621865451335907, + "learning_rate": 4.6550251256281405e-05, + "loss": 0.40309608459472657, + "step": 20600 + }, + { + "epoch": 6.934751654242399, + "grad_norm": 0.664582371711731, + "learning_rate": 4.653350083752094e-05, + "loss": 0.402041015625, + "step": 20700 + }, + { + "epoch": 6.968255297763632, + "grad_norm": 0.6802883148193359, + "learning_rate": 4.651675041876047e-05, + "loss": 0.40645900726318357, + "step": 20800 + }, + { + "epoch": 7.001675182176061, + "grad_norm": 0.6586912870407104, + "learning_rate": 4.6500000000000005e-05, + "loss": 0.3996978759765625, + "step": 20900 + }, + { + "epoch": 7.035178825697295, + "grad_norm": 0.6849681735038757, + "learning_rate": 4.6483249581239534e-05, + "loss": 0.38614749908447266, + "step": 21000 + }, + { + "epoch": 7.068682469218528, + "grad_norm": 0.694872260093689, + "learning_rate": 4.646649916247906e-05, + "loss": 0.38619533538818357, + "step": 21100 + }, + { + "epoch": 7.10218611273976, + "grad_norm": 0.7047699689865112, + "learning_rate": 4.64497487437186e-05, + "loss": 0.38167682647705076, + "step": 21200 + }, + { + "epoch": 7.1356897562609936, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.643299832495813e-05, + "loss": 0.3932147979736328, + "step": 21300 + }, + { + "epoch": 7.169193399782226, + "grad_norm": 0.6869648098945618, + "learning_rate": 4.6416247906197656e-05, + "loss": 0.38886920928955077, + "step": 21400 + }, + { + "epoch": 7.202697043303459, + "grad_norm": 0.7238380908966064, + "learning_rate": 4.6399497487437185e-05, + "loss": 0.3933087158203125, + "step": 21500 + }, + { + "epoch": 7.236200686824692, + "grad_norm": 0.708855152130127, + "learning_rate": 4.638274706867672e-05, + "loss": 0.3932600784301758, + "step": 21600 + }, + { + "epoch": 7.269704330345925, + "grad_norm": 0.6577633619308472, + "learning_rate": 4.636599664991625e-05, + "loss": 0.38899864196777345, + "step": 21700 + }, + { + "epoch": 7.303207973867158, + "grad_norm": 0.7226035594940186, + "learning_rate": 4.634924623115578e-05, + "loss": 0.3912385559082031, + "step": 21800 + }, + { + "epoch": 7.336711617388391, + "grad_norm": 0.7393138408660889, + "learning_rate": 4.633249581239531e-05, + "loss": 0.38804672241210936, + "step": 21900 + }, + { + "epoch": 7.370215260909624, + "grad_norm": 0.7591322660446167, + "learning_rate": 4.631574539363484e-05, + "loss": 0.39187992095947266, + "step": 22000 + }, + { + "epoch": 7.403718904430857, + "grad_norm": 0.7180842757225037, + "learning_rate": 4.629899497487438e-05, + "loss": 0.3885354232788086, + "step": 22100 + }, + { + "epoch": 7.43722254795209, + "grad_norm": 0.5701187252998352, + "learning_rate": 4.628241206030151e-05, + "loss": 0.3929626083374023, + "step": 22200 + }, + { + "epoch": 7.4707261914733225, + "grad_norm": 0.6831353902816772, + "learning_rate": 4.626566164154104e-05, + "loss": 0.3864256286621094, + "step": 22300 + }, + { + "epoch": 7.504229834994556, + "grad_norm": 0.7295540571212769, + "learning_rate": 4.6248911222780575e-05, + "loss": 0.3930975341796875, + "step": 22400 + }, + { + "epoch": 7.537733478515788, + "grad_norm": 0.6555300951004028, + "learning_rate": 4.6232160804020104e-05, + "loss": 0.39193412780761716, + "step": 22500 + }, + { + "epoch": 7.571237122037021, + "grad_norm": 0.6836072206497192, + "learning_rate": 4.621541038525963e-05, + "loss": 0.39321327209472656, + "step": 22600 + }, + { + "epoch": 7.604740765558255, + "grad_norm": 0.7344244122505188, + "learning_rate": 4.619865996649916e-05, + "loss": 0.39178211212158204, + "step": 22700 + }, + { + "epoch": 7.638244409079487, + "grad_norm": 0.6757531762123108, + "learning_rate": 4.61819095477387e-05, + "loss": 0.3929476547241211, + "step": 22800 + }, + { + "epoch": 7.67174805260072, + "grad_norm": 0.790185272693634, + "learning_rate": 4.6165159128978226e-05, + "loss": 0.388702392578125, + "step": 22900 + }, + { + "epoch": 7.7052516961219535, + "grad_norm": 0.6090592741966248, + "learning_rate": 4.6148408710217755e-05, + "loss": 0.39199878692626955, + "step": 23000 + }, + { + "epoch": 7.738755339643186, + "grad_norm": 0.7253360152244568, + "learning_rate": 4.6131658291457284e-05, + "loss": 0.39112945556640627, + "step": 23100 + }, + { + "epoch": 7.772258983164419, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.611490787269682e-05, + "loss": 0.39291053771972656, + "step": 23200 + }, + { + "epoch": 7.805762626685652, + "grad_norm": 0.6961659789085388, + "learning_rate": 4.6098157453936355e-05, + "loss": 0.39124824523925783, + "step": 23300 + }, + { + "epoch": 7.839266270206885, + "grad_norm": 0.7136702537536621, + "learning_rate": 4.6081407035175884e-05, + "loss": 0.39080577850341797, + "step": 23400 + }, + { + "epoch": 7.872769913728118, + "grad_norm": 0.7133346199989319, + "learning_rate": 4.606465661641541e-05, + "loss": 0.3894335174560547, + "step": 23500 + }, + { + "epoch": 7.906273557249351, + "grad_norm": 0.7279176115989685, + "learning_rate": 4.604790619765494e-05, + "loss": 0.3878567886352539, + "step": 23600 + }, + { + "epoch": 7.939777200770584, + "grad_norm": 0.6854584217071533, + "learning_rate": 4.603115577889448e-05, + "loss": 0.3958644104003906, + "step": 23700 + }, + { + "epoch": 7.973280844291817, + "grad_norm": 0.7134712934494019, + "learning_rate": 4.6014405360134006e-05, + "loss": 0.39134223937988283, + "step": 23800 + }, + { + "epoch": 8.006700728704246, + "grad_norm": 0.7242705821990967, + "learning_rate": 4.5997654941373535e-05, + "loss": 0.38787689208984377, + "step": 23900 + }, + { + "epoch": 8.04020437222548, + "grad_norm": 0.6507485508918762, + "learning_rate": 4.5980904522613064e-05, + "loss": 0.3778019332885742, + "step": 24000 + }, + { + "epoch": 8.073708015746712, + "grad_norm": 0.6936424374580383, + "learning_rate": 4.59641541038526e-05, + "loss": 0.3767805862426758, + "step": 24100 + }, + { + "epoch": 8.107211659267945, + "grad_norm": 0.6715813279151917, + "learning_rate": 4.594757118927974e-05, + "loss": 0.37527366638183596, + "step": 24200 + }, + { + "epoch": 8.140715302789179, + "grad_norm": 0.7407135367393494, + "learning_rate": 4.593082077051927e-05, + "loss": 0.37779621124267576, + "step": 24300 + }, + { + "epoch": 8.174218946310411, + "grad_norm": 0.7536392211914062, + "learning_rate": 4.5914070351758796e-05, + "loss": 0.3771663665771484, + "step": 24400 + }, + { + "epoch": 8.207722589831643, + "grad_norm": 0.7159863114356995, + "learning_rate": 4.589731993299833e-05, + "loss": 0.3789206314086914, + "step": 24500 + }, + { + "epoch": 8.241226233352878, + "grad_norm": 0.7217793464660645, + "learning_rate": 4.588056951423786e-05, + "loss": 0.37845233917236326, + "step": 24600 + }, + { + "epoch": 8.27472987687411, + "grad_norm": 0.6689481139183044, + "learning_rate": 4.586381909547739e-05, + "loss": 0.3793601989746094, + "step": 24700 + }, + { + "epoch": 8.308233520395342, + "grad_norm": 0.6575570702552795, + "learning_rate": 4.584706867671692e-05, + "loss": 0.3798051452636719, + "step": 24800 + }, + { + "epoch": 8.341737163916576, + "grad_norm": 0.7236769795417786, + "learning_rate": 4.5830318257956454e-05, + "loss": 0.3808049011230469, + "step": 24900 + }, + { + "epoch": 8.375240807437809, + "grad_norm": 0.7543460130691528, + "learning_rate": 4.581356783919598e-05, + "loss": 0.3847679138183594, + "step": 25000 + }, + { + "epoch": 8.408744450959041, + "grad_norm": 0.7130107879638672, + "learning_rate": 4.579681742043551e-05, + "loss": 0.37841434478759767, + "step": 25100 + }, + { + "epoch": 8.442248094480275, + "grad_norm": 0.6971204876899719, + "learning_rate": 4.578006700167504e-05, + "loss": 0.3828566360473633, + "step": 25200 + }, + { + "epoch": 8.475751738001508, + "grad_norm": 0.7880971431732178, + "learning_rate": 4.5763316582914576e-05, + "loss": 0.37794727325439453, + "step": 25300 + }, + { + "epoch": 8.50925538152274, + "grad_norm": 0.795606255531311, + "learning_rate": 4.574656616415411e-05, + "loss": 0.3807938003540039, + "step": 25400 + }, + { + "epoch": 8.542759025043974, + "grad_norm": 0.662270724773407, + "learning_rate": 4.572981574539364e-05, + "loss": 0.38113510131835937, + "step": 25500 + }, + { + "epoch": 8.576262668565207, + "grad_norm": 0.7585960626602173, + "learning_rate": 4.571306532663317e-05, + "loss": 0.3807952880859375, + "step": 25600 + }, + { + "epoch": 8.609766312086439, + "grad_norm": 0.7054327726364136, + "learning_rate": 4.56963149078727e-05, + "loss": 0.3791161346435547, + "step": 25700 + }, + { + "epoch": 8.643269955607673, + "grad_norm": 0.7529199719429016, + "learning_rate": 4.5679564489112233e-05, + "loss": 0.3771999359130859, + "step": 25800 + }, + { + "epoch": 8.676773599128905, + "grad_norm": 0.7693551182746887, + "learning_rate": 4.566281407035176e-05, + "loss": 0.37909912109375, + "step": 25900 + }, + { + "epoch": 8.710277242650138, + "grad_norm": 0.7142516374588013, + "learning_rate": 4.564606365159129e-05, + "loss": 0.38215831756591795, + "step": 26000 + }, + { + "epoch": 8.743780886171372, + "grad_norm": 0.7293452024459839, + "learning_rate": 4.562931323283082e-05, + "loss": 0.38390281677246096, + "step": 26100 + }, + { + "epoch": 8.777284529692604, + "grad_norm": 0.725549578666687, + "learning_rate": 4.561273031825796e-05, + "loss": 0.37903385162353515, + "step": 26200 + }, + { + "epoch": 8.810788173213837, + "grad_norm": 0.7497493028640747, + "learning_rate": 4.559597989949749e-05, + "loss": 0.3807545852661133, + "step": 26300 + }, + { + "epoch": 8.844291816735069, + "grad_norm": 0.6810445189476013, + "learning_rate": 4.557922948073702e-05, + "loss": 0.38407058715820314, + "step": 26400 + }, + { + "epoch": 8.877795460256303, + "grad_norm": 0.6970882415771484, + "learning_rate": 4.556247906197655e-05, + "loss": 0.377288818359375, + "step": 26500 + }, + { + "epoch": 8.911299103777536, + "grad_norm": 0.6579902768135071, + "learning_rate": 4.554572864321608e-05, + "loss": 0.3823952484130859, + "step": 26600 + }, + { + "epoch": 8.94480274729877, + "grad_norm": 0.7329373359680176, + "learning_rate": 4.552897822445562e-05, + "loss": 0.38345798492431643, + "step": 26700 + }, + { + "epoch": 8.978306390820002, + "grad_norm": 0.7462034821510315, + "learning_rate": 4.5512227805695146e-05, + "loss": 0.38348892211914065, + "step": 26800 + }, + { + "epoch": 9.011726275232432, + "grad_norm": 0.6734225153923035, + "learning_rate": 4.5495477386934675e-05, + "loss": 0.37156158447265625, + "step": 26900 + }, + { + "epoch": 9.045229918753664, + "grad_norm": 0.7718762159347534, + "learning_rate": 4.54787269681742e-05, + "loss": 0.3672407913208008, + "step": 27000 + }, + { + "epoch": 9.078733562274897, + "grad_norm": 0.7702797055244446, + "learning_rate": 4.546197654941374e-05, + "loss": 0.36319580078125, + "step": 27100 + }, + { + "epoch": 9.11223720579613, + "grad_norm": 0.7608715891838074, + "learning_rate": 4.544522613065327e-05, + "loss": 0.3686368179321289, + "step": 27200 + }, + { + "epoch": 9.145740849317363, + "grad_norm": 0.6544201970100403, + "learning_rate": 4.54284757118928e-05, + "loss": 0.3657124710083008, + "step": 27300 + }, + { + "epoch": 9.179244492838595, + "grad_norm": 0.7948552370071411, + "learning_rate": 4.541172529313233e-05, + "loss": 0.3642101669311523, + "step": 27400 + }, + { + "epoch": 9.21274813635983, + "grad_norm": 0.7283180356025696, + "learning_rate": 4.539497487437186e-05, + "loss": 0.36608253479003905, + "step": 27500 + }, + { + "epoch": 9.246251779881062, + "grad_norm": 0.7535043358802795, + "learning_rate": 4.537822445561139e-05, + "loss": 0.3699675750732422, + "step": 27600 + }, + { + "epoch": 9.279755423402294, + "grad_norm": 0.7893076539039612, + "learning_rate": 4.5361474036850925e-05, + "loss": 0.3712180709838867, + "step": 27700 + }, + { + "epoch": 9.313259066923528, + "grad_norm": 0.7542401552200317, + "learning_rate": 4.5344723618090454e-05, + "loss": 0.36577003479003906, + "step": 27800 + }, + { + "epoch": 9.34676271044476, + "grad_norm": 0.7122746706008911, + "learning_rate": 4.532797319932999e-05, + "loss": 0.3700094985961914, + "step": 27900 + }, + { + "epoch": 9.380266353965993, + "grad_norm": 0.7706195116043091, + "learning_rate": 4.531122278056952e-05, + "loss": 0.3662248229980469, + "step": 28000 + }, + { + "epoch": 9.413769997487227, + "grad_norm": 0.7564675211906433, + "learning_rate": 4.529447236180905e-05, + "loss": 0.37131824493408205, + "step": 28100 + }, + { + "epoch": 9.44727364100846, + "grad_norm": 0.7425429224967957, + "learning_rate": 4.5277721943048576e-05, + "loss": 0.3740149688720703, + "step": 28200 + }, + { + "epoch": 9.480777284529692, + "grad_norm": 0.7587184906005859, + "learning_rate": 4.5261139028475716e-05, + "loss": 0.3699770736694336, + "step": 28300 + }, + { + "epoch": 9.514280928050926, + "grad_norm": 0.7541705369949341, + "learning_rate": 4.5244388609715244e-05, + "loss": 0.37311084747314455, + "step": 28400 + }, + { + "epoch": 9.547784571572159, + "grad_norm": 0.7311919331550598, + "learning_rate": 4.522763819095477e-05, + "loss": 0.3715859603881836, + "step": 28500 + }, + { + "epoch": 9.581288215093391, + "grad_norm": 0.700539767742157, + "learning_rate": 4.52108877721943e-05, + "loss": 0.3688846206665039, + "step": 28600 + }, + { + "epoch": 9.614791858614625, + "grad_norm": 0.6238375306129456, + "learning_rate": 4.519413735343384e-05, + "loss": 0.3701490020751953, + "step": 28700 + }, + { + "epoch": 9.648295502135857, + "grad_norm": 0.6758601069450378, + "learning_rate": 4.517738693467337e-05, + "loss": 0.37076793670654296, + "step": 28800 + }, + { + "epoch": 9.68179914565709, + "grad_norm": 0.7019829750061035, + "learning_rate": 4.51606365159129e-05, + "loss": 0.3690201187133789, + "step": 28900 + }, + { + "epoch": 9.715302789178324, + "grad_norm": 0.8280263543128967, + "learning_rate": 4.514388609715243e-05, + "loss": 0.3725156402587891, + "step": 29000 + }, + { + "epoch": 9.748806432699556, + "grad_norm": 0.6962838172912598, + "learning_rate": 4.512713567839196e-05, + "loss": 0.3695372009277344, + "step": 29100 + }, + { + "epoch": 9.782310076220789, + "grad_norm": 0.6678254008293152, + "learning_rate": 4.5110385259631495e-05, + "loss": 0.36981796264648437, + "step": 29200 + }, + { + "epoch": 9.815813719742023, + "grad_norm": 0.7574114799499512, + "learning_rate": 4.5093634840871024e-05, + "loss": 0.3735762023925781, + "step": 29300 + }, + { + "epoch": 9.849317363263255, + "grad_norm": 0.6498548984527588, + "learning_rate": 4.507688442211055e-05, + "loss": 0.36818092346191406, + "step": 29400 + }, + { + "epoch": 9.882821006784487, + "grad_norm": 0.6784448623657227, + "learning_rate": 4.506013400335008e-05, + "loss": 0.3738037872314453, + "step": 29500 + }, + { + "epoch": 9.916324650305722, + "grad_norm": 0.748648464679718, + "learning_rate": 4.504338358458962e-05, + "loss": 0.3744197463989258, + "step": 29600 + }, + { + "epoch": 9.949828293826954, + "grad_norm": 0.7319295406341553, + "learning_rate": 4.5026633165829146e-05, + "loss": 0.3747980499267578, + "step": 29700 + }, + { + "epoch": 9.983331937348186, + "grad_norm": 0.7425316572189331, + "learning_rate": 4.5009882747068675e-05, + "loss": 0.37337436676025393, + "step": 29800 + }, + { + "epoch": 10.016751821760616, + "grad_norm": 0.6705507040023804, + "learning_rate": 4.499313232830821e-05, + "loss": 0.36580001831054687, + "step": 29900 + }, + { + "epoch": 10.050255465281849, + "grad_norm": 0.7338049411773682, + "learning_rate": 4.4976381909547746e-05, + "loss": 0.35635528564453123, + "step": 30000 + }, + { + "epoch": 10.083759108803083, + "grad_norm": 0.7279812693595886, + "learning_rate": 4.4959631490787275e-05, + "loss": 0.3529629898071289, + "step": 30100 + }, + { + "epoch": 10.117262752324315, + "grad_norm": 0.7696557641029358, + "learning_rate": 4.4942881072026804e-05, + "loss": 0.354565315246582, + "step": 30200 + }, + { + "epoch": 10.150766395845547, + "grad_norm": 0.728212833404541, + "learning_rate": 4.4926298157453936e-05, + "loss": 0.3530071258544922, + "step": 30300 + }, + { + "epoch": 10.184270039366782, + "grad_norm": 0.7012603878974915, + "learning_rate": 4.490954773869347e-05, + "loss": 0.3573540496826172, + "step": 30400 + }, + { + "epoch": 10.217773682888014, + "grad_norm": 0.7446846961975098, + "learning_rate": 4.4892797319933e-05, + "loss": 0.35920669555664064, + "step": 30500 + }, + { + "epoch": 10.251277326409246, + "grad_norm": 0.792353630065918, + "learning_rate": 4.487604690117253e-05, + "loss": 0.3555112075805664, + "step": 30600 + }, + { + "epoch": 10.28478096993048, + "grad_norm": 0.6799439787864685, + "learning_rate": 4.485929648241206e-05, + "loss": 0.36326725006103516, + "step": 30700 + }, + { + "epoch": 10.318284613451713, + "grad_norm": 0.7877249121665955, + "learning_rate": 4.4842546063651594e-05, + "loss": 0.36337570190429686, + "step": 30800 + }, + { + "epoch": 10.351788256972945, + "grad_norm": 0.8450521230697632, + "learning_rate": 4.482579564489112e-05, + "loss": 0.3597735595703125, + "step": 30900 + }, + { + "epoch": 10.38529190049418, + "grad_norm": 0.7301276922225952, + "learning_rate": 4.480904522613066e-05, + "loss": 0.3627984619140625, + "step": 31000 + }, + { + "epoch": 10.418795544015412, + "grad_norm": 0.7038715481758118, + "learning_rate": 4.479229480737019e-05, + "loss": 0.356929817199707, + "step": 31100 + }, + { + "epoch": 10.452299187536644, + "grad_norm": 0.7955334782600403, + "learning_rate": 4.4775544388609716e-05, + "loss": 0.35474601745605466, + "step": 31200 + }, + { + "epoch": 10.485802831057878, + "grad_norm": 0.7089738249778748, + "learning_rate": 4.475879396984925e-05, + "loss": 0.36358638763427736, + "step": 31300 + }, + { + "epoch": 10.51930647457911, + "grad_norm": 0.8143360018730164, + "learning_rate": 4.474204355108878e-05, + "loss": 0.3624624252319336, + "step": 31400 + }, + { + "epoch": 10.552810118100343, + "grad_norm": 0.8367409706115723, + "learning_rate": 4.472529313232831e-05, + "loss": 0.36308753967285157, + "step": 31500 + }, + { + "epoch": 10.586313761621577, + "grad_norm": 0.7856859564781189, + "learning_rate": 4.470854271356784e-05, + "loss": 0.362791862487793, + "step": 31600 + }, + { + "epoch": 10.61981740514281, + "grad_norm": 0.8061284422874451, + "learning_rate": 4.4691792294807374e-05, + "loss": 0.3634458541870117, + "step": 31700 + }, + { + "epoch": 10.653321048664042, + "grad_norm": 0.785724401473999, + "learning_rate": 4.46750418760469e-05, + "loss": 0.36115474700927735, + "step": 31800 + }, + { + "epoch": 10.686824692185276, + "grad_norm": 0.7530859112739563, + "learning_rate": 4.465829145728643e-05, + "loss": 0.36017478942871095, + "step": 31900 + }, + { + "epoch": 10.720328335706508, + "grad_norm": 0.7640136480331421, + "learning_rate": 4.464154103852596e-05, + "loss": 0.36370697021484377, + "step": 32000 + }, + { + "epoch": 10.75383197922774, + "grad_norm": 0.7125088572502136, + "learning_rate": 4.4624790619765496e-05, + "loss": 0.36396575927734376, + "step": 32100 + }, + { + "epoch": 10.787335622748975, + "grad_norm": 0.8106554746627808, + "learning_rate": 4.4608040201005025e-05, + "loss": 0.3571950912475586, + "step": 32200 + }, + { + "epoch": 10.820839266270207, + "grad_norm": 0.768183708190918, + "learning_rate": 4.4591457286432164e-05, + "loss": 0.3580643844604492, + "step": 32300 + }, + { + "epoch": 10.85434290979144, + "grad_norm": 0.7329164743423462, + "learning_rate": 4.457470686767169e-05, + "loss": 0.36159816741943357, + "step": 32400 + }, + { + "epoch": 10.887846553312674, + "grad_norm": 0.7993727922439575, + "learning_rate": 4.455795644891123e-05, + "loss": 0.3672108840942383, + "step": 32500 + }, + { + "epoch": 10.921350196833906, + "grad_norm": 0.7389618754386902, + "learning_rate": 4.454120603015076e-05, + "loss": 0.3596214294433594, + "step": 32600 + }, + { + "epoch": 10.954853840355138, + "grad_norm": 0.6745049953460693, + "learning_rate": 4.4524455611390286e-05, + "loss": 0.36047595977783203, + "step": 32700 + }, + { + "epoch": 10.98835748387637, + "grad_norm": 0.7832050919532776, + "learning_rate": 4.4507705192629815e-05, + "loss": 0.3599930953979492, + "step": 32800 + }, + { + "epoch": 11.021777368288802, + "grad_norm": 0.7236883044242859, + "learning_rate": 4.449095477386935e-05, + "loss": 0.3518721771240234, + "step": 32900 + }, + { + "epoch": 11.055281011810035, + "grad_norm": 0.6951456069946289, + "learning_rate": 4.447420435510888e-05, + "loss": 0.3448529815673828, + "step": 33000 + }, + { + "epoch": 11.088784655331267, + "grad_norm": 0.8174095749855042, + "learning_rate": 4.445745393634841e-05, + "loss": 0.3480173873901367, + "step": 33100 + }, + { + "epoch": 11.1222882988525, + "grad_norm": 0.8361256122589111, + "learning_rate": 4.444070351758794e-05, + "loss": 0.3429459762573242, + "step": 33200 + }, + { + "epoch": 11.155791942373734, + "grad_norm": 0.8620163202285767, + "learning_rate": 4.442395309882747e-05, + "loss": 0.3492248916625977, + "step": 33300 + }, + { + "epoch": 11.189295585894966, + "grad_norm": 0.7246844172477722, + "learning_rate": 4.440720268006701e-05, + "loss": 0.3458073043823242, + "step": 33400 + }, + { + "epoch": 11.222799229416198, + "grad_norm": 0.7091465592384338, + "learning_rate": 4.439045226130654e-05, + "loss": 0.34752788543701174, + "step": 33500 + }, + { + "epoch": 11.256302872937432, + "grad_norm": 0.7573132514953613, + "learning_rate": 4.4373701842546066e-05, + "loss": 0.3496548080444336, + "step": 33600 + }, + { + "epoch": 11.289806516458665, + "grad_norm": 0.7986613512039185, + "learning_rate": 4.4356951423785595e-05, + "loss": 0.34697345733642576, + "step": 33700 + }, + { + "epoch": 11.323310159979897, + "grad_norm": 0.7822960615158081, + "learning_rate": 4.434020100502513e-05, + "loss": 0.35006622314453123, + "step": 33800 + }, + { + "epoch": 11.356813803501131, + "grad_norm": 0.8444114327430725, + "learning_rate": 4.432345058626466e-05, + "loss": 0.3496244430541992, + "step": 33900 + }, + { + "epoch": 11.390317447022364, + "grad_norm": 0.7642440795898438, + "learning_rate": 4.430670016750419e-05, + "loss": 0.350846061706543, + "step": 34000 + }, + { + "epoch": 11.423821090543596, + "grad_norm": 0.7518153190612793, + "learning_rate": 4.428994974874372e-05, + "loss": 0.3499641036987305, + "step": 34100 + }, + { + "epoch": 11.45732473406483, + "grad_norm": 0.8707530498504639, + "learning_rate": 4.427319932998325e-05, + "loss": 0.3532308578491211, + "step": 34200 + }, + { + "epoch": 11.490828377586062, + "grad_norm": 0.7227981686592102, + "learning_rate": 4.4256616415410385e-05, + "loss": 0.35490013122558595, + "step": 34300 + }, + { + "epoch": 11.524332021107295, + "grad_norm": 0.7735912203788757, + "learning_rate": 4.423986599664992e-05, + "loss": 0.3542043304443359, + "step": 34400 + }, + { + "epoch": 11.557835664628529, + "grad_norm": 0.8353047370910645, + "learning_rate": 4.422311557788945e-05, + "loss": 0.34967689514160155, + "step": 34500 + }, + { + "epoch": 11.591339308149761, + "grad_norm": 0.7564737200737, + "learning_rate": 4.4206365159128985e-05, + "loss": 0.35371181488037107, + "step": 34600 + }, + { + "epoch": 11.624842951670994, + "grad_norm": 0.656694233417511, + "learning_rate": 4.4189614740368514e-05, + "loss": 0.3496272277832031, + "step": 34700 + }, + { + "epoch": 11.658346595192228, + "grad_norm": 0.8337951302528381, + "learning_rate": 4.417286432160804e-05, + "loss": 0.35147029876708985, + "step": 34800 + }, + { + "epoch": 11.69185023871346, + "grad_norm": 0.779253363609314, + "learning_rate": 4.415611390284757e-05, + "loss": 0.3496464920043945, + "step": 34900 + }, + { + "epoch": 11.725353882234693, + "grad_norm": 0.8846334218978882, + "learning_rate": 4.413936348408711e-05, + "loss": 0.3506482696533203, + "step": 35000 + }, + { + "epoch": 11.758857525755927, + "grad_norm": 0.7678661346435547, + "learning_rate": 4.4122613065326636e-05, + "loss": 0.35182670593261717, + "step": 35100 + }, + { + "epoch": 11.792361169277159, + "grad_norm": 0.779376745223999, + "learning_rate": 4.4105862646566165e-05, + "loss": 0.3535502624511719, + "step": 35200 + }, + { + "epoch": 11.825864812798391, + "grad_norm": 0.8054938316345215, + "learning_rate": 4.408911222780569e-05, + "loss": 0.35151683807373046, + "step": 35300 + }, + { + "epoch": 11.859368456319626, + "grad_norm": 0.7657700181007385, + "learning_rate": 4.407236180904523e-05, + "loss": 0.3521769714355469, + "step": 35400 + }, + { + "epoch": 11.892872099840858, + "grad_norm": 0.7825794219970703, + "learning_rate": 4.405561139028476e-05, + "loss": 0.3515496826171875, + "step": 35500 + }, + { + "epoch": 11.92637574336209, + "grad_norm": 0.811125636100769, + "learning_rate": 4.403886097152429e-05, + "loss": 0.35637962341308593, + "step": 35600 + }, + { + "epoch": 11.959879386883323, + "grad_norm": 0.7954035401344299, + "learning_rate": 4.402211055276382e-05, + "loss": 0.3535337066650391, + "step": 35700 + }, + { + "epoch": 11.993383030404557, + "grad_norm": 0.9039795994758606, + "learning_rate": 4.400536013400335e-05, + "loss": 0.351923828125, + "step": 35800 + }, + { + "epoch": 12.026802914816987, + "grad_norm": 0.7764714360237122, + "learning_rate": 4.3988609715242887e-05, + "loss": 0.3385712432861328, + "step": 35900 + }, + { + "epoch": 12.060306558338219, + "grad_norm": 0.8632619380950928, + "learning_rate": 4.3971859296482415e-05, + "loss": 0.3341633605957031, + "step": 36000 + }, + { + "epoch": 12.093810201859451, + "grad_norm": 0.7242739200592041, + "learning_rate": 4.3955108877721944e-05, + "loss": 0.33580013275146486, + "step": 36100 + }, + { + "epoch": 12.127313845380685, + "grad_norm": 0.8469365239143372, + "learning_rate": 4.393835845896147e-05, + "loss": 0.33277801513671873, + "step": 36200 + }, + { + "epoch": 12.160817488901918, + "grad_norm": 0.8422605991363525, + "learning_rate": 4.392177554438861e-05, + "loss": 0.33413345336914063, + "step": 36300 + }, + { + "epoch": 12.19432113242315, + "grad_norm": 0.7811619639396667, + "learning_rate": 4.390502512562814e-05, + "loss": 0.33585643768310547, + "step": 36400 + }, + { + "epoch": 12.227824775944384, + "grad_norm": 0.7483822703361511, + "learning_rate": 4.388827470686767e-05, + "loss": 0.33689048767089846, + "step": 36500 + }, + { + "epoch": 12.261328419465617, + "grad_norm": 0.8344827890396118, + "learning_rate": 4.3871524288107206e-05, + "loss": 0.33572166442871093, + "step": 36600 + }, + { + "epoch": 12.294832062986849, + "grad_norm": 0.8680643439292908, + "learning_rate": 4.385477386934674e-05, + "loss": 0.3416824722290039, + "step": 36700 + }, + { + "epoch": 12.328335706508083, + "grad_norm": 0.8696274757385254, + "learning_rate": 4.383802345058627e-05, + "loss": 0.33966796875, + "step": 36800 + }, + { + "epoch": 12.361839350029316, + "grad_norm": 0.8183309435844421, + "learning_rate": 4.38212730318258e-05, + "loss": 0.3437775039672852, + "step": 36900 + }, + { + "epoch": 12.395342993550548, + "grad_norm": 0.8513368368148804, + "learning_rate": 4.380452261306533e-05, + "loss": 0.3392060470581055, + "step": 37000 + }, + { + "epoch": 12.428846637071782, + "grad_norm": 0.799085259437561, + "learning_rate": 4.378777219430486e-05, + "loss": 0.34548038482666016, + "step": 37100 + }, + { + "epoch": 12.462350280593014, + "grad_norm": 0.8001937866210938, + "learning_rate": 4.377102177554439e-05, + "loss": 0.3440947723388672, + "step": 37200 + }, + { + "epoch": 12.495853924114247, + "grad_norm": 0.7208882570266724, + "learning_rate": 4.375427135678392e-05, + "loss": 0.33991405487060544, + "step": 37300 + }, + { + "epoch": 12.529357567635481, + "grad_norm": 0.7442817687988281, + "learning_rate": 4.373752093802345e-05, + "loss": 0.3403905487060547, + "step": 37400 + }, + { + "epoch": 12.562861211156713, + "grad_norm": 0.8188682794570923, + "learning_rate": 4.3720770519262985e-05, + "loss": 0.3432355499267578, + "step": 37500 + }, + { + "epoch": 12.596364854677946, + "grad_norm": 0.8770096302032471, + "learning_rate": 4.3704020100502514e-05, + "loss": 0.3425747299194336, + "step": 37600 + }, + { + "epoch": 12.62986849819918, + "grad_norm": 0.6969801187515259, + "learning_rate": 4.368726968174204e-05, + "loss": 0.3424406051635742, + "step": 37700 + }, + { + "epoch": 12.663372141720412, + "grad_norm": 0.7996489405632019, + "learning_rate": 4.367051926298157e-05, + "loss": 0.34474189758300783, + "step": 37800 + }, + { + "epoch": 12.696875785241645, + "grad_norm": 0.8017092943191528, + "learning_rate": 4.365376884422111e-05, + "loss": 0.3453398895263672, + "step": 37900 + }, + { + "epoch": 12.730379428762879, + "grad_norm": 0.8389545679092407, + "learning_rate": 4.363701842546064e-05, + "loss": 0.3442976760864258, + "step": 38000 + }, + { + "epoch": 12.763883072284111, + "grad_norm": 0.829469621181488, + "learning_rate": 4.362026800670017e-05, + "loss": 0.3431151580810547, + "step": 38100 + }, + { + "epoch": 12.797386715805343, + "grad_norm": 0.747890055179596, + "learning_rate": 4.36035175879397e-05, + "loss": 0.3406733322143555, + "step": 38200 + }, + { + "epoch": 12.830890359326578, + "grad_norm": 0.8428831100463867, + "learning_rate": 4.358693467336683e-05, + "loss": 0.34296836853027346, + "step": 38300 + }, + { + "epoch": 12.86439400284781, + "grad_norm": 0.837282121181488, + "learning_rate": 4.357018425460637e-05, + "loss": 0.3470125579833984, + "step": 38400 + }, + { + "epoch": 12.897897646369042, + "grad_norm": 0.7993006706237793, + "learning_rate": 4.35534338358459e-05, + "loss": 0.3433689117431641, + "step": 38500 + }, + { + "epoch": 12.931401289890276, + "grad_norm": 0.7729536294937134, + "learning_rate": 4.3536683417085426e-05, + "loss": 0.34415348052978517, + "step": 38600 + }, + { + "epoch": 12.964904933411509, + "grad_norm": 0.8379591107368469, + "learning_rate": 4.3519932998324955e-05, + "loss": 0.3490380096435547, + "step": 38700 + }, + { + "epoch": 12.998408576932741, + "grad_norm": 0.8118153214454651, + "learning_rate": 4.350318257956449e-05, + "loss": 0.3449933624267578, + "step": 38800 + }, + { + "epoch": 13.031828461345171, + "grad_norm": 0.7350383400917053, + "learning_rate": 4.3486432160804026e-05, + "loss": 0.3230305862426758, + "step": 38900 + }, + { + "epoch": 13.065332104866405, + "grad_norm": 0.844278872013092, + "learning_rate": 4.3469681742043555e-05, + "loss": 0.3269623565673828, + "step": 39000 + }, + { + "epoch": 13.098835748387637, + "grad_norm": 0.7997421622276306, + "learning_rate": 4.3452931323283084e-05, + "loss": 0.32578598022460936, + "step": 39100 + }, + { + "epoch": 13.13233939190887, + "grad_norm": 0.830944299697876, + "learning_rate": 4.343618090452262e-05, + "loss": 0.32753429412841795, + "step": 39200 + }, + { + "epoch": 13.165843035430104, + "grad_norm": 0.7835378646850586, + "learning_rate": 4.341943048576215e-05, + "loss": 0.32705738067626955, + "step": 39300 + }, + { + "epoch": 13.199346678951336, + "grad_norm": 0.9184708595275879, + "learning_rate": 4.340268006700168e-05, + "loss": 0.32659355163574216, + "step": 39400 + }, + { + "epoch": 13.232850322472569, + "grad_norm": 0.9233602285385132, + "learning_rate": 4.3385929648241206e-05, + "loss": 0.3316535186767578, + "step": 39500 + }, + { + "epoch": 13.266353965993801, + "grad_norm": 0.8355572819709778, + "learning_rate": 4.336917922948074e-05, + "loss": 0.3265563583374023, + "step": 39600 + }, + { + "epoch": 13.299857609515035, + "grad_norm": 0.8072609901428223, + "learning_rate": 4.335242881072027e-05, + "loss": 0.329896354675293, + "step": 39700 + }, + { + "epoch": 13.333361253036268, + "grad_norm": 0.7573186159133911, + "learning_rate": 4.33356783919598e-05, + "loss": 0.3345551300048828, + "step": 39800 + }, + { + "epoch": 13.3668648965575, + "grad_norm": 0.7736772894859314, + "learning_rate": 4.331892797319933e-05, + "loss": 0.32930431365966795, + "step": 39900 + }, + { + "epoch": 13.400368540078734, + "grad_norm": 0.6786108016967773, + "learning_rate": 4.3302177554438864e-05, + "loss": 0.3282357406616211, + "step": 40000 + }, + { + "epoch": 13.433872183599966, + "grad_norm": 0.9429032206535339, + "learning_rate": 4.328542713567839e-05, + "loss": 0.33234012603759766, + "step": 40100 + }, + { + "epoch": 13.467375827121199, + "grad_norm": 0.8342773914337158, + "learning_rate": 4.326867671691793e-05, + "loss": 0.33062789916992186, + "step": 40200 + }, + { + "epoch": 13.500879470642433, + "grad_norm": 0.8285291194915771, + "learning_rate": 4.325209380234506e-05, + "loss": 0.33372978210449217, + "step": 40300 + }, + { + "epoch": 13.534383114163665, + "grad_norm": 0.9048053622245789, + "learning_rate": 4.323534338358459e-05, + "loss": 0.3388665771484375, + "step": 40400 + }, + { + "epoch": 13.567886757684898, + "grad_norm": 0.8660252690315247, + "learning_rate": 4.3218592964824125e-05, + "loss": 0.33297966003417967, + "step": 40500 + }, + { + "epoch": 13.601390401206132, + "grad_norm": 0.8536561727523804, + "learning_rate": 4.3201842546063654e-05, + "loss": 0.3336554718017578, + "step": 40600 + }, + { + "epoch": 13.634894044727364, + "grad_norm": 0.8385009765625, + "learning_rate": 4.318509212730318e-05, + "loss": 0.3373324203491211, + "step": 40700 + }, + { + "epoch": 13.668397688248596, + "grad_norm": 0.8286055326461792, + "learning_rate": 4.316834170854271e-05, + "loss": 0.3344192886352539, + "step": 40800 + }, + { + "epoch": 13.70190133176983, + "grad_norm": 0.8716219067573547, + "learning_rate": 4.315159128978225e-05, + "loss": 0.3346976089477539, + "step": 40900 + }, + { + "epoch": 13.735404975291063, + "grad_norm": 0.9002569317817688, + "learning_rate": 4.3134840871021776e-05, + "loss": 0.33477676391601563, + "step": 41000 + }, + { + "epoch": 13.768908618812295, + "grad_norm": 0.7407629489898682, + "learning_rate": 4.3118090452261305e-05, + "loss": 0.3335411071777344, + "step": 41100 + }, + { + "epoch": 13.80241226233353, + "grad_norm": 0.8391560316085815, + "learning_rate": 4.310134003350084e-05, + "loss": 0.33270046234130857, + "step": 41200 + }, + { + "epoch": 13.835915905854762, + "grad_norm": 0.8274234533309937, + "learning_rate": 4.3084589614740376e-05, + "loss": 0.3338147735595703, + "step": 41300 + }, + { + "epoch": 13.869419549375994, + "grad_norm": 0.7722423672676086, + "learning_rate": 4.3067839195979905e-05, + "loss": 0.3329287338256836, + "step": 41400 + }, + { + "epoch": 13.902923192897228, + "grad_norm": 0.8129300475120544, + "learning_rate": 4.3051088777219434e-05, + "loss": 0.3391679000854492, + "step": 41500 + }, + { + "epoch": 13.93642683641846, + "grad_norm": 0.7851378917694092, + "learning_rate": 4.303433835845896e-05, + "loss": 0.33578712463378907, + "step": 41600 + }, + { + "epoch": 13.969930479939693, + "grad_norm": 0.8963794708251953, + "learning_rate": 4.30175879396985e-05, + "loss": 0.3370305252075195, + "step": 41700 + }, + { + "epoch": 14.003350364352123, + "grad_norm": 0.7511172890663147, + "learning_rate": 4.300083752093803e-05, + "loss": 0.3332187652587891, + "step": 41800 + }, + { + "epoch": 14.036854007873357, + "grad_norm": 0.8411696553230286, + "learning_rate": 4.2984087102177556e-05, + "loss": 0.3142329978942871, + "step": 41900 + }, + { + "epoch": 14.07035765139459, + "grad_norm": 0.8463764190673828, + "learning_rate": 4.2967336683417085e-05, + "loss": 0.31400049209594727, + "step": 42000 + }, + { + "epoch": 14.103861294915822, + "grad_norm": 0.8349206447601318, + "learning_rate": 4.295058626465662e-05, + "loss": 0.3154226112365723, + "step": 42100 + }, + { + "epoch": 14.137364938437056, + "grad_norm": 0.8107666373252869, + "learning_rate": 4.293383584589615e-05, + "loss": 0.31885833740234376, + "step": 42200 + }, + { + "epoch": 14.170868581958288, + "grad_norm": 0.8954828381538391, + "learning_rate": 4.291725293132329e-05, + "loss": 0.3197479820251465, + "step": 42300 + }, + { + "epoch": 14.20437222547952, + "grad_norm": 0.8605073094367981, + "learning_rate": 4.290050251256282e-05, + "loss": 0.32168098449707033, + "step": 42400 + }, + { + "epoch": 14.237875869000753, + "grad_norm": 0.8864564299583435, + "learning_rate": 4.2883752093802346e-05, + "loss": 0.31901069641113283, + "step": 42500 + }, + { + "epoch": 14.271379512521987, + "grad_norm": 0.8231778144836426, + "learning_rate": 4.286700167504188e-05, + "loss": 0.3223213577270508, + "step": 42600 + }, + { + "epoch": 14.30488315604322, + "grad_norm": 0.8360753059387207, + "learning_rate": 4.285025125628141e-05, + "loss": 0.32040260314941404, + "step": 42700 + }, + { + "epoch": 14.338386799564452, + "grad_norm": 0.8900824785232544, + "learning_rate": 4.283350083752094e-05, + "loss": 0.32190364837646485, + "step": 42800 + }, + { + "epoch": 14.371890443085686, + "grad_norm": 0.8233429193496704, + "learning_rate": 4.281675041876047e-05, + "loss": 0.32389614105224607, + "step": 42900 + }, + { + "epoch": 14.405394086606918, + "grad_norm": 0.7868608236312866, + "learning_rate": 4.2800000000000004e-05, + "loss": 0.3197458839416504, + "step": 43000 + }, + { + "epoch": 14.43889773012815, + "grad_norm": 0.9061699509620667, + "learning_rate": 4.278324958123953e-05, + "loss": 0.32365760803222654, + "step": 43100 + }, + { + "epoch": 14.472401373649385, + "grad_norm": 0.8254518508911133, + "learning_rate": 4.276649916247906e-05, + "loss": 0.32395694732666014, + "step": 43200 + }, + { + "epoch": 14.505905017170617, + "grad_norm": 0.8711475729942322, + "learning_rate": 4.274974874371859e-05, + "loss": 0.32183242797851563, + "step": 43300 + }, + { + "epoch": 14.53940866069185, + "grad_norm": 0.8801646828651428, + "learning_rate": 4.2732998324958126e-05, + "loss": 0.3255552673339844, + "step": 43400 + }, + { + "epoch": 14.572912304213084, + "grad_norm": 0.9780988693237305, + "learning_rate": 4.271624790619766e-05, + "loss": 0.32349624633789065, + "step": 43500 + }, + { + "epoch": 14.606415947734316, + "grad_norm": 0.7670713663101196, + "learning_rate": 4.269949748743719e-05, + "loss": 0.325313720703125, + "step": 43600 + }, + { + "epoch": 14.639919591255548, + "grad_norm": 0.8528743386268616, + "learning_rate": 4.268274706867672e-05, + "loss": 0.3246849822998047, + "step": 43700 + }, + { + "epoch": 14.673423234776783, + "grad_norm": 0.8485456109046936, + "learning_rate": 4.2665996649916254e-05, + "loss": 0.3302822494506836, + "step": 43800 + }, + { + "epoch": 14.706926878298015, + "grad_norm": 0.7821197509765625, + "learning_rate": 4.264924623115578e-05, + "loss": 0.3271540451049805, + "step": 43900 + }, + { + "epoch": 14.740430521819247, + "grad_norm": 0.8672188520431519, + "learning_rate": 4.263249581239531e-05, + "loss": 0.32373977661132813, + "step": 44000 + }, + { + "epoch": 14.773934165340481, + "grad_norm": 0.8280694484710693, + "learning_rate": 4.261574539363484e-05, + "loss": 0.3241862106323242, + "step": 44100 + }, + { + "epoch": 14.807437808861714, + "grad_norm": 0.8599796891212463, + "learning_rate": 4.2598994974874377e-05, + "loss": 0.32549205780029294, + "step": 44200 + }, + { + "epoch": 14.840941452382946, + "grad_norm": 0.8781849145889282, + "learning_rate": 4.258241206030151e-05, + "loss": 0.331417121887207, + "step": 44300 + }, + { + "epoch": 14.87444509590418, + "grad_norm": 0.9023721814155579, + "learning_rate": 4.256566164154104e-05, + "loss": 0.33159866333007815, + "step": 44400 + }, + { + "epoch": 14.907948739425413, + "grad_norm": 0.8109947443008423, + "learning_rate": 4.2548911222780573e-05, + "loss": 0.3285139846801758, + "step": 44500 + }, + { + "epoch": 14.941452382946645, + "grad_norm": 0.9133332371711731, + "learning_rate": 4.25321608040201e-05, + "loss": 0.3285633850097656, + "step": 44600 + }, + { + "epoch": 14.97495602646788, + "grad_norm": 0.897939145565033, + "learning_rate": 4.251541038525964e-05, + "loss": 0.3268856430053711, + "step": 44700 + }, + { + "epoch": 15.008375910880309, + "grad_norm": 0.8286980986595154, + "learning_rate": 4.249865996649917e-05, + "loss": 0.31992229461669924, + "step": 44800 + }, + { + "epoch": 15.041879554401541, + "grad_norm": 0.8173639178276062, + "learning_rate": 4.2481909547738696e-05, + "loss": 0.3056914710998535, + "step": 44900 + }, + { + "epoch": 15.075383197922774, + "grad_norm": 0.7765247821807861, + "learning_rate": 4.2465159128978224e-05, + "loss": 0.30892095565795896, + "step": 45000 + }, + { + "epoch": 15.108886841444008, + "grad_norm": 0.9506803750991821, + "learning_rate": 4.244840871021776e-05, + "loss": 0.31020853042602536, + "step": 45100 + }, + { + "epoch": 15.14239048496524, + "grad_norm": 0.855025053024292, + "learning_rate": 4.243165829145729e-05, + "loss": 0.30636240005493165, + "step": 45200 + }, + { + "epoch": 15.175894128486473, + "grad_norm": 0.8373168110847473, + "learning_rate": 4.241490787269682e-05, + "loss": 0.3096147537231445, + "step": 45300 + }, + { + "epoch": 15.209397772007707, + "grad_norm": 0.8214793801307678, + "learning_rate": 4.2398157453936346e-05, + "loss": 0.3086151885986328, + "step": 45400 + }, + { + "epoch": 15.242901415528939, + "grad_norm": 0.8581687211990356, + "learning_rate": 4.238140703517588e-05, + "loss": 0.3079892349243164, + "step": 45500 + }, + { + "epoch": 15.276405059050171, + "grad_norm": 0.8844295740127563, + "learning_rate": 4.236465661641541e-05, + "loss": 0.31047849655151366, + "step": 45600 + }, + { + "epoch": 15.309908702571404, + "grad_norm": 0.8439965844154358, + "learning_rate": 4.234790619765494e-05, + "loss": 0.3138412094116211, + "step": 45700 + }, + { + "epoch": 15.343412346092638, + "grad_norm": 0.903762698173523, + "learning_rate": 4.2331155778894475e-05, + "loss": 0.3122879219055176, + "step": 45800 + }, + { + "epoch": 15.37691598961387, + "grad_norm": 0.8018752932548523, + "learning_rate": 4.2314405360134004e-05, + "loss": 0.3170251655578613, + "step": 45900 + }, + { + "epoch": 15.410419633135103, + "grad_norm": 0.92534339427948, + "learning_rate": 4.229765494137354e-05, + "loss": 0.3110039138793945, + "step": 46000 + }, + { + "epoch": 15.443923276656337, + "grad_norm": 0.9206555485725403, + "learning_rate": 4.228090452261307e-05, + "loss": 0.31349218368530274, + "step": 46100 + }, + { + "epoch": 15.47742692017757, + "grad_norm": 0.9693331122398376, + "learning_rate": 4.22641541038526e-05, + "loss": 0.3193240737915039, + "step": 46200 + }, + { + "epoch": 15.510930563698802, + "grad_norm": 0.8420470952987671, + "learning_rate": 4.224757118927974e-05, + "loss": 0.3151701354980469, + "step": 46300 + }, + { + "epoch": 15.544434207220036, + "grad_norm": 0.9353216290473938, + "learning_rate": 4.2230820770519265e-05, + "loss": 0.3188944435119629, + "step": 46400 + }, + { + "epoch": 15.577937850741268, + "grad_norm": 0.9871792197227478, + "learning_rate": 4.2214070351758794e-05, + "loss": 0.31723602294921877, + "step": 46500 + }, + { + "epoch": 15.6114414942625, + "grad_norm": 0.7518536448478699, + "learning_rate": 4.219731993299832e-05, + "loss": 0.31692527770996093, + "step": 46600 + }, + { + "epoch": 15.644945137783735, + "grad_norm": 0.8153543472290039, + "learning_rate": 4.218056951423786e-05, + "loss": 0.3178220748901367, + "step": 46700 + }, + { + "epoch": 15.678448781304967, + "grad_norm": 0.9253189563751221, + "learning_rate": 4.2163819095477394e-05, + "loss": 0.31681758880615235, + "step": 46800 + }, + { + "epoch": 15.7119524248262, + "grad_norm": 0.9607227444648743, + "learning_rate": 4.214706867671692e-05, + "loss": 0.31734546661376956, + "step": 46900 + }, + { + "epoch": 15.745456068347433, + "grad_norm": 0.9105275273323059, + "learning_rate": 4.213031825795645e-05, + "loss": 0.3183962059020996, + "step": 47000 + }, + { + "epoch": 15.778959711868666, + "grad_norm": 0.943592369556427, + "learning_rate": 4.211356783919598e-05, + "loss": 0.3173214912414551, + "step": 47100 + }, + { + "epoch": 15.812463355389898, + "grad_norm": 0.8281202912330627, + "learning_rate": 4.2096817420435516e-05, + "loss": 0.31825736999511717, + "step": 47200 + }, + { + "epoch": 15.845966998911132, + "grad_norm": 0.9243564009666443, + "learning_rate": 4.2080067001675045e-05, + "loss": 0.31478778839111327, + "step": 47300 + }, + { + "epoch": 15.879470642432365, + "grad_norm": 0.9413986206054688, + "learning_rate": 4.2063316582914574e-05, + "loss": 0.3212542343139648, + "step": 47400 + }, + { + "epoch": 15.912974285953597, + "grad_norm": 0.7720843553543091, + "learning_rate": 4.20465661641541e-05, + "loss": 0.3203662109375, + "step": 47500 + }, + { + "epoch": 15.946477929474831, + "grad_norm": 0.9300262331962585, + "learning_rate": 4.202981574539364e-05, + "loss": 0.31860551834106443, + "step": 47600 + }, + { + "epoch": 15.979981572996063, + "grad_norm": 0.9552218317985535, + "learning_rate": 4.201306532663317e-05, + "loss": 0.32005401611328127, + "step": 47700 + }, + { + "epoch": 16.01340145740849, + "grad_norm": 0.9004557132720947, + "learning_rate": 4.1996314907872696e-05, + "loss": 0.30930152893066404, + "step": 47800 + }, + { + "epoch": 16.046905100929727, + "grad_norm": 0.8685380220413208, + "learning_rate": 4.1979564489112225e-05, + "loss": 0.2990193176269531, + "step": 47900 + }, + { + "epoch": 16.08040874445096, + "grad_norm": 0.9357792735099792, + "learning_rate": 4.196281407035176e-05, + "loss": 0.3014987373352051, + "step": 48000 + }, + { + "epoch": 16.113912387972192, + "grad_norm": 0.8524284362792969, + "learning_rate": 4.1946063651591296e-05, + "loss": 0.29952068328857423, + "step": 48100 + }, + { + "epoch": 16.147416031493425, + "grad_norm": 0.8511279225349426, + "learning_rate": 4.1929313232830825e-05, + "loss": 0.2990330505371094, + "step": 48200 + }, + { + "epoch": 16.180919675014657, + "grad_norm": 0.9268020987510681, + "learning_rate": 4.191273031825796e-05, + "loss": 0.2993707275390625, + "step": 48300 + }, + { + "epoch": 16.21442331853589, + "grad_norm": 0.9302972555160522, + "learning_rate": 4.1895979899497486e-05, + "loss": 0.30082115173339846, + "step": 48400 + }, + { + "epoch": 16.247926962057125, + "grad_norm": 0.7517661452293396, + "learning_rate": 4.187922948073702e-05, + "loss": 0.29987972259521484, + "step": 48500 + }, + { + "epoch": 16.281430605578358, + "grad_norm": 0.9238623976707458, + "learning_rate": 4.186247906197655e-05, + "loss": 0.30625816345214846, + "step": 48600 + }, + { + "epoch": 16.31493424909959, + "grad_norm": 0.8699862360954285, + "learning_rate": 4.184572864321608e-05, + "loss": 0.3052105522155762, + "step": 48700 + }, + { + "epoch": 16.348437892620822, + "grad_norm": 0.8557946085929871, + "learning_rate": 4.182897822445561e-05, + "loss": 0.30761667251586916, + "step": 48800 + }, + { + "epoch": 16.381941536142055, + "grad_norm": 0.9344996213912964, + "learning_rate": 4.1812227805695144e-05, + "loss": 0.3052439498901367, + "step": 48900 + }, + { + "epoch": 16.415445179663287, + "grad_norm": 0.8814606070518494, + "learning_rate": 4.179547738693467e-05, + "loss": 0.3072672843933105, + "step": 49000 + }, + { + "epoch": 16.448948823184523, + "grad_norm": 0.847149670124054, + "learning_rate": 4.177872696817421e-05, + "loss": 0.3086087226867676, + "step": 49100 + }, + { + "epoch": 16.482452466705755, + "grad_norm": 0.8724634051322937, + "learning_rate": 4.176197654941374e-05, + "loss": 0.3087570571899414, + "step": 49200 + }, + { + "epoch": 16.515956110226988, + "grad_norm": 0.909691572189331, + "learning_rate": 4.174522613065327e-05, + "loss": 0.3070098495483398, + "step": 49300 + }, + { + "epoch": 16.54945975374822, + "grad_norm": 0.9307814240455627, + "learning_rate": 4.17284757118928e-05, + "loss": 0.305695915222168, + "step": 49400 + }, + { + "epoch": 16.582963397269452, + "grad_norm": 0.7699813842773438, + "learning_rate": 4.171172529313233e-05, + "loss": 0.30605703353881836, + "step": 49500 + }, + { + "epoch": 16.616467040790685, + "grad_norm": 1.0044174194335938, + "learning_rate": 4.169497487437186e-05, + "loss": 0.3084003257751465, + "step": 49600 + }, + { + "epoch": 16.64997068431192, + "grad_norm": 0.8166942000389099, + "learning_rate": 4.1678224455611395e-05, + "loss": 0.307757682800293, + "step": 49700 + }, + { + "epoch": 16.683474327833153, + "grad_norm": 0.8853956460952759, + "learning_rate": 4.1661474036850924e-05, + "loss": 0.3071472358703613, + "step": 49800 + }, + { + "epoch": 16.716977971354385, + "grad_norm": 0.8246440291404724, + "learning_rate": 4.164472361809045e-05, + "loss": 0.3088929557800293, + "step": 49900 + }, + { + "epoch": 16.750481614875618, + "grad_norm": 0.9108903408050537, + "learning_rate": 4.162797319932998e-05, + "loss": 0.3075083541870117, + "step": 50000 + }, + { + "epoch": 16.78398525839685, + "grad_norm": 0.9037117958068848, + "learning_rate": 4.161122278056952e-05, + "loss": 0.31276445388793944, + "step": 50100 + }, + { + "epoch": 16.817488901918082, + "grad_norm": 0.9087954759597778, + "learning_rate": 4.1594472361809046e-05, + "loss": 0.30919795989990234, + "step": 50200 + }, + { + "epoch": 16.85099254543932, + "grad_norm": Infinity, + "learning_rate": 4.157772194304858e-05, + "loss": 0.3113286209106445, + "step": 50300 + }, + { + "epoch": 16.88449618896055, + "grad_norm": 0.9613434076309204, + "learning_rate": 4.1561139028475714e-05, + "loss": 0.31487524032592773, + "step": 50400 + }, + { + "epoch": 16.917999832481783, + "grad_norm": 0.9458907246589661, + "learning_rate": 4.154438860971524e-05, + "loss": 0.3127643394470215, + "step": 50500 + }, + { + "epoch": 16.951503476003015, + "grad_norm": 0.9252173900604248, + "learning_rate": 4.152763819095478e-05, + "loss": 0.3084212112426758, + "step": 50600 + }, + { + "epoch": 16.985007119524248, + "grad_norm": 0.9816356897354126, + "learning_rate": 4.151088777219431e-05, + "loss": 0.31181251525878906, + "step": 50700 + }, + { + "epoch": 17.01842700393668, + "grad_norm": 0.8120167851448059, + "learning_rate": 4.1494137353433836e-05, + "loss": 0.2999544906616211, + "step": 50800 + }, + { + "epoch": 17.05193064745791, + "grad_norm": 0.7779452800750732, + "learning_rate": 4.1477386934673365e-05, + "loss": 0.2881363487243652, + "step": 50900 + }, + { + "epoch": 17.085434290979144, + "grad_norm": 0.8800045847892761, + "learning_rate": 4.14606365159129e-05, + "loss": 0.29184545516967775, + "step": 51000 + }, + { + "epoch": 17.118937934500376, + "grad_norm": 0.8309177160263062, + "learning_rate": 4.144388609715243e-05, + "loss": 0.293133430480957, + "step": 51100 + }, + { + "epoch": 17.15244157802161, + "grad_norm": 0.8549261093139648, + "learning_rate": 4.142713567839196e-05, + "loss": 0.29502378463745116, + "step": 51200 + }, + { + "epoch": 17.18594522154284, + "grad_norm": 0.9220601916313171, + "learning_rate": 4.141038525963149e-05, + "loss": 0.29487173080444334, + "step": 51300 + }, + { + "epoch": 17.219448865064077, + "grad_norm": 0.8818517327308655, + "learning_rate": 4.139363484087103e-05, + "loss": 0.2922089767456055, + "step": 51400 + }, + { + "epoch": 17.25295250858531, + "grad_norm": 0.9325298070907593, + "learning_rate": 4.137688442211056e-05, + "loss": 0.2953068351745605, + "step": 51500 + }, + { + "epoch": 17.286456152106542, + "grad_norm": 0.842454731464386, + "learning_rate": 4.136013400335009e-05, + "loss": 0.29264474868774415, + "step": 51600 + }, + { + "epoch": 17.319959795627774, + "grad_norm": 0.9482097029685974, + "learning_rate": 4.1343383584589616e-05, + "loss": 0.2976564979553223, + "step": 51700 + }, + { + "epoch": 17.353463439149007, + "grad_norm": 0.9430213570594788, + "learning_rate": 4.132663316582915e-05, + "loss": 0.29929805755615235, + "step": 51800 + }, + { + "epoch": 17.38696708267024, + "grad_norm": 0.9468767642974854, + "learning_rate": 4.130988274706868e-05, + "loss": 0.2957676124572754, + "step": 51900 + }, + { + "epoch": 17.420470726191475, + "grad_norm": 0.9603669047355652, + "learning_rate": 4.129313232830821e-05, + "loss": 0.2980274963378906, + "step": 52000 + }, + { + "epoch": 17.453974369712707, + "grad_norm": 0.8796602487564087, + "learning_rate": 4.127638190954774e-05, + "loss": 0.3016574096679687, + "step": 52100 + }, + { + "epoch": 17.48747801323394, + "grad_norm": 0.9244174957275391, + "learning_rate": 4.125963149078727e-05, + "loss": 0.2988929748535156, + "step": 52200 + }, + { + "epoch": 17.520981656755172, + "grad_norm": 0.7938122749328613, + "learning_rate": 4.12428810720268e-05, + "loss": 0.29994075775146484, + "step": 52300 + }, + { + "epoch": 17.554485300276404, + "grad_norm": 0.9149840474128723, + "learning_rate": 4.122629815745394e-05, + "loss": 0.29651493072509766, + "step": 52400 + }, + { + "epoch": 17.587988943797637, + "grad_norm": 0.96629399061203, + "learning_rate": 4.120954773869347e-05, + "loss": 0.30109855651855466, + "step": 52500 + }, + { + "epoch": 17.621492587318873, + "grad_norm": 0.8029501438140869, + "learning_rate": 4.1192797319933e-05, + "loss": 0.3032656478881836, + "step": 52600 + }, + { + "epoch": 17.654996230840105, + "grad_norm": 0.831659734249115, + "learning_rate": 4.1176046901172535e-05, + "loss": 0.2977634048461914, + "step": 52700 + }, + { + "epoch": 17.688499874361337, + "grad_norm": 0.8770350813865662, + "learning_rate": 4.1159296482412063e-05, + "loss": 0.3002130317687988, + "step": 52800 + }, + { + "epoch": 17.72200351788257, + "grad_norm": 0.9197613596916199, + "learning_rate": 4.114254606365159e-05, + "loss": 0.30171897888183596, + "step": 52900 + }, + { + "epoch": 17.755507161403802, + "grad_norm": 0.8716971278190613, + "learning_rate": 4.112579564489112e-05, + "loss": 0.3020934104919434, + "step": 53000 + }, + { + "epoch": 17.789010804925034, + "grad_norm": 0.9348130226135254, + "learning_rate": 4.110904522613066e-05, + "loss": 0.30243810653686526, + "step": 53100 + }, + { + "epoch": 17.82251444844627, + "grad_norm": 1.0112886428833008, + "learning_rate": 4.1092294807370185e-05, + "loss": 0.3036368370056152, + "step": 53200 + }, + { + "epoch": 17.856018091967503, + "grad_norm": 0.9333941340446472, + "learning_rate": 4.1075544388609714e-05, + "loss": 0.30571670532226564, + "step": 53300 + }, + { + "epoch": 17.889521735488735, + "grad_norm": 0.8895190358161926, + "learning_rate": 4.105879396984924e-05, + "loss": 0.3056245040893555, + "step": 53400 + }, + { + "epoch": 17.923025379009967, + "grad_norm": 0.953789472579956, + "learning_rate": 4.104204355108878e-05, + "loss": 0.30313159942626955, + "step": 53500 + }, + { + "epoch": 17.9565290225312, + "grad_norm": 0.8885256052017212, + "learning_rate": 4.102529313232831e-05, + "loss": 0.3018374061584473, + "step": 53600 + }, + { + "epoch": 17.990032666052432, + "grad_norm": 1.043843388557434, + "learning_rate": 4.100854271356784e-05, + "loss": 0.30093835830688476, + "step": 53700 + }, + { + "epoch": 18.023452550464864, + "grad_norm": 0.8944602012634277, + "learning_rate": 4.099179229480737e-05, + "loss": 0.28485956192016604, + "step": 53800 + }, + { + "epoch": 18.056956193986096, + "grad_norm": 0.9355315566062927, + "learning_rate": 4.097504187604691e-05, + "loss": 0.28318214416503906, + "step": 53900 + }, + { + "epoch": 18.09045983750733, + "grad_norm": 0.7996422052383423, + "learning_rate": 4.0958291457286436e-05, + "loss": 0.2806725120544434, + "step": 54000 + }, + { + "epoch": 18.12396348102856, + "grad_norm": 0.9255834817886353, + "learning_rate": 4.0941541038525965e-05, + "loss": 0.2835847473144531, + "step": 54100 + }, + { + "epoch": 18.157467124549793, + "grad_norm": 0.9625722169876099, + "learning_rate": 4.0924790619765494e-05, + "loss": 0.28318588256835936, + "step": 54200 + }, + { + "epoch": 18.19097076807103, + "grad_norm": 0.9195216298103333, + "learning_rate": 4.090804020100503e-05, + "loss": 0.2873989105224609, + "step": 54300 + }, + { + "epoch": 18.22447441159226, + "grad_norm": 0.9396908283233643, + "learning_rate": 4.089145728643216e-05, + "loss": 0.2853095054626465, + "step": 54400 + }, + { + "epoch": 18.257978055113494, + "grad_norm": 0.8911498188972473, + "learning_rate": 4.087470686767169e-05, + "loss": 0.2902779769897461, + "step": 54500 + }, + { + "epoch": 18.291481698634726, + "grad_norm": 0.995733916759491, + "learning_rate": 4.085795644891122e-05, + "loss": 0.28672319412231445, + "step": 54600 + }, + { + "epoch": 18.32498534215596, + "grad_norm": 1.0607621669769287, + "learning_rate": 4.0841206030150755e-05, + "loss": 0.288260498046875, + "step": 54700 + }, + { + "epoch": 18.35848898567719, + "grad_norm": 0.9770358204841614, + "learning_rate": 4.082445561139029e-05, + "loss": 0.2871124267578125, + "step": 54800 + }, + { + "epoch": 18.391992629198427, + "grad_norm": 0.7948865294456482, + "learning_rate": 4.080770519262982e-05, + "loss": 0.2901685333251953, + "step": 54900 + }, + { + "epoch": 18.42549627271966, + "grad_norm": 0.829538106918335, + "learning_rate": 4.079095477386935e-05, + "loss": 0.29097063064575196, + "step": 55000 + }, + { + "epoch": 18.45899991624089, + "grad_norm": 0.972334086894989, + "learning_rate": 4.077420435510888e-05, + "loss": 0.2907312965393066, + "step": 55100 + }, + { + "epoch": 18.492503559762124, + "grad_norm": 1.0088402032852173, + "learning_rate": 4.075745393634841e-05, + "loss": 0.2925748634338379, + "step": 55200 + }, + { + "epoch": 18.526007203283356, + "grad_norm": 1.0144375562667847, + "learning_rate": 4.074070351758794e-05, + "loss": 0.29165184020996093, + "step": 55300 + }, + { + "epoch": 18.55951084680459, + "grad_norm": 0.9276221394538879, + "learning_rate": 4.072395309882747e-05, + "loss": 0.2919579887390137, + "step": 55400 + }, + { + "epoch": 18.593014490325825, + "grad_norm": 0.9088070392608643, + "learning_rate": 4.0707202680067e-05, + "loss": 0.29476572036743165, + "step": 55500 + }, + { + "epoch": 18.626518133847057, + "grad_norm": 0.8358734846115112, + "learning_rate": 4.0690452261306535e-05, + "loss": 0.29323875427246093, + "step": 55600 + }, + { + "epoch": 18.66002177736829, + "grad_norm": 0.9234775304794312, + "learning_rate": 4.0673701842546064e-05, + "loss": 0.295458984375, + "step": 55700 + }, + { + "epoch": 18.69352542088952, + "grad_norm": 1.033413052558899, + "learning_rate": 4.065695142378559e-05, + "loss": 0.29363622665405276, + "step": 55800 + }, + { + "epoch": 18.727029064410754, + "grad_norm": 0.8682520389556885, + "learning_rate": 4.064020100502513e-05, + "loss": 0.2977585220336914, + "step": 55900 + }, + { + "epoch": 18.760532707931986, + "grad_norm": 1.0640672445297241, + "learning_rate": 4.0623450586264664e-05, + "loss": 0.2952461051940918, + "step": 56000 + }, + { + "epoch": 18.794036351453222, + "grad_norm": 0.9460969567298889, + "learning_rate": 4.060670016750419e-05, + "loss": 0.2973412322998047, + "step": 56100 + }, + { + "epoch": 18.827539994974455, + "grad_norm": 0.9299043416976929, + "learning_rate": 4.058994974874372e-05, + "loss": 0.29550174713134764, + "step": 56200 + }, + { + "epoch": 18.861043638495687, + "grad_norm": 1.0823304653167725, + "learning_rate": 4.057319932998325e-05, + "loss": 0.2938914680480957, + "step": 56300 + }, + { + "epoch": 18.89454728201692, + "grad_norm": 0.9436834454536438, + "learning_rate": 4.055661641541039e-05, + "loss": 0.29774511337280274, + "step": 56400 + }, + { + "epoch": 18.92805092553815, + "grad_norm": 0.9670146107673645, + "learning_rate": 4.053986599664992e-05, + "loss": 0.29711448669433593, + "step": 56500 + }, + { + "epoch": 18.961554569059384, + "grad_norm": 0.971251368522644, + "learning_rate": 4.052311557788945e-05, + "loss": 0.29909347534179687, + "step": 56600 + }, + { + "epoch": 18.995058212580616, + "grad_norm": 0.8543409705162048, + "learning_rate": 4.0506365159128976e-05, + "loss": 0.29678007125854494, + "step": 56700 + }, + { + "epoch": 19.028478096993048, + "grad_norm": 0.9036636352539062, + "learning_rate": 4.048961474036851e-05, + "loss": 0.2788318824768066, + "step": 56800 + }, + { + "epoch": 19.06198174051428, + "grad_norm": 1.0365597009658813, + "learning_rate": 4.047286432160804e-05, + "loss": 0.2757110023498535, + "step": 56900 + }, + { + "epoch": 19.095485384035513, + "grad_norm": 0.8653129935264587, + "learning_rate": 4.0456113902847576e-05, + "loss": 0.2768836402893066, + "step": 57000 + }, + { + "epoch": 19.128989027556745, + "grad_norm": 0.8460621237754822, + "learning_rate": 4.0439363484087105e-05, + "loss": 0.2755991363525391, + "step": 57100 + }, + { + "epoch": 19.16249267107798, + "grad_norm": 0.8957028985023499, + "learning_rate": 4.0422613065326634e-05, + "loss": 0.27972606658935545, + "step": 57200 + }, + { + "epoch": 19.195996314599213, + "grad_norm": 0.9295471906661987, + "learning_rate": 4.040586264656617e-05, + "loss": 0.2782594871520996, + "step": 57300 + }, + { + "epoch": 19.229499958120446, + "grad_norm": 0.8899731636047363, + "learning_rate": 4.03891122278057e-05, + "loss": 0.2778139877319336, + "step": 57400 + }, + { + "epoch": 19.263003601641678, + "grad_norm": 0.9683830142021179, + "learning_rate": 4.037236180904523e-05, + "loss": 0.28136295318603516, + "step": 57500 + }, + { + "epoch": 19.29650724516291, + "grad_norm": 0.8920564651489258, + "learning_rate": 4.0355611390284756e-05, + "loss": 0.28040409088134766, + "step": 57600 + }, + { + "epoch": 19.330010888684143, + "grad_norm": 0.9366307854652405, + "learning_rate": 4.033886097152429e-05, + "loss": 0.28461326599121095, + "step": 57700 + }, + { + "epoch": 19.36351453220538, + "grad_norm": 0.9464457035064697, + "learning_rate": 4.032211055276382e-05, + "loss": 0.28297006607055664, + "step": 57800 + }, + { + "epoch": 19.39701817572661, + "grad_norm": 1.0350395441055298, + "learning_rate": 4.030536013400335e-05, + "loss": 0.2860834503173828, + "step": 57900 + }, + { + "epoch": 19.430521819247843, + "grad_norm": 0.8994850516319275, + "learning_rate": 4.028860971524288e-05, + "loss": 0.28455873489379885, + "step": 58000 + }, + { + "epoch": 19.464025462769076, + "grad_norm": 1.0085395574569702, + "learning_rate": 4.0271859296482414e-05, + "loss": 0.28580081939697266, + "step": 58100 + }, + { + "epoch": 19.497529106290308, + "grad_norm": 0.9378731846809387, + "learning_rate": 4.025510887772195e-05, + "loss": 0.28492233276367185, + "step": 58200 + }, + { + "epoch": 19.53103274981154, + "grad_norm": 1.1039483547210693, + "learning_rate": 4.023835845896148e-05, + "loss": 0.28393068313598635, + "step": 58300 + }, + { + "epoch": 19.564536393332776, + "grad_norm": 1.0000792741775513, + "learning_rate": 4.022177554438861e-05, + "loss": 0.28428964614868163, + "step": 58400 + }, + { + "epoch": 19.59804003685401, + "grad_norm": 0.9822189211845398, + "learning_rate": 4.0205025125628146e-05, + "loss": 0.28679338455200193, + "step": 58500 + }, + { + "epoch": 19.63154368037524, + "grad_norm": 1.008216142654419, + "learning_rate": 4.0188274706867675e-05, + "loss": 0.2877239990234375, + "step": 58600 + }, + { + "epoch": 19.665047323896474, + "grad_norm": 0.8709893822669983, + "learning_rate": 4.0171524288107204e-05, + "loss": 0.28736095428466796, + "step": 58700 + }, + { + "epoch": 19.698550967417706, + "grad_norm": 1.0486055612564087, + "learning_rate": 4.015477386934673e-05, + "loss": 0.2875706672668457, + "step": 58800 + }, + { + "epoch": 19.73205461093894, + "grad_norm": 0.9718714952468872, + "learning_rate": 4.013802345058627e-05, + "loss": 0.2887088394165039, + "step": 58900 + }, + { + "epoch": 19.765558254460174, + "grad_norm": 0.9496104717254639, + "learning_rate": 4.01212730318258e-05, + "loss": 0.2863414573669434, + "step": 59000 + }, + { + "epoch": 19.799061897981407, + "grad_norm": 1.0247166156768799, + "learning_rate": 4.0104522613065326e-05, + "loss": 0.287678165435791, + "step": 59100 + }, + { + "epoch": 19.83256554150264, + "grad_norm": 0.9370303153991699, + "learning_rate": 4.008777219430486e-05, + "loss": 0.28977474212646487, + "step": 59200 + }, + { + "epoch": 19.86606918502387, + "grad_norm": 0.8732765316963196, + "learning_rate": 4.007102177554439e-05, + "loss": 0.2899479293823242, + "step": 59300 + }, + { + "epoch": 19.899572828545104, + "grad_norm": 0.9661251306533813, + "learning_rate": 4.0054271356783926e-05, + "loss": 0.28924821853637694, + "step": 59400 + }, + { + "epoch": 19.933076472066336, + "grad_norm": 0.9300135374069214, + "learning_rate": 4.0037520938023455e-05, + "loss": 0.2898877716064453, + "step": 59500 + }, + { + "epoch": 19.96658011558757, + "grad_norm": 1.0985535383224487, + "learning_rate": 4.0020770519262983e-05, + "loss": 0.28800737380981445, + "step": 59600 + }, + { + "epoch": 20.0, + "grad_norm": 1.0769129991531372, + "learning_rate": 4.000402010050251e-05, + "loss": 0.2884260940551758, + "step": 59700 + }, + { + "epoch": 20.033503643521232, + "grad_norm": 0.9619253277778625, + "learning_rate": 3.998726968174205e-05, + "loss": 0.2721578788757324, + "step": 59800 + }, + { + "epoch": 20.067007287042465, + "grad_norm": 0.9351584911346436, + "learning_rate": 3.997051926298158e-05, + "loss": 0.2715591049194336, + "step": 59900 + }, + { + "epoch": 20.100510930563697, + "grad_norm": 0.957760214805603, + "learning_rate": 3.9953768844221106e-05, + "loss": 0.2707101821899414, + "step": 60000 + }, + { + "epoch": 20.134014574084933, + "grad_norm": 0.8414269089698792, + "learning_rate": 3.9937018425460634e-05, + "loss": 0.27344297409057616, + "step": 60100 + }, + { + "epoch": 20.167518217606165, + "grad_norm": 1.0471901893615723, + "learning_rate": 3.992026800670017e-05, + "loss": 0.2716003227233887, + "step": 60200 + }, + { + "epoch": 20.201021861127398, + "grad_norm": 0.9024125933647156, + "learning_rate": 3.99035175879397e-05, + "loss": 0.27117115020751953, + "step": 60300 + }, + { + "epoch": 20.23452550464863, + "grad_norm": 0.8774855136871338, + "learning_rate": 3.988693467336684e-05, + "loss": 0.2748865509033203, + "step": 60400 + }, + { + "epoch": 20.268029148169862, + "grad_norm": 0.9664554595947266, + "learning_rate": 3.987018425460637e-05, + "loss": 0.27406461715698244, + "step": 60500 + }, + { + "epoch": 20.301532791691095, + "grad_norm": 1.035376787185669, + "learning_rate": 3.98534338358459e-05, + "loss": 0.2735789489746094, + "step": 60600 + }, + { + "epoch": 20.33503643521233, + "grad_norm": 0.9546007513999939, + "learning_rate": 3.983668341708543e-05, + "loss": 0.2764925956726074, + "step": 60700 + }, + { + "epoch": 20.368540078733563, + "grad_norm": 1.0165990591049194, + "learning_rate": 3.981993299832496e-05, + "loss": 0.27297565460205075, + "step": 60800 + }, + { + "epoch": 20.402043722254795, + "grad_norm": 0.9471421241760254, + "learning_rate": 3.980318257956449e-05, + "loss": 0.27823368072509763, + "step": 60900 + }, + { + "epoch": 20.435547365776028, + "grad_norm": 0.9725298285484314, + "learning_rate": 3.9786432160804025e-05, + "loss": 0.2764093208312988, + "step": 61000 + }, + { + "epoch": 20.46905100929726, + "grad_norm": 0.8394715189933777, + "learning_rate": 3.976968174204355e-05, + "loss": 0.2772574996948242, + "step": 61100 + }, + { + "epoch": 20.502554652818493, + "grad_norm": 0.8922716975212097, + "learning_rate": 3.975293132328308e-05, + "loss": 0.27750770568847655, + "step": 61200 + }, + { + "epoch": 20.53605829633973, + "grad_norm": 0.9844845533370972, + "learning_rate": 3.973618090452261e-05, + "loss": 0.2779910278320312, + "step": 61300 + }, + { + "epoch": 20.56956193986096, + "grad_norm": 0.8804232478141785, + "learning_rate": 3.971943048576215e-05, + "loss": 0.2776468086242676, + "step": 61400 + }, + { + "epoch": 20.603065583382193, + "grad_norm": 0.9889972805976868, + "learning_rate": 3.970268006700168e-05, + "loss": 0.27890708923339846, + "step": 61500 + }, + { + "epoch": 20.636569226903426, + "grad_norm": 0.980644166469574, + "learning_rate": 3.968592964824121e-05, + "loss": 0.28234588623046875, + "step": 61600 + }, + { + "epoch": 20.670072870424658, + "grad_norm": 0.9484408497810364, + "learning_rate": 3.966917922948074e-05, + "loss": 0.28126981735229495, + "step": 61700 + }, + { + "epoch": 20.70357651394589, + "grad_norm": 1.055678367614746, + "learning_rate": 3.965242881072027e-05, + "loss": 0.2830071067810059, + "step": 61800 + }, + { + "epoch": 20.737080157467126, + "grad_norm": 0.8886085748672485, + "learning_rate": 3.9635678391959804e-05, + "loss": 0.27813196182250977, + "step": 61900 + }, + { + "epoch": 20.77058380098836, + "grad_norm": 1.0629770755767822, + "learning_rate": 3.961892797319933e-05, + "loss": 0.2837041664123535, + "step": 62000 + }, + { + "epoch": 20.80408744450959, + "grad_norm": 0.8154080510139465, + "learning_rate": 3.960217755443886e-05, + "loss": 0.2794221115112305, + "step": 62100 + }, + { + "epoch": 20.837591088030823, + "grad_norm": 0.9643964171409607, + "learning_rate": 3.958542713567839e-05, + "loss": 0.2807983207702637, + "step": 62200 + }, + { + "epoch": 20.871094731552056, + "grad_norm": 1.0410659313201904, + "learning_rate": 3.9568676716917926e-05, + "loss": 0.27797990798950195, + "step": 62300 + }, + { + "epoch": 20.904598375073288, + "grad_norm": 0.9507243633270264, + "learning_rate": 3.955209380234506e-05, + "loss": 0.2836384010314941, + "step": 62400 + }, + { + "epoch": 20.93810201859452, + "grad_norm": 1.0288045406341553, + "learning_rate": 3.953534338358459e-05, + "loss": 0.28449560165405274, + "step": 62500 + }, + { + "epoch": 20.971605662115756, + "grad_norm": 0.9709306359291077, + "learning_rate": 3.951859296482412e-05, + "loss": 0.282686824798584, + "step": 62600 + }, + { + "epoch": 21.005025546528184, + "grad_norm": 0.8715474009513855, + "learning_rate": 3.950184254606365e-05, + "loss": 0.2808470153808594, + "step": 62700 + }, + { + "epoch": 21.038529190049417, + "grad_norm": 0.9847482442855835, + "learning_rate": 3.948509212730319e-05, + "loss": 0.2635519218444824, + "step": 62800 + }, + { + "epoch": 21.07203283357065, + "grad_norm": 0.945732057094574, + "learning_rate": 3.9468341708542717e-05, + "loss": 0.26160152435302736, + "step": 62900 + }, + { + "epoch": 21.105536477091885, + "grad_norm": 0.9310206174850464, + "learning_rate": 3.945175879396985e-05, + "loss": 0.26616928100585935, + "step": 63000 + }, + { + "epoch": 21.139040120613117, + "grad_norm": 0.8321387767791748, + "learning_rate": 3.9435008375209385e-05, + "loss": 0.2665995216369629, + "step": 63100 + }, + { + "epoch": 21.17254376413435, + "grad_norm": 0.9247589707374573, + "learning_rate": 3.9418257956448913e-05, + "loss": 0.2642600440979004, + "step": 63200 + }, + { + "epoch": 21.206047407655582, + "grad_norm": 0.9166206121444702, + "learning_rate": 3.940150753768844e-05, + "loss": 0.2661565208435059, + "step": 63300 + }, + { + "epoch": 21.239551051176814, + "grad_norm": 1.0146381855010986, + "learning_rate": 3.938475711892797e-05, + "loss": 0.26595497131347656, + "step": 63400 + }, + { + "epoch": 21.273054694698047, + "grad_norm": 0.8782115578651428, + "learning_rate": 3.936800670016751e-05, + "loss": 0.2683505821228027, + "step": 63500 + }, + { + "epoch": 21.306558338219283, + "grad_norm": 0.8348855376243591, + "learning_rate": 3.935125628140704e-05, + "loss": 0.27002309799194335, + "step": 63600 + }, + { + "epoch": 21.340061981740515, + "grad_norm": 1.0207946300506592, + "learning_rate": 3.933450586264657e-05, + "loss": 0.2727695083618164, + "step": 63700 + }, + { + "epoch": 21.373565625261747, + "grad_norm": 0.9709821939468384, + "learning_rate": 3.93177554438861e-05, + "loss": 0.2713334655761719, + "step": 63800 + }, + { + "epoch": 21.40706926878298, + "grad_norm": 0.9931967258453369, + "learning_rate": 3.930100502512563e-05, + "loss": 0.2715752029418945, + "step": 63900 + }, + { + "epoch": 21.440572912304212, + "grad_norm": 1.002032995223999, + "learning_rate": 3.9284254606365164e-05, + "loss": 0.27039655685424807, + "step": 64000 + }, + { + "epoch": 21.474076555825445, + "grad_norm": 1.011479377746582, + "learning_rate": 3.926750418760469e-05, + "loss": 0.27180171966552735, + "step": 64100 + }, + { + "epoch": 21.50758019934668, + "grad_norm": 0.8830493092536926, + "learning_rate": 3.925075376884422e-05, + "loss": 0.27189735412597654, + "step": 64200 + }, + { + "epoch": 21.541083842867913, + "grad_norm": 0.957878828048706, + "learning_rate": 3.923400335008375e-05, + "loss": 0.27135616302490234, + "step": 64300 + }, + { + "epoch": 21.574587486389145, + "grad_norm": 0.9988912343978882, + "learning_rate": 3.9217252931323286e-05, + "loss": 0.2725925064086914, + "step": 64400 + }, + { + "epoch": 21.608091129910378, + "grad_norm": 0.9891326427459717, + "learning_rate": 3.9200502512562815e-05, + "loss": 0.27440677642822264, + "step": 64500 + }, + { + "epoch": 21.64159477343161, + "grad_norm": 1.0808324813842773, + "learning_rate": 3.9183752093802344e-05, + "loss": 0.27411041259765623, + "step": 64600 + }, + { + "epoch": 21.675098416952842, + "grad_norm": 0.9373248219490051, + "learning_rate": 3.916700167504187e-05, + "loss": 0.2749940490722656, + "step": 64700 + }, + { + "epoch": 21.708602060474078, + "grad_norm": 1.165182113647461, + "learning_rate": 3.915025125628141e-05, + "loss": 0.27408443450927733, + "step": 64800 + }, + { + "epoch": 21.74210570399531, + "grad_norm": 0.9180405139923096, + "learning_rate": 3.9133500837520944e-05, + "loss": 0.27541778564453123, + "step": 64900 + }, + { + "epoch": 21.775609347516543, + "grad_norm": 1.0415167808532715, + "learning_rate": 3.911675041876047e-05, + "loss": 0.2752027893066406, + "step": 65000 + }, + { + "epoch": 21.809112991037775, + "grad_norm": 0.996279239654541, + "learning_rate": 3.91e-05, + "loss": 0.27856874465942383, + "step": 65100 + }, + { + "epoch": 21.842616634559008, + "grad_norm": 0.8467832207679749, + "learning_rate": 3.908324958123953e-05, + "loss": 0.2744846153259277, + "step": 65200 + }, + { + "epoch": 21.87612027808024, + "grad_norm": 0.9609348177909851, + "learning_rate": 3.9066499162479066e-05, + "loss": 0.27501155853271486, + "step": 65300 + }, + { + "epoch": 21.909623921601476, + "grad_norm": 1.0232717990875244, + "learning_rate": 3.9049748743718595e-05, + "loss": 0.2766411590576172, + "step": 65400 + }, + { + "epoch": 21.94312756512271, + "grad_norm": 0.9764308333396912, + "learning_rate": 3.9032998324958124e-05, + "loss": 0.27579292297363284, + "step": 65500 + }, + { + "epoch": 21.97663120864394, + "grad_norm": 0.8772796392440796, + "learning_rate": 3.901624790619766e-05, + "loss": 0.27892873764038084, + "step": 65600 + }, + { + "epoch": 22.01005109305637, + "grad_norm": 0.9070359468460083, + "learning_rate": 3.899949748743719e-05, + "loss": 0.27117897033691407, + "step": 65700 + }, + { + "epoch": 22.043554736577605, + "grad_norm": 0.9539000988006592, + "learning_rate": 3.898274706867672e-05, + "loss": 0.2588020706176758, + "step": 65800 + }, + { + "epoch": 22.077058380098837, + "grad_norm": 0.7974834442138672, + "learning_rate": 3.8965996649916246e-05, + "loss": 0.2590653610229492, + "step": 65900 + }, + { + "epoch": 22.11056202362007, + "grad_norm": 0.9373714327812195, + "learning_rate": 3.894924623115578e-05, + "loss": 0.25843637466430663, + "step": 66000 + }, + { + "epoch": 22.1440656671413, + "grad_norm": 0.9088506698608398, + "learning_rate": 3.893249581239532e-05, + "loss": 0.2609646987915039, + "step": 66100 + }, + { + "epoch": 22.177569310662534, + "grad_norm": 0.7560039162635803, + "learning_rate": 3.8915745393634846e-05, + "loss": 0.25976266860961916, + "step": 66200 + }, + { + "epoch": 22.211072954183766, + "grad_norm": 1.0187093019485474, + "learning_rate": 3.8898994974874375e-05, + "loss": 0.2626813507080078, + "step": 66300 + }, + { + "epoch": 22.244576597705, + "grad_norm": 0.9864270687103271, + "learning_rate": 3.8882244556113904e-05, + "loss": 0.26082069396972657, + "step": 66400 + }, + { + "epoch": 22.278080241226235, + "grad_norm": 0.9238985776901245, + "learning_rate": 3.886549413735344e-05, + "loss": 0.26303247451782225, + "step": 66500 + }, + { + "epoch": 22.311583884747467, + "grad_norm": 1.06230628490448, + "learning_rate": 3.884874371859297e-05, + "loss": 0.2636404609680176, + "step": 66600 + }, + { + "epoch": 22.3450875282687, + "grad_norm": 0.8938685655593872, + "learning_rate": 3.88319932998325e-05, + "loss": 0.26432344436645505, + "step": 66700 + }, + { + "epoch": 22.37859117178993, + "grad_norm": 0.9398422837257385, + "learning_rate": 3.8815242881072026e-05, + "loss": 0.2664291763305664, + "step": 66800 + }, + { + "epoch": 22.412094815311164, + "grad_norm": 0.9452701210975647, + "learning_rate": 3.879849246231156e-05, + "loss": 0.26500213623046875, + "step": 66900 + }, + { + "epoch": 22.445598458832396, + "grad_norm": 1.0754152536392212, + "learning_rate": 3.8781909547738694e-05, + "loss": 0.266211051940918, + "step": 67000 + }, + { + "epoch": 22.479102102353632, + "grad_norm": 0.966921329498291, + "learning_rate": 3.876515912897823e-05, + "loss": 0.26374603271484376, + "step": 67100 + }, + { + "epoch": 22.512605745874865, + "grad_norm": 0.979242742061615, + "learning_rate": 3.874840871021776e-05, + "loss": 0.266760082244873, + "step": 67200 + }, + { + "epoch": 22.546109389396097, + "grad_norm": 1.169141173362732, + "learning_rate": 3.873165829145729e-05, + "loss": 0.2670201873779297, + "step": 67300 + }, + { + "epoch": 22.57961303291733, + "grad_norm": 0.9599239230155945, + "learning_rate": 3.871490787269682e-05, + "loss": 0.2680745315551758, + "step": 67400 + }, + { + "epoch": 22.613116676438562, + "grad_norm": 1.0141677856445312, + "learning_rate": 3.869815745393635e-05, + "loss": 0.26869884490966794, + "step": 67500 + }, + { + "epoch": 22.646620319959794, + "grad_norm": 0.9633665084838867, + "learning_rate": 3.868140703517588e-05, + "loss": 0.26763187408447264, + "step": 67600 + }, + { + "epoch": 22.68012396348103, + "grad_norm": 1.046339750289917, + "learning_rate": 3.866465661641541e-05, + "loss": 0.271055965423584, + "step": 67700 + }, + { + "epoch": 22.713627607002262, + "grad_norm": 1.0029908418655396, + "learning_rate": 3.8647906197654945e-05, + "loss": 0.26755489349365236, + "step": 67800 + }, + { + "epoch": 22.747131250523495, + "grad_norm": 0.9917793273925781, + "learning_rate": 3.8631155778894473e-05, + "loss": 0.26893938064575196, + "step": 67900 + }, + { + "epoch": 22.780634894044727, + "grad_norm": 0.921280026435852, + "learning_rate": 3.8614405360134e-05, + "loss": 0.26891294479370115, + "step": 68000 + }, + { + "epoch": 22.81413853756596, + "grad_norm": 0.9776479601860046, + "learning_rate": 3.859765494137353e-05, + "loss": 0.2671005058288574, + "step": 68100 + }, + { + "epoch": 22.847642181087192, + "grad_norm": 0.8705649375915527, + "learning_rate": 3.858090452261307e-05, + "loss": 0.2690028762817383, + "step": 68200 + }, + { + "epoch": 22.881145824608428, + "grad_norm": 0.8992595076560974, + "learning_rate": 3.8564154103852595e-05, + "loss": 0.26913272857666015, + "step": 68300 + }, + { + "epoch": 22.91464946812966, + "grad_norm": 0.8897244334220886, + "learning_rate": 3.854740368509213e-05, + "loss": 0.27021236419677735, + "step": 68400 + }, + { + "epoch": 22.948153111650893, + "grad_norm": 0.9646697044372559, + "learning_rate": 3.853065326633166e-05, + "loss": 0.27057441711425784, + "step": 68500 + }, + { + "epoch": 22.981656755172125, + "grad_norm": 0.9705012440681458, + "learning_rate": 3.8513902847571195e-05, + "loss": 0.27003257751464843, + "step": 68600 + }, + { + "epoch": 23.015076639584557, + "grad_norm": 0.9501924514770508, + "learning_rate": 3.8497152428810724e-05, + "loss": 0.2624375915527344, + "step": 68700 + }, + { + "epoch": 23.04858028310579, + "grad_norm": 0.9246262311935425, + "learning_rate": 3.848040201005025e-05, + "loss": 0.2510771560668945, + "step": 68800 + }, + { + "epoch": 23.08208392662702, + "grad_norm": 1.0363575220108032, + "learning_rate": 3.846365159128978e-05, + "loss": 0.2513089370727539, + "step": 68900 + }, + { + "epoch": 23.115587570148254, + "grad_norm": 1.0965619087219238, + "learning_rate": 3.844706867671692e-05, + "loss": 0.2531783103942871, + "step": 69000 + }, + { + "epoch": 23.149091213669486, + "grad_norm": 0.7851601839065552, + "learning_rate": 3.843031825795645e-05, + "loss": 0.25430681228637697, + "step": 69100 + }, + { + "epoch": 23.18259485719072, + "grad_norm": 0.8714056611061096, + "learning_rate": 3.841356783919598e-05, + "loss": 0.2563682746887207, + "step": 69200 + }, + { + "epoch": 23.21609850071195, + "grad_norm": 0.9404228925704956, + "learning_rate": 3.839681742043551e-05, + "loss": 0.25634672164916994, + "step": 69300 + }, + { + "epoch": 23.249602144233187, + "grad_norm": 1.04526948928833, + "learning_rate": 3.838006700167504e-05, + "loss": 0.2558123779296875, + "step": 69400 + }, + { + "epoch": 23.28310578775442, + "grad_norm": 1.0145646333694458, + "learning_rate": 3.836331658291458e-05, + "loss": 0.25761409759521486, + "step": 69500 + }, + { + "epoch": 23.31660943127565, + "grad_norm": 1.0709373950958252, + "learning_rate": 3.834656616415411e-05, + "loss": 0.25936553955078123, + "step": 69600 + }, + { + "epoch": 23.350113074796884, + "grad_norm": 1.0656367540359497, + "learning_rate": 3.8329815745393637e-05, + "loss": 0.25993459701538085, + "step": 69700 + }, + { + "epoch": 23.383616718318116, + "grad_norm": 0.9517690539360046, + "learning_rate": 3.8313065326633165e-05, + "loss": 0.2593793296813965, + "step": 69800 + }, + { + "epoch": 23.41712036183935, + "grad_norm": 0.9651705026626587, + "learning_rate": 3.82963149078727e-05, + "loss": 0.2592854309082031, + "step": 69900 + }, + { + "epoch": 23.450624005360584, + "grad_norm": 0.9077875018119812, + "learning_rate": 3.827956448911223e-05, + "loss": 0.2614713668823242, + "step": 70000 + }, + { + "epoch": 23.484127648881817, + "grad_norm": 0.9982284307479858, + "learning_rate": 3.826281407035176e-05, + "loss": 0.2588504219055176, + "step": 70100 + }, + { + "epoch": 23.51763129240305, + "grad_norm": 0.9539495706558228, + "learning_rate": 3.824606365159129e-05, + "loss": 0.26046722412109374, + "step": 70200 + }, + { + "epoch": 23.55113493592428, + "grad_norm": 1.0776108503341675, + "learning_rate": 3.822931323283082e-05, + "loss": 0.2608753776550293, + "step": 70300 + }, + { + "epoch": 23.584638579445514, + "grad_norm": 1.0306613445281982, + "learning_rate": 3.821256281407035e-05, + "loss": 0.26188905715942384, + "step": 70400 + }, + { + "epoch": 23.618142222966746, + "grad_norm": 0.9900612831115723, + "learning_rate": 3.819581239530988e-05, + "loss": 0.26530147552490235, + "step": 70500 + }, + { + "epoch": 23.651645866487982, + "grad_norm": 1.047272801399231, + "learning_rate": 3.817906197654941e-05, + "loss": 0.26567121505737307, + "step": 70600 + }, + { + "epoch": 23.685149510009214, + "grad_norm": 0.9837287068367004, + "learning_rate": 3.816231155778895e-05, + "loss": 0.2618439865112305, + "step": 70700 + }, + { + "epoch": 23.718653153530447, + "grad_norm": 1.0495308637619019, + "learning_rate": 3.814556113902848e-05, + "loss": 0.2637239646911621, + "step": 70800 + }, + { + "epoch": 23.75215679705168, + "grad_norm": 0.9998559951782227, + "learning_rate": 3.812881072026801e-05, + "loss": 0.2645314788818359, + "step": 70900 + }, + { + "epoch": 23.78566044057291, + "grad_norm": 1.0041533708572388, + "learning_rate": 3.811222780569514e-05, + "loss": 0.26535621643066404, + "step": 71000 + }, + { + "epoch": 23.819164084094144, + "grad_norm": 0.8790546655654907, + "learning_rate": 3.809547738693468e-05, + "loss": 0.26744958877563474, + "step": 71100 + }, + { + "epoch": 23.85266772761538, + "grad_norm": 1.0044236183166504, + "learning_rate": 3.8078726968174206e-05, + "loss": 0.2647633171081543, + "step": 71200 + }, + { + "epoch": 23.886171371136612, + "grad_norm": 0.9612513184547424, + "learning_rate": 3.8061976549413735e-05, + "loss": 0.2649590682983398, + "step": 71300 + }, + { + "epoch": 23.919675014657845, + "grad_norm": 0.8713734745979309, + "learning_rate": 3.8045226130653264e-05, + "loss": 0.266021728515625, + "step": 71400 + }, + { + "epoch": 23.953178658179077, + "grad_norm": 1.0584930181503296, + "learning_rate": 3.80284757118928e-05, + "loss": 0.2661307907104492, + "step": 71500 + }, + { + "epoch": 23.98668230170031, + "grad_norm": 1.003209114074707, + "learning_rate": 3.801172529313233e-05, + "loss": 0.26575571060180664, + "step": 71600 + }, + { + "epoch": 24.02010218611274, + "grad_norm": 1.0001593828201294, + "learning_rate": 3.7994974874371864e-05, + "loss": 0.25387475967407225, + "step": 71700 + }, + { + "epoch": 24.053605829633973, + "grad_norm": 1.0081121921539307, + "learning_rate": 3.797822445561139e-05, + "loss": 0.24931825637817384, + "step": 71800 + }, + { + "epoch": 24.087109473155206, + "grad_norm": 0.969540536403656, + "learning_rate": 3.796147403685092e-05, + "loss": 0.24639154434204102, + "step": 71900 + }, + { + "epoch": 24.120613116676438, + "grad_norm": 0.9975810050964355, + "learning_rate": 3.794472361809046e-05, + "loss": 0.24772171020507813, + "step": 72000 + }, + { + "epoch": 24.15411676019767, + "grad_norm": 1.0242449045181274, + "learning_rate": 3.7927973199329986e-05, + "loss": 0.24881784439086915, + "step": 72100 + }, + { + "epoch": 24.187620403718903, + "grad_norm": 0.9321593642234802, + "learning_rate": 3.7911222780569515e-05, + "loss": 0.250980339050293, + "step": 72200 + }, + { + "epoch": 24.22112404724014, + "grad_norm": 0.8362423181533813, + "learning_rate": 3.7894472361809044e-05, + "loss": 0.2504695320129395, + "step": 72300 + }, + { + "epoch": 24.25462769076137, + "grad_norm": 1.0577383041381836, + "learning_rate": 3.787772194304858e-05, + "loss": 0.25103809356689455, + "step": 72400 + }, + { + "epoch": 24.288131334282603, + "grad_norm": 0.9327830672264099, + "learning_rate": 3.786097152428811e-05, + "loss": 0.2529195785522461, + "step": 72500 + }, + { + "epoch": 24.321634977803836, + "grad_norm": 0.941429078578949, + "learning_rate": 3.784422110552764e-05, + "loss": 0.25365312576293947, + "step": 72600 + }, + { + "epoch": 24.355138621325068, + "grad_norm": 0.9718444347381592, + "learning_rate": 3.7827470686767166e-05, + "loss": 0.25447874069213866, + "step": 72700 + }, + { + "epoch": 24.3886422648463, + "grad_norm": 1.0243566036224365, + "learning_rate": 3.78107202680067e-05, + "loss": 0.2550676727294922, + "step": 72800 + }, + { + "epoch": 24.422145908367536, + "grad_norm": 1.0174282789230347, + "learning_rate": 3.779396984924624e-05, + "loss": 0.25832677841186524, + "step": 72900 + }, + { + "epoch": 24.45564955188877, + "grad_norm": 0.9675871133804321, + "learning_rate": 3.777738693467337e-05, + "loss": 0.2548235511779785, + "step": 73000 + }, + { + "epoch": 24.48915319541, + "grad_norm": 1.095906138420105, + "learning_rate": 3.77606365159129e-05, + "loss": 0.2557443809509277, + "step": 73100 + }, + { + "epoch": 24.522656838931233, + "grad_norm": 0.8963753581047058, + "learning_rate": 3.7743886097152434e-05, + "loss": 0.25586761474609376, + "step": 73200 + }, + { + "epoch": 24.556160482452466, + "grad_norm": 0.8457279801368713, + "learning_rate": 3.772713567839196e-05, + "loss": 0.2581898307800293, + "step": 73300 + }, + { + "epoch": 24.589664125973698, + "grad_norm": 1.0806199312210083, + "learning_rate": 3.771038525963149e-05, + "loss": 0.25776454925537107, + "step": 73400 + }, + { + "epoch": 24.623167769494934, + "grad_norm": 1.117748737335205, + "learning_rate": 3.769363484087102e-05, + "loss": 0.25891387939453125, + "step": 73500 + }, + { + "epoch": 24.656671413016166, + "grad_norm": 1.022865653038025, + "learning_rate": 3.7676884422110556e-05, + "loss": 0.25816925048828127, + "step": 73600 + }, + { + "epoch": 24.6901750565374, + "grad_norm": 1.0696437358856201, + "learning_rate": 3.7660134003350085e-05, + "loss": 0.2563637351989746, + "step": 73700 + }, + { + "epoch": 24.72367870005863, + "grad_norm": 0.9979215860366821, + "learning_rate": 3.7643383584589614e-05, + "loss": 0.25864744186401367, + "step": 73800 + }, + { + "epoch": 24.757182343579863, + "grad_norm": 1.0636203289031982, + "learning_rate": 3.762663316582914e-05, + "loss": 0.25936466217041015, + "step": 73900 + }, + { + "epoch": 24.790685987101096, + "grad_norm": 1.0561468601226807, + "learning_rate": 3.760988274706868e-05, + "loss": 0.2596282005310059, + "step": 74000 + }, + { + "epoch": 24.82418963062233, + "grad_norm": 1.0279403924942017, + "learning_rate": 3.7593132328308214e-05, + "loss": 0.25866455078125, + "step": 74100 + }, + { + "epoch": 24.857693274143564, + "grad_norm": 1.0280523300170898, + "learning_rate": 3.757638190954774e-05, + "loss": 0.2624567985534668, + "step": 74200 + }, + { + "epoch": 24.891196917664796, + "grad_norm": 1.0582387447357178, + "learning_rate": 3.755963149078727e-05, + "loss": 0.26197324752807616, + "step": 74300 + }, + { + "epoch": 24.92470056118603, + "grad_norm": 0.9122918248176575, + "learning_rate": 3.75428810720268e-05, + "loss": 0.25970455169677736, + "step": 74400 + }, + { + "epoch": 24.95820420470726, + "grad_norm": 1.223061442375183, + "learning_rate": 3.7526130653266336e-05, + "loss": 0.2615465927124023, + "step": 74500 + }, + { + "epoch": 24.991707848228494, + "grad_norm": 0.9313095808029175, + "learning_rate": 3.7509380234505865e-05, + "loss": 0.26078268051147463, + "step": 74600 + }, + { + "epoch": 25.025127732640925, + "grad_norm": 0.9277160167694092, + "learning_rate": 3.7492629815745393e-05, + "loss": 0.2467232322692871, + "step": 74700 + }, + { + "epoch": 25.058631376162158, + "grad_norm": 0.8967624306678772, + "learning_rate": 3.747587939698492e-05, + "loss": 0.2427264404296875, + "step": 74800 + }, + { + "epoch": 25.09213501968339, + "grad_norm": 0.9991577863693237, + "learning_rate": 3.745912897822446e-05, + "loss": 0.24398237228393554, + "step": 74900 + }, + { + "epoch": 25.125638663204622, + "grad_norm": 0.9068632125854492, + "learning_rate": 3.74425460636516e-05, + "loss": 0.24407464981079102, + "step": 75000 + }, + { + "epoch": 25.159142306725858, + "grad_norm": 0.9610689878463745, + "learning_rate": 3.7425795644891126e-05, + "loss": 0.2451825523376465, + "step": 75100 + }, + { + "epoch": 25.19264595024709, + "grad_norm": 1.0655577182769775, + "learning_rate": 3.7409045226130655e-05, + "loss": 0.24775781631469726, + "step": 75200 + }, + { + "epoch": 25.226149593768323, + "grad_norm": 0.9166316390037537, + "learning_rate": 3.739229480737019e-05, + "loss": 0.24586162567138672, + "step": 75300 + }, + { + "epoch": 25.259653237289555, + "grad_norm": 1.0330859422683716, + "learning_rate": 3.737554438860972e-05, + "loss": 0.2476130485534668, + "step": 75400 + }, + { + "epoch": 25.293156880810788, + "grad_norm": 0.9790452122688293, + "learning_rate": 3.735879396984925e-05, + "loss": 0.24896875381469727, + "step": 75500 + }, + { + "epoch": 25.32666052433202, + "grad_norm": 0.9078829288482666, + "learning_rate": 3.734204355108878e-05, + "loss": 0.25146854400634766, + "step": 75600 + }, + { + "epoch": 25.360164167853252, + "grad_norm": 1.0172176361083984, + "learning_rate": 3.732529313232831e-05, + "loss": 0.24892644882202147, + "step": 75700 + }, + { + "epoch": 25.39366781137449, + "grad_norm": 0.8392038941383362, + "learning_rate": 3.730854271356784e-05, + "loss": 0.2486979866027832, + "step": 75800 + }, + { + "epoch": 25.42717145489572, + "grad_norm": 1.120992660522461, + "learning_rate": 3.729179229480737e-05, + "loss": 0.2500802612304687, + "step": 75900 + }, + { + "epoch": 25.460675098416953, + "grad_norm": 0.9740986227989197, + "learning_rate": 3.727520938023451e-05, + "loss": 0.2497385025024414, + "step": 76000 + }, + { + "epoch": 25.494178741938185, + "grad_norm": 1.1447396278381348, + "learning_rate": 3.725845896147404e-05, + "loss": 0.2524580001831055, + "step": 76100 + }, + { + "epoch": 25.527682385459418, + "grad_norm": 0.8573219776153564, + "learning_rate": 3.7241708542713574e-05, + "loss": 0.2522186470031738, + "step": 76200 + }, + { + "epoch": 25.56118602898065, + "grad_norm": 1.0129204988479614, + "learning_rate": 3.72249581239531e-05, + "loss": 0.2548684501647949, + "step": 76300 + }, + { + "epoch": 25.594689672501886, + "grad_norm": 0.9877455830574036, + "learning_rate": 3.720820770519263e-05, + "loss": 0.2520929527282715, + "step": 76400 + }, + { + "epoch": 25.62819331602312, + "grad_norm": 0.9686979651451111, + "learning_rate": 3.719145728643216e-05, + "loss": 0.25263065338134766, + "step": 76500 + }, + { + "epoch": 25.66169695954435, + "grad_norm": 0.9908387660980225, + "learning_rate": 3.7174706867671696e-05, + "loss": 0.25347740173339844, + "step": 76600 + }, + { + "epoch": 25.695200603065583, + "grad_norm": 1.006608009338379, + "learning_rate": 3.7157956448911225e-05, + "loss": 0.2546247863769531, + "step": 76700 + }, + { + "epoch": 25.728704246586815, + "grad_norm": 1.003769874572754, + "learning_rate": 3.7141206030150754e-05, + "loss": 0.253816089630127, + "step": 76800 + }, + { + "epoch": 25.762207890108048, + "grad_norm": 1.0374062061309814, + "learning_rate": 3.712445561139028e-05, + "loss": 0.25663318634033205, + "step": 76900 + }, + { + "epoch": 25.795711533629284, + "grad_norm": 1.0362064838409424, + "learning_rate": 3.710770519262982e-05, + "loss": 0.2567397880554199, + "step": 77000 + }, + { + "epoch": 25.829215177150516, + "grad_norm": 1.0892760753631592, + "learning_rate": 3.709095477386935e-05, + "loss": 0.25798879623413085, + "step": 77100 + }, + { + "epoch": 25.86271882067175, + "grad_norm": 1.049902081489563, + "learning_rate": 3.7074204355108876e-05, + "loss": 0.25775598526000976, + "step": 77200 + }, + { + "epoch": 25.89622246419298, + "grad_norm": 0.8818158507347107, + "learning_rate": 3.705745393634841e-05, + "loss": 0.2554671287536621, + "step": 77300 + }, + { + "epoch": 25.929726107714213, + "grad_norm": 1.0922232866287231, + "learning_rate": 3.704070351758795e-05, + "loss": 0.25704565048217776, + "step": 77400 + }, + { + "epoch": 25.963229751235446, + "grad_norm": 0.9811676144599915, + "learning_rate": 3.7023953098827476e-05, + "loss": 0.25583274841308595, + "step": 77500 + }, + { + "epoch": 25.99673339475668, + "grad_norm": 1.044572353363037, + "learning_rate": 3.7007202680067004e-05, + "loss": 0.25744909286499024, + "step": 77600 + }, + { + "epoch": 26.03015327916911, + "grad_norm": 0.790084958076477, + "learning_rate": 3.699045226130653e-05, + "loss": 0.23935884475708008, + "step": 77700 + }, + { + "epoch": 26.063656922690342, + "grad_norm": 0.9131903052330017, + "learning_rate": 3.697370184254607e-05, + "loss": 0.2395966339111328, + "step": 77800 + }, + { + "epoch": 26.097160566211574, + "grad_norm": 1.0206575393676758, + "learning_rate": 3.69569514237856e-05, + "loss": 0.23894302368164064, + "step": 77900 + }, + { + "epoch": 26.13066420973281, + "grad_norm": 0.9167901873588562, + "learning_rate": 3.6940201005025127e-05, + "loss": 0.24095657348632812, + "step": 78000 + }, + { + "epoch": 26.164167853254042, + "grad_norm": 0.9756499528884888, + "learning_rate": 3.6923450586264655e-05, + "loss": 0.24229476928710938, + "step": 78100 + }, + { + "epoch": 26.197671496775275, + "grad_norm": 1.1261674165725708, + "learning_rate": 3.690670016750419e-05, + "loss": 0.24467144012451172, + "step": 78200 + }, + { + "epoch": 26.231175140296507, + "grad_norm": 0.8712000846862793, + "learning_rate": 3.688994974874372e-05, + "loss": 0.2426918601989746, + "step": 78300 + }, + { + "epoch": 26.26467878381774, + "grad_norm": 0.9853079915046692, + "learning_rate": 3.687319932998325e-05, + "loss": 0.2432308578491211, + "step": 78400 + }, + { + "epoch": 26.298182427338972, + "grad_norm": 0.9844798445701599, + "learning_rate": 3.6856448911222784e-05, + "loss": 0.24566902160644533, + "step": 78500 + }, + { + "epoch": 26.331686070860208, + "grad_norm": 0.991397500038147, + "learning_rate": 3.683969849246231e-05, + "loss": 0.24585660934448242, + "step": 78600 + }, + { + "epoch": 26.36518971438144, + "grad_norm": 0.9551209211349487, + "learning_rate": 3.682294807370185e-05, + "loss": 0.24546436309814454, + "step": 78700 + }, + { + "epoch": 26.398693357902673, + "grad_norm": 1.0218653678894043, + "learning_rate": 3.680619765494138e-05, + "loss": 0.2468564987182617, + "step": 78800 + }, + { + "epoch": 26.432197001423905, + "grad_norm": 0.879303514957428, + "learning_rate": 3.6789447236180906e-05, + "loss": 0.24688074111938477, + "step": 78900 + }, + { + "epoch": 26.465700644945137, + "grad_norm": 0.9550554156303406, + "learning_rate": 3.6772696817420435e-05, + "loss": 0.24929559707641602, + "step": 79000 + }, + { + "epoch": 26.49920428846637, + "grad_norm": 1.092371940612793, + "learning_rate": 3.675594639865997e-05, + "loss": 0.2490665817260742, + "step": 79100 + }, + { + "epoch": 26.532707931987602, + "grad_norm": 0.9425039887428284, + "learning_rate": 3.67391959798995e-05, + "loss": 0.24648136138916016, + "step": 79200 + }, + { + "epoch": 26.566211575508838, + "grad_norm": 0.9212557077407837, + "learning_rate": 3.672244556113903e-05, + "loss": 0.24588151931762695, + "step": 79300 + }, + { + "epoch": 26.59971521903007, + "grad_norm": 1.0376055240631104, + "learning_rate": 3.670569514237856e-05, + "loss": 0.24943052291870116, + "step": 79400 + }, + { + "epoch": 26.633218862551303, + "grad_norm": 0.9473478198051453, + "learning_rate": 3.668894472361809e-05, + "loss": 0.24888269424438478, + "step": 79500 + }, + { + "epoch": 26.666722506072535, + "grad_norm": 1.052951455116272, + "learning_rate": 3.667219430485762e-05, + "loss": 0.24891986846923828, + "step": 79600 + }, + { + "epoch": 26.700226149593767, + "grad_norm": 1.1100990772247314, + "learning_rate": 3.665544388609715e-05, + "loss": 0.2513142776489258, + "step": 79700 + }, + { + "epoch": 26.733729793115, + "grad_norm": 0.9589593410491943, + "learning_rate": 3.6638693467336686e-05, + "loss": 0.24993154525756836, + "step": 79800 + }, + { + "epoch": 26.767233436636236, + "grad_norm": 0.9308981895446777, + "learning_rate": 3.662194304857622e-05, + "loss": 0.2495902442932129, + "step": 79900 + }, + { + "epoch": 26.800737080157468, + "grad_norm": 1.0080679655075073, + "learning_rate": 3.6605360134003354e-05, + "loss": 0.25091459274291994, + "step": 80000 + }, + { + "epoch": 26.8342407236787, + "grad_norm": 0.965578556060791, + "learning_rate": 3.658860971524288e-05, + "loss": 0.2524791526794434, + "step": 80100 + }, + { + "epoch": 26.867744367199933, + "grad_norm": 1.0109574794769287, + "learning_rate": 3.657185929648241e-05, + "loss": 0.2515005111694336, + "step": 80200 + }, + { + "epoch": 26.901248010721165, + "grad_norm": 1.0662031173706055, + "learning_rate": 3.655510887772195e-05, + "loss": 0.25569900512695315, + "step": 80300 + }, + { + "epoch": 26.934751654242397, + "grad_norm": 1.0011720657348633, + "learning_rate": 3.6538358458961476e-05, + "loss": 0.25127042770385744, + "step": 80400 + }, + { + "epoch": 26.968255297763633, + "grad_norm": 1.0007758140563965, + "learning_rate": 3.6521608040201005e-05, + "loss": 0.25374698638916016, + "step": 80500 + }, + { + "epoch": 27.00167518217606, + "grad_norm": 0.8360596895217896, + "learning_rate": 3.6504857621440534e-05, + "loss": 0.2519091033935547, + "step": 80600 + }, + { + "epoch": 27.035178825697294, + "grad_norm": 0.772354781627655, + "learning_rate": 3.648810720268007e-05, + "loss": 0.2350589370727539, + "step": 80700 + }, + { + "epoch": 27.068682469218526, + "grad_norm": 0.9291853904724121, + "learning_rate": 3.6471356783919605e-05, + "loss": 0.23687738418579102, + "step": 80800 + }, + { + "epoch": 27.102186112739762, + "grad_norm": 0.8280290365219116, + "learning_rate": 3.6454606365159134e-05, + "loss": 0.23724706649780272, + "step": 80900 + }, + { + "epoch": 27.135689756260994, + "grad_norm": 1.0114185810089111, + "learning_rate": 3.643785594639866e-05, + "loss": 0.2386191940307617, + "step": 81000 + }, + { + "epoch": 27.169193399782227, + "grad_norm": 0.8960608839988708, + "learning_rate": 3.642110552763819e-05, + "loss": 0.23746776580810547, + "step": 81100 + }, + { + "epoch": 27.20269704330346, + "grad_norm": 0.9211316704750061, + "learning_rate": 3.640435510887773e-05, + "loss": 0.24118051528930665, + "step": 81200 + }, + { + "epoch": 27.23620068682469, + "grad_norm": 0.9914082884788513, + "learning_rate": 3.6387604690117256e-05, + "loss": 0.2407957649230957, + "step": 81300 + }, + { + "epoch": 27.269704330345924, + "grad_norm": 0.8905548453330994, + "learning_rate": 3.6370854271356785e-05, + "loss": 0.23928272247314453, + "step": 81400 + }, + { + "epoch": 27.30320797386716, + "grad_norm": 0.8846296072006226, + "learning_rate": 3.635427135678392e-05, + "loss": 0.24042049407958985, + "step": 81500 + }, + { + "epoch": 27.336711617388392, + "grad_norm": 0.9076329469680786, + "learning_rate": 3.633752093802345e-05, + "loss": 0.24250953674316406, + "step": 81600 + }, + { + "epoch": 27.370215260909625, + "grad_norm": 1.1054998636245728, + "learning_rate": 3.632077051926298e-05, + "loss": 0.2428689956665039, + "step": 81700 + }, + { + "epoch": 27.403718904430857, + "grad_norm": 0.9182295799255371, + "learning_rate": 3.630402010050251e-05, + "loss": 0.24241937637329103, + "step": 81800 + }, + { + "epoch": 27.43722254795209, + "grad_norm": 1.0540192127227783, + "learning_rate": 3.6287269681742046e-05, + "loss": 0.24241340637207032, + "step": 81900 + }, + { + "epoch": 27.47072619147332, + "grad_norm": 0.9639661312103271, + "learning_rate": 3.6270519262981575e-05, + "loss": 0.24282842636108398, + "step": 82000 + }, + { + "epoch": 27.504229834994554, + "grad_norm": 0.8837372064590454, + "learning_rate": 3.625376884422111e-05, + "loss": 0.24227666854858398, + "step": 82100 + }, + { + "epoch": 27.53773347851579, + "grad_norm": 0.8825430274009705, + "learning_rate": 3.623701842546064e-05, + "loss": 0.24317176818847655, + "step": 82200 + }, + { + "epoch": 27.571237122037022, + "grad_norm": 1.0860276222229004, + "learning_rate": 3.622026800670017e-05, + "loss": 0.2448468780517578, + "step": 82300 + }, + { + "epoch": 27.604740765558255, + "grad_norm": 1.0138317346572876, + "learning_rate": 3.6203517587939704e-05, + "loss": 0.24316675186157227, + "step": 82400 + }, + { + "epoch": 27.638244409079487, + "grad_norm": 1.0941250324249268, + "learning_rate": 3.618676716917923e-05, + "loss": 0.2473929786682129, + "step": 82500 + }, + { + "epoch": 27.67174805260072, + "grad_norm": 0.8989108800888062, + "learning_rate": 3.617001675041876e-05, + "loss": 0.247222900390625, + "step": 82600 + }, + { + "epoch": 27.70525169612195, + "grad_norm": 1.0026638507843018, + "learning_rate": 3.615326633165829e-05, + "loss": 0.24576572418212891, + "step": 82700 + }, + { + "epoch": 27.738755339643188, + "grad_norm": 1.0626496076583862, + "learning_rate": 3.6136515912897826e-05, + "loss": 0.2481866455078125, + "step": 82800 + }, + { + "epoch": 27.77225898316442, + "grad_norm": 0.8049838542938232, + "learning_rate": 3.6119765494137355e-05, + "loss": 0.24766799926757813, + "step": 82900 + }, + { + "epoch": 27.805762626685652, + "grad_norm": 1.0565505027770996, + "learning_rate": 3.6103015075376883e-05, + "loss": 0.24823820114135742, + "step": 83000 + }, + { + "epoch": 27.839266270206885, + "grad_norm": 1.0819406509399414, + "learning_rate": 3.608626465661642e-05, + "loss": 0.24928997039794923, + "step": 83100 + }, + { + "epoch": 27.872769913728117, + "grad_norm": 1.014066457748413, + "learning_rate": 3.606951423785595e-05, + "loss": 0.24671865463256837, + "step": 83200 + }, + { + "epoch": 27.90627355724935, + "grad_norm": 1.002631425857544, + "learning_rate": 3.6052763819095483e-05, + "loss": 0.24837955474853515, + "step": 83300 + }, + { + "epoch": 27.939777200770585, + "grad_norm": 1.0699118375778198, + "learning_rate": 3.603601340033501e-05, + "loss": 0.25022062301635745, + "step": 83400 + }, + { + "epoch": 27.973280844291818, + "grad_norm": 0.9003764986991882, + "learning_rate": 3.601926298157454e-05, + "loss": 0.24779138565063477, + "step": 83500 + }, + { + "epoch": 28.006700728704246, + "grad_norm": 0.7831597924232483, + "learning_rate": 3.600251256281407e-05, + "loss": 0.24304958343505859, + "step": 83600 + }, + { + "epoch": 28.040204372225478, + "grad_norm": 0.8876057267189026, + "learning_rate": 3.5985762144053605e-05, + "loss": 0.23251798629760742, + "step": 83700 + }, + { + "epoch": 28.073708015746714, + "grad_norm": 0.8161166906356812, + "learning_rate": 3.5969011725293134e-05, + "loss": 0.23175537109375, + "step": 83800 + }, + { + "epoch": 28.107211659267946, + "grad_norm": 1.0348833799362183, + "learning_rate": 3.595226130653266e-05, + "loss": 0.23300014495849608, + "step": 83900 + }, + { + "epoch": 28.14071530278918, + "grad_norm": 0.9496212601661682, + "learning_rate": 3.5935678391959796e-05, + "loss": 0.23465946197509766, + "step": 84000 + }, + { + "epoch": 28.17421894631041, + "grad_norm": 0.8523275256156921, + "learning_rate": 3.591892797319933e-05, + "loss": 0.23583173751831055, + "step": 84100 + }, + { + "epoch": 28.207722589831643, + "grad_norm": 0.9591325521469116, + "learning_rate": 3.590217755443887e-05, + "loss": 0.2353810691833496, + "step": 84200 + }, + { + "epoch": 28.241226233352876, + "grad_norm": 0.876011312007904, + "learning_rate": 3.5885427135678396e-05, + "loss": 0.23749792098999023, + "step": 84300 + }, + { + "epoch": 28.27472987687411, + "grad_norm": 0.9948890209197998, + "learning_rate": 3.5868676716917924e-05, + "loss": 0.23812158584594725, + "step": 84400 + }, + { + "epoch": 28.308233520395344, + "grad_norm": 0.99249267578125, + "learning_rate": 3.585192629815745e-05, + "loss": 0.23765924453735351, + "step": 84500 + }, + { + "epoch": 28.341737163916576, + "grad_norm": 0.8422896265983582, + "learning_rate": 3.583517587939699e-05, + "loss": 0.2388518714904785, + "step": 84600 + }, + { + "epoch": 28.37524080743781, + "grad_norm": 1.0225242376327515, + "learning_rate": 3.581842546063652e-05, + "loss": 0.2379816436767578, + "step": 84700 + }, + { + "epoch": 28.40874445095904, + "grad_norm": 0.9493758082389832, + "learning_rate": 3.5801675041876047e-05, + "loss": 0.23900142669677735, + "step": 84800 + }, + { + "epoch": 28.442248094480274, + "grad_norm": 1.0754547119140625, + "learning_rate": 3.578492462311558e-05, + "loss": 0.2420096778869629, + "step": 84900 + }, + { + "epoch": 28.475751738001506, + "grad_norm": 1.1404248476028442, + "learning_rate": 3.576817420435511e-05, + "loss": 0.2387169647216797, + "step": 85000 + }, + { + "epoch": 28.509255381522742, + "grad_norm": 1.0831667184829712, + "learning_rate": 3.575142378559464e-05, + "loss": 0.23977863311767578, + "step": 85100 + }, + { + "epoch": 28.542759025043974, + "grad_norm": 0.9713730812072754, + "learning_rate": 3.573467336683417e-05, + "loss": 0.24276636123657228, + "step": 85200 + }, + { + "epoch": 28.576262668565207, + "grad_norm": 0.8892617225646973, + "learning_rate": 3.5717922948073704e-05, + "loss": 0.24079540252685547, + "step": 85300 + }, + { + "epoch": 28.60976631208644, + "grad_norm": 0.90485680103302, + "learning_rate": 3.570117252931324e-05, + "loss": 0.23991119384765625, + "step": 85400 + }, + { + "epoch": 28.64326995560767, + "grad_norm": 0.8535875678062439, + "learning_rate": 3.568442211055277e-05, + "loss": 0.24252616882324218, + "step": 85500 + }, + { + "epoch": 28.676773599128904, + "grad_norm": 1.1108918190002441, + "learning_rate": 3.56676716917923e-05, + "loss": 0.24145748138427733, + "step": 85600 + }, + { + "epoch": 28.71027724265014, + "grad_norm": 1.0389022827148438, + "learning_rate": 3.5650921273031826e-05, + "loss": 0.24423345565795898, + "step": 85700 + }, + { + "epoch": 28.743780886171372, + "grad_norm": 1.0552116632461548, + "learning_rate": 3.563417085427136e-05, + "loss": 0.24410188674926758, + "step": 85800 + }, + { + "epoch": 28.777284529692604, + "grad_norm": 0.9229023456573486, + "learning_rate": 3.561742043551089e-05, + "loss": 0.24257204055786133, + "step": 85900 + }, + { + "epoch": 28.810788173213837, + "grad_norm": 1.0788532495498657, + "learning_rate": 3.560067001675042e-05, + "loss": 0.24557861328125, + "step": 86000 + }, + { + "epoch": 28.84429181673507, + "grad_norm": 0.8226192593574524, + "learning_rate": 3.558391959798995e-05, + "loss": 0.24487424850463868, + "step": 86100 + }, + { + "epoch": 28.8777954602563, + "grad_norm": 0.9678732752799988, + "learning_rate": 3.5567169179229484e-05, + "loss": 0.24371047973632812, + "step": 86200 + }, + { + "epoch": 28.911299103777537, + "grad_norm": 0.9942400455474854, + "learning_rate": 3.555041876046901e-05, + "loss": 0.24467437744140624, + "step": 86300 + }, + { + "epoch": 28.94480274729877, + "grad_norm": 1.050825595855713, + "learning_rate": 3.553366834170854e-05, + "loss": 0.2451385498046875, + "step": 86400 + }, + { + "epoch": 28.978306390820002, + "grad_norm": 0.9947119951248169, + "learning_rate": 3.551691792294807e-05, + "loss": 0.24689924240112304, + "step": 86500 + }, + { + "epoch": 29.01172627523243, + "grad_norm": 0.7659996151924133, + "learning_rate": 3.5500167504187606e-05, + "loss": 0.23850542068481445, + "step": 86600 + }, + { + "epoch": 29.045229918753666, + "grad_norm": 0.7991949915885925, + "learning_rate": 3.548341708542714e-05, + "loss": 0.23052330017089845, + "step": 86700 + }, + { + "epoch": 29.0787335622749, + "grad_norm": 0.9375367760658264, + "learning_rate": 3.546666666666667e-05, + "loss": 0.228839168548584, + "step": 86800 + }, + { + "epoch": 29.11223720579613, + "grad_norm": 1.0139492750167847, + "learning_rate": 3.54499162479062e-05, + "loss": 0.2321438217163086, + "step": 86900 + }, + { + "epoch": 29.145740849317363, + "grad_norm": 0.8823564648628235, + "learning_rate": 3.543316582914573e-05, + "loss": 0.23002294540405274, + "step": 87000 + }, + { + "epoch": 29.179244492838595, + "grad_norm": 0.8460071086883545, + "learning_rate": 3.5416415410385264e-05, + "loss": 0.23179996490478516, + "step": 87100 + }, + { + "epoch": 29.212748136359828, + "grad_norm": 0.9480848908424377, + "learning_rate": 3.539966499162479e-05, + "loss": 0.23330198287963866, + "step": 87200 + }, + { + "epoch": 29.246251779881064, + "grad_norm": 0.9003339409828186, + "learning_rate": 3.538291457286432e-05, + "loss": 0.2348067855834961, + "step": 87300 + }, + { + "epoch": 29.279755423402296, + "grad_norm": 0.9011369943618774, + "learning_rate": 3.536616415410386e-05, + "loss": 0.23475120544433595, + "step": 87400 + }, + { + "epoch": 29.31325906692353, + "grad_norm": 1.102575421333313, + "learning_rate": 3.5349413735343386e-05, + "loss": 0.23566722869873047, + "step": 87500 + }, + { + "epoch": 29.34676271044476, + "grad_norm": 1.0036569833755493, + "learning_rate": 3.5332663316582915e-05, + "loss": 0.2358757209777832, + "step": 87600 + }, + { + "epoch": 29.380266353965993, + "grad_norm": 0.9289223551750183, + "learning_rate": 3.531591289782244e-05, + "loss": 0.23525848388671874, + "step": 87700 + }, + { + "epoch": 29.413769997487226, + "grad_norm": 0.9896803498268127, + "learning_rate": 3.529916247906198e-05, + "loss": 0.23644231796264648, + "step": 87800 + }, + { + "epoch": 29.447273641008458, + "grad_norm": 0.9522982239723206, + "learning_rate": 3.5282412060301515e-05, + "loss": 0.23636116027832033, + "step": 87900 + }, + { + "epoch": 29.480777284529694, + "grad_norm": 0.9571079611778259, + "learning_rate": 3.526582914572865e-05, + "loss": 0.23850887298583984, + "step": 88000 + }, + { + "epoch": 29.514280928050926, + "grad_norm": 1.0205976963043213, + "learning_rate": 3.5249078726968176e-05, + "loss": 0.23928991317749024, + "step": 88100 + }, + { + "epoch": 29.54778457157216, + "grad_norm": 1.0385000705718994, + "learning_rate": 3.5232328308207705e-05, + "loss": 0.2364453125, + "step": 88200 + }, + { + "epoch": 29.58128821509339, + "grad_norm": 0.8799936771392822, + "learning_rate": 3.521557788944724e-05, + "loss": 0.2379269027709961, + "step": 88300 + }, + { + "epoch": 29.614791858614623, + "grad_norm": 1.0788037776947021, + "learning_rate": 3.519882747068677e-05, + "loss": 0.23958860397338866, + "step": 88400 + }, + { + "epoch": 29.648295502135856, + "grad_norm": 0.8725781440734863, + "learning_rate": 3.51820770519263e-05, + "loss": 0.23952722549438477, + "step": 88500 + }, + { + "epoch": 29.68179914565709, + "grad_norm": 1.0508238077163696, + "learning_rate": 3.516532663316583e-05, + "loss": 0.2397722053527832, + "step": 88600 + }, + { + "epoch": 29.715302789178324, + "grad_norm": 1.098661184310913, + "learning_rate": 3.514857621440536e-05, + "loss": 0.2380986213684082, + "step": 88700 + }, + { + "epoch": 29.748806432699556, + "grad_norm": 1.1082944869995117, + "learning_rate": 3.513182579564489e-05, + "loss": 0.2417365074157715, + "step": 88800 + }, + { + "epoch": 29.78231007622079, + "grad_norm": 0.9109951853752136, + "learning_rate": 3.511507537688443e-05, + "loss": 0.23964044570922852, + "step": 88900 + }, + { + "epoch": 29.81581371974202, + "grad_norm": 1.106863021850586, + "learning_rate": 3.5098324958123956e-05, + "loss": 0.24028875350952147, + "step": 89000 + }, + { + "epoch": 29.849317363263253, + "grad_norm": 0.9252721667289734, + "learning_rate": 3.5081574539363484e-05, + "loss": 0.24027196884155275, + "step": 89100 + }, + { + "epoch": 29.88282100678449, + "grad_norm": 1.18505859375, + "learning_rate": 3.506482412060302e-05, + "loss": 0.2418280601501465, + "step": 89200 + }, + { + "epoch": 29.91632465030572, + "grad_norm": 0.956193745136261, + "learning_rate": 3.504807370184255e-05, + "loss": 0.24323488235473634, + "step": 89300 + }, + { + "epoch": 29.949828293826954, + "grad_norm": 0.9459329843521118, + "learning_rate": 3.503132328308208e-05, + "loss": 0.24398193359375, + "step": 89400 + }, + { + "epoch": 29.983331937348186, + "grad_norm": 0.9862803816795349, + "learning_rate": 3.5014572864321607e-05, + "loss": 0.2418046760559082, + "step": 89500 + }, + { + "epoch": 30.016751821760618, + "grad_norm": 0.9011918902397156, + "learning_rate": 3.499782244556114e-05, + "loss": 0.23376155853271485, + "step": 89600 + }, + { + "epoch": 30.05025546528185, + "grad_norm": 0.9960854649543762, + "learning_rate": 3.498107202680067e-05, + "loss": 0.22885730743408203, + "step": 89700 + }, + { + "epoch": 30.083759108803083, + "grad_norm": 0.953056275844574, + "learning_rate": 3.49643216080402e-05, + "loss": 0.22713994979858398, + "step": 89800 + }, + { + "epoch": 30.117262752324315, + "grad_norm": 0.8877431154251099, + "learning_rate": 3.494757118927973e-05, + "loss": 0.22972366333007813, + "step": 89900 + }, + { + "epoch": 30.150766395845547, + "grad_norm": 0.9188148379325867, + "learning_rate": 3.493115577889448e-05, + "loss": 0.22967748641967772, + "step": 90000 + }, + { + "epoch": 30.18427003936678, + "grad_norm": 0.8880020380020142, + "learning_rate": 3.491440536013401e-05, + "loss": 0.22878494262695312, + "step": 90100 + }, + { + "epoch": 30.217773682888016, + "grad_norm": 0.9602766036987305, + "learning_rate": 3.4897654941373536e-05, + "loss": 0.23181842803955077, + "step": 90200 + }, + { + "epoch": 30.251277326409248, + "grad_norm": 0.8411327600479126, + "learning_rate": 3.4880904522613065e-05, + "loss": 0.23128870010375976, + "step": 90300 + }, + { + "epoch": 30.28478096993048, + "grad_norm": 0.9455945491790771, + "learning_rate": 3.48641541038526e-05, + "loss": 0.22971813201904298, + "step": 90400 + }, + { + "epoch": 30.318284613451713, + "grad_norm": 1.0151312351226807, + "learning_rate": 3.484740368509213e-05, + "loss": 0.2330830955505371, + "step": 90500 + }, + { + "epoch": 30.351788256972945, + "grad_norm": 0.9535360932350159, + "learning_rate": 3.483065326633166e-05, + "loss": 0.2313951873779297, + "step": 90600 + }, + { + "epoch": 30.385291900494177, + "grad_norm": 1.0460865497589111, + "learning_rate": 3.481390284757119e-05, + "loss": 0.23312372207641602, + "step": 90700 + }, + { + "epoch": 30.418795544015413, + "grad_norm": 0.9364484548568726, + "learning_rate": 3.479715242881072e-05, + "loss": 0.2326444625854492, + "step": 90800 + }, + { + "epoch": 30.452299187536646, + "grad_norm": 1.133334994316101, + "learning_rate": 3.478040201005025e-05, + "loss": 0.23389068603515625, + "step": 90900 + }, + { + "epoch": 30.485802831057878, + "grad_norm": 0.9046189188957214, + "learning_rate": 3.476365159128979e-05, + "loss": 0.23185604095458984, + "step": 91000 + }, + { + "epoch": 30.51930647457911, + "grad_norm": 0.7889045476913452, + "learning_rate": 3.4746901172529316e-05, + "loss": 0.23226310729980468, + "step": 91100 + }, + { + "epoch": 30.552810118100343, + "grad_norm": 0.8806297183036804, + "learning_rate": 3.4730150753768845e-05, + "loss": 0.23628852844238282, + "step": 91200 + }, + { + "epoch": 30.586313761621575, + "grad_norm": 0.8764693737030029, + "learning_rate": 3.471340033500838e-05, + "loss": 0.23575132369995117, + "step": 91300 + }, + { + "epoch": 30.619817405142808, + "grad_norm": 0.8656399846076965, + "learning_rate": 3.469664991624791e-05, + "loss": 0.23674060821533202, + "step": 91400 + }, + { + "epoch": 30.653321048664044, + "grad_norm": 1.0599033832550049, + "learning_rate": 3.467989949748744e-05, + "loss": 0.23605079650878907, + "step": 91500 + }, + { + "epoch": 30.686824692185276, + "grad_norm": 0.994979202747345, + "learning_rate": 3.4663149078726967e-05, + "loss": 0.23578712463378906, + "step": 91600 + }, + { + "epoch": 30.72032833570651, + "grad_norm": 0.9587284326553345, + "learning_rate": 3.46463986599665e-05, + "loss": 0.23613155364990235, + "step": 91700 + }, + { + "epoch": 30.75383197922774, + "grad_norm": 0.8443505764007568, + "learning_rate": 3.462964824120603e-05, + "loss": 0.23871355056762694, + "step": 91800 + }, + { + "epoch": 30.787335622748973, + "grad_norm": 1.099453091621399, + "learning_rate": 3.461289782244556e-05, + "loss": 0.24006723403930663, + "step": 91900 + }, + { + "epoch": 30.820839266270205, + "grad_norm": 1.0319575071334839, + "learning_rate": 3.459614740368509e-05, + "loss": 0.23815488815307617, + "step": 92000 + }, + { + "epoch": 30.85434290979144, + "grad_norm": 1.0333192348480225, + "learning_rate": 3.4579396984924624e-05, + "loss": 0.23808452606201172, + "step": 92100 + }, + { + "epoch": 30.887846553312674, + "grad_norm": 0.9881009459495544, + "learning_rate": 3.456264656616416e-05, + "loss": 0.2392608642578125, + "step": 92200 + }, + { + "epoch": 30.921350196833906, + "grad_norm": 1.0562998056411743, + "learning_rate": 3.454589614740369e-05, + "loss": 0.2401527976989746, + "step": 92300 + }, + { + "epoch": 30.95485384035514, + "grad_norm": 1.0023164749145508, + "learning_rate": 3.452914572864322e-05, + "loss": 0.23784709930419923, + "step": 92400 + }, + { + "epoch": 30.98835748387637, + "grad_norm": 0.8636544942855835, + "learning_rate": 3.451239530988275e-05, + "loss": 0.2380337142944336, + "step": 92500 + }, + { + "epoch": 31.021777368288802, + "grad_norm": 0.9277747273445129, + "learning_rate": 3.449564489112228e-05, + "loss": 0.22985034942626953, + "step": 92600 + }, + { + "epoch": 31.055281011810035, + "grad_norm": 0.8739263415336609, + "learning_rate": 3.4479061976549414e-05, + "loss": 0.22400131225585937, + "step": 92700 + }, + { + "epoch": 31.088784655331267, + "grad_norm": 0.8611975908279419, + "learning_rate": 3.446231155778894e-05, + "loss": 0.22545413970947265, + "step": 92800 + }, + { + "epoch": 31.1222882988525, + "grad_norm": 0.8462928533554077, + "learning_rate": 3.444556113902848e-05, + "loss": 0.22551637649536133, + "step": 92900 + }, + { + "epoch": 31.15579194237373, + "grad_norm": 1.022512435913086, + "learning_rate": 3.442881072026801e-05, + "loss": 0.22650592803955077, + "step": 93000 + }, + { + "epoch": 31.189295585894968, + "grad_norm": 0.9026772975921631, + "learning_rate": 3.4412060301507537e-05, + "loss": 0.22779397964477538, + "step": 93100 + }, + { + "epoch": 31.2227992294162, + "grad_norm": 1.0489071607589722, + "learning_rate": 3.4395309882747065e-05, + "loss": 0.22914936065673827, + "step": 93200 + }, + { + "epoch": 31.256302872937432, + "grad_norm": 0.9933543801307678, + "learning_rate": 3.43785594639866e-05, + "loss": 0.2292425537109375, + "step": 93300 + }, + { + "epoch": 31.289806516458665, + "grad_norm": 0.9085004329681396, + "learning_rate": 3.4361809045226137e-05, + "loss": 0.22929515838623046, + "step": 93400 + }, + { + "epoch": 31.323310159979897, + "grad_norm": 1.075490117073059, + "learning_rate": 3.4345058626465665e-05, + "loss": 0.22939607620239258, + "step": 93500 + }, + { + "epoch": 31.35681380350113, + "grad_norm": 0.9651515483856201, + "learning_rate": 3.4328308207705194e-05, + "loss": 0.22934986114501954, + "step": 93600 + }, + { + "epoch": 31.390317447022365, + "grad_norm": 0.8695613145828247, + "learning_rate": 3.431155778894472e-05, + "loss": 0.22976022720336914, + "step": 93700 + }, + { + "epoch": 31.423821090543598, + "grad_norm": 0.844338595867157, + "learning_rate": 3.429480737018426e-05, + "loss": 0.2312468147277832, + "step": 93800 + }, + { + "epoch": 31.45732473406483, + "grad_norm": 1.0382046699523926, + "learning_rate": 3.427805695142379e-05, + "loss": 0.2319161796569824, + "step": 93900 + }, + { + "epoch": 31.490828377586062, + "grad_norm": 0.9150004386901855, + "learning_rate": 3.4261306532663316e-05, + "loss": 0.23153928756713868, + "step": 94000 + }, + { + "epoch": 31.524332021107295, + "grad_norm": 0.9382134079933167, + "learning_rate": 3.4244556113902845e-05, + "loss": 0.23179262161254882, + "step": 94100 + }, + { + "epoch": 31.557835664628527, + "grad_norm": 1.003744125366211, + "learning_rate": 3.422780569514238e-05, + "loss": 0.2336377716064453, + "step": 94200 + }, + { + "epoch": 31.591339308149763, + "grad_norm": 1.0066591501235962, + "learning_rate": 3.421105527638191e-05, + "loss": 0.23306447982788087, + "step": 94300 + }, + { + "epoch": 31.624842951670995, + "grad_norm": 0.9587600827217102, + "learning_rate": 3.419430485762144e-05, + "loss": 0.23304904937744142, + "step": 94400 + }, + { + "epoch": 31.658346595192228, + "grad_norm": 0.9264236092567444, + "learning_rate": 3.4177554438860974e-05, + "loss": 0.23374231338500975, + "step": 94500 + }, + { + "epoch": 31.69185023871346, + "grad_norm": 0.9786285758018494, + "learning_rate": 3.416080402010051e-05, + "loss": 0.23288776397705077, + "step": 94600 + }, + { + "epoch": 31.725353882234693, + "grad_norm": 1.0406526327133179, + "learning_rate": 3.414405360134004e-05, + "loss": 0.23135658264160155, + "step": 94700 + }, + { + "epoch": 31.758857525755925, + "grad_norm": 1.0150673389434814, + "learning_rate": 3.412730318257957e-05, + "loss": 0.23329238891601561, + "step": 94800 + }, + { + "epoch": 31.792361169277157, + "grad_norm": 1.039716124534607, + "learning_rate": 3.4110552763819096e-05, + "loss": 0.23622480392456055, + "step": 94900 + }, + { + "epoch": 31.825864812798393, + "grad_norm": 0.8796889185905457, + "learning_rate": 3.409380234505863e-05, + "loss": 0.23527551651000977, + "step": 95000 + }, + { + "epoch": 31.859368456319626, + "grad_norm": 1.0430560111999512, + "learning_rate": 3.407705192629816e-05, + "loss": 0.23613218307495118, + "step": 95100 + }, + { + "epoch": 31.892872099840858, + "grad_norm": 0.934065043926239, + "learning_rate": 3.406030150753769e-05, + "loss": 0.23549306869506836, + "step": 95200 + }, + { + "epoch": 31.92637574336209, + "grad_norm": 0.9562022089958191, + "learning_rate": 3.404355108877722e-05, + "loss": 0.23596378326416015, + "step": 95300 + }, + { + "epoch": 31.959879386883323, + "grad_norm": 0.9484182000160217, + "learning_rate": 3.4026800670016754e-05, + "loss": 0.23749320983886718, + "step": 95400 + }, + { + "epoch": 31.993383030404555, + "grad_norm": 0.9226858615875244, + "learning_rate": 3.401005025125628e-05, + "loss": 0.23577556610107422, + "step": 95500 + }, + { + "epoch": 32.02680291481698, + "grad_norm": 0.8082904815673828, + "learning_rate": 3.399346733668342e-05, + "loss": 0.2252376174926758, + "step": 95600 + }, + { + "epoch": 32.06030655833822, + "grad_norm": 0.8369967341423035, + "learning_rate": 3.397671691792295e-05, + "loss": 0.22338224411010743, + "step": 95700 + }, + { + "epoch": 32.093810201859455, + "grad_norm": 0.8281686305999756, + "learning_rate": 3.395996649916248e-05, + "loss": 0.22212993621826171, + "step": 95800 + }, + { + "epoch": 32.127313845380684, + "grad_norm": 0.9705724716186523, + "learning_rate": 3.3943216080402015e-05, + "loss": 0.22465606689453124, + "step": 95900 + }, + { + "epoch": 32.16081748890192, + "grad_norm": 0.8423786163330078, + "learning_rate": 3.3926465661641544e-05, + "loss": 0.2250945281982422, + "step": 96000 + }, + { + "epoch": 32.19432113242315, + "grad_norm": 0.8339988589286804, + "learning_rate": 3.390971524288107e-05, + "loss": 0.22318048477172853, + "step": 96100 + }, + { + "epoch": 32.227824775944384, + "grad_norm": 0.8893176913261414, + "learning_rate": 3.38929648241206e-05, + "loss": 0.22539207458496094, + "step": 96200 + }, + { + "epoch": 32.26132841946562, + "grad_norm": 0.9052960276603699, + "learning_rate": 3.387621440536014e-05, + "loss": 0.22607305526733398, + "step": 96300 + }, + { + "epoch": 32.29483206298685, + "grad_norm": 1.0362404584884644, + "learning_rate": 3.3859463986599666e-05, + "loss": 0.22683595657348632, + "step": 96400 + }, + { + "epoch": 32.328335706508085, + "grad_norm": 0.9416490793228149, + "learning_rate": 3.3842713567839195e-05, + "loss": 0.22825729370117187, + "step": 96500 + }, + { + "epoch": 32.361839350029314, + "grad_norm": 0.8258299827575684, + "learning_rate": 3.3825963149078724e-05, + "loss": 0.2302044677734375, + "step": 96600 + }, + { + "epoch": 32.39534299355055, + "grad_norm": 0.8278768062591553, + "learning_rate": 3.380921273031826e-05, + "loss": 0.22817007064819336, + "step": 96700 + }, + { + "epoch": 32.42884663707178, + "grad_norm": 0.9295879006385803, + "learning_rate": 3.3792462311557795e-05, + "loss": 0.22796960830688476, + "step": 96800 + }, + { + "epoch": 32.462350280593014, + "grad_norm": 0.9297919273376465, + "learning_rate": 3.3775711892797324e-05, + "loss": 0.2300715446472168, + "step": 96900 + }, + { + "epoch": 32.49585392411425, + "grad_norm": 0.9032301902770996, + "learning_rate": 3.375896147403685e-05, + "loss": 0.22858844757080077, + "step": 97000 + }, + { + "epoch": 32.52935756763548, + "grad_norm": 0.9087026119232178, + "learning_rate": 3.374221105527639e-05, + "loss": 0.2282412528991699, + "step": 97100 + }, + { + "epoch": 32.562861211156715, + "grad_norm": 0.846002995967865, + "learning_rate": 3.372546063651592e-05, + "loss": 0.2312621307373047, + "step": 97200 + }, + { + "epoch": 32.596364854677944, + "grad_norm": 1.1084449291229248, + "learning_rate": 3.3708710217755446e-05, + "loss": 0.23065135955810548, + "step": 97300 + }, + { + "epoch": 32.62986849819918, + "grad_norm": 1.00586998462677, + "learning_rate": 3.3691959798994974e-05, + "loss": 0.2318124580383301, + "step": 97400 + }, + { + "epoch": 32.663372141720416, + "grad_norm": 1.010598063468933, + "learning_rate": 3.367520938023451e-05, + "loss": 0.22885004043579102, + "step": 97500 + }, + { + "epoch": 32.696875785241645, + "grad_norm": 0.9496275186538696, + "learning_rate": 3.365845896147404e-05, + "loss": 0.2315340232849121, + "step": 97600 + }, + { + "epoch": 32.73037942876288, + "grad_norm": 0.9502295255661011, + "learning_rate": 3.364170854271357e-05, + "loss": 0.2300456428527832, + "step": 97700 + }, + { + "epoch": 32.76388307228411, + "grad_norm": 0.8757120370864868, + "learning_rate": 3.3624958123953096e-05, + "loss": 0.2325787353515625, + "step": 97800 + }, + { + "epoch": 32.797386715805345, + "grad_norm": 1.086429476737976, + "learning_rate": 3.360820770519263e-05, + "loss": 0.23413005828857422, + "step": 97900 + }, + { + "epoch": 32.830890359326574, + "grad_norm": 0.9264597296714783, + "learning_rate": 3.359145728643216e-05, + "loss": 0.23220701217651368, + "step": 98000 + }, + { + "epoch": 32.86439400284781, + "grad_norm": 1.1024547815322876, + "learning_rate": 3.3574706867671696e-05, + "loss": 0.2337321662902832, + "step": 98100 + }, + { + "epoch": 32.897897646369046, + "grad_norm": 1.0790379047393799, + "learning_rate": 3.355812395309883e-05, + "loss": 0.23275186538696288, + "step": 98200 + }, + { + "epoch": 32.931401289890275, + "grad_norm": 1.0850489139556885, + "learning_rate": 3.354137353433836e-05, + "loss": 0.2350110626220703, + "step": 98300 + }, + { + "epoch": 32.96490493341151, + "grad_norm": 1.0384962558746338, + "learning_rate": 3.3524623115577893e-05, + "loss": 0.23315866470336913, + "step": 98400 + }, + { + "epoch": 32.99840857693274, + "grad_norm": 0.9511744379997253, + "learning_rate": 3.350787269681742e-05, + "loss": 0.23335418701171876, + "step": 98500 + }, + { + "epoch": 33.03182846134517, + "grad_norm": 0.9015313386917114, + "learning_rate": 3.349112227805695e-05, + "loss": 0.2207508850097656, + "step": 98600 + }, + { + "epoch": 33.06533210486641, + "grad_norm": 0.9277299046516418, + "learning_rate": 3.347437185929648e-05, + "loss": 0.2212068557739258, + "step": 98700 + }, + { + "epoch": 33.098835748387636, + "grad_norm": 0.9584958553314209, + "learning_rate": 3.3457621440536015e-05, + "loss": 0.2199711036682129, + "step": 98800 + }, + { + "epoch": 33.13233939190887, + "grad_norm": 0.788788378238678, + "learning_rate": 3.3440871021775544e-05, + "loss": 0.222060546875, + "step": 98900 + }, + { + "epoch": 33.1658430354301, + "grad_norm": 0.7377296090126038, + "learning_rate": 3.342412060301507e-05, + "loss": 0.2214929962158203, + "step": 99000 + }, + { + "epoch": 33.199346678951336, + "grad_norm": 0.9132254719734192, + "learning_rate": 3.340737018425461e-05, + "loss": 0.22287454605102539, + "step": 99100 + }, + { + "epoch": 33.23285032247257, + "grad_norm": 0.8702635169029236, + "learning_rate": 3.3390619765494144e-05, + "loss": 0.2249801254272461, + "step": 99200 + }, + { + "epoch": 33.2663539659938, + "grad_norm": 1.008585810661316, + "learning_rate": 3.337386934673367e-05, + "loss": 0.22441143035888672, + "step": 99300 + }, + { + "epoch": 33.29985760951504, + "grad_norm": 0.9218880534172058, + "learning_rate": 3.33571189279732e-05, + "loss": 0.22384666442871093, + "step": 99400 + }, + { + "epoch": 33.333361253036266, + "grad_norm": 0.8806573748588562, + "learning_rate": 3.334036850921273e-05, + "loss": 0.22616491317749024, + "step": 99500 + }, + { + "epoch": 33.3668648965575, + "grad_norm": 0.9997828602790833, + "learning_rate": 3.3323618090452266e-05, + "loss": 0.2251066780090332, + "step": 99600 + }, + { + "epoch": 33.40036854007873, + "grad_norm": 0.80961012840271, + "learning_rate": 3.3306867671691795e-05, + "loss": 0.22590801239013672, + "step": 99700 + }, + { + "epoch": 33.433872183599966, + "grad_norm": 0.8894720077514648, + "learning_rate": 3.3290117252931324e-05, + "loss": 0.2253563690185547, + "step": 99800 + }, + { + "epoch": 33.4673758271212, + "grad_norm": 0.9108457565307617, + "learning_rate": 3.327336683417085e-05, + "loss": 0.22678316116333008, + "step": 99900 + }, + { + "epoch": 33.50087947064243, + "grad_norm": 0.9380918145179749, + "learning_rate": 3.325661641541039e-05, + "loss": 0.22538763046264648, + "step": 100000 + }, + { + "epoch": 33.53438311416367, + "grad_norm": 0.9901800155639648, + "learning_rate": 3.323986599664992e-05, + "loss": 0.2280316734313965, + "step": 100100 + }, + { + "epoch": 33.567886757684896, + "grad_norm": 0.9266390204429626, + "learning_rate": 3.3223115577889446e-05, + "loss": 0.22870094299316407, + "step": 100200 + }, + { + "epoch": 33.60139040120613, + "grad_norm": 1.033541202545166, + "learning_rate": 3.3206365159128975e-05, + "loss": 0.22756708145141602, + "step": 100300 + }, + { + "epoch": 33.63489404472736, + "grad_norm": 0.9486100673675537, + "learning_rate": 3.318961474036851e-05, + "loss": 0.23031322479248048, + "step": 100400 + }, + { + "epoch": 33.6683976882486, + "grad_norm": 1.0127127170562744, + "learning_rate": 3.3172864321608046e-05, + "loss": 0.22845163345336914, + "step": 100500 + }, + { + "epoch": 33.70190133176983, + "grad_norm": 0.8763633966445923, + "learning_rate": 3.3156113902847575e-05, + "loss": 0.22902427673339842, + "step": 100600 + }, + { + "epoch": 33.73540497529106, + "grad_norm": 1.1065373420715332, + "learning_rate": 3.3139363484087104e-05, + "loss": 0.23073022842407226, + "step": 100700 + }, + { + "epoch": 33.7689086188123, + "grad_norm": 0.9771313071250916, + "learning_rate": 3.3122780569514236e-05, + "loss": 0.23011575698852538, + "step": 100800 + }, + { + "epoch": 33.802412262333526, + "grad_norm": 0.8843592405319214, + "learning_rate": 3.310603015075377e-05, + "loss": 0.23142065048217775, + "step": 100900 + }, + { + "epoch": 33.83591590585476, + "grad_norm": 0.8456923961639404, + "learning_rate": 3.30892797319933e-05, + "loss": 0.23063251495361328, + "step": 101000 + }, + { + "epoch": 33.869419549376, + "grad_norm": 0.8443148732185364, + "learning_rate": 3.307252931323283e-05, + "loss": 0.23091581344604492, + "step": 101100 + }, + { + "epoch": 33.90292319289723, + "grad_norm": 0.960616409778595, + "learning_rate": 3.305577889447236e-05, + "loss": 0.2316324806213379, + "step": 101200 + }, + { + "epoch": 33.93642683641846, + "grad_norm": 0.9722175002098083, + "learning_rate": 3.3039028475711894e-05, + "loss": 0.23007387161254883, + "step": 101300 + }, + { + "epoch": 33.96993047993969, + "grad_norm": 0.8240259289741516, + "learning_rate": 3.302227805695143e-05, + "loss": 0.2318846321105957, + "step": 101400 + }, + { + "epoch": 34.00335036435212, + "grad_norm": 0.9287110567092896, + "learning_rate": 3.300552763819096e-05, + "loss": 0.23206823348999023, + "step": 101500 + }, + { + "epoch": 34.03685400787336, + "grad_norm": 0.9008814692497253, + "learning_rate": 3.298877721943049e-05, + "loss": 0.21785154342651367, + "step": 101600 + }, + { + "epoch": 34.07035765139459, + "grad_norm": 0.9070394039154053, + "learning_rate": 3.297202680067002e-05, + "loss": 0.2177290725708008, + "step": 101700 + }, + { + "epoch": 34.10386129491582, + "grad_norm": 0.9032074809074402, + "learning_rate": 3.295527638190955e-05, + "loss": 0.21938394546508788, + "step": 101800 + }, + { + "epoch": 34.13736493843705, + "grad_norm": 0.9069404006004333, + "learning_rate": 3.293852596314908e-05, + "loss": 0.2203085708618164, + "step": 101900 + }, + { + "epoch": 34.17086858195829, + "grad_norm": 0.9074708819389343, + "learning_rate": 3.292177554438861e-05, + "loss": 0.2204928970336914, + "step": 102000 + }, + { + "epoch": 34.204372225479524, + "grad_norm": 0.9713619351387024, + "learning_rate": 3.2905025125628145e-05, + "loss": 0.22204416275024413, + "step": 102100 + }, + { + "epoch": 34.23787586900075, + "grad_norm": 0.9323224425315857, + "learning_rate": 3.2888274706867674e-05, + "loss": 0.22052072525024413, + "step": 102200 + }, + { + "epoch": 34.27137951252199, + "grad_norm": 0.8843114376068115, + "learning_rate": 3.28715242881072e-05, + "loss": 0.22254072189331053, + "step": 102300 + }, + { + "epoch": 34.30488315604322, + "grad_norm": 1.0152033567428589, + "learning_rate": 3.285477386934673e-05, + "loss": 0.2236959457397461, + "step": 102400 + }, + { + "epoch": 34.338386799564454, + "grad_norm": 0.9482904672622681, + "learning_rate": 3.283802345058627e-05, + "loss": 0.224102725982666, + "step": 102500 + }, + { + "epoch": 34.37189044308568, + "grad_norm": 0.8699772953987122, + "learning_rate": 3.28212730318258e-05, + "loss": 0.22381122589111327, + "step": 102600 + }, + { + "epoch": 34.40539408660692, + "grad_norm": 0.9056621193885803, + "learning_rate": 3.280452261306533e-05, + "loss": 0.22394416809082032, + "step": 102700 + }, + { + "epoch": 34.438897730128154, + "grad_norm": 1.0373077392578125, + "learning_rate": 3.2787939698492464e-05, + "loss": 0.22495691299438478, + "step": 102800 + }, + { + "epoch": 34.47240137364938, + "grad_norm": 1.0134550333023071, + "learning_rate": 3.277118927973199e-05, + "loss": 0.22408302307128905, + "step": 102900 + }, + { + "epoch": 34.50590501717062, + "grad_norm": 0.9845434427261353, + "learning_rate": 3.275443886097153e-05, + "loss": 0.22512359619140626, + "step": 103000 + }, + { + "epoch": 34.53940866069185, + "grad_norm": 1.0372213125228882, + "learning_rate": 3.273768844221106e-05, + "loss": 0.22693737030029296, + "step": 103100 + }, + { + "epoch": 34.572912304213084, + "grad_norm": 0.8394227027893066, + "learning_rate": 3.2720938023450586e-05, + "loss": 0.22773279190063478, + "step": 103200 + }, + { + "epoch": 34.60641594773432, + "grad_norm": 0.9733761548995972, + "learning_rate": 3.2704187604690115e-05, + "loss": 0.2269156265258789, + "step": 103300 + }, + { + "epoch": 34.63991959125555, + "grad_norm": 0.9194538593292236, + "learning_rate": 3.268743718592965e-05, + "loss": 0.22706941604614259, + "step": 103400 + }, + { + "epoch": 34.673423234776784, + "grad_norm": 0.9639450311660767, + "learning_rate": 3.267068676716918e-05, + "loss": 0.22622791290283203, + "step": 103500 + }, + { + "epoch": 34.70692687829801, + "grad_norm": 1.0700583457946777, + "learning_rate": 3.265393634840871e-05, + "loss": 0.2273421859741211, + "step": 103600 + }, + { + "epoch": 34.74043052181925, + "grad_norm": 0.9843416810035706, + "learning_rate": 3.2637185929648244e-05, + "loss": 0.22782588958740235, + "step": 103700 + }, + { + "epoch": 34.77393416534048, + "grad_norm": 0.9237584471702576, + "learning_rate": 3.262043551088777e-05, + "loss": 0.22874467849731445, + "step": 103800 + }, + { + "epoch": 34.807437808861714, + "grad_norm": 0.8710795640945435, + "learning_rate": 3.260368509212731e-05, + "loss": 0.22824941635131835, + "step": 103900 + }, + { + "epoch": 34.84094145238295, + "grad_norm": 0.8803784847259521, + "learning_rate": 3.258693467336684e-05, + "loss": 0.225937442779541, + "step": 104000 + }, + { + "epoch": 34.87444509590418, + "grad_norm": 0.9234800338745117, + "learning_rate": 3.2570184254606366e-05, + "loss": 0.22656524658203125, + "step": 104100 + }, + { + "epoch": 34.907948739425414, + "grad_norm": 0.9999638795852661, + "learning_rate": 3.25534338358459e-05, + "loss": 0.2282132911682129, + "step": 104200 + }, + { + "epoch": 34.94145238294664, + "grad_norm": 1.1694445610046387, + "learning_rate": 3.253668341708543e-05, + "loss": 0.22793378829956054, + "step": 104300 + }, + { + "epoch": 34.97495602646788, + "grad_norm": 0.8837403655052185, + "learning_rate": 3.251993299832496e-05, + "loss": 0.22847984313964845, + "step": 104400 + }, + { + "epoch": 35.00837591088031, + "grad_norm": 0.8809188604354858, + "learning_rate": 3.250318257956449e-05, + "loss": 0.22692270278930665, + "step": 104500 + }, + { + "epoch": 35.04187955440154, + "grad_norm": 1.0068167448043823, + "learning_rate": 3.248643216080402e-05, + "loss": 0.21723543167114256, + "step": 104600 + }, + { + "epoch": 35.075383197922775, + "grad_norm": 0.8723959922790527, + "learning_rate": 3.246968174204355e-05, + "loss": 0.21555179595947266, + "step": 104700 + }, + { + "epoch": 35.108886841444004, + "grad_norm": 0.8103620409965515, + "learning_rate": 3.245293132328308e-05, + "loss": 0.21831268310546875, + "step": 104800 + }, + { + "epoch": 35.14239048496524, + "grad_norm": 0.9336848855018616, + "learning_rate": 3.2436180904522617e-05, + "loss": 0.21713750839233398, + "step": 104900 + }, + { + "epoch": 35.175894128486476, + "grad_norm": 0.7471016049385071, + "learning_rate": 3.2419430485762145e-05, + "loss": 0.21997308731079102, + "step": 105000 + }, + { + "epoch": 35.209397772007705, + "grad_norm": 0.8775885105133057, + "learning_rate": 3.240268006700168e-05, + "loss": 0.21831626892089845, + "step": 105100 + }, + { + "epoch": 35.24290141552894, + "grad_norm": 0.8458008170127869, + "learning_rate": 3.238592964824121e-05, + "loss": 0.21945228576660156, + "step": 105200 + }, + { + "epoch": 35.27640505905017, + "grad_norm": 0.8437234163284302, + "learning_rate": 3.236917922948074e-05, + "loss": 0.2186195182800293, + "step": 105300 + }, + { + "epoch": 35.309908702571406, + "grad_norm": 0.7865097522735596, + "learning_rate": 3.235259631490787e-05, + "loss": 0.22217554092407227, + "step": 105400 + }, + { + "epoch": 35.343412346092634, + "grad_norm": 0.866061806678772, + "learning_rate": 3.233584589614741e-05, + "loss": 0.22084756851196288, + "step": 105500 + }, + { + "epoch": 35.37691598961387, + "grad_norm": 0.9198658466339111, + "learning_rate": 3.2319095477386936e-05, + "loss": 0.21991580963134766, + "step": 105600 + }, + { + "epoch": 35.410419633135106, + "grad_norm": 0.8831592202186584, + "learning_rate": 3.2302345058626464e-05, + "loss": 0.22320646286010742, + "step": 105700 + }, + { + "epoch": 35.443923276656335, + "grad_norm": 0.9197396636009216, + "learning_rate": 3.228559463986599e-05, + "loss": 0.22325061798095702, + "step": 105800 + }, + { + "epoch": 35.47742692017757, + "grad_norm": 0.8785274624824524, + "learning_rate": 3.226884422110553e-05, + "loss": 0.22299362182617188, + "step": 105900 + }, + { + "epoch": 35.5109305636988, + "grad_norm": 0.8461816310882568, + "learning_rate": 3.2252093802345064e-05, + "loss": 0.2225216484069824, + "step": 106000 + }, + { + "epoch": 35.544434207220036, + "grad_norm": 1.063522219657898, + "learning_rate": 3.223534338358459e-05, + "loss": 0.2242141342163086, + "step": 106100 + }, + { + "epoch": 35.57793785074127, + "grad_norm": 0.867465615272522, + "learning_rate": 3.221859296482412e-05, + "loss": 0.2223381805419922, + "step": 106200 + }, + { + "epoch": 35.6114414942625, + "grad_norm": 0.9031139016151428, + "learning_rate": 3.220184254606365e-05, + "loss": 0.22474571228027343, + "step": 106300 + }, + { + "epoch": 35.644945137783736, + "grad_norm": 1.0108989477157593, + "learning_rate": 3.2185092127303186e-05, + "loss": 0.22544246673583984, + "step": 106400 + }, + { + "epoch": 35.678448781304965, + "grad_norm": 1.0109949111938477, + "learning_rate": 3.2168341708542715e-05, + "loss": 0.22579713821411132, + "step": 106500 + }, + { + "epoch": 35.7119524248262, + "grad_norm": 0.9123691916465759, + "learning_rate": 3.2151591289782244e-05, + "loss": 0.22499269485473633, + "step": 106600 + }, + { + "epoch": 35.74545606834743, + "grad_norm": 0.951260507106781, + "learning_rate": 3.213484087102178e-05, + "loss": 0.22552137374877929, + "step": 106700 + }, + { + "epoch": 35.778959711868666, + "grad_norm": 0.8786386251449585, + "learning_rate": 3.211809045226131e-05, + "loss": 0.22638605117797853, + "step": 106800 + }, + { + "epoch": 35.8124633553899, + "grad_norm": 0.9864464998245239, + "learning_rate": 3.210134003350084e-05, + "loss": 0.2277699089050293, + "step": 106900 + }, + { + "epoch": 35.84596699891113, + "grad_norm": 1.0679579973220825, + "learning_rate": 3.2084589614740366e-05, + "loss": 0.22652555465698243, + "step": 107000 + }, + { + "epoch": 35.879470642432366, + "grad_norm": 1.0075697898864746, + "learning_rate": 3.20678391959799e-05, + "loss": 0.22713031768798828, + "step": 107100 + }, + { + "epoch": 35.912974285953595, + "grad_norm": 0.9335576891899109, + "learning_rate": 3.205108877721944e-05, + "loss": 0.22596691131591798, + "step": 107200 + }, + { + "epoch": 35.94647792947483, + "grad_norm": 0.7710935473442078, + "learning_rate": 3.2034338358458966e-05, + "loss": 0.22641992568969727, + "step": 107300 + }, + { + "epoch": 35.97998157299606, + "grad_norm": 1.083516001701355, + "learning_rate": 3.2017587939698495e-05, + "loss": 0.22827293395996093, + "step": 107400 + }, + { + "epoch": 36.01340145740849, + "grad_norm": 0.8612881302833557, + "learning_rate": 3.2000837520938024e-05, + "loss": 0.22379323959350586, + "step": 107500 + }, + { + "epoch": 36.04690510092973, + "grad_norm": 0.7906754016876221, + "learning_rate": 3.198408710217756e-05, + "loss": 0.21393178939819335, + "step": 107600 + }, + { + "epoch": 36.080408744450956, + "grad_norm": 0.6994041800498962, + "learning_rate": 3.196733668341709e-05, + "loss": 0.2150893211364746, + "step": 107700 + }, + { + "epoch": 36.11391238797219, + "grad_norm": 0.7304232120513916, + "learning_rate": 3.195058626465662e-05, + "loss": 0.21509407043457032, + "step": 107800 + }, + { + "epoch": 36.14741603149343, + "grad_norm": 0.8723782896995544, + "learning_rate": 3.1933835845896146e-05, + "loss": 0.21703847885131836, + "step": 107900 + }, + { + "epoch": 36.18091967501466, + "grad_norm": 0.8350656628608704, + "learning_rate": 3.191708542713568e-05, + "loss": 0.21680261611938476, + "step": 108000 + }, + { + "epoch": 36.21442331853589, + "grad_norm": 0.8917808532714844, + "learning_rate": 3.190033500837521e-05, + "loss": 0.21753547668457032, + "step": 108100 + }, + { + "epoch": 36.24792696205712, + "grad_norm": 0.9806150197982788, + "learning_rate": 3.188358458961474e-05, + "loss": 0.21905086517333985, + "step": 108200 + }, + { + "epoch": 36.28143060557836, + "grad_norm": 0.8857609033584595, + "learning_rate": 3.186700167504188e-05, + "loss": 0.21918514251708984, + "step": 108300 + }, + { + "epoch": 36.314934249099586, + "grad_norm": 0.910219669342041, + "learning_rate": 3.185025125628141e-05, + "loss": 0.2200949287414551, + "step": 108400 + }, + { + "epoch": 36.34843789262082, + "grad_norm": 1.0122119188308716, + "learning_rate": 3.183350083752094e-05, + "loss": 0.2193107795715332, + "step": 108500 + }, + { + "epoch": 36.38194153614206, + "grad_norm": 0.9494280815124512, + "learning_rate": 3.181675041876047e-05, + "loss": 0.2197030258178711, + "step": 108600 + }, + { + "epoch": 36.41544517966329, + "grad_norm": 0.9605288505554199, + "learning_rate": 3.18e-05, + "loss": 0.22033754348754883, + "step": 108700 + }, + { + "epoch": 36.44894882318452, + "grad_norm": 0.7704981565475464, + "learning_rate": 3.178324958123953e-05, + "loss": 0.22123022079467775, + "step": 108800 + }, + { + "epoch": 36.48245246670575, + "grad_norm": 0.9490818381309509, + "learning_rate": 3.1766499162479065e-05, + "loss": 0.22183971405029296, + "step": 108900 + }, + { + "epoch": 36.51595611022699, + "grad_norm": 0.9417729377746582, + "learning_rate": 3.1749748743718594e-05, + "loss": 0.22279998779296875, + "step": 109000 + }, + { + "epoch": 36.54945975374822, + "grad_norm": 0.933033287525177, + "learning_rate": 3.173299832495812e-05, + "loss": 0.22310422897338866, + "step": 109100 + }, + { + "epoch": 36.58296339726945, + "grad_norm": 0.8921425342559814, + "learning_rate": 3.171624790619765e-05, + "loss": 0.2227332878112793, + "step": 109200 + }, + { + "epoch": 36.61646704079069, + "grad_norm": 0.8272472023963928, + "learning_rate": 3.169949748743719e-05, + "loss": 0.22220718383789062, + "step": 109300 + }, + { + "epoch": 36.64997068431192, + "grad_norm": 0.9517436027526855, + "learning_rate": 3.1682747068676716e-05, + "loss": 0.22240093231201172, + "step": 109400 + }, + { + "epoch": 36.68347432783315, + "grad_norm": 0.869287371635437, + "learning_rate": 3.166599664991625e-05, + "loss": 0.22267683029174803, + "step": 109500 + }, + { + "epoch": 36.71697797135438, + "grad_norm": 0.8402668237686157, + "learning_rate": 3.164924623115578e-05, + "loss": 0.22277099609375, + "step": 109600 + }, + { + "epoch": 36.75048161487562, + "grad_norm": 0.7411085367202759, + "learning_rate": 3.1632495812395316e-05, + "loss": 0.22394742965698242, + "step": 109700 + }, + { + "epoch": 36.783985258396854, + "grad_norm": 0.9969924092292786, + "learning_rate": 3.1615745393634845e-05, + "loss": 0.22464384078979494, + "step": 109800 + }, + { + "epoch": 36.81748890191808, + "grad_norm": 1.0667954683303833, + "learning_rate": 3.1598994974874373e-05, + "loss": 0.22305191040039063, + "step": 109900 + }, + { + "epoch": 36.85099254543932, + "grad_norm": 0.9248315095901489, + "learning_rate": 3.15822445561139e-05, + "loss": 0.22483558654785157, + "step": 110000 + }, + { + "epoch": 36.88449618896055, + "grad_norm": 0.921510636806488, + "learning_rate": 3.156549413735344e-05, + "loss": 0.22462337493896484, + "step": 110100 + }, + { + "epoch": 36.91799983248178, + "grad_norm": 0.9513688683509827, + "learning_rate": 3.154874371859297e-05, + "loss": 0.22469757080078126, + "step": 110200 + }, + { + "epoch": 36.95150347600301, + "grad_norm": 0.9634213447570801, + "learning_rate": 3.1531993299832495e-05, + "loss": 0.22559005737304688, + "step": 110300 + }, + { + "epoch": 36.98500711952425, + "grad_norm": 0.8968513607978821, + "learning_rate": 3.1515242881072024e-05, + "loss": 0.22452268600463868, + "step": 110400 + }, + { + "epoch": 37.01842700393668, + "grad_norm": 0.9366862773895264, + "learning_rate": 3.149849246231156e-05, + "loss": 0.21873317718505858, + "step": 110500 + }, + { + "epoch": 37.05193064745791, + "grad_norm": 0.9117385149002075, + "learning_rate": 3.148174204355109e-05, + "loss": 0.21297582626342773, + "step": 110600 + }, + { + "epoch": 37.085434290979144, + "grad_norm": 0.8058609962463379, + "learning_rate": 3.1464991624790624e-05, + "loss": 0.21399580001831053, + "step": 110700 + }, + { + "epoch": 37.11893793450038, + "grad_norm": 0.9793832302093506, + "learning_rate": 3.144824120603015e-05, + "loss": 0.21349397659301758, + "step": 110800 + }, + { + "epoch": 37.15244157802161, + "grad_norm": 0.7564776539802551, + "learning_rate": 3.143149078726968e-05, + "loss": 0.2160548210144043, + "step": 110900 + }, + { + "epoch": 37.185945221542845, + "grad_norm": 0.9561526775360107, + "learning_rate": 3.141474036850922e-05, + "loss": 0.21727354049682618, + "step": 111000 + }, + { + "epoch": 37.219448865064074, + "grad_norm": 0.8852317929267883, + "learning_rate": 3.1397989949748746e-05, + "loss": 0.2165077018737793, + "step": 111100 + }, + { + "epoch": 37.25295250858531, + "grad_norm": 0.9445819854736328, + "learning_rate": 3.1381239530988275e-05, + "loss": 0.21671443939208984, + "step": 111200 + }, + { + "epoch": 37.28645615210654, + "grad_norm": 0.8414257168769836, + "learning_rate": 3.136465661641541e-05, + "loss": 0.2156463623046875, + "step": 111300 + }, + { + "epoch": 37.319959795627774, + "grad_norm": 0.9724504351615906, + "learning_rate": 3.134790619765494e-05, + "loss": 0.21695276260375976, + "step": 111400 + }, + { + "epoch": 37.35346343914901, + "grad_norm": 0.8939653038978577, + "learning_rate": 3.133115577889447e-05, + "loss": 0.21864233016967774, + "step": 111500 + }, + { + "epoch": 37.38696708267024, + "grad_norm": 0.7889378070831299, + "learning_rate": 3.1314405360134e-05, + "loss": 0.2170688056945801, + "step": 111600 + }, + { + "epoch": 37.420470726191475, + "grad_norm": 0.9483622312545776, + "learning_rate": 3.129765494137353e-05, + "loss": 0.2190123176574707, + "step": 111700 + }, + { + "epoch": 37.453974369712704, + "grad_norm": 0.8011330366134644, + "learning_rate": 3.128090452261307e-05, + "loss": 0.22048694610595704, + "step": 111800 + }, + { + "epoch": 37.48747801323394, + "grad_norm": 0.8247294425964355, + "learning_rate": 3.12641541038526e-05, + "loss": 0.21904251098632813, + "step": 111900 + }, + { + "epoch": 37.520981656755175, + "grad_norm": 0.750112771987915, + "learning_rate": 3.124740368509213e-05, + "loss": 0.21833335876464843, + "step": 112000 + }, + { + "epoch": 37.554485300276404, + "grad_norm": 0.9256598353385925, + "learning_rate": 3.123065326633166e-05, + "loss": 0.21966569900512695, + "step": 112100 + }, + { + "epoch": 37.58798894379764, + "grad_norm": 0.9734209775924683, + "learning_rate": 3.1213902847571194e-05, + "loss": 0.22099735260009765, + "step": 112200 + }, + { + "epoch": 37.62149258731887, + "grad_norm": 0.990144670009613, + "learning_rate": 3.119715242881072e-05, + "loss": 0.22192005157470704, + "step": 112300 + }, + { + "epoch": 37.654996230840105, + "grad_norm": 0.6585299372673035, + "learning_rate": 3.118040201005025e-05, + "loss": 0.22165678024291993, + "step": 112400 + }, + { + "epoch": 37.688499874361334, + "grad_norm": 0.9786301255226135, + "learning_rate": 3.116365159128978e-05, + "loss": 0.22310081481933594, + "step": 112500 + }, + { + "epoch": 37.72200351788257, + "grad_norm": 0.8770159482955933, + "learning_rate": 3.1146901172529316e-05, + "loss": 0.22149917602539063, + "step": 112600 + }, + { + "epoch": 37.755507161403806, + "grad_norm": 0.9303070306777954, + "learning_rate": 3.1130150753768845e-05, + "loss": 0.22284337997436524, + "step": 112700 + }, + { + "epoch": 37.789010804925034, + "grad_norm": 0.9092078804969788, + "learning_rate": 3.1113400335008374e-05, + "loss": 0.2229990005493164, + "step": 112800 + }, + { + "epoch": 37.82251444844627, + "grad_norm": 0.9219861626625061, + "learning_rate": 3.10966499162479e-05, + "loss": 0.2217073631286621, + "step": 112900 + }, + { + "epoch": 37.8560180919675, + "grad_norm": 0.7435413002967834, + "learning_rate": 3.107989949748744e-05, + "loss": 0.22171833038330077, + "step": 113000 + }, + { + "epoch": 37.889521735488735, + "grad_norm": 0.9068054556846619, + "learning_rate": 3.1063149078726974e-05, + "loss": 0.22258939743041992, + "step": 113100 + }, + { + "epoch": 37.923025379009964, + "grad_norm": 1.0471735000610352, + "learning_rate": 3.10463986599665e-05, + "loss": 0.2234604263305664, + "step": 113200 + }, + { + "epoch": 37.9565290225312, + "grad_norm": 1.0463248491287231, + "learning_rate": 3.102964824120603e-05, + "loss": 0.22215925216674803, + "step": 113300 + }, + { + "epoch": 37.990032666052436, + "grad_norm": 0.9165071845054626, + "learning_rate": 3.101289782244556e-05, + "loss": 0.22422847747802735, + "step": 113400 + }, + { + "epoch": 38.02345255046486, + "grad_norm": 0.8414464592933655, + "learning_rate": 3.09963149078727e-05, + "loss": 0.21486921310424806, + "step": 113500 + }, + { + "epoch": 38.056956193986096, + "grad_norm": 0.8961010575294495, + "learning_rate": 3.097956448911223e-05, + "loss": 0.21109798431396484, + "step": 113600 + }, + { + "epoch": 38.09045983750733, + "grad_norm": 0.9100089073181152, + "learning_rate": 3.096281407035176e-05, + "loss": 0.21328540802001952, + "step": 113700 + }, + { + "epoch": 38.12396348102856, + "grad_norm": 0.9186659455299377, + "learning_rate": 3.0946063651591286e-05, + "loss": 0.21333318710327148, + "step": 113800 + }, + { + "epoch": 38.1574671245498, + "grad_norm": 0.7723438143730164, + "learning_rate": 3.092931323283082e-05, + "loss": 0.21231781005859374, + "step": 113900 + }, + { + "epoch": 38.190970768071026, + "grad_norm": 0.8304508328437805, + "learning_rate": 3.091256281407035e-05, + "loss": 0.21468320846557618, + "step": 114000 + }, + { + "epoch": 38.22447441159226, + "grad_norm": 0.8922227025032043, + "learning_rate": 3.0895812395309886e-05, + "loss": 0.21428609848022462, + "step": 114100 + }, + { + "epoch": 38.25797805511349, + "grad_norm": 0.7371033430099487, + "learning_rate": 3.0879061976549415e-05, + "loss": 0.2143361473083496, + "step": 114200 + }, + { + "epoch": 38.291481698634726, + "grad_norm": 0.8409704566001892, + "learning_rate": 3.086231155778895e-05, + "loss": 0.21631322860717772, + "step": 114300 + }, + { + "epoch": 38.32498534215596, + "grad_norm": 0.7273088097572327, + "learning_rate": 3.084556113902848e-05, + "loss": 0.2163697624206543, + "step": 114400 + }, + { + "epoch": 38.35848898567719, + "grad_norm": 0.8249197602272034, + "learning_rate": 3.082881072026801e-05, + "loss": 0.2180681800842285, + "step": 114500 + }, + { + "epoch": 38.39199262919843, + "grad_norm": 0.7984412312507629, + "learning_rate": 3.081206030150754e-05, + "loss": 0.21718357086181642, + "step": 114600 + }, + { + "epoch": 38.425496272719656, + "grad_norm": 1.08668851852417, + "learning_rate": 3.079530988274707e-05, + "loss": 0.21632287979125978, + "step": 114700 + }, + { + "epoch": 38.45899991624089, + "grad_norm": 0.7324666976928711, + "learning_rate": 3.07785594639866e-05, + "loss": 0.2178202438354492, + "step": 114800 + }, + { + "epoch": 38.49250355976213, + "grad_norm": 0.8047093749046326, + "learning_rate": 3.076180904522613e-05, + "loss": 0.21611106872558594, + "step": 114900 + }, + { + "epoch": 38.526007203283356, + "grad_norm": 0.8086637854576111, + "learning_rate": 3.074505862646566e-05, + "loss": 0.21893905639648437, + "step": 115000 + }, + { + "epoch": 38.55951084680459, + "grad_norm": 0.9299573302268982, + "learning_rate": 3.0728308207705195e-05, + "loss": 0.21941152572631836, + "step": 115100 + }, + { + "epoch": 38.59301449032582, + "grad_norm": 0.921328067779541, + "learning_rate": 3.0711557788944724e-05, + "loss": 0.21848363876342775, + "step": 115200 + }, + { + "epoch": 38.62651813384706, + "grad_norm": 0.8732923865318298, + "learning_rate": 3.069480737018426e-05, + "loss": 0.2199881935119629, + "step": 115300 + }, + { + "epoch": 38.660021777368286, + "grad_norm": 0.8334107995033264, + "learning_rate": 3.067805695142379e-05, + "loss": 0.21993675231933593, + "step": 115400 + }, + { + "epoch": 38.69352542088952, + "grad_norm": 0.9880418181419373, + "learning_rate": 3.066130653266332e-05, + "loss": 0.21957590103149413, + "step": 115500 + }, + { + "epoch": 38.72702906441076, + "grad_norm": 0.7397698760032654, + "learning_rate": 3.0644723618090456e-05, + "loss": 0.22164581298828126, + "step": 115600 + }, + { + "epoch": 38.760532707931986, + "grad_norm": 0.8668732047080994, + "learning_rate": 3.0627973199329985e-05, + "loss": 0.22148818969726564, + "step": 115700 + }, + { + "epoch": 38.79403635145322, + "grad_norm": 0.9017316699028015, + "learning_rate": 3.0611222780569514e-05, + "loss": 0.22045387268066408, + "step": 115800 + }, + { + "epoch": 38.82753999497445, + "grad_norm": 0.960860550403595, + "learning_rate": 3.059447236180904e-05, + "loss": 0.22010658264160157, + "step": 115900 + }, + { + "epoch": 38.86104363849569, + "grad_norm": 0.9069247245788574, + "learning_rate": 3.057772194304858e-05, + "loss": 0.22206361770629882, + "step": 116000 + }, + { + "epoch": 38.894547282016916, + "grad_norm": 0.9507908821105957, + "learning_rate": 3.056097152428811e-05, + "loss": 0.223684139251709, + "step": 116100 + }, + { + "epoch": 38.92805092553815, + "grad_norm": 0.9307253360748291, + "learning_rate": 3.0544221105527636e-05, + "loss": 0.2224336814880371, + "step": 116200 + }, + { + "epoch": 38.96155456905939, + "grad_norm": 0.8504303097724915, + "learning_rate": 3.052747068676717e-05, + "loss": 0.22100894927978515, + "step": 116300 + }, + { + "epoch": 38.995058212580616, + "grad_norm": 1.0041011571884155, + "learning_rate": 3.0510720268006704e-05, + "loss": 0.2226072692871094, + "step": 116400 + }, + { + "epoch": 39.02847809699305, + "grad_norm": 0.8630343675613403, + "learning_rate": 3.0493969849246236e-05, + "loss": 0.21175411224365234, + "step": 116500 + }, + { + "epoch": 39.061981740514284, + "grad_norm": 0.8499475717544556, + "learning_rate": 3.0477219430485765e-05, + "loss": 0.21058534622192382, + "step": 116600 + }, + { + "epoch": 39.09548538403551, + "grad_norm": 0.8700653910636902, + "learning_rate": 3.0460469011725297e-05, + "loss": 0.21063339233398437, + "step": 116700 + }, + { + "epoch": 39.12898902755675, + "grad_norm": 0.928617537021637, + "learning_rate": 3.0443718592964826e-05, + "loss": 0.21142158508300782, + "step": 116800 + }, + { + "epoch": 39.16249267107798, + "grad_norm": 0.7653895616531372, + "learning_rate": 3.0426968174204358e-05, + "loss": 0.2120248031616211, + "step": 116900 + }, + { + "epoch": 39.19599631459921, + "grad_norm": 0.9703547954559326, + "learning_rate": 3.0410217755443887e-05, + "loss": 0.21317352294921876, + "step": 117000 + }, + { + "epoch": 39.22949995812044, + "grad_norm": 0.8479989767074585, + "learning_rate": 3.039346733668342e-05, + "loss": 0.21484851837158203, + "step": 117100 + }, + { + "epoch": 39.26300360164168, + "grad_norm": 0.899630069732666, + "learning_rate": 3.0376716917922948e-05, + "loss": 0.21453136444091797, + "step": 117200 + }, + { + "epoch": 39.296507245162914, + "grad_norm": 1.086026906967163, + "learning_rate": 3.035996649916248e-05, + "loss": 0.21443565368652343, + "step": 117300 + }, + { + "epoch": 39.33001088868414, + "grad_norm": 0.8970637917518616, + "learning_rate": 3.034321608040201e-05, + "loss": 0.21288238525390624, + "step": 117400 + }, + { + "epoch": 39.36351453220538, + "grad_norm": 0.9710267186164856, + "learning_rate": 3.032646566164154e-05, + "loss": 0.21607624053955077, + "step": 117500 + }, + { + "epoch": 39.39701817572661, + "grad_norm": 0.908697783946991, + "learning_rate": 3.030988274706868e-05, + "loss": 0.2151881217956543, + "step": 117600 + }, + { + "epoch": 39.43052181924784, + "grad_norm": 0.9393781423568726, + "learning_rate": 3.029313232830821e-05, + "loss": 0.21689601898193359, + "step": 117700 + }, + { + "epoch": 39.46402546276908, + "grad_norm": 0.8031620383262634, + "learning_rate": 3.027638190954774e-05, + "loss": 0.21640504837036134, + "step": 117800 + }, + { + "epoch": 39.49752910629031, + "grad_norm": 1.027938961982727, + "learning_rate": 3.025963149078727e-05, + "loss": 0.21748722076416016, + "step": 117900 + }, + { + "epoch": 39.531032749811544, + "grad_norm": 0.9682844877243042, + "learning_rate": 3.0242881072026802e-05, + "loss": 0.21787578582763673, + "step": 118000 + }, + { + "epoch": 39.56453639333277, + "grad_norm": 0.884766697883606, + "learning_rate": 3.022613065326633e-05, + "loss": 0.21701082229614257, + "step": 118100 + }, + { + "epoch": 39.59804003685401, + "grad_norm": 0.9033914804458618, + "learning_rate": 3.0209380234505863e-05, + "loss": 0.21810293197631836, + "step": 118200 + }, + { + "epoch": 39.63154368037524, + "grad_norm": 0.8522166013717651, + "learning_rate": 3.0192629815745392e-05, + "loss": 0.2182499122619629, + "step": 118300 + }, + { + "epoch": 39.665047323896474, + "grad_norm": 1.1046702861785889, + "learning_rate": 3.0175879396984924e-05, + "loss": 0.2196645164489746, + "step": 118400 + }, + { + "epoch": 39.69855096741771, + "grad_norm": 0.7786019444465637, + "learning_rate": 3.0159128978224453e-05, + "loss": 0.21823881149291993, + "step": 118500 + }, + { + "epoch": 39.73205461093894, + "grad_norm": 0.8261039853096008, + "learning_rate": 3.0142378559463992e-05, + "loss": 0.2183905029296875, + "step": 118600 + }, + { + "epoch": 39.765558254460174, + "grad_norm": 0.7951787710189819, + "learning_rate": 3.012562814070352e-05, + "loss": 0.22037561416625975, + "step": 118700 + }, + { + "epoch": 39.7990618979814, + "grad_norm": 0.9430021047592163, + "learning_rate": 3.0108877721943053e-05, + "loss": 0.22020740509033204, + "step": 118800 + }, + { + "epoch": 39.83256554150264, + "grad_norm": 0.8699235320091248, + "learning_rate": 3.0092127303182582e-05, + "loss": 0.2182463836669922, + "step": 118900 + }, + { + "epoch": 39.866069185023875, + "grad_norm": 0.6874027252197266, + "learning_rate": 3.0075376884422114e-05, + "loss": 0.21936134338378907, + "step": 119000 + }, + { + "epoch": 39.899572828545104, + "grad_norm": 0.9950704574584961, + "learning_rate": 3.0058626465661643e-05, + "loss": 0.22008882522583006, + "step": 119100 + }, + { + "epoch": 39.93307647206634, + "grad_norm": 0.9827971458435059, + "learning_rate": 3.0041876046901175e-05, + "loss": 0.22005229949951172, + "step": 119200 + }, + { + "epoch": 39.96658011558757, + "grad_norm": 0.9177015423774719, + "learning_rate": 3.0025125628140704e-05, + "loss": 0.21897659301757813, + "step": 119300 + }, + { + "epoch": 40.0, + "grad_norm": 1.1112428903579712, + "learning_rate": 3.0008375209380236e-05, + "loss": 0.2205747604370117, + "step": 119400 + }, + { + "epoch": 40.033503643521236, + "grad_norm": 0.9478968977928162, + "learning_rate": 2.9991624790619765e-05, + "loss": 0.20781259536743163, + "step": 119500 + }, + { + "epoch": 40.067007287042465, + "grad_norm": 0.8990084528923035, + "learning_rate": 2.99750418760469e-05, + "loss": 0.20928415298461914, + "step": 119600 + }, + { + "epoch": 40.1005109305637, + "grad_norm": 1.0282913446426392, + "learning_rate": 2.9958291457286437e-05, + "loss": 0.21068788528442384, + "step": 119700 + }, + { + "epoch": 40.13401457408493, + "grad_norm": 0.781109094619751, + "learning_rate": 2.9941541038525965e-05, + "loss": 0.2100553321838379, + "step": 119800 + }, + { + "epoch": 40.167518217606165, + "grad_norm": 0.7364116311073303, + "learning_rate": 2.9924790619765498e-05, + "loss": 0.211074161529541, + "step": 119900 + }, + { + "epoch": 40.201021861127394, + "grad_norm": 0.8109786510467529, + "learning_rate": 2.9908040201005027e-05, + "loss": 0.2111503028869629, + "step": 120000 + }, + { + "epoch": 40.23452550464863, + "grad_norm": 0.8337066769599915, + "learning_rate": 2.989128978224456e-05, + "loss": 0.21187753677368165, + "step": 120100 + }, + { + "epoch": 40.268029148169866, + "grad_norm": 0.8106216788291931, + "learning_rate": 2.9874539363484088e-05, + "loss": 0.21110746383666992, + "step": 120200 + }, + { + "epoch": 40.301532791691095, + "grad_norm": 0.900480329990387, + "learning_rate": 2.985778894472362e-05, + "loss": 0.21332656860351562, + "step": 120300 + }, + { + "epoch": 40.33503643521233, + "grad_norm": 0.8936036825180054, + "learning_rate": 2.984103852596315e-05, + "loss": 0.21424699783325196, + "step": 120400 + }, + { + "epoch": 40.36854007873356, + "grad_norm": 1.0281628370285034, + "learning_rate": 2.982428810720268e-05, + "loss": 0.21567123413085937, + "step": 120500 + }, + { + "epoch": 40.402043722254795, + "grad_norm": 0.9829724431037903, + "learning_rate": 2.980753768844221e-05, + "loss": 0.21529359817504884, + "step": 120600 + }, + { + "epoch": 40.43554736577603, + "grad_norm": 0.8747444748878479, + "learning_rate": 2.9790787269681742e-05, + "loss": 0.21478731155395508, + "step": 120700 + }, + { + "epoch": 40.46905100929726, + "grad_norm": 0.8821930885314941, + "learning_rate": 2.977403685092127e-05, + "loss": 0.21482231140136718, + "step": 120800 + }, + { + "epoch": 40.502554652818496, + "grad_norm": 0.8955323696136475, + "learning_rate": 2.975728643216081e-05, + "loss": 0.2153952407836914, + "step": 120900 + }, + { + "epoch": 40.536058296339725, + "grad_norm": 0.8369837999343872, + "learning_rate": 2.974053601340034e-05, + "loss": 0.21576461791992188, + "step": 121000 + }, + { + "epoch": 40.56956193986096, + "grad_norm": 0.8737310767173767, + "learning_rate": 2.972378559463987e-05, + "loss": 0.21639930725097656, + "step": 121100 + }, + { + "epoch": 40.60306558338219, + "grad_norm": 0.9263436198234558, + "learning_rate": 2.97070351758794e-05, + "loss": 0.21683277130126954, + "step": 121200 + }, + { + "epoch": 40.636569226903426, + "grad_norm": 0.9024245142936707, + "learning_rate": 2.9690284757118932e-05, + "loss": 0.21628368377685547, + "step": 121300 + }, + { + "epoch": 40.67007287042466, + "grad_norm": 0.8429529070854187, + "learning_rate": 2.967353433835846e-05, + "loss": 0.2163913917541504, + "step": 121400 + }, + { + "epoch": 40.70357651394589, + "grad_norm": 1.2450178861618042, + "learning_rate": 2.9656783919597993e-05, + "loss": 0.2194381523132324, + "step": 121500 + }, + { + "epoch": 40.737080157467126, + "grad_norm": 0.7648131251335144, + "learning_rate": 2.964003350083752e-05, + "loss": 0.21698453903198242, + "step": 121600 + }, + { + "epoch": 40.770583800988355, + "grad_norm": 0.9009991884231567, + "learning_rate": 2.9623283082077054e-05, + "loss": 0.21700273513793944, + "step": 121700 + }, + { + "epoch": 40.80408744450959, + "grad_norm": 0.8008719086647034, + "learning_rate": 2.9606532663316583e-05, + "loss": 0.21888105392456056, + "step": 121800 + }, + { + "epoch": 40.83759108803083, + "grad_norm": 0.9055608510971069, + "learning_rate": 2.9589782244556115e-05, + "loss": 0.21676677703857422, + "step": 121900 + }, + { + "epoch": 40.871094731552056, + "grad_norm": 0.80983567237854, + "learning_rate": 2.9573199329983254e-05, + "loss": 0.21832197189331054, + "step": 122000 + }, + { + "epoch": 40.90459837507329, + "grad_norm": 0.892451286315918, + "learning_rate": 2.9556448911222783e-05, + "loss": 0.21815378189086915, + "step": 122100 + }, + { + "epoch": 40.93810201859452, + "grad_norm": 0.8478377461433411, + "learning_rate": 2.9539698492462315e-05, + "loss": 0.21775611877441406, + "step": 122200 + }, + { + "epoch": 40.971605662115756, + "grad_norm": 0.9962807297706604, + "learning_rate": 2.9522948073701844e-05, + "loss": 0.219617919921875, + "step": 122300 + }, + { + "epoch": 41.00502554652819, + "grad_norm": 0.947913646697998, + "learning_rate": 2.9506197654941376e-05, + "loss": 0.21659244537353517, + "step": 122400 + }, + { + "epoch": 41.03852919004942, + "grad_norm": 0.7525883316993713, + "learning_rate": 2.9489447236180905e-05, + "loss": 0.20789249420166014, + "step": 122500 + }, + { + "epoch": 41.07203283357065, + "grad_norm": 0.6433896422386169, + "learning_rate": 2.9472696817420437e-05, + "loss": 0.2080308723449707, + "step": 122600 + }, + { + "epoch": 41.10553647709188, + "grad_norm": 0.8577892780303955, + "learning_rate": 2.9455946398659966e-05, + "loss": 0.20854692459106444, + "step": 122700 + }, + { + "epoch": 41.13904012061312, + "grad_norm": 0.9137370586395264, + "learning_rate": 2.9439195979899498e-05, + "loss": 0.20944379806518554, + "step": 122800 + }, + { + "epoch": 41.172543764134346, + "grad_norm": 0.8469370007514954, + "learning_rate": 2.9422445561139027e-05, + "loss": 0.21084047317504884, + "step": 122900 + }, + { + "epoch": 41.20604740765558, + "grad_norm": 0.8777198791503906, + "learning_rate": 2.940569514237856e-05, + "loss": 0.209267520904541, + "step": 123000 + }, + { + "epoch": 41.23955105117682, + "grad_norm": 0.8626389503479004, + "learning_rate": 2.9388944723618088e-05, + "loss": 0.21044559478759767, + "step": 123100 + }, + { + "epoch": 41.27305469469805, + "grad_norm": 0.9588419198989868, + "learning_rate": 2.9372194304857624e-05, + "loss": 0.21222888946533203, + "step": 123200 + }, + { + "epoch": 41.30655833821928, + "grad_norm": 0.86114901304245, + "learning_rate": 2.9355443886097156e-05, + "loss": 0.21097087860107422, + "step": 123300 + }, + { + "epoch": 41.34006198174051, + "grad_norm": 0.887198269367218, + "learning_rate": 2.9338693467336688e-05, + "loss": 0.21297225952148438, + "step": 123400 + }, + { + "epoch": 41.37356562526175, + "grad_norm": 0.7785773873329163, + "learning_rate": 2.9321943048576217e-05, + "loss": 0.2132717514038086, + "step": 123500 + }, + { + "epoch": 41.40706926878298, + "grad_norm": 0.8815355896949768, + "learning_rate": 2.930519262981575e-05, + "loss": 0.2135430908203125, + "step": 123600 + }, + { + "epoch": 41.44057291230421, + "grad_norm": 0.7385589480400085, + "learning_rate": 2.9288442211055278e-05, + "loss": 0.21455587387084962, + "step": 123700 + }, + { + "epoch": 41.47407655582545, + "grad_norm": 0.9357995986938477, + "learning_rate": 2.927169179229481e-05, + "loss": 0.2131095314025879, + "step": 123800 + }, + { + "epoch": 41.50758019934668, + "grad_norm": 0.9078415632247925, + "learning_rate": 2.925494137353434e-05, + "loss": 0.21512672424316406, + "step": 123900 + }, + { + "epoch": 41.54108384286791, + "grad_norm": 0.8247988820075989, + "learning_rate": 2.923819095477387e-05, + "loss": 0.21399457931518553, + "step": 124000 + }, + { + "epoch": 41.57458748638914, + "grad_norm": 0.726129949092865, + "learning_rate": 2.9221608040201004e-05, + "loss": 0.21407983779907228, + "step": 124100 + }, + { + "epoch": 41.60809112991038, + "grad_norm": 0.8694594502449036, + "learning_rate": 2.920485762144054e-05, + "loss": 0.21551137924194336, + "step": 124200 + }, + { + "epoch": 41.64159477343161, + "grad_norm": 0.9320394992828369, + "learning_rate": 2.918810720268007e-05, + "loss": 0.21677978515625, + "step": 124300 + }, + { + "epoch": 41.67509841695284, + "grad_norm": 1.0589549541473389, + "learning_rate": 2.91713567839196e-05, + "loss": 0.21467880249023438, + "step": 124400 + }, + { + "epoch": 41.70860206047408, + "grad_norm": 0.8709360361099243, + "learning_rate": 2.9154606365159133e-05, + "loss": 0.21607656478881837, + "step": 124500 + }, + { + "epoch": 41.74210570399531, + "grad_norm": 0.8040139675140381, + "learning_rate": 2.913785594639866e-05, + "loss": 0.21505617141723632, + "step": 124600 + }, + { + "epoch": 41.77560934751654, + "grad_norm": 0.899761438369751, + "learning_rate": 2.9121105527638194e-05, + "loss": 0.2151774787902832, + "step": 124700 + }, + { + "epoch": 41.80911299103778, + "grad_norm": 0.8534619808197021, + "learning_rate": 2.9104355108877722e-05, + "loss": 0.21662195205688475, + "step": 124800 + }, + { + "epoch": 41.84261663455901, + "grad_norm": 0.96486896276474, + "learning_rate": 2.9087604690117255e-05, + "loss": 0.21604257583618164, + "step": 124900 + }, + { + "epoch": 41.87612027808024, + "grad_norm": 0.8162650465965271, + "learning_rate": 2.9070854271356783e-05, + "loss": 0.2170560836791992, + "step": 125000 + }, + { + "epoch": 41.90962392160147, + "grad_norm": 0.889887809753418, + "learning_rate": 2.9054103852596316e-05, + "loss": 0.21925149917602538, + "step": 125100 + }, + { + "epoch": 41.94312756512271, + "grad_norm": 0.9023459553718567, + "learning_rate": 2.9037353433835844e-05, + "loss": 0.21658233642578126, + "step": 125200 + }, + { + "epoch": 41.97663120864394, + "grad_norm": 0.9475107192993164, + "learning_rate": 2.9020603015075377e-05, + "loss": 0.2174862480163574, + "step": 125300 + }, + { + "epoch": 42.01005109305637, + "grad_norm": 0.8001925945281982, + "learning_rate": 2.9003852596314905e-05, + "loss": 0.21471311569213866, + "step": 125400 + }, + { + "epoch": 42.043554736577605, + "grad_norm": 0.7804350852966309, + "learning_rate": 2.898710217755444e-05, + "loss": 0.2056850814819336, + "step": 125500 + }, + { + "epoch": 42.07705838009883, + "grad_norm": 0.9709755182266235, + "learning_rate": 2.8970351758793973e-05, + "loss": 0.20687313079833985, + "step": 125600 + }, + { + "epoch": 42.11056202362007, + "grad_norm": 0.8425003290176392, + "learning_rate": 2.8953601340033502e-05, + "loss": 0.20829198837280274, + "step": 125700 + }, + { + "epoch": 42.1440656671413, + "grad_norm": 0.7324151396751404, + "learning_rate": 2.8936850921273034e-05, + "loss": 0.20799571990966798, + "step": 125800 + }, + { + "epoch": 42.177569310662534, + "grad_norm": 0.7971581220626831, + "learning_rate": 2.8920100502512567e-05, + "loss": 0.21026283264160156, + "step": 125900 + }, + { + "epoch": 42.21107295418377, + "grad_norm": 0.7958289384841919, + "learning_rate": 2.8903350083752095e-05, + "loss": 0.20917728424072266, + "step": 126000 + }, + { + "epoch": 42.244576597705, + "grad_norm": 0.8632842302322388, + "learning_rate": 2.888676716917923e-05, + "loss": 0.20981687545776367, + "step": 126100 + }, + { + "epoch": 42.278080241226235, + "grad_norm": 0.8120240569114685, + "learning_rate": 2.887001675041876e-05, + "loss": 0.21040897369384765, + "step": 126200 + }, + { + "epoch": 42.31158388474746, + "grad_norm": 0.9877341389656067, + "learning_rate": 2.8853266331658292e-05, + "loss": 0.21044788360595704, + "step": 126300 + }, + { + "epoch": 42.3450875282687, + "grad_norm": 0.803947925567627, + "learning_rate": 2.883651591289782e-05, + "loss": 0.21133209228515626, + "step": 126400 + }, + { + "epoch": 42.378591171789935, + "grad_norm": 0.8692134022712708, + "learning_rate": 2.8819765494137357e-05, + "loss": 0.21098001480102538, + "step": 126500 + }, + { + "epoch": 42.412094815311164, + "grad_norm": 0.703528642654419, + "learning_rate": 2.880301507537689e-05, + "loss": 0.21152076721191407, + "step": 126600 + }, + { + "epoch": 42.4455984588324, + "grad_norm": 0.9700392484664917, + "learning_rate": 2.8786264656616418e-05, + "loss": 0.21170536041259766, + "step": 126700 + }, + { + "epoch": 42.47910210235363, + "grad_norm": 0.7205595970153809, + "learning_rate": 2.876951423785595e-05, + "loss": 0.2123921012878418, + "step": 126800 + }, + { + "epoch": 42.512605745874865, + "grad_norm": 0.8186672925949097, + "learning_rate": 2.875276381909548e-05, + "loss": 0.2122740364074707, + "step": 126900 + }, + { + "epoch": 42.54610938939609, + "grad_norm": 0.9268088340759277, + "learning_rate": 2.873601340033501e-05, + "loss": 0.21358152389526366, + "step": 127000 + }, + { + "epoch": 42.57961303291733, + "grad_norm": 0.762809157371521, + "learning_rate": 2.871926298157454e-05, + "loss": 0.21314903259277343, + "step": 127100 + }, + { + "epoch": 42.613116676438565, + "grad_norm": 0.8699193596839905, + "learning_rate": 2.8702512562814072e-05, + "loss": 0.2129987335205078, + "step": 127200 + }, + { + "epoch": 42.646620319959794, + "grad_norm": 0.698263943195343, + "learning_rate": 2.86857621440536e-05, + "loss": 0.21600809097290039, + "step": 127300 + }, + { + "epoch": 42.68012396348103, + "grad_norm": 0.7782033681869507, + "learning_rate": 2.8669011725293133e-05, + "loss": 0.21448253631591796, + "step": 127400 + }, + { + "epoch": 42.71362760700226, + "grad_norm": 0.8113609552383423, + "learning_rate": 2.8652261306532662e-05, + "loss": 0.2134496307373047, + "step": 127500 + }, + { + "epoch": 42.747131250523495, + "grad_norm": 0.7400202751159668, + "learning_rate": 2.8635510887772194e-05, + "loss": 0.21415563583374023, + "step": 127600 + }, + { + "epoch": 42.78063489404473, + "grad_norm": 1.0038073062896729, + "learning_rate": 2.8618760469011723e-05, + "loss": 0.2144919776916504, + "step": 127700 + }, + { + "epoch": 42.81413853756596, + "grad_norm": 0.7947350144386292, + "learning_rate": 2.860201005025126e-05, + "loss": 0.21546197891235352, + "step": 127800 + }, + { + "epoch": 42.847642181087195, + "grad_norm": 0.7404258847236633, + "learning_rate": 2.858525963149079e-05, + "loss": 0.2151948356628418, + "step": 127900 + }, + { + "epoch": 42.881145824608424, + "grad_norm": 0.8000117540359497, + "learning_rate": 2.856850921273032e-05, + "loss": 0.2174908447265625, + "step": 128000 + }, + { + "epoch": 42.91464946812966, + "grad_norm": 0.8331735730171204, + "learning_rate": 2.8551758793969852e-05, + "loss": 0.2154141616821289, + "step": 128100 + }, + { + "epoch": 42.94815311165089, + "grad_norm": 0.8255071640014648, + "learning_rate": 2.8535175879396984e-05, + "loss": 0.21642459869384767, + "step": 128200 + }, + { + "epoch": 42.981656755172125, + "grad_norm": 0.8828434944152832, + "learning_rate": 2.8518425460636516e-05, + "loss": 0.21653507232666017, + "step": 128300 + }, + { + "epoch": 43.01507663958456, + "grad_norm": 0.8157568573951721, + "learning_rate": 2.8501675041876045e-05, + "loss": 0.21150121688842774, + "step": 128400 + }, + { + "epoch": 43.048580283105785, + "grad_norm": 0.7143152356147766, + "learning_rate": 2.8484924623115578e-05, + "loss": 0.20697792053222655, + "step": 128500 + }, + { + "epoch": 43.08208392662702, + "grad_norm": 0.9034318327903748, + "learning_rate": 2.846817420435511e-05, + "loss": 0.20594911575317382, + "step": 128600 + }, + { + "epoch": 43.11558757014826, + "grad_norm": 0.7974486947059631, + "learning_rate": 2.845142378559464e-05, + "loss": 0.20707765579223633, + "step": 128700 + }, + { + "epoch": 43.149091213669486, + "grad_norm": 0.7226033210754395, + "learning_rate": 2.8434673366834174e-05, + "loss": 0.20583932876586913, + "step": 128800 + }, + { + "epoch": 43.18259485719072, + "grad_norm": 0.8551874160766602, + "learning_rate": 2.8417922948073706e-05, + "loss": 0.2078396797180176, + "step": 128900 + }, + { + "epoch": 43.21609850071195, + "grad_norm": 0.7227718234062195, + "learning_rate": 2.8401172529313235e-05, + "loss": 0.20798839569091798, + "step": 129000 + }, + { + "epoch": 43.24960214423319, + "grad_norm": 0.9496952891349792, + "learning_rate": 2.8384422110552767e-05, + "loss": 0.2099104118347168, + "step": 129100 + }, + { + "epoch": 43.283105787754415, + "grad_norm": 0.9909376502037048, + "learning_rate": 2.8367671691792296e-05, + "loss": 0.20969415664672852, + "step": 129200 + }, + { + "epoch": 43.31660943127565, + "grad_norm": 0.9239180088043213, + "learning_rate": 2.835092127303183e-05, + "loss": 0.20861217498779297, + "step": 129300 + }, + { + "epoch": 43.35011307479689, + "grad_norm": 0.8692393898963928, + "learning_rate": 2.8334170854271357e-05, + "loss": 0.2091372299194336, + "step": 129400 + }, + { + "epoch": 43.383616718318116, + "grad_norm": 0.693246603012085, + "learning_rate": 2.831742043551089e-05, + "loss": 0.20966863632202148, + "step": 129500 + }, + { + "epoch": 43.41712036183935, + "grad_norm": 0.8332297205924988, + "learning_rate": 2.8300670016750418e-05, + "loss": 0.21026342391967773, + "step": 129600 + }, + { + "epoch": 43.45062400536058, + "grad_norm": 0.8729221820831299, + "learning_rate": 2.828391959798995e-05, + "loss": 0.21070770263671876, + "step": 129700 + }, + { + "epoch": 43.48412764888182, + "grad_norm": 0.7649937868118286, + "learning_rate": 2.826716917922948e-05, + "loss": 0.21120260238647462, + "step": 129800 + }, + { + "epoch": 43.517631292403046, + "grad_norm": 0.8937798738479614, + "learning_rate": 2.825041876046901e-05, + "loss": 0.21302244186401367, + "step": 129900 + }, + { + "epoch": 43.55113493592428, + "grad_norm": 1.0248814821243286, + "learning_rate": 2.8233668341708547e-05, + "loss": 0.21207603454589843, + "step": 130000 + }, + { + "epoch": 43.58463857944552, + "grad_norm": 0.9701077938079834, + "learning_rate": 2.8216917922948076e-05, + "loss": 0.2112472915649414, + "step": 130100 + }, + { + "epoch": 43.618142222966746, + "grad_norm": 0.8634024858474731, + "learning_rate": 2.8200167504187608e-05, + "loss": 0.21355249404907226, + "step": 130200 + }, + { + "epoch": 43.65164586648798, + "grad_norm": 0.9003106951713562, + "learning_rate": 2.818358458961474e-05, + "loss": 0.2142485809326172, + "step": 130300 + }, + { + "epoch": 43.68514951000921, + "grad_norm": 0.7895374298095703, + "learning_rate": 2.8166834170854273e-05, + "loss": 0.2131346321105957, + "step": 130400 + }, + { + "epoch": 43.71865315353045, + "grad_norm": 1.0067280530929565, + "learning_rate": 2.81500837520938e-05, + "loss": 0.21282941818237305, + "step": 130500 + }, + { + "epoch": 43.75215679705168, + "grad_norm": 0.7602081894874573, + "learning_rate": 2.8133333333333334e-05, + "loss": 0.2138546371459961, + "step": 130600 + }, + { + "epoch": 43.78566044057291, + "grad_norm": 0.7720736265182495, + "learning_rate": 2.8116582914572863e-05, + "loss": 0.2136884307861328, + "step": 130700 + }, + { + "epoch": 43.81916408409415, + "grad_norm": 0.7715796232223511, + "learning_rate": 2.8099832495812395e-05, + "loss": 0.21329423904418945, + "step": 130800 + }, + { + "epoch": 43.852667727615376, + "grad_norm": 0.8566184043884277, + "learning_rate": 2.8083082077051924e-05, + "loss": 0.21406152725219726, + "step": 130900 + }, + { + "epoch": 43.88617137113661, + "grad_norm": 0.8490840792655945, + "learning_rate": 2.8066331658291456e-05, + "loss": 0.21463991165161134, + "step": 131000 + }, + { + "epoch": 43.91967501465784, + "grad_norm": 0.9666714072227478, + "learning_rate": 2.804958123953099e-05, + "loss": 0.21495559692382812, + "step": 131100 + }, + { + "epoch": 43.95317865817908, + "grad_norm": 1.0371804237365723, + "learning_rate": 2.8032830820770524e-05, + "loss": 0.21566991806030272, + "step": 131200 + }, + { + "epoch": 43.98668230170031, + "grad_norm": 0.910309910774231, + "learning_rate": 2.8016080402010053e-05, + "loss": 0.215529727935791, + "step": 131300 + }, + { + "epoch": 44.02010218611274, + "grad_norm": 0.7464276552200317, + "learning_rate": 2.7999329983249585e-05, + "loss": 0.20866870880126953, + "step": 131400 + }, + { + "epoch": 44.05360582963397, + "grad_norm": 0.7517808079719543, + "learning_rate": 2.7982579564489114e-05, + "loss": 0.20390798568725585, + "step": 131500 + }, + { + "epoch": 44.08710947315521, + "grad_norm": 0.6557915210723877, + "learning_rate": 2.7965829145728646e-05, + "loss": 0.20384593963623046, + "step": 131600 + }, + { + "epoch": 44.12061311667644, + "grad_norm": 0.855191171169281, + "learning_rate": 2.7949078726968175e-05, + "loss": 0.2066969871520996, + "step": 131700 + }, + { + "epoch": 44.154116760197674, + "grad_norm": 0.8590629696846008, + "learning_rate": 2.7932328308207707e-05, + "loss": 0.2062934684753418, + "step": 131800 + }, + { + "epoch": 44.1876204037189, + "grad_norm": 0.9050695896148682, + "learning_rate": 2.7915577889447236e-05, + "loss": 0.20599493026733398, + "step": 131900 + }, + { + "epoch": 44.22112404724014, + "grad_norm": 0.8817638754844666, + "learning_rate": 2.7898827470686768e-05, + "loss": 0.2078232765197754, + "step": 132000 + }, + { + "epoch": 44.25462769076137, + "grad_norm": 0.8479394316673279, + "learning_rate": 2.7882077051926297e-05, + "loss": 0.20759906768798828, + "step": 132100 + }, + { + "epoch": 44.2881313342826, + "grad_norm": 0.8977039456367493, + "learning_rate": 2.786532663316583e-05, + "loss": 0.20864250183105468, + "step": 132200 + }, + { + "epoch": 44.32163497780384, + "grad_norm": 0.7003665566444397, + "learning_rate": 2.7848576214405365e-05, + "loss": 0.20907209396362306, + "step": 132300 + }, + { + "epoch": 44.35513862132507, + "grad_norm": 0.8874910473823547, + "learning_rate": 2.7831825795644893e-05, + "loss": 0.20834226608276368, + "step": 132400 + }, + { + "epoch": 44.388642264846304, + "grad_norm": 0.8135631680488586, + "learning_rate": 2.781524288107203e-05, + "loss": 0.2098270034790039, + "step": 132500 + }, + { + "epoch": 44.42214590836753, + "grad_norm": 1.0045340061187744, + "learning_rate": 2.7798492462311558e-05, + "loss": 0.2112841033935547, + "step": 132600 + }, + { + "epoch": 44.45564955188877, + "grad_norm": 0.8854024410247803, + "learning_rate": 2.778174204355109e-05, + "loss": 0.2096893310546875, + "step": 132700 + }, + { + "epoch": 44.48915319541, + "grad_norm": 0.8551903963088989, + "learning_rate": 2.776499162479062e-05, + "loss": 0.21038183212280273, + "step": 132800 + }, + { + "epoch": 44.52265683893123, + "grad_norm": 0.848574161529541, + "learning_rate": 2.774824120603015e-05, + "loss": 0.21035202026367186, + "step": 132900 + }, + { + "epoch": 44.55616048245247, + "grad_norm": 0.8698804378509521, + "learning_rate": 2.773149078726968e-05, + "loss": 0.21176429748535155, + "step": 133000 + }, + { + "epoch": 44.5896641259737, + "grad_norm": 0.8525173664093018, + "learning_rate": 2.7714740368509212e-05, + "loss": 0.21025493621826172, + "step": 133100 + }, + { + "epoch": 44.623167769494934, + "grad_norm": 1.0027357339859009, + "learning_rate": 2.769798994974874e-05, + "loss": 0.21228431701660155, + "step": 133200 + }, + { + "epoch": 44.65667141301616, + "grad_norm": 0.9768441915512085, + "learning_rate": 2.7681239530988273e-05, + "loss": 0.21132736206054686, + "step": 133300 + }, + { + "epoch": 44.6901750565374, + "grad_norm": 0.9287051558494568, + "learning_rate": 2.766448911222781e-05, + "loss": 0.211924991607666, + "step": 133400 + }, + { + "epoch": 44.723678700058635, + "grad_norm": 1.0014779567718506, + "learning_rate": 2.764773869346734e-05, + "loss": 0.21157003402709962, + "step": 133500 + }, + { + "epoch": 44.75718234357986, + "grad_norm": 0.8901475071907043, + "learning_rate": 2.763098827470687e-05, + "loss": 0.21130624771118164, + "step": 133600 + }, + { + "epoch": 44.7906859871011, + "grad_norm": 0.7723361253738403, + "learning_rate": 2.7614237855946402e-05, + "loss": 0.21280551910400392, + "step": 133700 + }, + { + "epoch": 44.82418963062233, + "grad_norm": 0.8794797658920288, + "learning_rate": 2.759748743718593e-05, + "loss": 0.21236923217773437, + "step": 133800 + }, + { + "epoch": 44.857693274143564, + "grad_norm": 0.8374422192573547, + "learning_rate": 2.7580737018425463e-05, + "loss": 0.21364736557006836, + "step": 133900 + }, + { + "epoch": 44.89119691766479, + "grad_norm": 0.8275327086448669, + "learning_rate": 2.7563986599664992e-05, + "loss": 0.21200048446655273, + "step": 134000 + }, + { + "epoch": 44.92470056118603, + "grad_norm": 0.9097633957862854, + "learning_rate": 2.7547236180904524e-05, + "loss": 0.21340879440307617, + "step": 134100 + }, + { + "epoch": 44.958204204707265, + "grad_norm": 0.9494147300720215, + "learning_rate": 2.7530485762144053e-05, + "loss": 0.2142266273498535, + "step": 134200 + }, + { + "epoch": 44.991707848228494, + "grad_norm": 0.814795970916748, + "learning_rate": 2.7513735343383585e-05, + "loss": 0.21452692031860351, + "step": 134300 + }, + { + "epoch": 45.025127732640925, + "grad_norm": 0.6908448934555054, + "learning_rate": 2.7496984924623114e-05, + "loss": 0.20500320434570313, + "step": 134400 + }, + { + "epoch": 45.05863137616216, + "grad_norm": 0.6426514387130737, + "learning_rate": 2.7480234505862646e-05, + "loss": 0.2033299446105957, + "step": 134500 + }, + { + "epoch": 45.09213501968339, + "grad_norm": 0.8847736716270447, + "learning_rate": 2.7463484087102182e-05, + "loss": 0.20543498992919923, + "step": 134600 + }, + { + "epoch": 45.125638663204626, + "grad_norm": 0.713890552520752, + "learning_rate": 2.744673366834171e-05, + "loss": 0.20500320434570313, + "step": 134700 + }, + { + "epoch": 45.159142306725855, + "grad_norm": 0.7541131973266602, + "learning_rate": 2.7430150753768847e-05, + "loss": 0.2060226631164551, + "step": 134800 + }, + { + "epoch": 45.19264595024709, + "grad_norm": 0.9209812879562378, + "learning_rate": 2.7413400335008375e-05, + "loss": 0.20517513275146484, + "step": 134900 + }, + { + "epoch": 45.22614959376832, + "grad_norm": 0.781428873538971, + "learning_rate": 2.7396649916247908e-05, + "loss": 0.20627330780029296, + "step": 135000 + }, + { + "epoch": 45.259653237289555, + "grad_norm": 0.8748304843902588, + "learning_rate": 2.7379899497487437e-05, + "loss": 0.20791227340698243, + "step": 135100 + }, + { + "epoch": 45.29315688081079, + "grad_norm": 0.7505505681037903, + "learning_rate": 2.736314907872697e-05, + "loss": 0.2061052703857422, + "step": 135200 + }, + { + "epoch": 45.32666052433202, + "grad_norm": 0.8114047646522522, + "learning_rate": 2.7346398659966498e-05, + "loss": 0.2083379364013672, + "step": 135300 + }, + { + "epoch": 45.360164167853256, + "grad_norm": 0.8816334009170532, + "learning_rate": 2.732964824120603e-05, + "loss": 0.2089382553100586, + "step": 135400 + }, + { + "epoch": 45.393667811374485, + "grad_norm": 0.8554006814956665, + "learning_rate": 2.731289782244556e-05, + "loss": 0.20821535110473632, + "step": 135500 + }, + { + "epoch": 45.42717145489572, + "grad_norm": 0.8525182008743286, + "learning_rate": 2.7296147403685098e-05, + "loss": 0.20828678131103515, + "step": 135600 + }, + { + "epoch": 45.46067509841695, + "grad_norm": 0.9644753932952881, + "learning_rate": 2.7279396984924626e-05, + "loss": 0.20957386016845703, + "step": 135700 + }, + { + "epoch": 45.494178741938185, + "grad_norm": 0.857822835445404, + "learning_rate": 2.726264656616416e-05, + "loss": 0.21084308624267578, + "step": 135800 + }, + { + "epoch": 45.52768238545942, + "grad_norm": 0.6781661510467529, + "learning_rate": 2.7245896147403687e-05, + "loss": 0.21013999938964845, + "step": 135900 + }, + { + "epoch": 45.56118602898065, + "grad_norm": 0.87371426820755, + "learning_rate": 2.722914572864322e-05, + "loss": 0.2115696907043457, + "step": 136000 + }, + { + "epoch": 45.594689672501886, + "grad_norm": 1.0570032596588135, + "learning_rate": 2.721239530988275e-05, + "loss": 0.20983007431030273, + "step": 136100 + }, + { + "epoch": 45.628193316023115, + "grad_norm": 0.8911213278770447, + "learning_rate": 2.719564489112228e-05, + "loss": 0.2098233413696289, + "step": 136200 + }, + { + "epoch": 45.66169695954435, + "grad_norm": 0.7911779284477234, + "learning_rate": 2.717889447236181e-05, + "loss": 0.2099312973022461, + "step": 136300 + }, + { + "epoch": 45.69520060306559, + "grad_norm": 0.8585467338562012, + "learning_rate": 2.7162144053601342e-05, + "loss": 0.21018625259399415, + "step": 136400 + }, + { + "epoch": 45.728704246586815, + "grad_norm": 0.8224589824676514, + "learning_rate": 2.714539363484087e-05, + "loss": 0.211662654876709, + "step": 136500 + }, + { + "epoch": 45.76220789010805, + "grad_norm": 0.8850246667861938, + "learning_rate": 2.7128643216080403e-05, + "loss": 0.21219783782958984, + "step": 136600 + }, + { + "epoch": 45.79571153362928, + "grad_norm": 0.9044328927993774, + "learning_rate": 2.711189279731993e-05, + "loss": 0.21055538177490235, + "step": 136700 + }, + { + "epoch": 45.829215177150516, + "grad_norm": 0.8955138325691223, + "learning_rate": 2.7095142378559464e-05, + "loss": 0.21124111175537108, + "step": 136800 + }, + { + "epoch": 45.862718820671745, + "grad_norm": 0.9041482210159302, + "learning_rate": 2.7078559463986603e-05, + "loss": 0.21166906356811524, + "step": 136900 + }, + { + "epoch": 45.89622246419298, + "grad_norm": 0.8111388087272644, + "learning_rate": 2.7061809045226132e-05, + "loss": 0.21167055130004883, + "step": 137000 + }, + { + "epoch": 45.92972610771422, + "grad_norm": 0.9616506695747375, + "learning_rate": 2.7045058626465664e-05, + "loss": 0.21228885650634766, + "step": 137100 + }, + { + "epoch": 45.963229751235446, + "grad_norm": 0.8436776399612427, + "learning_rate": 2.7028308207705193e-05, + "loss": 0.2126219940185547, + "step": 137200 + }, + { + "epoch": 45.99673339475668, + "grad_norm": 0.71140456199646, + "learning_rate": 2.7011557788944725e-05, + "loss": 0.21354110717773436, + "step": 137300 + }, + { + "epoch": 46.03015327916911, + "grad_norm": 0.7948451042175293, + "learning_rate": 2.6994807370184254e-05, + "loss": 0.2044697570800781, + "step": 137400 + }, + { + "epoch": 46.06365692269034, + "grad_norm": 0.8057336807250977, + "learning_rate": 2.6978056951423786e-05, + "loss": 0.20385299682617186, + "step": 137500 + }, + { + "epoch": 46.09716056621158, + "grad_norm": 0.7120649218559265, + "learning_rate": 2.6961306532663315e-05, + "loss": 0.20400421142578126, + "step": 137600 + }, + { + "epoch": 46.13066420973281, + "grad_norm": 0.9549148678779602, + "learning_rate": 2.6944556113902847e-05, + "loss": 0.2034744453430176, + "step": 137700 + }, + { + "epoch": 46.16416785325404, + "grad_norm": 0.8098897337913513, + "learning_rate": 2.6927805695142376e-05, + "loss": 0.203569393157959, + "step": 137800 + }, + { + "epoch": 46.19767149677527, + "grad_norm": 0.7123087644577026, + "learning_rate": 2.6911055276381915e-05, + "loss": 0.20544761657714844, + "step": 137900 + }, + { + "epoch": 46.23117514029651, + "grad_norm": 0.8449687361717224, + "learning_rate": 2.6894304857621444e-05, + "loss": 0.20498695373535156, + "step": 138000 + }, + { + "epoch": 46.26467878381774, + "grad_norm": 0.7853437066078186, + "learning_rate": 2.6877554438860976e-05, + "loss": 0.2059033203125, + "step": 138100 + }, + { + "epoch": 46.29818242733897, + "grad_norm": 0.7418807148933411, + "learning_rate": 2.6860804020100505e-05, + "loss": 0.20638565063476563, + "step": 138200 + }, + { + "epoch": 46.33168607086021, + "grad_norm": 0.9248971343040466, + "learning_rate": 2.6844053601340037e-05, + "loss": 0.2076273727416992, + "step": 138300 + }, + { + "epoch": 46.36518971438144, + "grad_norm": 0.8263251185417175, + "learning_rate": 2.6827303182579566e-05, + "loss": 0.20645214080810548, + "step": 138400 + }, + { + "epoch": 46.39869335790267, + "grad_norm": 0.9032105207443237, + "learning_rate": 2.6810552763819098e-05, + "loss": 0.20705162048339842, + "step": 138500 + }, + { + "epoch": 46.4321970014239, + "grad_norm": 0.7566851377487183, + "learning_rate": 2.6793802345058627e-05, + "loss": 0.20758819580078125, + "step": 138600 + }, + { + "epoch": 46.46570064494514, + "grad_norm": 0.7938912510871887, + "learning_rate": 2.677705192629816e-05, + "loss": 0.20770130157470704, + "step": 138700 + }, + { + "epoch": 46.49920428846637, + "grad_norm": 0.8320357799530029, + "learning_rate": 2.6760301507537688e-05, + "loss": 0.20806819915771485, + "step": 138800 + }, + { + "epoch": 46.5327079319876, + "grad_norm": 0.9987215995788574, + "learning_rate": 2.674355108877722e-05, + "loss": 0.20871660232543945, + "step": 138900 + }, + { + "epoch": 46.56621157550884, + "grad_norm": 0.8866457939147949, + "learning_rate": 2.672696817420436e-05, + "loss": 0.20802412033081055, + "step": 139000 + }, + { + "epoch": 46.59971521903007, + "grad_norm": 0.7644064426422119, + "learning_rate": 2.6710217755443888e-05, + "loss": 0.2100166893005371, + "step": 139100 + }, + { + "epoch": 46.6332188625513, + "grad_norm": 0.832198977470398, + "learning_rate": 2.669346733668342e-05, + "loss": 0.2086174964904785, + "step": 139200 + }, + { + "epoch": 46.66672250607254, + "grad_norm": 0.7455396056175232, + "learning_rate": 2.667671691792295e-05, + "loss": 0.21050701141357422, + "step": 139300 + }, + { + "epoch": 46.70022614959377, + "grad_norm": 0.7941868901252747, + "learning_rate": 2.665996649916248e-05, + "loss": 0.21018735885620118, + "step": 139400 + }, + { + "epoch": 46.733729793115, + "grad_norm": 0.745232105255127, + "learning_rate": 2.664321608040201e-05, + "loss": 0.2106583023071289, + "step": 139500 + }, + { + "epoch": 46.76723343663623, + "grad_norm": 0.8534348011016846, + "learning_rate": 2.6626465661641543e-05, + "loss": 0.21023065567016602, + "step": 139600 + }, + { + "epoch": 46.80073708015747, + "grad_norm": 0.8639134764671326, + "learning_rate": 2.660971524288107e-05, + "loss": 0.20966962814331055, + "step": 139700 + }, + { + "epoch": 46.8342407236787, + "grad_norm": 0.9052923917770386, + "learning_rate": 2.6592964824120604e-05, + "loss": 0.2114642906188965, + "step": 139800 + }, + { + "epoch": 46.86774436719993, + "grad_norm": 0.8590245246887207, + "learning_rate": 2.6576214405360132e-05, + "loss": 0.2110831069946289, + "step": 139900 + }, + { + "epoch": 46.90124801072117, + "grad_norm": 0.8708141446113586, + "learning_rate": 2.6559463986599665e-05, + "loss": 0.21110519409179687, + "step": 140000 + }, + { + "epoch": 46.9347516542424, + "grad_norm": 0.9694708585739136, + "learning_rate": 2.6542713567839193e-05, + "loss": 0.21246437072753907, + "step": 140100 + }, + { + "epoch": 46.96825529776363, + "grad_norm": 0.8531249761581421, + "learning_rate": 2.6525963149078732e-05, + "loss": 0.2127097511291504, + "step": 140200 + }, + { + "epoch": 47.001675182176065, + "grad_norm": 0.7149065136909485, + "learning_rate": 2.650921273031826e-05, + "loss": 0.21077686309814453, + "step": 140300 + }, + { + "epoch": 47.035178825697294, + "grad_norm": 0.906190812587738, + "learning_rate": 2.6492462311557793e-05, + "loss": 0.20198272705078124, + "step": 140400 + }, + { + "epoch": 47.06868246921853, + "grad_norm": 0.8794195652008057, + "learning_rate": 2.6475711892797322e-05, + "loss": 0.20144824981689452, + "step": 140500 + }, + { + "epoch": 47.10218611273976, + "grad_norm": 0.7231687307357788, + "learning_rate": 2.6458961474036854e-05, + "loss": 0.20203954696655274, + "step": 140600 + }, + { + "epoch": 47.135689756260994, + "grad_norm": 0.8035680651664734, + "learning_rate": 2.6442211055276383e-05, + "loss": 0.20453298568725586, + "step": 140700 + }, + { + "epoch": 47.16919339978222, + "grad_norm": 0.7751315832138062, + "learning_rate": 2.6425460636515916e-05, + "loss": 0.20380630493164062, + "step": 140800 + }, + { + "epoch": 47.20269704330346, + "grad_norm": 0.8336166739463806, + "learning_rate": 2.6408710217755444e-05, + "loss": 0.2044701385498047, + "step": 140900 + }, + { + "epoch": 47.236200686824695, + "grad_norm": 0.92495197057724, + "learning_rate": 2.6391959798994977e-05, + "loss": 0.20544666290283203, + "step": 141000 + }, + { + "epoch": 47.269704330345924, + "grad_norm": 0.8691511750221252, + "learning_rate": 2.637537688442211e-05, + "loss": 0.20497919082641602, + "step": 141100 + }, + { + "epoch": 47.30320797386716, + "grad_norm": 0.7744715213775635, + "learning_rate": 2.6358626465661645e-05, + "loss": 0.20545125961303712, + "step": 141200 + }, + { + "epoch": 47.33671161738839, + "grad_norm": 0.8087801337242126, + "learning_rate": 2.6341876046901177e-05, + "loss": 0.20726716995239258, + "step": 141300 + }, + { + "epoch": 47.370215260909625, + "grad_norm": 0.6278528571128845, + "learning_rate": 2.6325125628140706e-05, + "loss": 0.20632375717163087, + "step": 141400 + }, + { + "epoch": 47.40371890443085, + "grad_norm": 0.7197872996330261, + "learning_rate": 2.6308375209380238e-05, + "loss": 0.20561176300048828, + "step": 141500 + }, + { + "epoch": 47.43722254795209, + "grad_norm": 0.8030456900596619, + "learning_rate": 2.6291624790619767e-05, + "loss": 0.20726533889770507, + "step": 141600 + }, + { + "epoch": 47.470726191473325, + "grad_norm": 0.8122235536575317, + "learning_rate": 2.62748743718593e-05, + "loss": 0.20543954849243165, + "step": 141700 + }, + { + "epoch": 47.504229834994554, + "grad_norm": 0.8430666923522949, + "learning_rate": 2.6258123953098828e-05, + "loss": 0.20687795639038087, + "step": 141800 + }, + { + "epoch": 47.53773347851579, + "grad_norm": 0.7796192765235901, + "learning_rate": 2.624137353433836e-05, + "loss": 0.20932218551635742, + "step": 141900 + }, + { + "epoch": 47.57123712203702, + "grad_norm": 0.7568249702453613, + "learning_rate": 2.622462311557789e-05, + "loss": 0.20753023147583008, + "step": 142000 + }, + { + "epoch": 47.604740765558255, + "grad_norm": 0.7766709923744202, + "learning_rate": 2.620787269681742e-05, + "loss": 0.20817523956298828, + "step": 142100 + }, + { + "epoch": 47.63824440907949, + "grad_norm": 0.8407247066497803, + "learning_rate": 2.619112227805695e-05, + "loss": 0.20790090560913085, + "step": 142200 + }, + { + "epoch": 47.67174805260072, + "grad_norm": 1.0693186521530151, + "learning_rate": 2.6174371859296482e-05, + "loss": 0.20879848480224608, + "step": 142300 + }, + { + "epoch": 47.705251696121955, + "grad_norm": 0.9089698791503906, + "learning_rate": 2.615762144053601e-05, + "loss": 0.20962982177734374, + "step": 142400 + }, + { + "epoch": 47.738755339643184, + "grad_norm": 0.9101313948631287, + "learning_rate": 2.614087102177555e-05, + "loss": 0.20881969451904298, + "step": 142500 + }, + { + "epoch": 47.77225898316442, + "grad_norm": 0.9239957332611084, + "learning_rate": 2.612412060301508e-05, + "loss": 0.21106016159057617, + "step": 142600 + }, + { + "epoch": 47.80576262668565, + "grad_norm": 0.7095087170600891, + "learning_rate": 2.610737018425461e-05, + "loss": 0.21043779373168944, + "step": 142700 + }, + { + "epoch": 47.839266270206885, + "grad_norm": 0.8761176466941833, + "learning_rate": 2.609061976549414e-05, + "loss": 0.20853693008422852, + "step": 142800 + }, + { + "epoch": 47.87276991372812, + "grad_norm": 0.9387518763542175, + "learning_rate": 2.6073869346733672e-05, + "loss": 0.21088685989379882, + "step": 142900 + }, + { + "epoch": 47.90627355724935, + "grad_norm": 0.8915501832962036, + "learning_rate": 2.60571189279732e-05, + "loss": 0.21008544921875, + "step": 143000 + }, + { + "epoch": 47.939777200770585, + "grad_norm": 0.9699543714523315, + "learning_rate": 2.6040368509212733e-05, + "loss": 0.21000476837158202, + "step": 143100 + }, + { + "epoch": 47.973280844291814, + "grad_norm": 0.7812904119491577, + "learning_rate": 2.6023785594639865e-05, + "loss": 0.21052337646484376, + "step": 143200 + }, + { + "epoch": 48.006700728704246, + "grad_norm": 0.822690486907959, + "learning_rate": 2.6007035175879398e-05, + "loss": 0.20833581924438477, + "step": 143300 + }, + { + "epoch": 48.04020437222548, + "grad_norm": 0.6735044121742249, + "learning_rate": 2.5990284757118926e-05, + "loss": 0.20092033386230468, + "step": 143400 + }, + { + "epoch": 48.07370801574671, + "grad_norm": 0.7303795218467712, + "learning_rate": 2.5973534338358462e-05, + "loss": 0.2011802864074707, + "step": 143500 + }, + { + "epoch": 48.107211659267946, + "grad_norm": 0.7877155542373657, + "learning_rate": 2.5956783919597994e-05, + "loss": 0.2021241569519043, + "step": 143600 + }, + { + "epoch": 48.140715302789175, + "grad_norm": 0.7610930800437927, + "learning_rate": 2.5940033500837523e-05, + "loss": 0.20223419189453126, + "step": 143700 + }, + { + "epoch": 48.17421894631041, + "grad_norm": 0.81033855676651, + "learning_rate": 2.5923283082077055e-05, + "loss": 0.20270132064819335, + "step": 143800 + }, + { + "epoch": 48.20772258983165, + "grad_norm": 0.7211432456970215, + "learning_rate": 2.5906532663316584e-05, + "loss": 0.2033340072631836, + "step": 143900 + }, + { + "epoch": 48.241226233352876, + "grad_norm": 0.7816910147666931, + "learning_rate": 2.5889782244556116e-05, + "loss": 0.20389623641967775, + "step": 144000 + }, + { + "epoch": 48.27472987687411, + "grad_norm": 0.8680933713912964, + "learning_rate": 2.5873031825795645e-05, + "loss": 0.20449954986572266, + "step": 144100 + }, + { + "epoch": 48.30823352039534, + "grad_norm": 0.6703556776046753, + "learning_rate": 2.5856281407035177e-05, + "loss": 0.20437568664550781, + "step": 144200 + }, + { + "epoch": 48.34173716391658, + "grad_norm": 0.755338191986084, + "learning_rate": 2.5839530988274706e-05, + "loss": 0.20576271057128906, + "step": 144300 + }, + { + "epoch": 48.375240807437805, + "grad_norm": 0.7581430673599243, + "learning_rate": 2.582278056951424e-05, + "loss": 0.2058708953857422, + "step": 144400 + }, + { + "epoch": 48.40874445095904, + "grad_norm": 0.7973390817642212, + "learning_rate": 2.5806030150753767e-05, + "loss": 0.20591938018798828, + "step": 144500 + }, + { + "epoch": 48.44224809448028, + "grad_norm": 0.8226273655891418, + "learning_rate": 2.57892797319933e-05, + "loss": 0.20543519973754884, + "step": 144600 + }, + { + "epoch": 48.475751738001506, + "grad_norm": 0.9298210740089417, + "learning_rate": 2.5772529313232828e-05, + "loss": 0.2074728012084961, + "step": 144700 + }, + { + "epoch": 48.50925538152274, + "grad_norm": 0.7703186273574829, + "learning_rate": 2.5755778894472364e-05, + "loss": 0.2061468505859375, + "step": 144800 + }, + { + "epoch": 48.54275902504397, + "grad_norm": 0.7027441263198853, + "learning_rate": 2.5739028475711896e-05, + "loss": 0.2068248176574707, + "step": 144900 + }, + { + "epoch": 48.57626266856521, + "grad_norm": 0.866961658000946, + "learning_rate": 2.5722278056951425e-05, + "loss": 0.20709081649780273, + "step": 145000 + }, + { + "epoch": 48.60976631208644, + "grad_norm": 0.7900598645210266, + "learning_rate": 2.5705527638190957e-05, + "loss": 0.20745479583740234, + "step": 145100 + }, + { + "epoch": 48.64326995560767, + "grad_norm": 0.7642288208007812, + "learning_rate": 2.568877721943049e-05, + "loss": 0.20698997497558594, + "step": 145200 + }, + { + "epoch": 48.67677359912891, + "grad_norm": 0.8306117653846741, + "learning_rate": 2.5672026800670018e-05, + "loss": 0.20851272583007813, + "step": 145300 + }, + { + "epoch": 48.710277242650136, + "grad_norm": 0.9393877387046814, + "learning_rate": 2.565527638190955e-05, + "loss": 0.2079641914367676, + "step": 145400 + }, + { + "epoch": 48.74378088617137, + "grad_norm": 0.7118200659751892, + "learning_rate": 2.5638693467336683e-05, + "loss": 0.20779979705810547, + "step": 145500 + }, + { + "epoch": 48.7772845296926, + "grad_norm": 0.8508455157279968, + "learning_rate": 2.5621943048576215e-05, + "loss": 0.20885522842407225, + "step": 145600 + }, + { + "epoch": 48.81078817321384, + "grad_norm": 0.7956013083457947, + "learning_rate": 2.5605192629815744e-05, + "loss": 0.2095408821105957, + "step": 145700 + }, + { + "epoch": 48.84429181673507, + "grad_norm": 0.9105645418167114, + "learning_rate": 2.558844221105528e-05, + "loss": 0.20915800094604492, + "step": 145800 + }, + { + "epoch": 48.8777954602563, + "grad_norm": 0.8507822155952454, + "learning_rate": 2.5571691792294812e-05, + "loss": 0.20863231658935547, + "step": 145900 + }, + { + "epoch": 48.91129910377754, + "grad_norm": 0.9350414872169495, + "learning_rate": 2.555494137353434e-05, + "loss": 0.2097511100769043, + "step": 146000 + }, + { + "epoch": 48.944802747298766, + "grad_norm": 0.6584986448287964, + "learning_rate": 2.5538190954773873e-05, + "loss": 0.20917884826660157, + "step": 146100 + }, + { + "epoch": 48.97830639082, + "grad_norm": 0.8874914646148682, + "learning_rate": 2.55214405360134e-05, + "loss": 0.20966741561889649, + "step": 146200 + }, + { + "epoch": 49.011726275232434, + "grad_norm": 0.6621425747871399, + "learning_rate": 2.5504690117252934e-05, + "loss": 0.20701923370361328, + "step": 146300 + }, + { + "epoch": 49.04522991875366, + "grad_norm": 0.772162914276123, + "learning_rate": 2.5487939698492463e-05, + "loss": 0.19997344970703124, + "step": 146400 + }, + { + "epoch": 49.0787335622749, + "grad_norm": 0.7397682666778564, + "learning_rate": 2.5471189279731995e-05, + "loss": 0.19966798782348633, + "step": 146500 + }, + { + "epoch": 49.11223720579613, + "grad_norm": 0.7998943328857422, + "learning_rate": 2.5454438860971524e-05, + "loss": 0.20070135116577148, + "step": 146600 + }, + { + "epoch": 49.14574084931736, + "grad_norm": 0.8297356367111206, + "learning_rate": 2.5437688442211056e-05, + "loss": 0.2032426643371582, + "step": 146700 + }, + { + "epoch": 49.1792444928386, + "grad_norm": 0.6718747615814209, + "learning_rate": 2.5420938023450585e-05, + "loss": 0.20162422180175782, + "step": 146800 + }, + { + "epoch": 49.21274813635983, + "grad_norm": 0.8085470795631409, + "learning_rate": 2.5404187604690117e-05, + "loss": 0.20480926513671874, + "step": 146900 + }, + { + "epoch": 49.246251779881064, + "grad_norm": 0.6637224555015564, + "learning_rate": 2.5387437185929646e-05, + "loss": 0.20419147491455078, + "step": 147000 + }, + { + "epoch": 49.27975542340229, + "grad_norm": 0.8804967999458313, + "learning_rate": 2.537068676716918e-05, + "loss": 0.20260902404785155, + "step": 147100 + }, + { + "epoch": 49.31325906692353, + "grad_norm": 0.6562800407409668, + "learning_rate": 2.5353936348408713e-05, + "loss": 0.2042051887512207, + "step": 147200 + }, + { + "epoch": 49.346762710444764, + "grad_norm": 0.802295446395874, + "learning_rate": 2.5337185929648242e-05, + "loss": 0.20388504028320312, + "step": 147300 + }, + { + "epoch": 49.38026635396599, + "grad_norm": 0.6702427268028259, + "learning_rate": 2.5320435510887775e-05, + "loss": 0.20359308242797852, + "step": 147400 + }, + { + "epoch": 49.41376999748723, + "grad_norm": 0.6546157002449036, + "learning_rate": 2.5303685092127303e-05, + "loss": 0.20544279098510743, + "step": 147500 + }, + { + "epoch": 49.44727364100846, + "grad_norm": 0.7745968103408813, + "learning_rate": 2.528710217755444e-05, + "loss": 0.20460813522338867, + "step": 147600 + }, + { + "epoch": 49.480777284529694, + "grad_norm": 0.754804790019989, + "learning_rate": 2.527035175879397e-05, + "loss": 0.20541131973266602, + "step": 147700 + }, + { + "epoch": 49.51428092805092, + "grad_norm": 0.8245925307273865, + "learning_rate": 2.52536013400335e-05, + "loss": 0.20514223098754883, + "step": 147800 + }, + { + "epoch": 49.54778457157216, + "grad_norm": 0.7658609747886658, + "learning_rate": 2.5236850921273032e-05, + "loss": 0.20672239303588869, + "step": 147900 + }, + { + "epoch": 49.581288215093394, + "grad_norm": 0.8386098742485046, + "learning_rate": 2.522010050251256e-05, + "loss": 0.20576807022094726, + "step": 148000 + }, + { + "epoch": 49.61479185861462, + "grad_norm": 0.9193150997161865, + "learning_rate": 2.5203350083752097e-05, + "loss": 0.20691360473632814, + "step": 148100 + }, + { + "epoch": 49.64829550213586, + "grad_norm": 0.8064738512039185, + "learning_rate": 2.518659966499163e-05, + "loss": 0.20630212783813476, + "step": 148200 + }, + { + "epoch": 49.68179914565709, + "grad_norm": 0.6325901746749878, + "learning_rate": 2.5169849246231158e-05, + "loss": 0.20667299270629882, + "step": 148300 + }, + { + "epoch": 49.715302789178324, + "grad_norm": 0.796997606754303, + "learning_rate": 2.515309882747069e-05, + "loss": 0.20724594116210937, + "step": 148400 + }, + { + "epoch": 49.74880643269955, + "grad_norm": 0.8888092041015625, + "learning_rate": 2.513634840871022e-05, + "loss": 0.20756359100341798, + "step": 148500 + }, + { + "epoch": 49.78231007622079, + "grad_norm": 0.8092156052589417, + "learning_rate": 2.511959798994975e-05, + "loss": 0.2068187713623047, + "step": 148600 + }, + { + "epoch": 49.815813719742025, + "grad_norm": 0.9051980972290039, + "learning_rate": 2.510284757118928e-05, + "loss": 0.20732791900634764, + "step": 148700 + }, + { + "epoch": 49.84931736326325, + "grad_norm": 0.9662907719612122, + "learning_rate": 2.5086097152428812e-05, + "loss": 0.2081096076965332, + "step": 148800 + }, + { + "epoch": 49.88282100678449, + "grad_norm": 0.9831855297088623, + "learning_rate": 2.506934673366834e-05, + "loss": 0.20788869857788086, + "step": 148900 + }, + { + "epoch": 49.91632465030572, + "grad_norm": 0.6909393668174744, + "learning_rate": 2.5052596314907873e-05, + "loss": 0.20930927276611327, + "step": 149000 + }, + { + "epoch": 49.949828293826954, + "grad_norm": 0.7016172409057617, + "learning_rate": 2.5035845896147402e-05, + "loss": 0.20851097106933594, + "step": 149100 + }, + { + "epoch": 49.98333193734819, + "grad_norm": 0.9753764867782593, + "learning_rate": 2.5019095477386934e-05, + "loss": 0.20876035690307618, + "step": 149200 + }, + { + "epoch": 50.016751821760614, + "grad_norm": 0.814017117023468, + "learning_rate": 2.500234505862647e-05, + "loss": 0.20314416885375977, + "step": 149300 + }, + { + "epoch": 50.05025546528185, + "grad_norm": 0.7156041860580444, + "learning_rate": 2.4985594639866e-05, + "loss": 0.19888938903808595, + "step": 149400 + }, + { + "epoch": 50.08375910880308, + "grad_norm": 0.7967144250869751, + "learning_rate": 2.4968844221105528e-05, + "loss": 0.2009027862548828, + "step": 149500 + }, + { + "epoch": 50.117262752324315, + "grad_norm": 0.8211435079574585, + "learning_rate": 2.495209380234506e-05, + "loss": 0.20014671325683595, + "step": 149600 + }, + { + "epoch": 50.15076639584555, + "grad_norm": 0.6646608710289001, + "learning_rate": 2.4935510887772196e-05, + "loss": 0.20111976623535155, + "step": 149700 + }, + { + "epoch": 50.18427003936678, + "grad_norm": 0.7369064092636108, + "learning_rate": 2.4918760469011724e-05, + "loss": 0.20281072616577148, + "step": 149800 + }, + { + "epoch": 50.217773682888016, + "grad_norm": 0.5978965163230896, + "learning_rate": 2.4902010050251257e-05, + "loss": 0.20169940948486328, + "step": 149900 + }, + { + "epoch": 50.251277326409244, + "grad_norm": 0.8313732743263245, + "learning_rate": 2.4885259631490785e-05, + "loss": 0.2015657615661621, + "step": 150000 + }, + { + "epoch": 50.28478096993048, + "grad_norm": 0.9016907811164856, + "learning_rate": 2.486850921273032e-05, + "loss": 0.2032327651977539, + "step": 150100 + }, + { + "epoch": 50.318284613451716, + "grad_norm": 0.7199917435646057, + "learning_rate": 2.485175879396985e-05, + "loss": 0.20292411804199217, + "step": 150200 + }, + { + "epoch": 50.351788256972945, + "grad_norm": 0.8585846424102783, + "learning_rate": 2.4835008375209382e-05, + "loss": 0.20314014434814454, + "step": 150300 + }, + { + "epoch": 50.38529190049418, + "grad_norm": 0.7034669518470764, + "learning_rate": 2.481825795644891e-05, + "loss": 0.20416894912719727, + "step": 150400 + }, + { + "epoch": 50.41879554401541, + "grad_norm": 0.865682065486908, + "learning_rate": 2.4801507537688443e-05, + "loss": 0.20476892471313476, + "step": 150500 + }, + { + "epoch": 50.452299187536646, + "grad_norm": 0.7300936579704285, + "learning_rate": 2.4784757118927972e-05, + "loss": 0.20488790512084962, + "step": 150600 + }, + { + "epoch": 50.485802831057875, + "grad_norm": 0.8905784487724304, + "learning_rate": 2.4768006700167508e-05, + "loss": 0.20429906845092774, + "step": 150700 + }, + { + "epoch": 50.51930647457911, + "grad_norm": 0.759925365447998, + "learning_rate": 2.4751256281407036e-05, + "loss": 0.2061992645263672, + "step": 150800 + }, + { + "epoch": 50.552810118100346, + "grad_norm": 0.7266499996185303, + "learning_rate": 2.473450586264657e-05, + "loss": 0.20576707839965822, + "step": 150900 + }, + { + "epoch": 50.586313761621575, + "grad_norm": 0.6730079650878906, + "learning_rate": 2.4717755443886097e-05, + "loss": 0.20497604370117187, + "step": 151000 + }, + { + "epoch": 50.61981740514281, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.470100502512563e-05, + "loss": 0.20579778671264648, + "step": 151100 + }, + { + "epoch": 50.65332104866404, + "grad_norm": 0.7999610304832458, + "learning_rate": 2.468425460636516e-05, + "loss": 0.20637252807617187, + "step": 151200 + }, + { + "epoch": 50.686824692185276, + "grad_norm": 0.7081186771392822, + "learning_rate": 2.4667504187604694e-05, + "loss": 0.20630395889282227, + "step": 151300 + }, + { + "epoch": 50.720328335706505, + "grad_norm": 0.8061164021492004, + "learning_rate": 2.4650753768844223e-05, + "loss": 0.20621145248413086, + "step": 151400 + }, + { + "epoch": 50.75383197922774, + "grad_norm": 0.826841413974762, + "learning_rate": 2.4634003350083755e-05, + "loss": 0.20574779510498048, + "step": 151500 + }, + { + "epoch": 50.78733562274898, + "grad_norm": 0.7742196321487427, + "learning_rate": 2.4617252931323284e-05, + "loss": 0.205941162109375, + "step": 151600 + }, + { + "epoch": 50.820839266270205, + "grad_norm": 0.8660677075386047, + "learning_rate": 2.4600502512562816e-05, + "loss": 0.20769458770751953, + "step": 151700 + }, + { + "epoch": 50.85434290979144, + "grad_norm": 0.7156419157981873, + "learning_rate": 2.4583752093802345e-05, + "loss": 0.20709629058837892, + "step": 151800 + }, + { + "epoch": 50.88784655331267, + "grad_norm": 0.812447190284729, + "learning_rate": 2.456716917922948e-05, + "loss": 0.20599342346191407, + "step": 151900 + }, + { + "epoch": 50.921350196833906, + "grad_norm": 0.8019922375679016, + "learning_rate": 2.4550418760469013e-05, + "loss": 0.20727943420410155, + "step": 152000 + }, + { + "epoch": 50.95485384035514, + "grad_norm": 0.7810946702957153, + "learning_rate": 2.4533668341708542e-05, + "loss": 0.2080386734008789, + "step": 152100 + }, + { + "epoch": 50.98835748387637, + "grad_norm": 0.7739458084106445, + "learning_rate": 2.4516917922948074e-05, + "loss": 0.2072319793701172, + "step": 152200 + }, + { + "epoch": 51.0217773682888, + "grad_norm": 0.7210680246353149, + "learning_rate": 2.4500167504187606e-05, + "loss": 0.20264469146728514, + "step": 152300 + }, + { + "epoch": 51.05528101181003, + "grad_norm": 0.7153304219245911, + "learning_rate": 2.448341708542714e-05, + "loss": 0.19857017517089845, + "step": 152400 + }, + { + "epoch": 51.08878465533127, + "grad_norm": 0.7581055760383606, + "learning_rate": 2.4466666666666667e-05, + "loss": 0.19956087112426757, + "step": 152500 + }, + { + "epoch": 51.1222882988525, + "grad_norm": 0.7437317967414856, + "learning_rate": 2.44499162479062e-05, + "loss": 0.19829078674316405, + "step": 152600 + }, + { + "epoch": 51.15579194237373, + "grad_norm": 0.6868230104446411, + "learning_rate": 2.443316582914573e-05, + "loss": 0.19977245330810547, + "step": 152700 + }, + { + "epoch": 51.18929558589497, + "grad_norm": 0.7176596522331238, + "learning_rate": 2.441641541038526e-05, + "loss": 0.20137237548828124, + "step": 152800 + }, + { + "epoch": 51.2227992294162, + "grad_norm": 0.7465003132820129, + "learning_rate": 2.439966499162479e-05, + "loss": 0.20151824951171876, + "step": 152900 + }, + { + "epoch": 51.25630287293743, + "grad_norm": 0.8134509325027466, + "learning_rate": 2.4382914572864325e-05, + "loss": 0.20129066467285156, + "step": 153000 + }, + { + "epoch": 51.28980651645867, + "grad_norm": 0.7882896065711975, + "learning_rate": 2.4366164154103854e-05, + "loss": 0.20372648239135743, + "step": 153100 + }, + { + "epoch": 51.3233101599799, + "grad_norm": 0.6261149048805237, + "learning_rate": 2.4349413735343386e-05, + "loss": 0.20317134857177735, + "step": 153200 + }, + { + "epoch": 51.35681380350113, + "grad_norm": 0.7279029488563538, + "learning_rate": 2.4332663316582915e-05, + "loss": 0.20203876495361328, + "step": 153300 + }, + { + "epoch": 51.39031744702236, + "grad_norm": 0.7463719248771667, + "learning_rate": 2.4315912897822447e-05, + "loss": 0.2032138252258301, + "step": 153400 + }, + { + "epoch": 51.4238210905436, + "grad_norm": 0.7583816051483154, + "learning_rate": 2.4299162479061976e-05, + "loss": 0.20314373016357423, + "step": 153500 + }, + { + "epoch": 51.45732473406483, + "grad_norm": 0.7088111042976379, + "learning_rate": 2.428241206030151e-05, + "loss": 0.20380254745483398, + "step": 153600 + }, + { + "epoch": 51.49082837758606, + "grad_norm": 0.6820314526557922, + "learning_rate": 2.426566164154104e-05, + "loss": 0.20396411895751954, + "step": 153700 + }, + { + "epoch": 51.5243320211073, + "grad_norm": 0.6890659332275391, + "learning_rate": 2.4248911222780573e-05, + "loss": 0.20465932846069335, + "step": 153800 + }, + { + "epoch": 51.55783566462853, + "grad_norm": 0.7410996556282043, + "learning_rate": 2.4232328308207705e-05, + "loss": 0.20433155059814453, + "step": 153900 + }, + { + "epoch": 51.59133930814976, + "grad_norm": 0.6642614006996155, + "learning_rate": 2.4215577889447237e-05, + "loss": 0.20583141326904297, + "step": 154000 + }, + { + "epoch": 51.62484295167099, + "grad_norm": 0.8036423921585083, + "learning_rate": 2.419882747068677e-05, + "loss": 0.20297210693359374, + "step": 154100 + }, + { + "epoch": 51.65834659519223, + "grad_norm": 0.7510450482368469, + "learning_rate": 2.4182077051926298e-05, + "loss": 0.20401430130004883, + "step": 154200 + }, + { + "epoch": 51.69185023871346, + "grad_norm": 0.7840591073036194, + "learning_rate": 2.416532663316583e-05, + "loss": 0.205728702545166, + "step": 154300 + }, + { + "epoch": 51.72535388223469, + "grad_norm": 0.8357808589935303, + "learning_rate": 2.414857621440536e-05, + "loss": 0.20580055236816405, + "step": 154400 + }, + { + "epoch": 51.75885752575593, + "grad_norm": 0.7890837788581848, + "learning_rate": 2.413182579564489e-05, + "loss": 0.2051936149597168, + "step": 154500 + }, + { + "epoch": 51.79236116927716, + "grad_norm": 1.031099557876587, + "learning_rate": 2.4115075376884424e-05, + "loss": 0.20656421661376953, + "step": 154600 + }, + { + "epoch": 51.82586481279839, + "grad_norm": 0.7498375773429871, + "learning_rate": 2.4098324958123956e-05, + "loss": 0.2050635528564453, + "step": 154700 + }, + { + "epoch": 51.85936845631962, + "grad_norm": 0.760242760181427, + "learning_rate": 2.4081574539363485e-05, + "loss": 0.20564306259155274, + "step": 154800 + }, + { + "epoch": 51.89287209984086, + "grad_norm": 0.7774176597595215, + "learning_rate": 2.4064824120603017e-05, + "loss": 0.20756494522094726, + "step": 154900 + }, + { + "epoch": 51.926375743362094, + "grad_norm": 0.7169613242149353, + "learning_rate": 2.4048073701842546e-05, + "loss": 0.2062942886352539, + "step": 155000 + }, + { + "epoch": 51.95987938688332, + "grad_norm": 0.8178589344024658, + "learning_rate": 2.4031323283082078e-05, + "loss": 0.20722549438476562, + "step": 155100 + }, + { + "epoch": 51.99338303040456, + "grad_norm": 0.9282923936843872, + "learning_rate": 2.401457286432161e-05, + "loss": 0.20599929809570314, + "step": 155200 + }, + { + "epoch": 52.02680291481698, + "grad_norm": 0.718063235282898, + "learning_rate": 2.3997822445561142e-05, + "loss": 0.19876413345336913, + "step": 155300 + }, + { + "epoch": 52.06030655833822, + "grad_norm": 0.8059532642364502, + "learning_rate": 2.398107202680067e-05, + "loss": 0.19822462081909178, + "step": 155400 + }, + { + "epoch": 52.093810201859455, + "grad_norm": 0.7145259380340576, + "learning_rate": 2.3964321608040203e-05, + "loss": 0.19868303298950196, + "step": 155500 + }, + { + "epoch": 52.127313845380684, + "grad_norm": 0.8659557700157166, + "learning_rate": 2.3947571189279732e-05, + "loss": 0.19922651290893556, + "step": 155600 + }, + { + "epoch": 52.16081748890192, + "grad_norm": 0.6749393939971924, + "learning_rate": 2.3930820770519264e-05, + "loss": 0.1997986602783203, + "step": 155700 + }, + { + "epoch": 52.19432113242315, + "grad_norm": 0.6439624428749084, + "learning_rate": 2.3914070351758793e-05, + "loss": 0.20102750778198242, + "step": 155800 + }, + { + "epoch": 52.227824775944384, + "grad_norm": 0.7515970468521118, + "learning_rate": 2.389748743718593e-05, + "loss": 0.20047502517700194, + "step": 155900 + }, + { + "epoch": 52.26132841946562, + "grad_norm": 0.806867241859436, + "learning_rate": 2.388073701842546e-05, + "loss": 0.19967298507690429, + "step": 156000 + }, + { + "epoch": 52.29483206298685, + "grad_norm": 0.6517553925514221, + "learning_rate": 2.3863986599664994e-05, + "loss": 0.20189517974853516, + "step": 156100 + }, + { + "epoch": 52.328335706508085, + "grad_norm": 0.7536884546279907, + "learning_rate": 2.3847236180904522e-05, + "loss": 0.20110305786132812, + "step": 156200 + }, + { + "epoch": 52.361839350029314, + "grad_norm": 0.6968570947647095, + "learning_rate": 2.3830485762144055e-05, + "loss": 0.20244617462158204, + "step": 156300 + }, + { + "epoch": 52.39534299355055, + "grad_norm": 0.7550085783004761, + "learning_rate": 2.3813735343383587e-05, + "loss": 0.20247106552124022, + "step": 156400 + }, + { + "epoch": 52.42884663707178, + "grad_norm": 0.720716118812561, + "learning_rate": 2.3796984924623116e-05, + "loss": 0.20291017532348632, + "step": 156500 + }, + { + "epoch": 52.462350280593014, + "grad_norm": 0.8645543456077576, + "learning_rate": 2.3780234505862648e-05, + "loss": 0.20293344497680665, + "step": 156600 + }, + { + "epoch": 52.49585392411425, + "grad_norm": 0.8600931167602539, + "learning_rate": 2.3763484087102177e-05, + "loss": 0.20278577804565429, + "step": 156700 + }, + { + "epoch": 52.52935756763548, + "grad_norm": 0.7974618673324585, + "learning_rate": 2.374673366834171e-05, + "loss": 0.202381591796875, + "step": 156800 + }, + { + "epoch": 52.562861211156715, + "grad_norm": 0.7992094159126282, + "learning_rate": 2.372998324958124e-05, + "loss": 0.20381240844726561, + "step": 156900 + }, + { + "epoch": 52.596364854677944, + "grad_norm": 0.8903921842575073, + "learning_rate": 2.3713232830820773e-05, + "loss": 0.20466848373413085, + "step": 157000 + }, + { + "epoch": 52.62986849819918, + "grad_norm": 0.7660692930221558, + "learning_rate": 2.3696482412060302e-05, + "loss": 0.20477258682250976, + "step": 157100 + }, + { + "epoch": 52.663372141720416, + "grad_norm": 0.9394494891166687, + "learning_rate": 2.3679731993299834e-05, + "loss": 0.20499584197998047, + "step": 157200 + }, + { + "epoch": 52.696875785241645, + "grad_norm": 0.7494113445281982, + "learning_rate": 2.3662981574539363e-05, + "loss": 0.20393524169921876, + "step": 157300 + }, + { + "epoch": 52.73037942876288, + "grad_norm": 0.8550491333007812, + "learning_rate": 2.3646231155778895e-05, + "loss": 0.2046040725708008, + "step": 157400 + }, + { + "epoch": 52.76388307228411, + "grad_norm": 0.7414348721504211, + "learning_rate": 2.3629480737018428e-05, + "loss": 0.2042390251159668, + "step": 157500 + }, + { + "epoch": 52.797386715805345, + "grad_norm": 0.7701572775840759, + "learning_rate": 2.361273031825796e-05, + "loss": 0.20498817443847656, + "step": 157600 + }, + { + "epoch": 52.830890359326574, + "grad_norm": 0.8651624917984009, + "learning_rate": 2.359597989949749e-05, + "loss": 0.2049662399291992, + "step": 157700 + }, + { + "epoch": 52.86439400284781, + "grad_norm": 0.7625434398651123, + "learning_rate": 2.357922948073702e-05, + "loss": 0.20496458053588867, + "step": 157800 + }, + { + "epoch": 52.897897646369046, + "grad_norm": 0.7538461685180664, + "learning_rate": 2.356247906197655e-05, + "loss": 0.20603256225585936, + "step": 157900 + }, + { + "epoch": 52.931401289890275, + "grad_norm": 0.8014910221099854, + "learning_rate": 2.3545728643216082e-05, + "loss": 0.20654550552368164, + "step": 158000 + }, + { + "epoch": 52.96490493341151, + "grad_norm": 0.7098953723907471, + "learning_rate": 2.3529145728643218e-05, + "loss": 0.2058616065979004, + "step": 158100 + }, + { + "epoch": 52.99840857693274, + "grad_norm": 0.7502704858779907, + "learning_rate": 2.3512395309882747e-05, + "loss": 0.20542961120605469, + "step": 158200 + }, + { + "epoch": 53.03182846134517, + "grad_norm": 0.7823647260665894, + "learning_rate": 2.349564489112228e-05, + "loss": 0.19869186401367187, + "step": 158300 + }, + { + "epoch": 53.06533210486641, + "grad_norm": 0.6451433300971985, + "learning_rate": 2.3478894472361808e-05, + "loss": 0.19836278915405273, + "step": 158400 + }, + { + "epoch": 53.098835748387636, + "grad_norm": 0.778315544128418, + "learning_rate": 2.346214405360134e-05, + "loss": 0.196907901763916, + "step": 158500 + }, + { + "epoch": 53.13233939190887, + "grad_norm": 0.7905980944633484, + "learning_rate": 2.3445393634840872e-05, + "loss": 0.19891220092773437, + "step": 158600 + }, + { + "epoch": 53.1658430354301, + "grad_norm": 0.7197417616844177, + "learning_rate": 2.3428643216080404e-05, + "loss": 0.19840576171875, + "step": 158700 + }, + { + "epoch": 53.199346678951336, + "grad_norm": 0.8555814623832703, + "learning_rate": 2.3411892797319933e-05, + "loss": 0.20008617401123047, + "step": 158800 + }, + { + "epoch": 53.23285032247257, + "grad_norm": 0.7590495944023132, + "learning_rate": 2.3395142378559465e-05, + "loss": 0.20077667236328126, + "step": 158900 + }, + { + "epoch": 53.2663539659938, + "grad_norm": 0.7683301568031311, + "learning_rate": 2.3378391959798994e-05, + "loss": 0.19980268478393554, + "step": 159000 + }, + { + "epoch": 53.29985760951504, + "grad_norm": 0.7807407379150391, + "learning_rate": 2.3361641541038526e-05, + "loss": 0.20026128768920898, + "step": 159100 + }, + { + "epoch": 53.333361253036266, + "grad_norm": 0.8405656218528748, + "learning_rate": 2.334489112227806e-05, + "loss": 0.20058374404907225, + "step": 159200 + }, + { + "epoch": 53.3668648965575, + "grad_norm": 0.9434088468551636, + "learning_rate": 2.332814070351759e-05, + "loss": 0.2012481689453125, + "step": 159300 + }, + { + "epoch": 53.40036854007873, + "grad_norm": 0.7459748387336731, + "learning_rate": 2.331139028475712e-05, + "loss": 0.20088954925537109, + "step": 159400 + }, + { + "epoch": 53.433872183599966, + "grad_norm": 0.7078500390052795, + "learning_rate": 2.3294639865996652e-05, + "loss": 0.20286613464355469, + "step": 159500 + }, + { + "epoch": 53.4673758271212, + "grad_norm": 0.8187021017074585, + "learning_rate": 2.327788944723618e-05, + "loss": 0.2021192741394043, + "step": 159600 + }, + { + "epoch": 53.50087947064243, + "grad_norm": 0.8571094274520874, + "learning_rate": 2.3261139028475713e-05, + "loss": 0.20223554611206054, + "step": 159700 + }, + { + "epoch": 53.53438311416367, + "grad_norm": 0.7480899691581726, + "learning_rate": 2.3244388609715245e-05, + "loss": 0.20176963806152343, + "step": 159800 + }, + { + "epoch": 53.567886757684896, + "grad_norm": 0.6709027886390686, + "learning_rate": 2.3227638190954777e-05, + "loss": 0.20310573577880858, + "step": 159900 + }, + { + "epoch": 53.60139040120613, + "grad_norm": 0.8324502110481262, + "learning_rate": 2.3210887772194306e-05, + "loss": 0.20389171600341796, + "step": 160000 + }, + { + "epoch": 53.63489404472736, + "grad_norm": 0.7991625666618347, + "learning_rate": 2.3194304857621442e-05, + "loss": 0.20335477828979492, + "step": 160100 + }, + { + "epoch": 53.6683976882486, + "grad_norm": 0.8041797876358032, + "learning_rate": 2.3177554438860974e-05, + "loss": 0.20338481903076172, + "step": 160200 + }, + { + "epoch": 53.70190133176983, + "grad_norm": 0.7331723570823669, + "learning_rate": 2.3160804020100503e-05, + "loss": 0.20225767135620118, + "step": 160300 + }, + { + "epoch": 53.73540497529106, + "grad_norm": 0.8455171585083008, + "learning_rate": 2.3144053601340035e-05, + "loss": 0.20394590377807617, + "step": 160400 + }, + { + "epoch": 53.7689086188123, + "grad_norm": 0.7466434836387634, + "learning_rate": 2.3127303182579564e-05, + "loss": 0.20405231475830077, + "step": 160500 + }, + { + "epoch": 53.802412262333526, + "grad_norm": 0.7956470847129822, + "learning_rate": 2.3110552763819096e-05, + "loss": 0.20502872467041017, + "step": 160600 + }, + { + "epoch": 53.83591590585476, + "grad_norm": 0.8183136582374573, + "learning_rate": 2.3093802345058625e-05, + "loss": 0.20336063385009764, + "step": 160700 + }, + { + "epoch": 53.869419549376, + "grad_norm": 0.6803155541419983, + "learning_rate": 2.307705192629816e-05, + "loss": 0.20551418304443358, + "step": 160800 + }, + { + "epoch": 53.90292319289723, + "grad_norm": 0.7090324759483337, + "learning_rate": 2.306030150753769e-05, + "loss": 0.20483921051025392, + "step": 160900 + }, + { + "epoch": 53.93642683641846, + "grad_norm": 0.6998985409736633, + "learning_rate": 2.304355108877722e-05, + "loss": 0.20418329238891603, + "step": 161000 + }, + { + "epoch": 53.96993047993969, + "grad_norm": 0.7103771567344666, + "learning_rate": 2.302680067001675e-05, + "loss": 0.20509437561035157, + "step": 161100 + }, + { + "epoch": 54.00335036435212, + "grad_norm": 0.9205202460289001, + "learning_rate": 2.3010050251256283e-05, + "loss": 0.20359134674072266, + "step": 161200 + }, + { + "epoch": 54.03685400787336, + "grad_norm": 0.7976627349853516, + "learning_rate": 2.299329983249581e-05, + "loss": 0.19689498901367186, + "step": 161300 + }, + { + "epoch": 54.07035765139459, + "grad_norm": 0.821431040763855, + "learning_rate": 2.2976549413735344e-05, + "loss": 0.1979433059692383, + "step": 161400 + }, + { + "epoch": 54.10386129491582, + "grad_norm": 0.7001577019691467, + "learning_rate": 2.2959798994974876e-05, + "loss": 0.1971571159362793, + "step": 161500 + }, + { + "epoch": 54.13736493843705, + "grad_norm": 0.8949475884437561, + "learning_rate": 2.2943048576214408e-05, + "loss": 0.19859142303466798, + "step": 161600 + }, + { + "epoch": 54.17086858195829, + "grad_norm": 0.7298758029937744, + "learning_rate": 2.2926298157453937e-05, + "loss": 0.19952430725097656, + "step": 161700 + }, + { + "epoch": 54.204372225479524, + "grad_norm": 0.8920609951019287, + "learning_rate": 2.290954773869347e-05, + "loss": 0.1987653160095215, + "step": 161800 + }, + { + "epoch": 54.23787586900075, + "grad_norm": 0.7720832824707031, + "learning_rate": 2.2892797319932998e-05, + "loss": 0.19959186553955077, + "step": 161900 + }, + { + "epoch": 54.27137951252199, + "grad_norm": 0.7590644359588623, + "learning_rate": 2.287604690117253e-05, + "loss": 0.19991098403930663, + "step": 162000 + }, + { + "epoch": 54.30488315604322, + "grad_norm": 0.7114115357398987, + "learning_rate": 2.2859296482412062e-05, + "loss": 0.20001384735107422, + "step": 162100 + }, + { + "epoch": 54.338386799564454, + "grad_norm": 0.6103782057762146, + "learning_rate": 2.28427135678392e-05, + "loss": 0.2000261116027832, + "step": 162200 + }, + { + "epoch": 54.37189044308568, + "grad_norm": 0.678782045841217, + "learning_rate": 2.2825963149078727e-05, + "loss": 0.2014828109741211, + "step": 162300 + }, + { + "epoch": 54.40539408660692, + "grad_norm": 0.8127717971801758, + "learning_rate": 2.280921273031826e-05, + "loss": 0.1989847755432129, + "step": 162400 + }, + { + "epoch": 54.438897730128154, + "grad_norm": 0.8343021273612976, + "learning_rate": 2.279246231155779e-05, + "loss": 0.20117862701416014, + "step": 162500 + }, + { + "epoch": 54.47240137364938, + "grad_norm": 0.7219998240470886, + "learning_rate": 2.277571189279732e-05, + "loss": 0.20171173095703124, + "step": 162600 + }, + { + "epoch": 54.50590501717062, + "grad_norm": 0.817757785320282, + "learning_rate": 2.2758961474036853e-05, + "loss": 0.20216232299804687, + "step": 162700 + }, + { + "epoch": 54.53940866069185, + "grad_norm": 0.8951203227043152, + "learning_rate": 2.274221105527638e-05, + "loss": 0.20124095916748047, + "step": 162800 + }, + { + "epoch": 54.572912304213084, + "grad_norm": 0.8889951109886169, + "learning_rate": 2.2725460636515914e-05, + "loss": 0.20379587173461913, + "step": 162900 + }, + { + "epoch": 54.60641594773432, + "grad_norm": 0.8064408898353577, + "learning_rate": 2.2708710217755442e-05, + "loss": 0.20114097595214844, + "step": 163000 + }, + { + "epoch": 54.63991959125555, + "grad_norm": 0.6613183617591858, + "learning_rate": 2.2691959798994978e-05, + "loss": 0.20306098937988282, + "step": 163100 + }, + { + "epoch": 54.673423234776784, + "grad_norm": 0.8730353713035583, + "learning_rate": 2.2675209380234507e-05, + "loss": 0.20401838302612305, + "step": 163200 + }, + { + "epoch": 54.70692687829801, + "grad_norm": 0.7803497314453125, + "learning_rate": 2.265845896147404e-05, + "loss": 0.20256214141845702, + "step": 163300 + }, + { + "epoch": 54.74043052181925, + "grad_norm": 0.8791249394416809, + "learning_rate": 2.2641708542713568e-05, + "loss": 0.20302362442016603, + "step": 163400 + }, + { + "epoch": 54.77393416534048, + "grad_norm": 0.8422548770904541, + "learning_rate": 2.26249581239531e-05, + "loss": 0.2037299919128418, + "step": 163500 + }, + { + "epoch": 54.807437808861714, + "grad_norm": 0.6493898630142212, + "learning_rate": 2.260820770519263e-05, + "loss": 0.20337121963500976, + "step": 163600 + }, + { + "epoch": 54.84094145238295, + "grad_norm": 0.8213750720024109, + "learning_rate": 2.259145728643216e-05, + "loss": 0.20318853378295898, + "step": 163700 + }, + { + "epoch": 54.87444509590418, + "grad_norm": 0.9080546498298645, + "learning_rate": 2.2574706867671693e-05, + "loss": 0.20395517349243164, + "step": 163800 + }, + { + "epoch": 54.907948739425414, + "grad_norm": 0.9570611715316772, + "learning_rate": 2.2557956448911226e-05, + "loss": 0.20360021591186522, + "step": 163900 + }, + { + "epoch": 54.94145238294664, + "grad_norm": 0.848283588886261, + "learning_rate": 2.2541206030150754e-05, + "loss": 0.20453887939453125, + "step": 164000 + }, + { + "epoch": 54.97495602646788, + "grad_norm": 0.8141411542892456, + "learning_rate": 2.2524455611390287e-05, + "loss": 0.20472782135009765, + "step": 164100 + }, + { + "epoch": 55.00837591088031, + "grad_norm": 0.6006379723548889, + "learning_rate": 2.2507872696817423e-05, + "loss": 0.2019051742553711, + "step": 164200 + }, + { + "epoch": 55.04187955440154, + "grad_norm": 0.6700722575187683, + "learning_rate": 2.249112227805695e-05, + "loss": 0.1957373046875, + "step": 164300 + }, + { + "epoch": 55.075383197922775, + "grad_norm": 0.7176284193992615, + "learning_rate": 2.2474371859296484e-05, + "loss": 0.1963091278076172, + "step": 164400 + }, + { + "epoch": 55.108886841444004, + "grad_norm": 0.6696990132331848, + "learning_rate": 2.2457621440536016e-05, + "loss": 0.19629579544067383, + "step": 164500 + }, + { + "epoch": 55.14239048496524, + "grad_norm": 0.7618410587310791, + "learning_rate": 2.2440871021775545e-05, + "loss": 0.19794061660766601, + "step": 164600 + }, + { + "epoch": 55.175894128486476, + "grad_norm": 0.6654366850852966, + "learning_rate": 2.2424120603015077e-05, + "loss": 0.1991598892211914, + "step": 164700 + }, + { + "epoch": 55.209397772007705, + "grad_norm": 0.9601466059684753, + "learning_rate": 2.240737018425461e-05, + "loss": 0.19887115478515624, + "step": 164800 + }, + { + "epoch": 55.24290141552894, + "grad_norm": 0.766276478767395, + "learning_rate": 2.2390619765494138e-05, + "loss": 0.19863889694213868, + "step": 164900 + }, + { + "epoch": 55.27640505905017, + "grad_norm": 0.7112438678741455, + "learning_rate": 2.237386934673367e-05, + "loss": 0.19905502319335938, + "step": 165000 + }, + { + "epoch": 55.309908702571406, + "grad_norm": 0.6443644165992737, + "learning_rate": 2.23571189279732e-05, + "loss": 0.19937538146972655, + "step": 165100 + }, + { + "epoch": 55.343412346092634, + "grad_norm": 0.8128257393836975, + "learning_rate": 2.234036850921273e-05, + "loss": 0.19976985931396485, + "step": 165200 + }, + { + "epoch": 55.37691598961387, + "grad_norm": 0.7452270984649658, + "learning_rate": 2.232361809045226e-05, + "loss": 0.19971412658691406, + "step": 165300 + }, + { + "epoch": 55.410419633135106, + "grad_norm": 0.7263997197151184, + "learning_rate": 2.2306867671691795e-05, + "loss": 0.19973045349121094, + "step": 165400 + }, + { + "epoch": 55.443923276656335, + "grad_norm": 0.7190716862678528, + "learning_rate": 2.2290117252931324e-05, + "loss": 0.20105569839477538, + "step": 165500 + }, + { + "epoch": 55.47742692017757, + "grad_norm": 0.7603322863578796, + "learning_rate": 2.2273366834170857e-05, + "loss": 0.20152530670166016, + "step": 165600 + }, + { + "epoch": 55.5109305636988, + "grad_norm": 0.6346855759620667, + "learning_rate": 2.2256616415410385e-05, + "loss": 0.20098255157470704, + "step": 165700 + }, + { + "epoch": 55.544434207220036, + "grad_norm": 0.6980137228965759, + "learning_rate": 2.2239865996649918e-05, + "loss": 0.200362548828125, + "step": 165800 + }, + { + "epoch": 55.57793785074127, + "grad_norm": 0.7294763922691345, + "learning_rate": 2.2223115577889446e-05, + "loss": 0.20156070709228516, + "step": 165900 + }, + { + "epoch": 55.6114414942625, + "grad_norm": 0.7770695090293884, + "learning_rate": 2.2206365159128982e-05, + "loss": 0.20071981430053712, + "step": 166000 + }, + { + "epoch": 55.644945137783736, + "grad_norm": 0.6916683316230774, + "learning_rate": 2.218961474036851e-05, + "loss": 0.2019366455078125, + "step": 166100 + }, + { + "epoch": 55.678448781304965, + "grad_norm": 0.6621333360671997, + "learning_rate": 2.2172864321608043e-05, + "loss": 0.2023235321044922, + "step": 166200 + }, + { + "epoch": 55.7119524248262, + "grad_norm": 0.742199718952179, + "learning_rate": 2.2156281407035176e-05, + "loss": 0.2024928092956543, + "step": 166300 + }, + { + "epoch": 55.74545606834743, + "grad_norm": 0.6829848289489746, + "learning_rate": 2.2139530988274708e-05, + "loss": 0.20235004425048828, + "step": 166400 + }, + { + "epoch": 55.778959711868666, + "grad_norm": 0.6780540943145752, + "learning_rate": 2.212278056951424e-05, + "loss": 0.2021579360961914, + "step": 166500 + }, + { + "epoch": 55.8124633553899, + "grad_norm": 0.7976480722427368, + "learning_rate": 2.210603015075377e-05, + "loss": 0.20198610305786133, + "step": 166600 + }, + { + "epoch": 55.84596699891113, + "grad_norm": 0.7261124849319458, + "learning_rate": 2.20892797319933e-05, + "loss": 0.20343488693237305, + "step": 166700 + }, + { + "epoch": 55.879470642432366, + "grad_norm": 0.7780104279518127, + "learning_rate": 2.207252931323283e-05, + "loss": 0.20361764907836913, + "step": 166800 + }, + { + "epoch": 55.912974285953595, + "grad_norm": 0.6498653292655945, + "learning_rate": 2.2055778894472362e-05, + "loss": 0.20432092666625976, + "step": 166900 + }, + { + "epoch": 55.94647792947483, + "grad_norm": 0.8899915814399719, + "learning_rate": 2.2039028475711894e-05, + "loss": 0.2044738006591797, + "step": 167000 + }, + { + "epoch": 55.97998157299606, + "grad_norm": 0.703768789768219, + "learning_rate": 2.2022278056951426e-05, + "loss": 0.2027983283996582, + "step": 167100 + }, + { + "epoch": 56.01340145740849, + "grad_norm": 0.6999773979187012, + "learning_rate": 2.2005527638190955e-05, + "loss": 0.19977279663085937, + "step": 167200 + }, + { + "epoch": 56.04690510092973, + "grad_norm": 0.7234398126602173, + "learning_rate": 2.1988777219430487e-05, + "loss": 0.19637002944946289, + "step": 167300 + }, + { + "epoch": 56.080408744450956, + "grad_norm": 0.7196521162986755, + "learning_rate": 2.1972026800670016e-05, + "loss": 0.1961227035522461, + "step": 167400 + }, + { + "epoch": 56.11391238797219, + "grad_norm": 0.7114014625549316, + "learning_rate": 2.195527638190955e-05, + "loss": 0.19647451400756835, + "step": 167500 + }, + { + "epoch": 56.14741603149343, + "grad_norm": 0.7853075861930847, + "learning_rate": 2.1938525963149077e-05, + "loss": 0.19717487335205078, + "step": 167600 + }, + { + "epoch": 56.18091967501466, + "grad_norm": 0.6808475852012634, + "learning_rate": 2.1921775544388613e-05, + "loss": 0.19807977676391603, + "step": 167700 + }, + { + "epoch": 56.21442331853589, + "grad_norm": 0.6541131734848022, + "learning_rate": 2.1905025125628142e-05, + "loss": 0.19757047653198243, + "step": 167800 + }, + { + "epoch": 56.24792696205712, + "grad_norm": 0.7412530183792114, + "learning_rate": 2.1888274706867674e-05, + "loss": 0.19785118103027344, + "step": 167900 + }, + { + "epoch": 56.28143060557836, + "grad_norm": 0.7527230978012085, + "learning_rate": 2.1871524288107203e-05, + "loss": 0.19891765594482422, + "step": 168000 + }, + { + "epoch": 56.314934249099586, + "grad_norm": 0.7702918648719788, + "learning_rate": 2.1854773869346735e-05, + "loss": 0.19912639617919922, + "step": 168100 + }, + { + "epoch": 56.34843789262082, + "grad_norm": 0.9410870671272278, + "learning_rate": 2.1838023450586264e-05, + "loss": 0.19807853698730468, + "step": 168200 + }, + { + "epoch": 56.38194153614206, + "grad_norm": 0.7551661133766174, + "learning_rate": 2.18212730318258e-05, + "loss": 0.19915082931518555, + "step": 168300 + }, + { + "epoch": 56.41544517966329, + "grad_norm": 0.8068090081214905, + "learning_rate": 2.1804522613065328e-05, + "loss": 0.19918592453002928, + "step": 168400 + }, + { + "epoch": 56.44894882318452, + "grad_norm": 0.8415470123291016, + "learning_rate": 2.1787939698492464e-05, + "loss": 0.19998703002929688, + "step": 168500 + }, + { + "epoch": 56.48245246670575, + "grad_norm": 0.6690595149993896, + "learning_rate": 2.1771189279731993e-05, + "loss": 0.2002570152282715, + "step": 168600 + }, + { + "epoch": 56.51595611022699, + "grad_norm": 0.8166069984436035, + "learning_rate": 2.1754438860971525e-05, + "loss": 0.20179470062255858, + "step": 168700 + }, + { + "epoch": 56.54945975374822, + "grad_norm": 0.7660237550735474, + "learning_rate": 2.1737688442211057e-05, + "loss": 0.20062505722045898, + "step": 168800 + }, + { + "epoch": 56.58296339726945, + "grad_norm": 0.8243525624275208, + "learning_rate": 2.1720938023450586e-05, + "loss": 0.2011745071411133, + "step": 168900 + }, + { + "epoch": 56.61646704079069, + "grad_norm": 0.7057405114173889, + "learning_rate": 2.170418760469012e-05, + "loss": 0.2007113838195801, + "step": 169000 + }, + { + "epoch": 56.64997068431192, + "grad_norm": 0.8495818376541138, + "learning_rate": 2.1687437185929647e-05, + "loss": 0.20225597381591798, + "step": 169100 + }, + { + "epoch": 56.68347432783315, + "grad_norm": 0.6715584397315979, + "learning_rate": 2.167068676716918e-05, + "loss": 0.20023557662963867, + "step": 169200 + }, + { + "epoch": 56.71697797135438, + "grad_norm": 0.6438612937927246, + "learning_rate": 2.1653936348408708e-05, + "loss": 0.2012915802001953, + "step": 169300 + }, + { + "epoch": 56.75048161487562, + "grad_norm": 0.854141116142273, + "learning_rate": 2.1637185929648244e-05, + "loss": 0.20242010116577147, + "step": 169400 + }, + { + "epoch": 56.783985258396854, + "grad_norm": 0.7206624150276184, + "learning_rate": 2.1620435510887773e-05, + "loss": 0.20245513916015626, + "step": 169500 + }, + { + "epoch": 56.81748890191808, + "grad_norm": 0.6744206547737122, + "learning_rate": 2.1603685092127305e-05, + "loss": 0.20179567337036133, + "step": 169600 + }, + { + "epoch": 56.85099254543932, + "grad_norm": 0.7552564740180969, + "learning_rate": 2.1586934673366834e-05, + "loss": 0.20230600357055664, + "step": 169700 + }, + { + "epoch": 56.88449618896055, + "grad_norm": 0.8486445546150208, + "learning_rate": 2.1570184254606366e-05, + "loss": 0.20117643356323242, + "step": 169800 + }, + { + "epoch": 56.91799983248178, + "grad_norm": 0.5880848169326782, + "learning_rate": 2.1553433835845895e-05, + "loss": 0.20292966842651367, + "step": 169900 + }, + { + "epoch": 56.95150347600301, + "grad_norm": 0.7727257013320923, + "learning_rate": 2.153668341708543e-05, + "loss": 0.2035549736022949, + "step": 170000 + }, + { + "epoch": 56.98500711952425, + "grad_norm": 0.7095633745193481, + "learning_rate": 2.151993299832496e-05, + "loss": 0.20257196426391602, + "step": 170100 + }, + { + "epoch": 57.01842700393668, + "grad_norm": 0.5395858883857727, + "learning_rate": 2.150318257956449e-05, + "loss": 0.19870391845703125, + "step": 170200 + }, + { + "epoch": 57.05193064745791, + "grad_norm": 0.6598409414291382, + "learning_rate": 2.148643216080402e-05, + "loss": 0.1953832244873047, + "step": 170300 + }, + { + "epoch": 57.085434290979144, + "grad_norm": 0.9595073461532593, + "learning_rate": 2.1469681742043552e-05, + "loss": 0.19685894012451172, + "step": 170400 + }, + { + "epoch": 57.11893793450038, + "grad_norm": 0.5701305866241455, + "learning_rate": 2.1453098827470688e-05, + "loss": 0.19607532501220704, + "step": 170500 + }, + { + "epoch": 57.15244157802161, + "grad_norm": 0.6835476160049438, + "learning_rate": 2.143634840871022e-05, + "loss": 0.1967610549926758, + "step": 170600 + }, + { + "epoch": 57.185945221542845, + "grad_norm": 0.5928249955177307, + "learning_rate": 2.141959798994975e-05, + "loss": 0.19592588424682617, + "step": 170700 + }, + { + "epoch": 57.219448865064074, + "grad_norm": 0.7820493578910828, + "learning_rate": 2.140284757118928e-05, + "loss": 0.19711441040039063, + "step": 170800 + }, + { + "epoch": 57.25295250858531, + "grad_norm": 0.7720481753349304, + "learning_rate": 2.138609715242881e-05, + "loss": 0.19725584030151366, + "step": 170900 + }, + { + "epoch": 57.28645615210654, + "grad_norm": 0.7418736219406128, + "learning_rate": 2.1369346733668343e-05, + "loss": 0.19777252197265624, + "step": 171000 + }, + { + "epoch": 57.319959795627774, + "grad_norm": 0.7071073055267334, + "learning_rate": 2.1352596314907875e-05, + "loss": 0.19808469772338866, + "step": 171100 + }, + { + "epoch": 57.35346343914901, + "grad_norm": 0.7375087738037109, + "learning_rate": 2.1335845896147404e-05, + "loss": 0.19767127990722655, + "step": 171200 + }, + { + "epoch": 57.38696708267024, + "grad_norm": 0.8487064838409424, + "learning_rate": 2.1319095477386936e-05, + "loss": 0.19986190795898437, + "step": 171300 + }, + { + "epoch": 57.420470726191475, + "grad_norm": 0.8072951436042786, + "learning_rate": 2.1302345058626465e-05, + "loss": 0.19746374130249023, + "step": 171400 + }, + { + "epoch": 57.453974369712704, + "grad_norm": 0.8079342842102051, + "learning_rate": 2.1285594639865997e-05, + "loss": 0.19960382461547851, + "step": 171500 + }, + { + "epoch": 57.48747801323394, + "grad_norm": 0.8104588389396667, + "learning_rate": 2.126884422110553e-05, + "loss": 0.20039827346801758, + "step": 171600 + }, + { + "epoch": 57.520981656755175, + "grad_norm": 0.753643274307251, + "learning_rate": 2.125209380234506e-05, + "loss": 0.1997998046875, + "step": 171700 + }, + { + "epoch": 57.554485300276404, + "grad_norm": 0.8228442668914795, + "learning_rate": 2.123534338358459e-05, + "loss": 0.19931909561157227, + "step": 171800 + }, + { + "epoch": 57.58798894379764, + "grad_norm": 0.8214404582977295, + "learning_rate": 2.1218592964824122e-05, + "loss": 0.19911916732788085, + "step": 171900 + }, + { + "epoch": 57.62149258731887, + "grad_norm": 0.6019760370254517, + "learning_rate": 2.120184254606365e-05, + "loss": 0.2016813850402832, + "step": 172000 + }, + { + "epoch": 57.654996230840105, + "grad_norm": 0.6880699396133423, + "learning_rate": 2.1185092127303183e-05, + "loss": 0.19929651260375977, + "step": 172100 + }, + { + "epoch": 57.688499874361334, + "grad_norm": 0.69806969165802, + "learning_rate": 2.1168341708542712e-05, + "loss": 0.2015073585510254, + "step": 172200 + }, + { + "epoch": 57.72200351788257, + "grad_norm": 0.6724705100059509, + "learning_rate": 2.1151591289782248e-05, + "loss": 0.20101812362670898, + "step": 172300 + }, + { + "epoch": 57.755507161403806, + "grad_norm": 0.8854671716690063, + "learning_rate": 2.1134840871021777e-05, + "loss": 0.20211099624633788, + "step": 172400 + }, + { + "epoch": 57.789010804925034, + "grad_norm": 0.7592790722846985, + "learning_rate": 2.111809045226131e-05, + "loss": 0.20073314666748046, + "step": 172500 + }, + { + "epoch": 57.82251444844627, + "grad_norm": 0.7253840565681458, + "learning_rate": 2.1101340033500838e-05, + "loss": 0.2017323112487793, + "step": 172600 + }, + { + "epoch": 57.8560180919675, + "grad_norm": 0.7471290230751038, + "learning_rate": 2.1084757118927977e-05, + "loss": 0.20244625091552734, + "step": 172700 + }, + { + "epoch": 57.889521735488735, + "grad_norm": 0.8345232009887695, + "learning_rate": 2.1068006700167506e-05, + "loss": 0.20169891357421876, + "step": 172800 + }, + { + "epoch": 57.923025379009964, + "grad_norm": 0.8078505396842957, + "learning_rate": 2.1051256281407038e-05, + "loss": 0.20322864532470702, + "step": 172900 + }, + { + "epoch": 57.9565290225312, + "grad_norm": 0.8274567127227783, + "learning_rate": 2.1034505862646567e-05, + "loss": 0.20089473724365234, + "step": 173000 + }, + { + "epoch": 57.990032666052436, + "grad_norm": 0.6914857029914856, + "learning_rate": 2.10177554438861e-05, + "loss": 0.20304906845092774, + "step": 173100 + }, + { + "epoch": 58.02345255046486, + "grad_norm": 0.6851274371147156, + "learning_rate": 2.1001005025125628e-05, + "loss": 0.1973126220703125, + "step": 173200 + }, + { + "epoch": 58.056956193986096, + "grad_norm": 0.5594986081123352, + "learning_rate": 2.098425460636516e-05, + "loss": 0.19482255935668946, + "step": 173300 + }, + { + "epoch": 58.09045983750733, + "grad_norm": 0.6892759203910828, + "learning_rate": 2.0967504187604692e-05, + "loss": 0.19560087203979493, + "step": 173400 + }, + { + "epoch": 58.12396348102856, + "grad_norm": 0.6023077368736267, + "learning_rate": 2.095075376884422e-05, + "loss": 0.1957664108276367, + "step": 173500 + }, + { + "epoch": 58.1574671245498, + "grad_norm": 0.6524220108985901, + "learning_rate": 2.0934003350083753e-05, + "loss": 0.19625062942504884, + "step": 173600 + }, + { + "epoch": 58.190970768071026, + "grad_norm": 0.9801384806632996, + "learning_rate": 2.0917252931323282e-05, + "loss": 0.1955522346496582, + "step": 173700 + }, + { + "epoch": 58.22447441159226, + "grad_norm": 0.8744773864746094, + "learning_rate": 2.0900502512562814e-05, + "loss": 0.19638490676879883, + "step": 173800 + }, + { + "epoch": 58.25797805511349, + "grad_norm": 0.6583356261253357, + "learning_rate": 2.0883752093802346e-05, + "loss": 0.1966208267211914, + "step": 173900 + }, + { + "epoch": 58.291481698634726, + "grad_norm": 0.6736335754394531, + "learning_rate": 2.086700167504188e-05, + "loss": 0.1969454765319824, + "step": 174000 + }, + { + "epoch": 58.32498534215596, + "grad_norm": 0.9140983819961548, + "learning_rate": 2.0850251256281408e-05, + "loss": 0.19811725616455078, + "step": 174100 + }, + { + "epoch": 58.35848898567719, + "grad_norm": 0.825357973575592, + "learning_rate": 2.083350083752094e-05, + "loss": 0.19800840377807616, + "step": 174200 + }, + { + "epoch": 58.39199262919843, + "grad_norm": 0.8800440430641174, + "learning_rate": 2.081675041876047e-05, + "loss": 0.1982166862487793, + "step": 174300 + }, + { + "epoch": 58.425496272719656, + "grad_norm": 0.7681903839111328, + "learning_rate": 2.08e-05, + "loss": 0.199152889251709, + "step": 174400 + }, + { + "epoch": 58.45899991624089, + "grad_norm": 0.7516371607780457, + "learning_rate": 2.0783249581239533e-05, + "loss": 0.1978353500366211, + "step": 174500 + }, + { + "epoch": 58.49250355976213, + "grad_norm": 0.7671756148338318, + "learning_rate": 2.0766499162479065e-05, + "loss": 0.19854022979736327, + "step": 174600 + }, + { + "epoch": 58.526007203283356, + "grad_norm": 0.6201814413070679, + "learning_rate": 2.0749916247906198e-05, + "loss": 0.19920494079589843, + "step": 174700 + }, + { + "epoch": 58.55951084680459, + "grad_norm": 0.8798500299453735, + "learning_rate": 2.073316582914573e-05, + "loss": 0.20001602172851562, + "step": 174800 + }, + { + "epoch": 58.59301449032582, + "grad_norm": 0.5957375168800354, + "learning_rate": 2.071641541038526e-05, + "loss": 0.1991959571838379, + "step": 174900 + }, + { + "epoch": 58.62651813384706, + "grad_norm": 0.84260493516922, + "learning_rate": 2.069966499162479e-05, + "loss": 0.20048974990844726, + "step": 175000 + }, + { + "epoch": 58.660021777368286, + "grad_norm": 0.6994961500167847, + "learning_rate": 2.0682914572864323e-05, + "loss": 0.19937900543212891, + "step": 175100 + }, + { + "epoch": 58.69352542088952, + "grad_norm": 0.7235148549079895, + "learning_rate": 2.0666164154103852e-05, + "loss": 0.20066232681274415, + "step": 175200 + }, + { + "epoch": 58.72702906441076, + "grad_norm": 0.7542918920516968, + "learning_rate": 2.0649413735343384e-05, + "loss": 0.20042539596557618, + "step": 175300 + }, + { + "epoch": 58.760532707931986, + "grad_norm": 0.6566546559333801, + "learning_rate": 2.0632663316582916e-05, + "loss": 0.20085683822631836, + "step": 175400 + }, + { + "epoch": 58.79403635145322, + "grad_norm": 0.7434055209159851, + "learning_rate": 2.0615912897822445e-05, + "loss": 0.20140844345092773, + "step": 175500 + }, + { + "epoch": 58.82753999497445, + "grad_norm": 0.6652776002883911, + "learning_rate": 2.0599162479061977e-05, + "loss": 0.2017723274230957, + "step": 175600 + }, + { + "epoch": 58.86104363849569, + "grad_norm": 0.7438784837722778, + "learning_rate": 2.058241206030151e-05, + "loss": 0.20224170684814452, + "step": 175700 + }, + { + "epoch": 58.894547282016916, + "grad_norm": 0.842480480670929, + "learning_rate": 2.056566164154104e-05, + "loss": 0.2010243797302246, + "step": 175800 + }, + { + "epoch": 58.92805092553815, + "grad_norm": 0.777508020401001, + "learning_rate": 2.054891122278057e-05, + "loss": 0.20120513916015625, + "step": 175900 + }, + { + "epoch": 58.96155456905939, + "grad_norm": 0.7863830327987671, + "learning_rate": 2.05321608040201e-05, + "loss": 0.20216922760009765, + "step": 176000 + }, + { + "epoch": 58.995058212580616, + "grad_norm": 0.720203161239624, + "learning_rate": 2.051541038525963e-05, + "loss": 0.20130184173583984, + "step": 176100 + }, + { + "epoch": 59.02847809699305, + "grad_norm": 0.7132588028907776, + "learning_rate": 2.0498659966499164e-05, + "loss": 0.1958163070678711, + "step": 176200 + }, + { + "epoch": 59.061981740514284, + "grad_norm": 0.6386404037475586, + "learning_rate": 2.0481909547738696e-05, + "loss": 0.19423696517944336, + "step": 176300 + }, + { + "epoch": 59.09548538403551, + "grad_norm": 0.5817972421646118, + "learning_rate": 2.0465159128978225e-05, + "loss": 0.19470659255981446, + "step": 176400 + }, + { + "epoch": 59.12898902755675, + "grad_norm": 0.5699682831764221, + "learning_rate": 2.0448408710217757e-05, + "loss": 0.19486974716186523, + "step": 176500 + }, + { + "epoch": 59.16249267107798, + "grad_norm": 0.6849201321601868, + "learning_rate": 2.0431658291457286e-05, + "loss": 0.19612747192382812, + "step": 176600 + }, + { + "epoch": 59.19599631459921, + "grad_norm": 0.7165812253952026, + "learning_rate": 2.0414907872696818e-05, + "loss": 0.19578189849853517, + "step": 176700 + }, + { + "epoch": 59.22949995812044, + "grad_norm": 0.7262609004974365, + "learning_rate": 2.0398324958123954e-05, + "loss": 0.19529666900634765, + "step": 176800 + }, + { + "epoch": 59.26300360164168, + "grad_norm": 0.7515226006507874, + "learning_rate": 2.0381574539363486e-05, + "loss": 0.1967916488647461, + "step": 176900 + }, + { + "epoch": 59.296507245162914, + "grad_norm": 0.675984799861908, + "learning_rate": 2.0364824120603015e-05, + "loss": 0.19698150634765624, + "step": 177000 + }, + { + "epoch": 59.33001088868414, + "grad_norm": 0.9520745277404785, + "learning_rate": 2.0348073701842547e-05, + "loss": 0.19764524459838867, + "step": 177100 + }, + { + "epoch": 59.36351453220538, + "grad_norm": 0.6780461072921753, + "learning_rate": 2.033132328308208e-05, + "loss": 0.19658233642578124, + "step": 177200 + }, + { + "epoch": 59.39701817572661, + "grad_norm": 0.6440721750259399, + "learning_rate": 2.031457286432161e-05, + "loss": 0.19660577774047852, + "step": 177300 + }, + { + "epoch": 59.43052181924784, + "grad_norm": 0.7188435196876526, + "learning_rate": 2.029782244556114e-05, + "loss": 0.19726680755615233, + "step": 177400 + }, + { + "epoch": 59.46402546276908, + "grad_norm": 0.680558979511261, + "learning_rate": 2.028107202680067e-05, + "loss": 0.19743047714233397, + "step": 177500 + }, + { + "epoch": 59.49752910629031, + "grad_norm": 0.7961515188217163, + "learning_rate": 2.02643216080402e-05, + "loss": 0.19772005081176758, + "step": 177600 + }, + { + "epoch": 59.531032749811544, + "grad_norm": 0.6180649995803833, + "learning_rate": 2.024757118927973e-05, + "loss": 0.1990138053894043, + "step": 177700 + }, + { + "epoch": 59.56453639333277, + "grad_norm": 0.7766602039337158, + "learning_rate": 2.0230820770519263e-05, + "loss": 0.19866539001464845, + "step": 177800 + }, + { + "epoch": 59.59804003685401, + "grad_norm": 0.7700449824333191, + "learning_rate": 2.0214070351758795e-05, + "loss": 0.198470516204834, + "step": 177900 + }, + { + "epoch": 59.63154368037524, + "grad_norm": 0.7601004838943481, + "learning_rate": 2.0197319932998327e-05, + "loss": 0.20065229415893554, + "step": 178000 + }, + { + "epoch": 59.665047323896474, + "grad_norm": 0.8511313796043396, + "learning_rate": 2.0180569514237856e-05, + "loss": 0.20094491958618163, + "step": 178100 + }, + { + "epoch": 59.69855096741771, + "grad_norm": 0.6393927931785583, + "learning_rate": 2.0163819095477388e-05, + "loss": 0.19916282653808592, + "step": 178200 + }, + { + "epoch": 59.73205461093894, + "grad_norm": 0.8600590229034424, + "learning_rate": 2.0147068676716917e-05, + "loss": 0.19939659118652345, + "step": 178300 + }, + { + "epoch": 59.765558254460174, + "grad_norm": 0.642556369304657, + "learning_rate": 2.013031825795645e-05, + "loss": 0.2003472137451172, + "step": 178400 + }, + { + "epoch": 59.7990618979814, + "grad_norm": 0.7224367260932922, + "learning_rate": 2.011356783919598e-05, + "loss": 0.19969842910766603, + "step": 178500 + }, + { + "epoch": 59.83256554150264, + "grad_norm": 0.7427322268486023, + "learning_rate": 2.0096817420435514e-05, + "loss": 0.19960586547851564, + "step": 178600 + }, + { + "epoch": 59.866069185023875, + "grad_norm": 0.7013212442398071, + "learning_rate": 2.0080067001675042e-05, + "loss": 0.2002570915222168, + "step": 178700 + }, + { + "epoch": 59.899572828545104, + "grad_norm": 0.852935791015625, + "learning_rate": 2.0063484087102178e-05, + "loss": 0.2009134292602539, + "step": 178800 + }, + { + "epoch": 59.93307647206634, + "grad_norm": 0.875970184803009, + "learning_rate": 2.004673366834171e-05, + "loss": 0.20090538024902344, + "step": 178900 + }, + { + "epoch": 59.96658011558757, + "grad_norm": 0.7883792519569397, + "learning_rate": 2.0029983249581243e-05, + "loss": 0.20025901794433593, + "step": 179000 + }, + { + "epoch": 60.0, + "grad_norm": 0.8162919878959656, + "learning_rate": 2.001323283082077e-05, + "loss": 0.2026140022277832, + "step": 179100 + }, + { + "epoch": 60.033503643521236, + "grad_norm": 0.6830130219459534, + "learning_rate": 1.9996482412060304e-05, + "loss": 0.19378650665283204, + "step": 179200 + }, + { + "epoch": 60.067007287042465, + "grad_norm": 0.6668891906738281, + "learning_rate": 1.9979731993299833e-05, + "loss": 0.19362451553344726, + "step": 179300 + }, + { + "epoch": 60.1005109305637, + "grad_norm": 0.7308112382888794, + "learning_rate": 1.9962981574539365e-05, + "loss": 0.19429069519042969, + "step": 179400 + }, + { + "epoch": 60.13401457408493, + "grad_norm": 0.7730607390403748, + "learning_rate": 1.9946231155778897e-05, + "loss": 0.19423646926879884, + "step": 179500 + }, + { + "epoch": 60.167518217606165, + "grad_norm": 0.624254047870636, + "learning_rate": 1.9929480737018426e-05, + "loss": 0.19518238067626953, + "step": 179600 + }, + { + "epoch": 60.201021861127394, + "grad_norm": 0.917464017868042, + "learning_rate": 1.9912730318257958e-05, + "loss": 0.1952109718322754, + "step": 179700 + }, + { + "epoch": 60.23452550464863, + "grad_norm": 0.7360493540763855, + "learning_rate": 1.9895979899497487e-05, + "loss": 0.19446746826171876, + "step": 179800 + }, + { + "epoch": 60.268029148169866, + "grad_norm": 0.7760195732116699, + "learning_rate": 1.987922948073702e-05, + "loss": 0.1961222457885742, + "step": 179900 + }, + { + "epoch": 60.301532791691095, + "grad_norm": 0.7055202126502991, + "learning_rate": 1.9862479061976548e-05, + "loss": 0.19603208541870118, + "step": 180000 + }, + { + "epoch": 60.33503643521233, + "grad_norm": 0.7124981880187988, + "learning_rate": 1.9845728643216083e-05, + "loss": 0.19644119262695312, + "step": 180100 + }, + { + "epoch": 60.36854007873356, + "grad_norm": 0.6831589341163635, + "learning_rate": 1.9828978224455612e-05, + "loss": 0.19591159820556642, + "step": 180200 + }, + { + "epoch": 60.402043722254795, + "grad_norm": 0.6932199001312256, + "learning_rate": 1.9812227805695144e-05, + "loss": 0.19705738067626954, + "step": 180300 + }, + { + "epoch": 60.43554736577603, + "grad_norm": 0.6487602591514587, + "learning_rate": 1.9795477386934673e-05, + "loss": 0.19764183044433595, + "step": 180400 + }, + { + "epoch": 60.46905100929726, + "grad_norm": 0.760643720626831, + "learning_rate": 1.9778726968174205e-05, + "loss": 0.19725812911987306, + "step": 180500 + }, + { + "epoch": 60.502554652818496, + "grad_norm": 0.8425685167312622, + "learning_rate": 1.9761976549413734e-05, + "loss": 0.19825616836547852, + "step": 180600 + }, + { + "epoch": 60.536058296339725, + "grad_norm": 0.7290912866592407, + "learning_rate": 1.9745226130653267e-05, + "loss": 0.19793628692626952, + "step": 180700 + }, + { + "epoch": 60.56956193986096, + "grad_norm": 0.7724213004112244, + "learning_rate": 1.9728643216080402e-05, + "loss": 0.19957996368408204, + "step": 180800 + }, + { + "epoch": 60.60306558338219, + "grad_norm": 0.8002983927726746, + "learning_rate": 1.9711892797319935e-05, + "loss": 0.19841293334960938, + "step": 180900 + }, + { + "epoch": 60.636569226903426, + "grad_norm": 0.8721250295639038, + "learning_rate": 1.9695142378559463e-05, + "loss": 0.1982705307006836, + "step": 181000 + }, + { + "epoch": 60.67007287042466, + "grad_norm": 0.9120819568634033, + "learning_rate": 1.9678391959798996e-05, + "loss": 0.19878549575805665, + "step": 181100 + }, + { + "epoch": 60.70357651394589, + "grad_norm": 0.7080308198928833, + "learning_rate": 1.9661641541038528e-05, + "loss": 0.19935232162475586, + "step": 181200 + }, + { + "epoch": 60.737080157467126, + "grad_norm": 0.7024886012077332, + "learning_rate": 1.964489112227806e-05, + "loss": 0.19872413635253905, + "step": 181300 + }, + { + "epoch": 60.770583800988355, + "grad_norm": 0.6947377324104309, + "learning_rate": 1.962814070351759e-05, + "loss": 0.19973325729370117, + "step": 181400 + }, + { + "epoch": 60.80408744450959, + "grad_norm": 0.7923586964607239, + "learning_rate": 1.961139028475712e-05, + "loss": 0.1994416046142578, + "step": 181500 + }, + { + "epoch": 60.83759108803083, + "grad_norm": 0.7876746654510498, + "learning_rate": 1.959463986599665e-05, + "loss": 0.20001832962036134, + "step": 181600 + }, + { + "epoch": 60.871094731552056, + "grad_norm": 0.6669028401374817, + "learning_rate": 1.9577889447236182e-05, + "loss": 0.19931718826293945, + "step": 181700 + }, + { + "epoch": 60.90459837507329, + "grad_norm": 0.8376245498657227, + "learning_rate": 1.9561139028475714e-05, + "loss": 0.19980306625366212, + "step": 181800 + }, + { + "epoch": 60.93810201859452, + "grad_norm": 0.8353832960128784, + "learning_rate": 1.9544388609715243e-05, + "loss": 0.19981901168823243, + "step": 181900 + }, + { + "epoch": 60.971605662115756, + "grad_norm": 0.7106568217277527, + "learning_rate": 1.9527638190954775e-05, + "loss": 0.19973602294921874, + "step": 182000 + }, + { + "epoch": 61.00502554652819, + "grad_norm": 0.6675083637237549, + "learning_rate": 1.9510887772194304e-05, + "loss": 0.20030658721923827, + "step": 182100 + }, + { + "epoch": 61.03852919004942, + "grad_norm": 0.6827961206436157, + "learning_rate": 1.9494137353433836e-05, + "loss": 0.19295509338378905, + "step": 182200 + }, + { + "epoch": 61.07203283357065, + "grad_norm": 0.8352850675582886, + "learning_rate": 1.9477386934673365e-05, + "loss": 0.19397199630737305, + "step": 182300 + }, + { + "epoch": 61.10553647709188, + "grad_norm": 0.6060226559638977, + "learning_rate": 1.94606365159129e-05, + "loss": 0.19397262573242188, + "step": 182400 + }, + { + "epoch": 61.13904012061312, + "grad_norm": 0.6782211065292358, + "learning_rate": 1.944388609715243e-05, + "loss": 0.1942317581176758, + "step": 182500 + }, + { + "epoch": 61.172543764134346, + "grad_norm": 0.6505800485610962, + "learning_rate": 1.9427135678391962e-05, + "loss": 0.19382064819335937, + "step": 182600 + }, + { + "epoch": 61.20604740765558, + "grad_norm": 0.6470309495925903, + "learning_rate": 1.941038525963149e-05, + "loss": 0.19352495193481445, + "step": 182700 + }, + { + "epoch": 61.23955105117682, + "grad_norm": 0.7394313216209412, + "learning_rate": 1.9393634840871023e-05, + "loss": 0.19527189254760743, + "step": 182800 + }, + { + "epoch": 61.27305469469805, + "grad_norm": 0.6375427842140198, + "learning_rate": 1.937705192629816e-05, + "loss": 0.19507966995239256, + "step": 182900 + }, + { + "epoch": 61.30655833821928, + "grad_norm": 0.7445289492607117, + "learning_rate": 1.936030150753769e-05, + "loss": 0.19499330520629882, + "step": 183000 + }, + { + "epoch": 61.34006198174051, + "grad_norm": 0.6758365631103516, + "learning_rate": 1.934355108877722e-05, + "loss": 0.19620643615722655, + "step": 183100 + }, + { + "epoch": 61.37356562526175, + "grad_norm": 0.682247519493103, + "learning_rate": 1.9326800670016752e-05, + "loss": 0.19641605377197266, + "step": 183200 + }, + { + "epoch": 61.40706926878298, + "grad_norm": 0.6681833267211914, + "learning_rate": 1.931005025125628e-05, + "loss": 0.1975366973876953, + "step": 183300 + }, + { + "epoch": 61.44057291230421, + "grad_norm": 0.6850043535232544, + "learning_rate": 1.9293299832495813e-05, + "loss": 0.1968943405151367, + "step": 183400 + }, + { + "epoch": 61.47407655582545, + "grad_norm": 0.769083559513092, + "learning_rate": 1.9276549413735345e-05, + "loss": 0.19727476119995116, + "step": 183500 + }, + { + "epoch": 61.50758019934668, + "grad_norm": 0.5792109370231628, + "learning_rate": 1.9259798994974878e-05, + "loss": 0.19699573516845703, + "step": 183600 + }, + { + "epoch": 61.54108384286791, + "grad_norm": 0.7564917206764221, + "learning_rate": 1.9243048576214406e-05, + "loss": 0.19748397827148437, + "step": 183700 + }, + { + "epoch": 61.57458748638914, + "grad_norm": 0.6447178721427917, + "learning_rate": 1.922629815745394e-05, + "loss": 0.1989639663696289, + "step": 183800 + }, + { + "epoch": 61.60809112991038, + "grad_norm": 0.5742529034614563, + "learning_rate": 1.9209547738693467e-05, + "loss": 0.19746633529663085, + "step": 183900 + }, + { + "epoch": 61.64159477343161, + "grad_norm": 0.7394194006919861, + "learning_rate": 1.9192797319933e-05, + "loss": 0.19821161270141602, + "step": 184000 + }, + { + "epoch": 61.67509841695284, + "grad_norm": 0.6600359678268433, + "learning_rate": 1.9176046901172532e-05, + "loss": 0.1982976722717285, + "step": 184100 + }, + { + "epoch": 61.70860206047408, + "grad_norm": 0.5898655652999878, + "learning_rate": 1.915929648241206e-05, + "loss": 0.19801706314086914, + "step": 184200 + }, + { + "epoch": 61.74210570399531, + "grad_norm": 0.7864146828651428, + "learning_rate": 1.9142546063651593e-05, + "loss": 0.19834369659423828, + "step": 184300 + }, + { + "epoch": 61.77560934751654, + "grad_norm": 0.783885657787323, + "learning_rate": 1.912579564489112e-05, + "loss": 0.19943191528320312, + "step": 184400 + }, + { + "epoch": 61.80911299103778, + "grad_norm": 0.7565669417381287, + "learning_rate": 1.9109045226130654e-05, + "loss": 0.19939350128173827, + "step": 184500 + }, + { + "epoch": 61.84261663455901, + "grad_norm": 0.663527250289917, + "learning_rate": 1.9092294807370183e-05, + "loss": 0.1986519241333008, + "step": 184600 + }, + { + "epoch": 61.87612027808024, + "grad_norm": 0.7392609715461731, + "learning_rate": 1.9075544388609718e-05, + "loss": 0.19995809555053712, + "step": 184700 + }, + { + "epoch": 61.90962392160147, + "grad_norm": 0.7164571285247803, + "learning_rate": 1.9058793969849247e-05, + "loss": 0.1989099884033203, + "step": 184800 + }, + { + "epoch": 61.94312756512271, + "grad_norm": 0.7456199526786804, + "learning_rate": 1.904204355108878e-05, + "loss": 0.19987648010253906, + "step": 184900 + }, + { + "epoch": 61.97663120864394, + "grad_norm": 0.6419495344161987, + "learning_rate": 1.9025460636515912e-05, + "loss": 0.1988045310974121, + "step": 185000 + }, + { + "epoch": 62.01005109305637, + "grad_norm": 0.6616671085357666, + "learning_rate": 1.9008710217755447e-05, + "loss": 0.19750312805175782, + "step": 185100 + }, + { + "epoch": 62.043554736577605, + "grad_norm": 0.667393147945404, + "learning_rate": 1.8991959798994976e-05, + "loss": 0.19275453567504883, + "step": 185200 + }, + { + "epoch": 62.07705838009883, + "grad_norm": 0.75070720911026, + "learning_rate": 1.897520938023451e-05, + "loss": 0.19383440017700196, + "step": 185300 + }, + { + "epoch": 62.11056202362007, + "grad_norm": 0.6957711577415466, + "learning_rate": 1.8958458961474037e-05, + "loss": 0.19298004150390624, + "step": 185400 + }, + { + "epoch": 62.1440656671413, + "grad_norm": 0.7118070721626282, + "learning_rate": 1.894170854271357e-05, + "loss": 0.19372062683105468, + "step": 185500 + }, + { + "epoch": 62.177569310662534, + "grad_norm": 0.6568797826766968, + "learning_rate": 1.8924958123953098e-05, + "loss": 0.19365182876586914, + "step": 185600 + }, + { + "epoch": 62.21107295418377, + "grad_norm": 0.6880303621292114, + "learning_rate": 1.890820770519263e-05, + "loss": 0.1950899887084961, + "step": 185700 + }, + { + "epoch": 62.244576597705, + "grad_norm": 0.6604440808296204, + "learning_rate": 1.8891457286432163e-05, + "loss": 0.19547990798950196, + "step": 185800 + }, + { + "epoch": 62.278080241226235, + "grad_norm": 0.7336467504501343, + "learning_rate": 1.887470686767169e-05, + "loss": 0.19477594375610352, + "step": 185900 + }, + { + "epoch": 62.31158388474746, + "grad_norm": 0.6443986296653748, + "learning_rate": 1.8857956448911224e-05, + "loss": 0.19533748626708985, + "step": 186000 + }, + { + "epoch": 62.3450875282687, + "grad_norm": 0.617526650428772, + "learning_rate": 1.8841206030150753e-05, + "loss": 0.19593568801879882, + "step": 186100 + }, + { + "epoch": 62.378591171789935, + "grad_norm": 0.6622116565704346, + "learning_rate": 1.8824455611390285e-05, + "loss": 0.19563573837280274, + "step": 186200 + }, + { + "epoch": 62.412094815311164, + "grad_norm": 0.6662573218345642, + "learning_rate": 1.8807705192629817e-05, + "loss": 0.19559219360351562, + "step": 186300 + }, + { + "epoch": 62.4455984588324, + "grad_norm": 0.7779511213302612, + "learning_rate": 1.879095477386935e-05, + "loss": 0.19570056915283204, + "step": 186400 + }, + { + "epoch": 62.47910210235363, + "grad_norm": 0.6488950848579407, + "learning_rate": 1.8774204355108878e-05, + "loss": 0.19671340942382812, + "step": 186500 + }, + { + "epoch": 62.512605745874865, + "grad_norm": 0.6302568316459656, + "learning_rate": 1.875745393634841e-05, + "loss": 0.19646032333374022, + "step": 186600 + }, + { + "epoch": 62.54610938939609, + "grad_norm": 0.6451594829559326, + "learning_rate": 1.874070351758794e-05, + "loss": 0.19605607986450196, + "step": 186700 + }, + { + "epoch": 62.57961303291733, + "grad_norm": 0.7226560711860657, + "learning_rate": 1.872395309882747e-05, + "loss": 0.19651512145996095, + "step": 186800 + }, + { + "epoch": 62.613116676438565, + "grad_norm": 0.7879689335823059, + "learning_rate": 1.8707202680067e-05, + "loss": 0.1969459342956543, + "step": 186900 + }, + { + "epoch": 62.646620319959794, + "grad_norm": 0.859521746635437, + "learning_rate": 1.869061976549414e-05, + "loss": 0.19710365295410157, + "step": 187000 + }, + { + "epoch": 62.68012396348103, + "grad_norm": 0.7182042002677917, + "learning_rate": 1.8673869346733668e-05, + "loss": 0.1975703239440918, + "step": 187100 + }, + { + "epoch": 62.71362760700226, + "grad_norm": 0.7117863893508911, + "learning_rate": 1.86571189279732e-05, + "loss": 0.19800674438476562, + "step": 187200 + }, + { + "epoch": 62.747131250523495, + "grad_norm": 0.8124322295188904, + "learning_rate": 1.864036850921273e-05, + "loss": 0.1976396369934082, + "step": 187300 + }, + { + "epoch": 62.78063489404473, + "grad_norm": 0.8003492951393127, + "learning_rate": 1.8623618090452265e-05, + "loss": 0.19788177490234374, + "step": 187400 + }, + { + "epoch": 62.81413853756596, + "grad_norm": 0.7933449149131775, + "learning_rate": 1.8606867671691794e-05, + "loss": 0.19794113159179688, + "step": 187500 + }, + { + "epoch": 62.847642181087195, + "grad_norm": 0.743191123008728, + "learning_rate": 1.8590117252931326e-05, + "loss": 0.19989189147949218, + "step": 187600 + }, + { + "epoch": 62.881145824608424, + "grad_norm": 0.662010669708252, + "learning_rate": 1.8573366834170855e-05, + "loss": 0.19854124069213866, + "step": 187700 + }, + { + "epoch": 62.91464946812966, + "grad_norm": 0.8278148174285889, + "learning_rate": 1.8556616415410387e-05, + "loss": 0.19968727111816406, + "step": 187800 + }, + { + "epoch": 62.94815311165089, + "grad_norm": 0.804415762424469, + "learning_rate": 1.8539865996649916e-05, + "loss": 0.19895530700683595, + "step": 187900 + }, + { + "epoch": 62.981656755172125, + "grad_norm": 0.7077623605728149, + "learning_rate": 1.8523115577889448e-05, + "loss": 0.19983070373535156, + "step": 188000 + }, + { + "epoch": 63.01507663958456, + "grad_norm": 0.5905118584632874, + "learning_rate": 1.850636515912898e-05, + "loss": 0.1953744888305664, + "step": 188100 + }, + { + "epoch": 63.048580283105785, + "grad_norm": 0.5887221693992615, + "learning_rate": 1.848961474036851e-05, + "loss": 0.19252130508422852, + "step": 188200 + }, + { + "epoch": 63.08208392662702, + "grad_norm": 0.6429964900016785, + "learning_rate": 1.847286432160804e-05, + "loss": 0.1936810302734375, + "step": 188300 + }, + { + "epoch": 63.11558757014826, + "grad_norm": 0.6943151354789734, + "learning_rate": 1.845611390284757e-05, + "loss": 0.1928156280517578, + "step": 188400 + }, + { + "epoch": 63.149091213669486, + "grad_norm": 0.7247923016548157, + "learning_rate": 1.8439363484087102e-05, + "loss": 0.19320756912231446, + "step": 188500 + }, + { + "epoch": 63.18259485719072, + "grad_norm": 0.6283583641052246, + "learning_rate": 1.842261306532663e-05, + "loss": 0.19241600036621093, + "step": 188600 + }, + { + "epoch": 63.21609850071195, + "grad_norm": 0.6737943291664124, + "learning_rate": 1.8405862646566167e-05, + "loss": 0.1937045669555664, + "step": 188700 + }, + { + "epoch": 63.24960214423319, + "grad_norm": 0.6524550914764404, + "learning_rate": 1.8389112227805695e-05, + "loss": 0.1929795265197754, + "step": 188800 + }, + { + "epoch": 63.283105787754415, + "grad_norm": 0.7188290953636169, + "learning_rate": 1.8372361809045228e-05, + "loss": 0.19419048309326173, + "step": 188900 + }, + { + "epoch": 63.31660943127565, + "grad_norm": 0.6564083099365234, + "learning_rate": 1.835577889447236e-05, + "loss": 0.1945943069458008, + "step": 189000 + }, + { + "epoch": 63.35011307479689, + "grad_norm": 0.9156805276870728, + "learning_rate": 1.8339028475711896e-05, + "loss": 0.1947199821472168, + "step": 189100 + }, + { + "epoch": 63.383616718318116, + "grad_norm": 0.6628890633583069, + "learning_rate": 1.8322278056951425e-05, + "loss": 0.19428998947143555, + "step": 189200 + }, + { + "epoch": 63.41712036183935, + "grad_norm": 0.5167578458786011, + "learning_rate": 1.8305527638190957e-05, + "loss": 0.19555074691772462, + "step": 189300 + }, + { + "epoch": 63.45062400536058, + "grad_norm": 0.8341636657714844, + "learning_rate": 1.8288777219430486e-05, + "loss": 0.1958403205871582, + "step": 189400 + }, + { + "epoch": 63.48412764888182, + "grad_norm": 0.7699781656265259, + "learning_rate": 1.8272026800670018e-05, + "loss": 0.1960818099975586, + "step": 189500 + }, + { + "epoch": 63.517631292403046, + "grad_norm": 0.7461984753608704, + "learning_rate": 1.8255276381909547e-05, + "loss": 0.1969795799255371, + "step": 189600 + }, + { + "epoch": 63.55113493592428, + "grad_norm": 0.8196810483932495, + "learning_rate": 1.8238525963149082e-05, + "loss": 0.1966191864013672, + "step": 189700 + }, + { + "epoch": 63.58463857944552, + "grad_norm": 0.7453595399856567, + "learning_rate": 1.822177554438861e-05, + "loss": 0.19745317459106446, + "step": 189800 + }, + { + "epoch": 63.618142222966746, + "grad_norm": 0.638787031173706, + "learning_rate": 1.8205025125628143e-05, + "loss": 0.19748239517211913, + "step": 189900 + }, + { + "epoch": 63.65164586648798, + "grad_norm": 0.8472653031349182, + "learning_rate": 1.8188274706867672e-05, + "loss": 0.19711460113525392, + "step": 190000 + }, + { + "epoch": 63.68514951000921, + "grad_norm": 0.6634200215339661, + "learning_rate": 1.8171524288107204e-05, + "loss": 0.19727699279785157, + "step": 190100 + }, + { + "epoch": 63.71865315353045, + "grad_norm": 0.7622882127761841, + "learning_rate": 1.8154773869346733e-05, + "loss": 0.19806449890136718, + "step": 190200 + }, + { + "epoch": 63.75215679705168, + "grad_norm": 0.6492070555686951, + "learning_rate": 1.8138023450586265e-05, + "loss": 0.19782337188720703, + "step": 190300 + }, + { + "epoch": 63.78566044057291, + "grad_norm": 0.7956305146217346, + "learning_rate": 1.8121273031825798e-05, + "loss": 0.19663129806518553, + "step": 190400 + }, + { + "epoch": 63.81916408409415, + "grad_norm": 0.5923272967338562, + "learning_rate": 1.8104522613065326e-05, + "loss": 0.19800495147705077, + "step": 190500 + }, + { + "epoch": 63.852667727615376, + "grad_norm": 0.6325972676277161, + "learning_rate": 1.808777219430486e-05, + "loss": 0.19802473068237306, + "step": 190600 + }, + { + "epoch": 63.88617137113661, + "grad_norm": 0.7037030458450317, + "learning_rate": 1.8071021775544387e-05, + "loss": 0.19737031936645508, + "step": 190700 + }, + { + "epoch": 63.91967501465784, + "grad_norm": 0.6459951996803284, + "learning_rate": 1.805427135678392e-05, + "loss": 0.19749345779418945, + "step": 190800 + }, + { + "epoch": 63.95317865817908, + "grad_norm": 0.7572121024131775, + "learning_rate": 1.8037520938023452e-05, + "loss": 0.199870548248291, + "step": 190900 + }, + { + "epoch": 63.98668230170031, + "grad_norm": 0.6550577878952026, + "learning_rate": 1.8020938023450588e-05, + "loss": 0.19845205307006836, + "step": 191000 + }, + { + "epoch": 64.02010218611274, + "grad_norm": 0.5528762340545654, + "learning_rate": 1.8004187604690117e-05, + "loss": 0.19315372467041014, + "step": 191100 + }, + { + "epoch": 64.05360582963397, + "grad_norm": 0.7415011525154114, + "learning_rate": 1.798743718592965e-05, + "loss": 0.1906199836730957, + "step": 191200 + }, + { + "epoch": 64.08710947315521, + "grad_norm": 0.5133525729179382, + "learning_rate": 1.797068676716918e-05, + "loss": 0.19169828414916992, + "step": 191300 + }, + { + "epoch": 64.12061311667644, + "grad_norm": 0.7105311155319214, + "learning_rate": 1.7953936348408713e-05, + "loss": 0.19295671463012695, + "step": 191400 + }, + { + "epoch": 64.15411676019767, + "grad_norm": 0.6510593295097351, + "learning_rate": 1.7937185929648242e-05, + "loss": 0.19301687240600585, + "step": 191500 + }, + { + "epoch": 64.18762040371891, + "grad_norm": 0.737304151058197, + "learning_rate": 1.7920435510887774e-05, + "loss": 0.19341800689697267, + "step": 191600 + }, + { + "epoch": 64.22112404724014, + "grad_norm": 0.7213296890258789, + "learning_rate": 1.7903685092127303e-05, + "loss": 0.19339723587036134, + "step": 191700 + }, + { + "epoch": 64.25462769076137, + "grad_norm": 0.6387230157852173, + "learning_rate": 1.7886934673366835e-05, + "loss": 0.19426511764526366, + "step": 191800 + }, + { + "epoch": 64.2881313342826, + "grad_norm": 0.5896677374839783, + "learning_rate": 1.7870184254606364e-05, + "loss": 0.19313657760620118, + "step": 191900 + }, + { + "epoch": 64.32163497780384, + "grad_norm": 0.6253547668457031, + "learning_rate": 1.78534338358459e-05, + "loss": 0.19436355590820312, + "step": 192000 + }, + { + "epoch": 64.35513862132507, + "grad_norm": 0.6272561550140381, + "learning_rate": 1.783668341708543e-05, + "loss": 0.1950385284423828, + "step": 192100 + }, + { + "epoch": 64.3886422648463, + "grad_norm": 0.6820735335350037, + "learning_rate": 1.781993299832496e-05, + "loss": 0.19447114944458008, + "step": 192200 + }, + { + "epoch": 64.42214590836754, + "grad_norm": 0.8564963340759277, + "learning_rate": 1.780318257956449e-05, + "loss": 0.19415367126464844, + "step": 192300 + }, + { + "epoch": 64.45564955188877, + "grad_norm": 0.6703295111656189, + "learning_rate": 1.7786432160804022e-05, + "loss": 0.19531801223754883, + "step": 192400 + }, + { + "epoch": 64.48915319541, + "grad_norm": 0.7819051146507263, + "learning_rate": 1.776968174204355e-05, + "loss": 0.19491588592529296, + "step": 192500 + }, + { + "epoch": 64.52265683893124, + "grad_norm": 0.5364665985107422, + "learning_rate": 1.7752931323283083e-05, + "loss": 0.1953544235229492, + "step": 192600 + }, + { + "epoch": 64.55616048245247, + "grad_norm": 0.5155049562454224, + "learning_rate": 1.7736180904522615e-05, + "loss": 0.19612747192382812, + "step": 192700 + }, + { + "epoch": 64.5896641259737, + "grad_norm": 0.809084951877594, + "learning_rate": 1.7719430485762144e-05, + "loss": 0.1966937255859375, + "step": 192800 + }, + { + "epoch": 64.62316776949493, + "grad_norm": 0.7905207276344299, + "learning_rate": 1.7702680067001676e-05, + "loss": 0.19525121688842773, + "step": 192900 + }, + { + "epoch": 64.65667141301617, + "grad_norm": 0.7242773771286011, + "learning_rate": 1.7686097152428812e-05, + "loss": 0.19637462615966797, + "step": 193000 + }, + { + "epoch": 64.6901750565374, + "grad_norm": 0.696966826915741, + "learning_rate": 1.7669346733668344e-05, + "loss": 0.19756622314453126, + "step": 193100 + }, + { + "epoch": 64.72367870005863, + "grad_norm": 0.6258018612861633, + "learning_rate": 1.7652596314907873e-05, + "loss": 0.19659183502197267, + "step": 193200 + }, + { + "epoch": 64.75718234357987, + "grad_norm": 0.6579128503799438, + "learning_rate": 1.7635845896147405e-05, + "loss": 0.19634262084960938, + "step": 193300 + }, + { + "epoch": 64.7906859871011, + "grad_norm": 0.6634902954101562, + "learning_rate": 1.7619095477386934e-05, + "loss": 0.19719581604003905, + "step": 193400 + }, + { + "epoch": 64.82418963062233, + "grad_norm": 0.7709892988204956, + "learning_rate": 1.7602345058626466e-05, + "loss": 0.19753650665283204, + "step": 193500 + }, + { + "epoch": 64.85769327414356, + "grad_norm": 0.7069748044013977, + "learning_rate": 1.7585594639866e-05, + "loss": 0.19717281341552734, + "step": 193600 + }, + { + "epoch": 64.8911969176648, + "grad_norm": 0.756540060043335, + "learning_rate": 1.756884422110553e-05, + "loss": 0.19797266006469727, + "step": 193700 + }, + { + "epoch": 64.92470056118603, + "grad_norm": 0.8358628749847412, + "learning_rate": 1.755209380234506e-05, + "loss": 0.19739683151245116, + "step": 193800 + }, + { + "epoch": 64.95820420470726, + "grad_norm": 0.7340553998947144, + "learning_rate": 1.753534338358459e-05, + "loss": 0.19825174331665038, + "step": 193900 + }, + { + "epoch": 64.9917078482285, + "grad_norm": 0.7182520627975464, + "learning_rate": 1.751859296482412e-05, + "loss": 0.1992794418334961, + "step": 194000 + }, + { + "epoch": 65.02512773264093, + "grad_norm": 0.7197110652923584, + "learning_rate": 1.7501842546063653e-05, + "loss": 0.19224626541137696, + "step": 194100 + }, + { + "epoch": 65.05863137616215, + "grad_norm": 0.704738199710846, + "learning_rate": 1.7485092127303185e-05, + "loss": 0.1910837173461914, + "step": 194200 + }, + { + "epoch": 65.0921350196834, + "grad_norm": 0.7330573201179504, + "learning_rate": 1.7468341708542714e-05, + "loss": 0.1925986099243164, + "step": 194300 + }, + { + "epoch": 65.12563866320463, + "grad_norm": 0.6279468536376953, + "learning_rate": 1.7451591289782246e-05, + "loss": 0.19241338729858398, + "step": 194400 + }, + { + "epoch": 65.15914230672585, + "grad_norm": 0.7558215856552124, + "learning_rate": 1.7434840871021778e-05, + "loss": 0.19235986709594727, + "step": 194500 + }, + { + "epoch": 65.19264595024708, + "grad_norm": 0.7638766765594482, + "learning_rate": 1.7418090452261307e-05, + "loss": 0.19314172744750976, + "step": 194600 + }, + { + "epoch": 65.22614959376833, + "grad_norm": 0.8271517753601074, + "learning_rate": 1.740134003350084e-05, + "loss": 0.19355636596679687, + "step": 194700 + }, + { + "epoch": 65.25965323728956, + "grad_norm": 0.6696556806564331, + "learning_rate": 1.7384589614740368e-05, + "loss": 0.19400758743286134, + "step": 194800 + }, + { + "epoch": 65.29315688081078, + "grad_norm": 0.6253610849380493, + "learning_rate": 1.73678391959799e-05, + "loss": 0.1946131706237793, + "step": 194900 + }, + { + "epoch": 65.32666052433203, + "grad_norm": 0.7860012054443359, + "learning_rate": 1.7351088777219432e-05, + "loss": 0.19406192779541015, + "step": 195000 + }, + { + "epoch": 65.36016416785326, + "grad_norm": 0.6729128360748291, + "learning_rate": 1.7334505862646565e-05, + "loss": 0.19439397811889647, + "step": 195100 + }, + { + "epoch": 65.39366781137448, + "grad_norm": 0.5755062699317932, + "learning_rate": 1.7317755443886097e-05, + "loss": 0.1932700538635254, + "step": 195200 + }, + { + "epoch": 65.42717145489571, + "grad_norm": 0.726636528968811, + "learning_rate": 1.730100502512563e-05, + "loss": 0.19444786071777342, + "step": 195300 + }, + { + "epoch": 65.46067509841696, + "grad_norm": 0.699719250202179, + "learning_rate": 1.728425460636516e-05, + "loss": 0.19458566665649413, + "step": 195400 + }, + { + "epoch": 65.49417874193819, + "grad_norm": 0.5866639614105225, + "learning_rate": 1.726750418760469e-05, + "loss": 0.19407997131347657, + "step": 195500 + }, + { + "epoch": 65.52768238545941, + "grad_norm": 0.6109085083007812, + "learning_rate": 1.7250753768844223e-05, + "loss": 0.19484548568725585, + "step": 195600 + }, + { + "epoch": 65.56118602898066, + "grad_norm": 0.6569064855575562, + "learning_rate": 1.723400335008375e-05, + "loss": 0.19527423858642579, + "step": 195700 + }, + { + "epoch": 65.59468967250189, + "grad_norm": 0.7762038707733154, + "learning_rate": 1.7217252931323284e-05, + "loss": 0.19620054244995117, + "step": 195800 + }, + { + "epoch": 65.62819331602311, + "grad_norm": 0.7439081072807312, + "learning_rate": 1.7200502512562816e-05, + "loss": 0.19575105667114256, + "step": 195900 + }, + { + "epoch": 65.66169695954434, + "grad_norm": 0.6967695951461792, + "learning_rate": 1.7183752093802348e-05, + "loss": 0.19645559310913085, + "step": 196000 + }, + { + "epoch": 65.69520060306559, + "grad_norm": 0.7349697351455688, + "learning_rate": 1.7167001675041877e-05, + "loss": 0.19642463684082032, + "step": 196100 + }, + { + "epoch": 65.72870424658682, + "grad_norm": 0.6738443970680237, + "learning_rate": 1.715025125628141e-05, + "loss": 0.19574283599853515, + "step": 196200 + }, + { + "epoch": 65.76220789010804, + "grad_norm": 0.6993250250816345, + "learning_rate": 1.7133500837520938e-05, + "loss": 0.19748226165771485, + "step": 196300 + }, + { + "epoch": 65.79571153362929, + "grad_norm": 0.7072445750236511, + "learning_rate": 1.711675041876047e-05, + "loss": 0.19640846252441407, + "step": 196400 + }, + { + "epoch": 65.82921517715052, + "grad_norm": 0.7074381709098816, + "learning_rate": 1.7100000000000002e-05, + "loss": 0.19640003204345702, + "step": 196500 + }, + { + "epoch": 65.86271882067174, + "grad_norm": 0.6643349528312683, + "learning_rate": 1.708324958123953e-05, + "loss": 0.1962619400024414, + "step": 196600 + }, + { + "epoch": 65.89622246419299, + "grad_norm": 0.6393887400627136, + "learning_rate": 1.7066499162479063e-05, + "loss": 0.19662002563476563, + "step": 196700 + }, + { + "epoch": 65.92972610771422, + "grad_norm": 0.6912117600440979, + "learning_rate": 1.7049748743718592e-05, + "loss": 0.19711755752563476, + "step": 196800 + }, + { + "epoch": 65.96322975123545, + "grad_norm": 0.6061841249465942, + "learning_rate": 1.7032998324958124e-05, + "loss": 0.19713987350463869, + "step": 196900 + }, + { + "epoch": 65.99673339475667, + "grad_norm": 0.8009989857673645, + "learning_rate": 1.7016247906197653e-05, + "loss": 0.19686588287353515, + "step": 197000 + }, + { + "epoch": 66.03015327916911, + "grad_norm": 0.5211619734764099, + "learning_rate": 1.6999497487437185e-05, + "loss": 0.19180856704711913, + "step": 197100 + }, + { + "epoch": 66.06365692269034, + "grad_norm": 0.8374447822570801, + "learning_rate": 1.698291457286432e-05, + "loss": 0.1912846565246582, + "step": 197200 + }, + { + "epoch": 66.09716056621157, + "grad_norm": 0.5720506310462952, + "learning_rate": 1.6966164154103854e-05, + "loss": 0.1917406463623047, + "step": 197300 + }, + { + "epoch": 66.13066420973281, + "grad_norm": 0.6164358258247375, + "learning_rate": 1.6949413735343382e-05, + "loss": 0.19152711868286132, + "step": 197400 + }, + { + "epoch": 66.16416785325404, + "grad_norm": 0.6611140370368958, + "learning_rate": 1.6932663316582915e-05, + "loss": 0.1916365623474121, + "step": 197500 + }, + { + "epoch": 66.19767149677527, + "grad_norm": 0.8065768480300903, + "learning_rate": 1.6915912897822447e-05, + "loss": 0.19188701629638671, + "step": 197600 + }, + { + "epoch": 66.23117514029651, + "grad_norm": 0.832007646560669, + "learning_rate": 1.689916247906198e-05, + "loss": 0.19254329681396484, + "step": 197700 + }, + { + "epoch": 66.26467878381774, + "grad_norm": 0.6256246566772461, + "learning_rate": 1.6882412060301508e-05, + "loss": 0.19245880126953124, + "step": 197800 + }, + { + "epoch": 66.29818242733897, + "grad_norm": 0.6906976103782654, + "learning_rate": 1.686566164154104e-05, + "loss": 0.19253412246704102, + "step": 197900 + }, + { + "epoch": 66.3316860708602, + "grad_norm": 0.8333529233932495, + "learning_rate": 1.684891122278057e-05, + "loss": 0.19308279037475587, + "step": 198000 + }, + { + "epoch": 66.36518971438144, + "grad_norm": 0.6668996810913086, + "learning_rate": 1.68321608040201e-05, + "loss": 0.19387590408325195, + "step": 198100 + }, + { + "epoch": 66.39869335790267, + "grad_norm": 0.6531146764755249, + "learning_rate": 1.6815410385259633e-05, + "loss": 0.19346897125244142, + "step": 198200 + }, + { + "epoch": 66.4321970014239, + "grad_norm": 0.5391746163368225, + "learning_rate": 1.6798659966499165e-05, + "loss": 0.19385696411132813, + "step": 198300 + }, + { + "epoch": 66.46570064494514, + "grad_norm": 0.7026568055152893, + "learning_rate": 1.6781909547738694e-05, + "loss": 0.19465816497802735, + "step": 198400 + }, + { + "epoch": 66.49920428846637, + "grad_norm": 0.7220622301101685, + "learning_rate": 1.6765159128978226e-05, + "loss": 0.19388059616088868, + "step": 198500 + }, + { + "epoch": 66.5327079319876, + "grad_norm": 0.6891744136810303, + "learning_rate": 1.6748408710217755e-05, + "loss": 0.1932676887512207, + "step": 198600 + }, + { + "epoch": 66.56621157550883, + "grad_norm": 0.5302000045776367, + "learning_rate": 1.6731658291457288e-05, + "loss": 0.19477445602416993, + "step": 198700 + }, + { + "epoch": 66.59971521903007, + "grad_norm": 0.7118658423423767, + "learning_rate": 1.671490787269682e-05, + "loss": 0.1960425567626953, + "step": 198800 + }, + { + "epoch": 66.6332188625513, + "grad_norm": 0.6674960255622864, + "learning_rate": 1.669815745393635e-05, + "loss": 0.19594356536865234, + "step": 198900 + }, + { + "epoch": 66.66672250607253, + "grad_norm": 0.7001693844795227, + "learning_rate": 1.668140703517588e-05, + "loss": 0.1959066581726074, + "step": 199000 + }, + { + "epoch": 66.70022614959377, + "grad_norm": 0.7504046559333801, + "learning_rate": 1.666465661641541e-05, + "loss": 0.19596036911010742, + "step": 199100 + }, + { + "epoch": 66.733729793115, + "grad_norm": 0.540820837020874, + "learning_rate": 1.6647906197654942e-05, + "loss": 0.19496715545654297, + "step": 199200 + }, + { + "epoch": 66.76723343663623, + "grad_norm": 0.659315288066864, + "learning_rate": 1.6631323283082078e-05, + "loss": 0.19592731475830077, + "step": 199300 + }, + { + "epoch": 66.80073708015746, + "grad_norm": 0.6407586336135864, + "learning_rate": 1.661457286432161e-05, + "loss": 0.1966596221923828, + "step": 199400 + }, + { + "epoch": 66.8342407236787, + "grad_norm": 0.8105034828186035, + "learning_rate": 1.659782244556114e-05, + "loss": 0.19701980590820312, + "step": 199500 + }, + { + "epoch": 66.86774436719993, + "grad_norm": 0.693172812461853, + "learning_rate": 1.658107202680067e-05, + "loss": 0.19503232955932617, + "step": 199600 + }, + { + "epoch": 66.90124801072116, + "grad_norm": 0.7639322876930237, + "learning_rate": 1.65643216080402e-05, + "loss": 0.1977808380126953, + "step": 199700 + }, + { + "epoch": 66.9347516542424, + "grad_norm": 0.7706619501113892, + "learning_rate": 1.6547571189279735e-05, + "loss": 0.19528146743774413, + "step": 199800 + }, + { + "epoch": 66.96825529776363, + "grad_norm": 0.8017984628677368, + "learning_rate": 1.6530820770519264e-05, + "loss": 0.19607614517211913, + "step": 199900 + }, + { + "epoch": 67.00167518217606, + "grad_norm": 0.6076714992523193, + "learning_rate": 1.6514070351758796e-05, + "loss": 0.196212100982666, + "step": 200000 + }, + { + "epoch": 67.0351788256973, + "grad_norm": 0.7155037522315979, + "learning_rate": 1.6497319932998325e-05, + "loss": 0.19083133697509766, + "step": 200100 + }, + { + "epoch": 67.06868246921853, + "grad_norm": 0.6289516687393188, + "learning_rate": 1.6480569514237857e-05, + "loss": 0.19047863006591798, + "step": 200200 + }, + { + "epoch": 67.10218611273976, + "grad_norm": 0.6958616375923157, + "learning_rate": 1.6463819095477386e-05, + "loss": 0.1900768280029297, + "step": 200300 + }, + { + "epoch": 67.13568975626099, + "grad_norm": 0.5616253018379211, + "learning_rate": 1.644706867671692e-05, + "loss": 0.19233095169067382, + "step": 200400 + }, + { + "epoch": 67.16919339978223, + "grad_norm": 0.6665573120117188, + "learning_rate": 1.643031825795645e-05, + "loss": 0.1919367218017578, + "step": 200500 + }, + { + "epoch": 67.20269704330346, + "grad_norm": 0.6951255798339844, + "learning_rate": 1.6413567839195983e-05, + "loss": 0.19197673797607423, + "step": 200600 + }, + { + "epoch": 67.23620068682469, + "grad_norm": 0.6771343946456909, + "learning_rate": 1.639681742043551e-05, + "loss": 0.1921021270751953, + "step": 200700 + }, + { + "epoch": 67.26970433034593, + "grad_norm": 0.6687894463539124, + "learning_rate": 1.6380067001675044e-05, + "loss": 0.19192752838134766, + "step": 200800 + }, + { + "epoch": 67.30320797386716, + "grad_norm": 0.7397539019584656, + "learning_rate": 1.6363316582914573e-05, + "loss": 0.1915091323852539, + "step": 200900 + }, + { + "epoch": 67.33671161738839, + "grad_norm": 0.6094964742660522, + "learning_rate": 1.6346566164154105e-05, + "loss": 0.1940443992614746, + "step": 201000 + }, + { + "epoch": 67.37021526090962, + "grad_norm": 0.5608842372894287, + "learning_rate": 1.6329815745393637e-05, + "loss": 0.19360294342041015, + "step": 201100 + }, + { + "epoch": 67.40371890443086, + "grad_norm": 0.6738369464874268, + "learning_rate": 1.6313065326633166e-05, + "loss": 0.19352413177490235, + "step": 201200 + }, + { + "epoch": 67.43722254795209, + "grad_norm": 0.7028993964195251, + "learning_rate": 1.6296482412060302e-05, + "loss": 0.1933650016784668, + "step": 201300 + }, + { + "epoch": 67.47072619147332, + "grad_norm": 0.5576817989349365, + "learning_rate": 1.627973199329983e-05, + "loss": 0.19390420913696288, + "step": 201400 + }, + { + "epoch": 67.50422983499456, + "grad_norm": 0.6411824226379395, + "learning_rate": 1.6262981574539366e-05, + "loss": 0.1935529899597168, + "step": 201500 + }, + { + "epoch": 67.53773347851579, + "grad_norm": 0.6373094916343689, + "learning_rate": 1.6246231155778895e-05, + "loss": 0.19391347885131835, + "step": 201600 + }, + { + "epoch": 67.57123712203702, + "grad_norm": 0.6556655168533325, + "learning_rate": 1.6229480737018427e-05, + "loss": 0.19495166778564454, + "step": 201700 + }, + { + "epoch": 67.60474076555825, + "grad_norm": 0.6322004199028015, + "learning_rate": 1.6212730318257956e-05, + "loss": 0.1953642463684082, + "step": 201800 + }, + { + "epoch": 67.63824440907949, + "grad_norm": 0.6095288395881653, + "learning_rate": 1.619597989949749e-05, + "loss": 0.19500333786010743, + "step": 201900 + }, + { + "epoch": 67.67174805260072, + "grad_norm": 0.5999951362609863, + "learning_rate": 1.6179229480737017e-05, + "loss": 0.19503114700317384, + "step": 202000 + }, + { + "epoch": 67.70525169612195, + "grad_norm": 0.7297765016555786, + "learning_rate": 1.6162479061976553e-05, + "loss": 0.19440362930297853, + "step": 202100 + }, + { + "epoch": 67.73875533964319, + "grad_norm": 0.7177837491035461, + "learning_rate": 1.614572864321608e-05, + "loss": 0.19499702453613282, + "step": 202200 + }, + { + "epoch": 67.77225898316442, + "grad_norm": 0.8244702219963074, + "learning_rate": 1.6128978224455614e-05, + "loss": 0.19555707931518554, + "step": 202300 + }, + { + "epoch": 67.80576262668565, + "grad_norm": 0.6373338103294373, + "learning_rate": 1.6112227805695143e-05, + "loss": 0.195418758392334, + "step": 202400 + }, + { + "epoch": 67.83926627020689, + "grad_norm": 0.6217545866966248, + "learning_rate": 1.6095477386934675e-05, + "loss": 0.19555667877197266, + "step": 202500 + }, + { + "epoch": 67.87276991372812, + "grad_norm": 0.6853159070014954, + "learning_rate": 1.6078726968174204e-05, + "loss": 0.19608963012695313, + "step": 202600 + }, + { + "epoch": 67.90627355724935, + "grad_norm": 0.6794860363006592, + "learning_rate": 1.6061976549413736e-05, + "loss": 0.19546913146972655, + "step": 202700 + }, + { + "epoch": 67.93977720077058, + "grad_norm": 0.6505772471427917, + "learning_rate": 1.6045226130653268e-05, + "loss": 0.19603317260742187, + "step": 202800 + }, + { + "epoch": 67.97328084429182, + "grad_norm": 0.6339512467384338, + "learning_rate": 1.60284757118928e-05, + "loss": 0.19620756149291993, + "step": 202900 + }, + { + "epoch": 68.00670072870425, + "grad_norm": 0.602581799030304, + "learning_rate": 1.601172529313233e-05, + "loss": 0.19463903427124024, + "step": 203000 + }, + { + "epoch": 68.04020437222547, + "grad_norm": 0.5730949640274048, + "learning_rate": 1.599497487437186e-05, + "loss": 0.19001585006713867, + "step": 203100 + }, + { + "epoch": 68.07370801574672, + "grad_norm": 0.5395110845565796, + "learning_rate": 1.597822445561139e-05, + "loss": 0.19011409759521483, + "step": 203200 + }, + { + "epoch": 68.10721165926795, + "grad_norm": 0.5770024657249451, + "learning_rate": 1.5961474036850922e-05, + "loss": 0.1901267433166504, + "step": 203300 + }, + { + "epoch": 68.14071530278918, + "grad_norm": 0.7738876342773438, + "learning_rate": 1.5944891122278058e-05, + "loss": 0.1905143928527832, + "step": 203400 + }, + { + "epoch": 68.17421894631042, + "grad_norm": 0.7363227605819702, + "learning_rate": 1.5928140703517587e-05, + "loss": 0.19049446105957032, + "step": 203500 + }, + { + "epoch": 68.20772258983165, + "grad_norm": 0.7116740345954895, + "learning_rate": 1.591139028475712e-05, + "loss": 0.19107500076293946, + "step": 203600 + }, + { + "epoch": 68.24122623335288, + "grad_norm": 0.715164840221405, + "learning_rate": 1.5894639865996648e-05, + "loss": 0.19192060470581054, + "step": 203700 + }, + { + "epoch": 68.2747298768741, + "grad_norm": 0.7426648736000061, + "learning_rate": 1.5877889447236184e-05, + "loss": 0.19199298858642577, + "step": 203800 + }, + { + "epoch": 68.30823352039535, + "grad_norm": 0.6598964929580688, + "learning_rate": 1.5861139028475713e-05, + "loss": 0.19214748382568358, + "step": 203900 + }, + { + "epoch": 68.34173716391658, + "grad_norm": 0.7202093601226807, + "learning_rate": 1.5844388609715245e-05, + "loss": 0.191875, + "step": 204000 + }, + { + "epoch": 68.3752408074378, + "grad_norm": 0.7151044607162476, + "learning_rate": 1.5827638190954774e-05, + "loss": 0.1921199607849121, + "step": 204100 + }, + { + "epoch": 68.40874445095905, + "grad_norm": 0.6264718174934387, + "learning_rate": 1.5810887772194306e-05, + "loss": 0.1933818244934082, + "step": 204200 + }, + { + "epoch": 68.44224809448028, + "grad_norm": 0.6225735545158386, + "learning_rate": 1.5794137353433835e-05, + "loss": 0.19361408233642577, + "step": 204300 + }, + { + "epoch": 68.4757517380015, + "grad_norm": 0.7502007484436035, + "learning_rate": 1.577738693467337e-05, + "loss": 0.1928209114074707, + "step": 204400 + }, + { + "epoch": 68.50925538152273, + "grad_norm": 0.6535805463790894, + "learning_rate": 1.57606365159129e-05, + "loss": 0.1925800323486328, + "step": 204500 + }, + { + "epoch": 68.54275902504398, + "grad_norm": 0.6184046864509583, + "learning_rate": 1.574388609715243e-05, + "loss": 0.1938844680786133, + "step": 204600 + }, + { + "epoch": 68.5762626685652, + "grad_norm": 0.642119824886322, + "learning_rate": 1.572713567839196e-05, + "loss": 0.1933103942871094, + "step": 204700 + }, + { + "epoch": 68.60976631208644, + "grad_norm": 0.6790170669555664, + "learning_rate": 1.5710385259631492e-05, + "loss": 0.1948932647705078, + "step": 204800 + }, + { + "epoch": 68.64326995560768, + "grad_norm": 0.647903323173523, + "learning_rate": 1.569363484087102e-05, + "loss": 0.1952429962158203, + "step": 204900 + }, + { + "epoch": 68.67677359912891, + "grad_norm": 0.77556312084198, + "learning_rate": 1.5676884422110553e-05, + "loss": 0.19408275604248046, + "step": 205000 + }, + { + "epoch": 68.71027724265014, + "grad_norm": 0.6710578203201294, + "learning_rate": 1.5660134003350085e-05, + "loss": 0.1949919319152832, + "step": 205100 + }, + { + "epoch": 68.74378088617136, + "grad_norm": 0.6515961289405823, + "learning_rate": 1.5643383584589614e-05, + "loss": 0.19462379455566406, + "step": 205200 + }, + { + "epoch": 68.77728452969261, + "grad_norm": 0.7134996652603149, + "learning_rate": 1.5626633165829147e-05, + "loss": 0.19480768203735352, + "step": 205300 + }, + { + "epoch": 68.81078817321384, + "grad_norm": 0.5678537487983704, + "learning_rate": 1.5610050251256282e-05, + "loss": 0.1956866455078125, + "step": 205400 + }, + { + "epoch": 68.84429181673507, + "grad_norm": 0.627916157245636, + "learning_rate": 1.5593299832495815e-05, + "loss": 0.19494726181030272, + "step": 205500 + }, + { + "epoch": 68.87779546025631, + "grad_norm": 0.5940144062042236, + "learning_rate": 1.5576549413735343e-05, + "loss": 0.19554563522338866, + "step": 205600 + }, + { + "epoch": 68.91129910377754, + "grad_norm": 0.7416447401046753, + "learning_rate": 1.5559798994974876e-05, + "loss": 0.19647571563720703, + "step": 205700 + }, + { + "epoch": 68.94480274729877, + "grad_norm": 0.6104159355163574, + "learning_rate": 1.5543048576214404e-05, + "loss": 0.19543346405029297, + "step": 205800 + }, + { + "epoch": 68.97830639082, + "grad_norm": 0.7064023613929749, + "learning_rate": 1.5526298157453937e-05, + "loss": 0.19565975189208984, + "step": 205900 + }, + { + "epoch": 69.01172627523243, + "grad_norm": 0.6279042363166809, + "learning_rate": 1.5509547738693466e-05, + "loss": 0.1939265251159668, + "step": 206000 + }, + { + "epoch": 69.04522991875366, + "grad_norm": 0.6966283917427063, + "learning_rate": 1.5492797319933e-05, + "loss": 0.18873752593994142, + "step": 206100 + }, + { + "epoch": 69.07873356227489, + "grad_norm": 0.598598062992096, + "learning_rate": 1.547604690117253e-05, + "loss": 0.19044071197509765, + "step": 206200 + }, + { + "epoch": 69.11223720579613, + "grad_norm": 0.6215249300003052, + "learning_rate": 1.5459296482412062e-05, + "loss": 0.18954809188842772, + "step": 206300 + }, + { + "epoch": 69.14574084931736, + "grad_norm": 0.6590831279754639, + "learning_rate": 1.544254606365159e-05, + "loss": 0.1906461524963379, + "step": 206400 + }, + { + "epoch": 69.17924449283859, + "grad_norm": 0.5938999056816101, + "learning_rate": 1.5425795644891123e-05, + "loss": 0.1904694175720215, + "step": 206500 + }, + { + "epoch": 69.21274813635983, + "grad_norm": 0.5933434367179871, + "learning_rate": 1.5409045226130652e-05, + "loss": 0.19135387420654296, + "step": 206600 + }, + { + "epoch": 69.24625177988106, + "grad_norm": 0.7321082353591919, + "learning_rate": 1.5392294807370188e-05, + "loss": 0.19140138626098632, + "step": 206700 + }, + { + "epoch": 69.27975542340229, + "grad_norm": 0.7632362842559814, + "learning_rate": 1.5375544388609716e-05, + "loss": 0.19026206970214843, + "step": 206800 + }, + { + "epoch": 69.31325906692352, + "grad_norm": 0.5204057097434998, + "learning_rate": 1.535879396984925e-05, + "loss": 0.19211410522460937, + "step": 206900 + }, + { + "epoch": 69.34676271044476, + "grad_norm": 0.5607998967170715, + "learning_rate": 1.5342043551088777e-05, + "loss": 0.19179800033569336, + "step": 207000 + }, + { + "epoch": 69.380266353966, + "grad_norm": 0.6838735342025757, + "learning_rate": 1.532529313232831e-05, + "loss": 0.1921243476867676, + "step": 207100 + }, + { + "epoch": 69.41376999748722, + "grad_norm": 0.7290564179420471, + "learning_rate": 1.530854271356784e-05, + "loss": 0.1927803611755371, + "step": 207200 + }, + { + "epoch": 69.44727364100847, + "grad_norm": 0.678501307964325, + "learning_rate": 1.529179229480737e-05, + "loss": 0.19337810516357423, + "step": 207300 + }, + { + "epoch": 69.4807772845297, + "grad_norm": 0.6822425723075867, + "learning_rate": 1.5275041876046903e-05, + "loss": 0.1925121307373047, + "step": 207400 + }, + { + "epoch": 69.51428092805092, + "grad_norm": 0.5909448266029358, + "learning_rate": 1.5258458961474037e-05, + "loss": 0.1932221221923828, + "step": 207500 + }, + { + "epoch": 69.54778457157215, + "grad_norm": 0.5861632823944092, + "learning_rate": 1.5241708542713568e-05, + "loss": 0.19226568222045898, + "step": 207600 + }, + { + "epoch": 69.5812882150934, + "grad_norm": 0.6072438359260559, + "learning_rate": 1.5224958123953102e-05, + "loss": 0.19327423095703125, + "step": 207700 + }, + { + "epoch": 69.61479185861462, + "grad_norm": 0.7752787470817566, + "learning_rate": 1.5208207705192632e-05, + "loss": 0.19411521911621094, + "step": 207800 + }, + { + "epoch": 69.64829550213585, + "grad_norm": 0.604340672492981, + "learning_rate": 1.5191457286432163e-05, + "loss": 0.19500984191894533, + "step": 207900 + }, + { + "epoch": 69.6817991456571, + "grad_norm": 0.5669907331466675, + "learning_rate": 1.5174706867671693e-05, + "loss": 0.19465980529785157, + "step": 208000 + }, + { + "epoch": 69.71530278917832, + "grad_norm": 0.624899685382843, + "learning_rate": 1.5157956448911224e-05, + "loss": 0.1940926742553711, + "step": 208100 + }, + { + "epoch": 69.74880643269955, + "grad_norm": 0.7137749195098877, + "learning_rate": 1.5141206030150754e-05, + "loss": 0.19328271865844726, + "step": 208200 + }, + { + "epoch": 69.7823100762208, + "grad_norm": 0.7387290000915527, + "learning_rate": 1.5124455611390285e-05, + "loss": 0.1953897285461426, + "step": 208300 + }, + { + "epoch": 69.81581371974202, + "grad_norm": 0.5705156326293945, + "learning_rate": 1.5107705192629817e-05, + "loss": 0.194132022857666, + "step": 208400 + }, + { + "epoch": 69.84931736326325, + "grad_norm": 0.6383335590362549, + "learning_rate": 1.5090954773869347e-05, + "loss": 0.1951007652282715, + "step": 208500 + }, + { + "epoch": 69.88282100678448, + "grad_norm": 0.6704970002174377, + "learning_rate": 1.5074204355108878e-05, + "loss": 0.19534845352172853, + "step": 208600 + }, + { + "epoch": 69.91632465030573, + "grad_norm": 0.5984908938407898, + "learning_rate": 1.5057453936348408e-05, + "loss": 0.19434907913208008, + "step": 208700 + }, + { + "epoch": 69.94982829382695, + "grad_norm": 0.6464018821716309, + "learning_rate": 1.5040703517587939e-05, + "loss": 0.19456119537353517, + "step": 208800 + }, + { + "epoch": 69.98333193734818, + "grad_norm": 0.7534891366958618, + "learning_rate": 1.502395309882747e-05, + "loss": 0.1956119155883789, + "step": 208900 + }, + { + "epoch": 70.01675182176062, + "grad_norm": 0.7756277918815613, + "learning_rate": 1.5007202680067003e-05, + "loss": 0.19219749450683593, + "step": 209000 + }, + { + "epoch": 70.05025546528185, + "grad_norm": 0.6661693453788757, + "learning_rate": 1.4990452261306534e-05, + "loss": 0.1881481170654297, + "step": 209100 + }, + { + "epoch": 70.08375910880308, + "grad_norm": 0.6152818202972412, + "learning_rate": 1.4973701842546064e-05, + "loss": 0.18986621856689453, + "step": 209200 + }, + { + "epoch": 70.11726275232432, + "grad_norm": 0.5430614352226257, + "learning_rate": 1.4956951423785595e-05, + "loss": 0.1886882209777832, + "step": 209300 + }, + { + "epoch": 70.15076639584555, + "grad_norm": 0.6443721652030945, + "learning_rate": 1.4940201005025125e-05, + "loss": 0.19037208557128907, + "step": 209400 + }, + { + "epoch": 70.18427003936678, + "grad_norm": 0.6034039855003357, + "learning_rate": 1.4923450586264656e-05, + "loss": 0.18961322784423829, + "step": 209500 + }, + { + "epoch": 70.21777368288801, + "grad_norm": 0.6922727227210999, + "learning_rate": 1.4906867671691794e-05, + "loss": 0.19092901229858397, + "step": 209600 + }, + { + "epoch": 70.25127732640925, + "grad_norm": 0.7775962352752686, + "learning_rate": 1.4890117252931324e-05, + "loss": 0.1911904525756836, + "step": 209700 + }, + { + "epoch": 70.28478096993048, + "grad_norm": 0.6121329665184021, + "learning_rate": 1.4873366834170855e-05, + "loss": 0.19077373504638673, + "step": 209800 + }, + { + "epoch": 70.31828461345171, + "grad_norm": 0.6311072707176208, + "learning_rate": 1.4856616415410385e-05, + "loss": 0.19276874542236327, + "step": 209900 + }, + { + "epoch": 70.35178825697295, + "grad_norm": 0.6190215349197388, + "learning_rate": 1.4839865996649919e-05, + "loss": 0.1920265007019043, + "step": 210000 + }, + { + "epoch": 70.38529190049418, + "grad_norm": 0.7317872047424316, + "learning_rate": 1.482311557788945e-05, + "loss": 0.1915855026245117, + "step": 210100 + }, + { + "epoch": 70.41879554401541, + "grad_norm": 0.5770769715309143, + "learning_rate": 1.480636515912898e-05, + "loss": 0.19160455703735352, + "step": 210200 + }, + { + "epoch": 70.45229918753664, + "grad_norm": 0.4898484945297241, + "learning_rate": 1.478961474036851e-05, + "loss": 0.19282726287841798, + "step": 210300 + }, + { + "epoch": 70.48580283105788, + "grad_norm": 0.7757408618927002, + "learning_rate": 1.4772864321608041e-05, + "loss": 0.19382453918457032, + "step": 210400 + }, + { + "epoch": 70.51930647457911, + "grad_norm": 0.7815673351287842, + "learning_rate": 1.4756113902847572e-05, + "loss": 0.19315202713012694, + "step": 210500 + }, + { + "epoch": 70.55281011810034, + "grad_norm": 0.6631892323493958, + "learning_rate": 1.4739363484087104e-05, + "loss": 0.1935376739501953, + "step": 210600 + }, + { + "epoch": 70.58631376162158, + "grad_norm": 0.6759666204452515, + "learning_rate": 1.4722613065326634e-05, + "loss": 0.19363182067871093, + "step": 210700 + }, + { + "epoch": 70.61981740514281, + "grad_norm": 0.7577219605445862, + "learning_rate": 1.4705862646566165e-05, + "loss": 0.19298139572143555, + "step": 210800 + }, + { + "epoch": 70.65332104866404, + "grad_norm": 0.5035127997398376, + "learning_rate": 1.4689112227805695e-05, + "loss": 0.19403892517089844, + "step": 210900 + }, + { + "epoch": 70.68682469218527, + "grad_norm": 0.6267746090888977, + "learning_rate": 1.4672361809045226e-05, + "loss": 0.19389795303344726, + "step": 211000 + }, + { + "epoch": 70.72032833570651, + "grad_norm": 0.7773340344429016, + "learning_rate": 1.4655611390284756e-05, + "loss": 0.19378913879394533, + "step": 211100 + }, + { + "epoch": 70.75383197922774, + "grad_norm": 0.6656227111816406, + "learning_rate": 1.4638860971524287e-05, + "loss": 0.19349145889282227, + "step": 211200 + }, + { + "epoch": 70.78733562274897, + "grad_norm": 0.5681379437446594, + "learning_rate": 1.462211055276382e-05, + "loss": 0.19408063888549804, + "step": 211300 + }, + { + "epoch": 70.82083926627021, + "grad_norm": 0.7380396127700806, + "learning_rate": 1.4605360134003351e-05, + "loss": 0.19320615768432617, + "step": 211400 + }, + { + "epoch": 70.85434290979144, + "grad_norm": 0.5551620721817017, + "learning_rate": 1.4588609715242882e-05, + "loss": 0.19429174423217774, + "step": 211500 + }, + { + "epoch": 70.88784655331267, + "grad_norm": 0.6880864500999451, + "learning_rate": 1.4572026800670016e-05, + "loss": 0.19458511352539062, + "step": 211600 + }, + { + "epoch": 70.9213501968339, + "grad_norm": 0.6348493099212646, + "learning_rate": 1.455527638190955e-05, + "loss": 0.19401802062988283, + "step": 211700 + }, + { + "epoch": 70.95485384035514, + "grad_norm": 0.8191368579864502, + "learning_rate": 1.453852596314908e-05, + "loss": 0.19446285247802733, + "step": 211800 + }, + { + "epoch": 70.98835748387637, + "grad_norm": 0.7762120366096497, + "learning_rate": 1.4521775544388611e-05, + "loss": 0.19511171340942382, + "step": 211900 + }, + { + "epoch": 71.0217773682888, + "grad_norm": 0.5584473609924316, + "learning_rate": 1.4505025125628141e-05, + "loss": 0.19062902450561522, + "step": 212000 + }, + { + "epoch": 71.05528101181004, + "grad_norm": 0.5374318957328796, + "learning_rate": 1.4488274706867672e-05, + "loss": 0.18799392700195314, + "step": 212100 + }, + { + "epoch": 71.08878465533127, + "grad_norm": 0.5808698534965515, + "learning_rate": 1.4471524288107202e-05, + "loss": 0.18921010971069335, + "step": 212200 + }, + { + "epoch": 71.1222882988525, + "grad_norm": 0.5353220701217651, + "learning_rate": 1.4454773869346735e-05, + "loss": 0.18873760223388672, + "step": 212300 + }, + { + "epoch": 71.15579194237374, + "grad_norm": 0.8585773706436157, + "learning_rate": 1.4438023450586265e-05, + "loss": 0.1902440071105957, + "step": 212400 + }, + { + "epoch": 71.18929558589497, + "grad_norm": 0.5950562357902527, + "learning_rate": 1.4421273031825797e-05, + "loss": 0.19001707077026367, + "step": 212500 + }, + { + "epoch": 71.2227992294162, + "grad_norm": 0.61844801902771, + "learning_rate": 1.4404522613065328e-05, + "loss": 0.1902621269226074, + "step": 212600 + }, + { + "epoch": 71.25630287293743, + "grad_norm": 0.6289156079292297, + "learning_rate": 1.4387772194304858e-05, + "loss": 0.19079328536987306, + "step": 212700 + }, + { + "epoch": 71.28980651645867, + "grad_norm": 0.5846434235572815, + "learning_rate": 1.4371021775544389e-05, + "loss": 0.19066036224365235, + "step": 212800 + }, + { + "epoch": 71.3233101599799, + "grad_norm": 0.5743843913078308, + "learning_rate": 1.4354271356783921e-05, + "loss": 0.19171554565429688, + "step": 212900 + }, + { + "epoch": 71.35681380350113, + "grad_norm": 0.7006944417953491, + "learning_rate": 1.4337520938023452e-05, + "loss": 0.19167909622192383, + "step": 213000 + }, + { + "epoch": 71.39031744702237, + "grad_norm": 0.8413968086242676, + "learning_rate": 1.4320770519262982e-05, + "loss": 0.19105392456054687, + "step": 213100 + }, + { + "epoch": 71.4238210905436, + "grad_norm": 0.5824098587036133, + "learning_rate": 1.4304020100502513e-05, + "loss": 0.1920245933532715, + "step": 213200 + }, + { + "epoch": 71.45732473406483, + "grad_norm": 0.6288939714431763, + "learning_rate": 1.4287269681742043e-05, + "loss": 0.19186897277832032, + "step": 213300 + }, + { + "epoch": 71.49082837758607, + "grad_norm": 0.691856324672699, + "learning_rate": 1.4270519262981574e-05, + "loss": 0.19312944412231445, + "step": 213400 + }, + { + "epoch": 71.5243320211073, + "grad_norm": 0.7578767538070679, + "learning_rate": 1.4253768844221108e-05, + "loss": 0.19235544204711913, + "step": 213500 + }, + { + "epoch": 71.55783566462853, + "grad_norm": 0.6085563898086548, + "learning_rate": 1.4237185929648242e-05, + "loss": 0.1931236457824707, + "step": 213600 + }, + { + "epoch": 71.59133930814976, + "grad_norm": 0.6119518876075745, + "learning_rate": 1.4220435510887772e-05, + "loss": 0.1938382339477539, + "step": 213700 + }, + { + "epoch": 71.624842951671, + "grad_norm": 0.6922339797019958, + "learning_rate": 1.4203685092127303e-05, + "loss": 0.19215814590454103, + "step": 213800 + }, + { + "epoch": 71.65834659519223, + "grad_norm": 0.7278738021850586, + "learning_rate": 1.4186934673366837e-05, + "loss": 0.19262287139892578, + "step": 213900 + }, + { + "epoch": 71.69185023871346, + "grad_norm": 0.6596753597259521, + "learning_rate": 1.4170184254606367e-05, + "loss": 0.19238534927368164, + "step": 214000 + }, + { + "epoch": 71.7253538822347, + "grad_norm": 0.6864719986915588, + "learning_rate": 1.4153433835845898e-05, + "loss": 0.1925214958190918, + "step": 214100 + }, + { + "epoch": 71.75885752575593, + "grad_norm": 0.6517135500907898, + "learning_rate": 1.4136683417085428e-05, + "loss": 0.1944540786743164, + "step": 214200 + }, + { + "epoch": 71.79236116927716, + "grad_norm": 0.7503974437713623, + "learning_rate": 1.4119932998324959e-05, + "loss": 0.1933121109008789, + "step": 214300 + }, + { + "epoch": 71.82586481279839, + "grad_norm": 0.60938960313797, + "learning_rate": 1.410318257956449e-05, + "loss": 0.19333812713623047, + "step": 214400 + }, + { + "epoch": 71.85936845631963, + "grad_norm": 0.659631073474884, + "learning_rate": 1.408643216080402e-05, + "loss": 0.19322057723999023, + "step": 214500 + }, + { + "epoch": 71.89287209984086, + "grad_norm": 0.6466450095176697, + "learning_rate": 1.4069681742043552e-05, + "loss": 0.19311923980712892, + "step": 214600 + }, + { + "epoch": 71.92637574336209, + "grad_norm": 0.6093922853469849, + "learning_rate": 1.4052931323283083e-05, + "loss": 0.19498254776000976, + "step": 214700 + }, + { + "epoch": 71.95987938688333, + "grad_norm": 0.7445212602615356, + "learning_rate": 1.4036180904522613e-05, + "loss": 0.19384960174560548, + "step": 214800 + }, + { + "epoch": 71.99338303040456, + "grad_norm": 0.5651571750640869, + "learning_rate": 1.4019430485762144e-05, + "loss": 0.193801212310791, + "step": 214900 + }, + { + "epoch": 72.02680291481698, + "grad_norm": 0.6022223234176636, + "learning_rate": 1.4002680067001674e-05, + "loss": 0.18981178283691405, + "step": 215000 + }, + { + "epoch": 72.06030655833823, + "grad_norm": 0.6050201058387756, + "learning_rate": 1.3985929648241206e-05, + "loss": 0.18904420852661133, + "step": 215100 + }, + { + "epoch": 72.09381020185945, + "grad_norm": 0.6156114935874939, + "learning_rate": 1.3969179229480739e-05, + "loss": 0.18817174911499024, + "step": 215200 + }, + { + "epoch": 72.12731384538068, + "grad_norm": 0.5546871423721313, + "learning_rate": 1.3952428810720269e-05, + "loss": 0.1889004898071289, + "step": 215300 + }, + { + "epoch": 72.16081748890191, + "grad_norm": 0.6833284497261047, + "learning_rate": 1.39356783919598e-05, + "loss": 0.18958877563476562, + "step": 215400 + }, + { + "epoch": 72.19432113242316, + "grad_norm": 0.6149327754974365, + "learning_rate": 1.391892797319933e-05, + "loss": 0.1900411605834961, + "step": 215500 + }, + { + "epoch": 72.22782477594438, + "grad_norm": 0.7087824940681458, + "learning_rate": 1.3902345058626468e-05, + "loss": 0.1900062370300293, + "step": 215600 + }, + { + "epoch": 72.26132841946561, + "grad_norm": 0.7365740537643433, + "learning_rate": 1.3885594639865998e-05, + "loss": 0.18973686218261718, + "step": 215700 + }, + { + "epoch": 72.29483206298686, + "grad_norm": 0.6139353513717651, + "learning_rate": 1.3868844221105529e-05, + "loss": 0.19053438186645508, + "step": 215800 + }, + { + "epoch": 72.32833570650808, + "grad_norm": 0.5968282222747803, + "learning_rate": 1.385209380234506e-05, + "loss": 0.19114097595214843, + "step": 215900 + }, + { + "epoch": 72.36183935002931, + "grad_norm": 0.6676009893417358, + "learning_rate": 1.383534338358459e-05, + "loss": 0.1919625473022461, + "step": 216000 + }, + { + "epoch": 72.39534299355054, + "grad_norm": 0.7123656272888184, + "learning_rate": 1.381859296482412e-05, + "loss": 0.19244312286376952, + "step": 216100 + }, + { + "epoch": 72.42884663707179, + "grad_norm": 0.6703692078590393, + "learning_rate": 1.3801842546063654e-05, + "loss": 0.1909078025817871, + "step": 216200 + }, + { + "epoch": 72.46235028059301, + "grad_norm": 0.7729817032814026, + "learning_rate": 1.3785092127303185e-05, + "loss": 0.192000789642334, + "step": 216300 + }, + { + "epoch": 72.49585392411424, + "grad_norm": 0.7377496361732483, + "learning_rate": 1.3768341708542715e-05, + "loss": 0.19194664001464845, + "step": 216400 + }, + { + "epoch": 72.52935756763549, + "grad_norm": 0.7420958876609802, + "learning_rate": 1.3751591289782246e-05, + "loss": 0.19183109283447267, + "step": 216500 + }, + { + "epoch": 72.56286121115672, + "grad_norm": 0.5992802381515503, + "learning_rate": 1.3734840871021776e-05, + "loss": 0.19208011627197266, + "step": 216600 + }, + { + "epoch": 72.59636485467794, + "grad_norm": 0.7813421487808228, + "learning_rate": 1.3718090452261307e-05, + "loss": 0.19179468154907225, + "step": 216700 + }, + { + "epoch": 72.62986849819917, + "grad_norm": 0.6775956153869629, + "learning_rate": 1.3701340033500837e-05, + "loss": 0.19274057388305665, + "step": 216800 + }, + { + "epoch": 72.66337214172042, + "grad_norm": 0.7122693657875061, + "learning_rate": 1.368458961474037e-05, + "loss": 0.1917710304260254, + "step": 216900 + }, + { + "epoch": 72.69687578524164, + "grad_norm": 0.7028974890708923, + "learning_rate": 1.36678391959799e-05, + "loss": 0.1918616485595703, + "step": 217000 + }, + { + "epoch": 72.73037942876287, + "grad_norm": 0.6234395503997803, + "learning_rate": 1.365108877721943e-05, + "loss": 0.192793025970459, + "step": 217100 + }, + { + "epoch": 72.76388307228412, + "grad_norm": 0.7795095443725586, + "learning_rate": 1.3634338358458961e-05, + "loss": 0.19276504516601561, + "step": 217200 + }, + { + "epoch": 72.79738671580535, + "grad_norm": 0.5714548230171204, + "learning_rate": 1.3617587939698492e-05, + "loss": 0.19352224349975586, + "step": 217300 + }, + { + "epoch": 72.83089035932657, + "grad_norm": 0.6443431973457336, + "learning_rate": 1.3600837520938022e-05, + "loss": 0.19274961471557617, + "step": 217400 + }, + { + "epoch": 72.8643940028478, + "grad_norm": 0.732292890548706, + "learning_rate": 1.3584087102177556e-05, + "loss": 0.19329883575439452, + "step": 217500 + }, + { + "epoch": 72.89789764636905, + "grad_norm": 0.6586911082267761, + "learning_rate": 1.3567336683417087e-05, + "loss": 0.19275350570678712, + "step": 217600 + }, + { + "epoch": 72.93140128989027, + "grad_norm": 0.4131799638271332, + "learning_rate": 1.355075376884422e-05, + "loss": 0.19394960403442382, + "step": 217700 + }, + { + "epoch": 72.9649049334115, + "grad_norm": 0.720600426197052, + "learning_rate": 1.3534003350083751e-05, + "loss": 0.19370002746582032, + "step": 217800 + }, + { + "epoch": 72.99840857693275, + "grad_norm": 0.7249190211296082, + "learning_rate": 1.3517252931323285e-05, + "loss": 0.19390350341796875, + "step": 217900 + }, + { + "epoch": 73.03182846134517, + "grad_norm": 0.7347325086593628, + "learning_rate": 1.3500502512562816e-05, + "loss": 0.18822053909301759, + "step": 218000 + }, + { + "epoch": 73.0653321048664, + "grad_norm": 0.6100323796272278, + "learning_rate": 1.3483752093802346e-05, + "loss": 0.1878873062133789, + "step": 218100 + }, + { + "epoch": 73.09883574838764, + "grad_norm": 0.6328092217445374, + "learning_rate": 1.3467001675041877e-05, + "loss": 0.18838220596313476, + "step": 218200 + }, + { + "epoch": 73.13233939190887, + "grad_norm": 0.6140354871749878, + "learning_rate": 1.3450251256281407e-05, + "loss": 0.18931222915649415, + "step": 218300 + }, + { + "epoch": 73.1658430354301, + "grad_norm": 0.6713184118270874, + "learning_rate": 1.3433500837520938e-05, + "loss": 0.18979503631591796, + "step": 218400 + }, + { + "epoch": 73.19934667895133, + "grad_norm": 0.5946479439735413, + "learning_rate": 1.3416750418760472e-05, + "loss": 0.19020790100097656, + "step": 218500 + }, + { + "epoch": 73.23285032247257, + "grad_norm": 0.635026216506958, + "learning_rate": 1.3400000000000002e-05, + "loss": 0.19073740005493164, + "step": 218600 + }, + { + "epoch": 73.2663539659938, + "grad_norm": 0.8429803252220154, + "learning_rate": 1.3383249581239533e-05, + "loss": 0.19040184020996093, + "step": 218700 + }, + { + "epoch": 73.29985760951503, + "grad_norm": 0.6116558909416199, + "learning_rate": 1.3366499162479063e-05, + "loss": 0.1910529327392578, + "step": 218800 + }, + { + "epoch": 73.33336125303627, + "grad_norm": 0.6104078888893127, + "learning_rate": 1.3349748743718594e-05, + "loss": 0.19013742446899415, + "step": 218900 + }, + { + "epoch": 73.3668648965575, + "grad_norm": 0.6935064196586609, + "learning_rate": 1.3332998324958124e-05, + "loss": 0.19089607238769532, + "step": 219000 + }, + { + "epoch": 73.40036854007873, + "grad_norm": 0.6205075979232788, + "learning_rate": 1.3316247906197656e-05, + "loss": 0.18985008239746093, + "step": 219100 + }, + { + "epoch": 73.43387218359997, + "grad_norm": 0.6838747262954712, + "learning_rate": 1.3299497487437187e-05, + "loss": 0.19136251449584962, + "step": 219200 + }, + { + "epoch": 73.4673758271212, + "grad_norm": 0.5892935395240784, + "learning_rate": 1.3282747068676717e-05, + "loss": 0.19115791320800782, + "step": 219300 + }, + { + "epoch": 73.50087947064243, + "grad_norm": 0.6625847220420837, + "learning_rate": 1.3265996649916248e-05, + "loss": 0.1914684295654297, + "step": 219400 + }, + { + "epoch": 73.53438311416366, + "grad_norm": 0.5886939764022827, + "learning_rate": 1.3249246231155778e-05, + "loss": 0.19140581130981446, + "step": 219500 + }, + { + "epoch": 73.5678867576849, + "grad_norm": 0.6432992219924927, + "learning_rate": 1.3232495812395309e-05, + "loss": 0.19217498779296874, + "step": 219600 + }, + { + "epoch": 73.60139040120613, + "grad_norm": 0.537247896194458, + "learning_rate": 1.3215912897822447e-05, + "loss": 0.1916472816467285, + "step": 219700 + }, + { + "epoch": 73.63489404472736, + "grad_norm": 0.7746627330780029, + "learning_rate": 1.3199162479061977e-05, + "loss": 0.1921250343322754, + "step": 219800 + }, + { + "epoch": 73.6683976882486, + "grad_norm": 0.6342955827713013, + "learning_rate": 1.3182412060301508e-05, + "loss": 0.19181474685668945, + "step": 219900 + }, + { + "epoch": 73.70190133176983, + "grad_norm": 0.6556417346000671, + "learning_rate": 1.3165661641541038e-05, + "loss": 0.1932265853881836, + "step": 220000 + }, + { + "epoch": 73.73540497529106, + "grad_norm": 0.627204179763794, + "learning_rate": 1.3148911222780569e-05, + "loss": 0.19127828598022462, + "step": 220100 + }, + { + "epoch": 73.76890861881229, + "grad_norm": 0.5481722950935364, + "learning_rate": 1.3132160804020103e-05, + "loss": 0.19317052841186524, + "step": 220200 + }, + { + "epoch": 73.80241226233353, + "grad_norm": 0.6881102323532104, + "learning_rate": 1.3115410385259633e-05, + "loss": 0.1921912384033203, + "step": 220300 + }, + { + "epoch": 73.83591590585476, + "grad_norm": 0.5679818987846375, + "learning_rate": 1.3098659966499164e-05, + "loss": 0.19210420608520506, + "step": 220400 + }, + { + "epoch": 73.86941954937599, + "grad_norm": 0.6412058472633362, + "learning_rate": 1.3081909547738694e-05, + "loss": 0.19206573486328124, + "step": 220500 + }, + { + "epoch": 73.90292319289723, + "grad_norm": 0.586617648601532, + "learning_rate": 1.3065159128978225e-05, + "loss": 0.19283601760864258, + "step": 220600 + }, + { + "epoch": 73.93642683641846, + "grad_norm": 0.6339001655578613, + "learning_rate": 1.3048408710217755e-05, + "loss": 0.19282327651977538, + "step": 220700 + }, + { + "epoch": 73.96993047993969, + "grad_norm": 0.5810698866844177, + "learning_rate": 1.3031658291457289e-05, + "loss": 0.19248931884765624, + "step": 220800 + }, + { + "epoch": 74.00335036435213, + "grad_norm": 0.5315734148025513, + "learning_rate": 1.301490787269682e-05, + "loss": 0.19272197723388673, + "step": 220900 + }, + { + "epoch": 74.03685400787336, + "grad_norm": 0.5988895893096924, + "learning_rate": 1.299815745393635e-05, + "loss": 0.18879865646362304, + "step": 221000 + }, + { + "epoch": 74.07035765139459, + "grad_norm": 0.6475368142127991, + "learning_rate": 1.298140703517588e-05, + "loss": 0.18721097946166992, + "step": 221100 + }, + { + "epoch": 74.10386129491582, + "grad_norm": 0.5875990986824036, + "learning_rate": 1.2964656616415411e-05, + "loss": 0.18884235382080078, + "step": 221200 + }, + { + "epoch": 74.13736493843706, + "grad_norm": 0.7056507468223572, + "learning_rate": 1.2947906197654942e-05, + "loss": 0.1880255889892578, + "step": 221300 + }, + { + "epoch": 74.17086858195829, + "grad_norm": 0.7191376090049744, + "learning_rate": 1.2931155778894474e-05, + "loss": 0.18832271575927734, + "step": 221400 + }, + { + "epoch": 74.20437222547952, + "grad_norm": 0.6161214113235474, + "learning_rate": 1.2914405360134004e-05, + "loss": 0.1886260414123535, + "step": 221500 + }, + { + "epoch": 74.23787586900076, + "grad_norm": 0.6850497126579285, + "learning_rate": 1.2897654941373535e-05, + "loss": 0.18944147109985351, + "step": 221600 + }, + { + "epoch": 74.27137951252199, + "grad_norm": 0.7031293511390686, + "learning_rate": 1.2880904522613065e-05, + "loss": 0.18980978012084962, + "step": 221700 + }, + { + "epoch": 74.30488315604322, + "grad_norm": 0.7116613388061523, + "learning_rate": 1.2864321608040203e-05, + "loss": 0.19084714889526366, + "step": 221800 + }, + { + "epoch": 74.33838679956445, + "grad_norm": 0.6668044328689575, + "learning_rate": 1.2847571189279734e-05, + "loss": 0.1889169120788574, + "step": 221900 + }, + { + "epoch": 74.37189044308569, + "grad_norm": 0.7630614638328552, + "learning_rate": 1.2830820770519264e-05, + "loss": 0.1901887321472168, + "step": 222000 + }, + { + "epoch": 74.40539408660692, + "grad_norm": 0.6210822463035583, + "learning_rate": 1.2814070351758795e-05, + "loss": 0.18958797454833984, + "step": 222100 + }, + { + "epoch": 74.43889773012815, + "grad_norm": 0.674400806427002, + "learning_rate": 1.2797319932998325e-05, + "loss": 0.19211307525634766, + "step": 222200 + }, + { + "epoch": 74.47240137364939, + "grad_norm": 0.5624780058860779, + "learning_rate": 1.2780569514237856e-05, + "loss": 0.19077470779418945, + "step": 222300 + }, + { + "epoch": 74.50590501717062, + "grad_norm": 0.6902910470962524, + "learning_rate": 1.2763819095477386e-05, + "loss": 0.19062641143798828, + "step": 222400 + }, + { + "epoch": 74.53940866069185, + "grad_norm": 0.6203210353851318, + "learning_rate": 1.274706867671692e-05, + "loss": 0.19215831756591797, + "step": 222500 + }, + { + "epoch": 74.57291230421308, + "grad_norm": 0.6973204016685486, + "learning_rate": 1.273031825795645e-05, + "loss": 0.19094465255737306, + "step": 222600 + }, + { + "epoch": 74.60641594773432, + "grad_norm": 0.5848397016525269, + "learning_rate": 1.2713567839195981e-05, + "loss": 0.1918341827392578, + "step": 222700 + }, + { + "epoch": 74.63991959125555, + "grad_norm": 0.5930863618850708, + "learning_rate": 1.2696817420435512e-05, + "loss": 0.19197944641113282, + "step": 222800 + }, + { + "epoch": 74.67342323477678, + "grad_norm": 0.6419515609741211, + "learning_rate": 1.2680067001675042e-05, + "loss": 0.19171865463256835, + "step": 222900 + }, + { + "epoch": 74.70692687829802, + "grad_norm": 0.6278107762336731, + "learning_rate": 1.2663316582914573e-05, + "loss": 0.19249353408813477, + "step": 223000 + }, + { + "epoch": 74.74043052181925, + "grad_norm": 0.5512995719909668, + "learning_rate": 1.2646566164154105e-05, + "loss": 0.19145532608032226, + "step": 223100 + }, + { + "epoch": 74.77393416534048, + "grad_norm": 0.6217749714851379, + "learning_rate": 1.2629815745393635e-05, + "loss": 0.19141609191894532, + "step": 223200 + }, + { + "epoch": 74.8074378088617, + "grad_norm": 0.672197699546814, + "learning_rate": 1.2613065326633166e-05, + "loss": 0.19206232070922852, + "step": 223300 + }, + { + "epoch": 74.84094145238295, + "grad_norm": 0.6256102919578552, + "learning_rate": 1.2596314907872698e-05, + "loss": 0.19332118988037109, + "step": 223400 + }, + { + "epoch": 74.87444509590418, + "grad_norm": 0.5120044350624084, + "learning_rate": 1.2579564489112229e-05, + "loss": 0.19207197189331054, + "step": 223500 + }, + { + "epoch": 74.90794873942541, + "grad_norm": 0.6199808120727539, + "learning_rate": 1.2562814070351759e-05, + "loss": 0.19157859802246094, + "step": 223600 + }, + { + "epoch": 74.94145238294665, + "grad_norm": 0.7454675436019897, + "learning_rate": 1.2546063651591291e-05, + "loss": 0.19300016403198242, + "step": 223700 + }, + { + "epoch": 74.97495602646788, + "grad_norm": 0.5340383052825928, + "learning_rate": 1.2529313232830822e-05, + "loss": 0.1914585304260254, + "step": 223800 + }, + { + "epoch": 75.0083759108803, + "grad_norm": 0.529868483543396, + "learning_rate": 1.2512730318257956e-05, + "loss": 0.19096315383911133, + "step": 223900 + }, + { + "epoch": 75.04187955440155, + "grad_norm": 0.5163419246673584, + "learning_rate": 1.2495979899497488e-05, + "loss": 0.18681686401367187, + "step": 224000 + }, + { + "epoch": 75.07538319792278, + "grad_norm": 0.6350462436676025, + "learning_rate": 1.2479229480737019e-05, + "loss": 0.1882038688659668, + "step": 224100 + }, + { + "epoch": 75.108886841444, + "grad_norm": 0.5319573283195496, + "learning_rate": 1.246247906197655e-05, + "loss": 0.18803632736206055, + "step": 224200 + }, + { + "epoch": 75.14239048496523, + "grad_norm": 0.5288993120193481, + "learning_rate": 1.2445728643216081e-05, + "loss": 0.18808624267578125, + "step": 224300 + }, + { + "epoch": 75.17589412848648, + "grad_norm": 0.6789448261260986, + "learning_rate": 1.2428978224455612e-05, + "loss": 0.18842166900634766, + "step": 224400 + }, + { + "epoch": 75.2093977720077, + "grad_norm": 0.661927342414856, + "learning_rate": 1.2412227805695142e-05, + "loss": 0.18897750854492187, + "step": 224500 + }, + { + "epoch": 75.24290141552893, + "grad_norm": 0.5049561262130737, + "learning_rate": 1.2395477386934675e-05, + "loss": 0.18828922271728515, + "step": 224600 + }, + { + "epoch": 75.27640505905018, + "grad_norm": 0.5841866135597229, + "learning_rate": 1.2378726968174205e-05, + "loss": 0.18943553924560547, + "step": 224700 + }, + { + "epoch": 75.3099087025714, + "grad_norm": 0.6885756254196167, + "learning_rate": 1.2361976549413736e-05, + "loss": 0.18894081115722655, + "step": 224800 + }, + { + "epoch": 75.34341234609263, + "grad_norm": 0.7039951086044312, + "learning_rate": 1.2345226130653268e-05, + "loss": 0.18984657287597656, + "step": 224900 + }, + { + "epoch": 75.37691598961388, + "grad_norm": 0.6714735627174377, + "learning_rate": 1.2328475711892798e-05, + "loss": 0.19007621765136717, + "step": 225000 + }, + { + "epoch": 75.4104196331351, + "grad_norm": 0.637840986251831, + "learning_rate": 1.2311725293132329e-05, + "loss": 0.18986061096191406, + "step": 225100 + }, + { + "epoch": 75.44392327665634, + "grad_norm": 0.5885179042816162, + "learning_rate": 1.2294974874371861e-05, + "loss": 0.18973173141479494, + "step": 225200 + }, + { + "epoch": 75.47742692017756, + "grad_norm": 0.6655402779579163, + "learning_rate": 1.2278224455611392e-05, + "loss": 0.19028383255004883, + "step": 225300 + }, + { + "epoch": 75.5109305636988, + "grad_norm": 0.6711523532867432, + "learning_rate": 1.2261474036850922e-05, + "loss": 0.19036417007446288, + "step": 225400 + }, + { + "epoch": 75.54443420722004, + "grad_norm": 0.7367367744445801, + "learning_rate": 1.2244723618090453e-05, + "loss": 0.1918941307067871, + "step": 225500 + }, + { + "epoch": 75.57793785074126, + "grad_norm": 0.8443908095359802, + "learning_rate": 1.2227973199329983e-05, + "loss": 0.19089139938354494, + "step": 225600 + }, + { + "epoch": 75.61144149426251, + "grad_norm": 0.5808036923408508, + "learning_rate": 1.2211222780569514e-05, + "loss": 0.19058563232421874, + "step": 225700 + }, + { + "epoch": 75.64494513778374, + "grad_norm": 0.5212644934654236, + "learning_rate": 1.2194472361809046e-05, + "loss": 0.19121980667114258, + "step": 225800 + }, + { + "epoch": 75.67844878130497, + "grad_norm": 0.7097404599189758, + "learning_rate": 1.2177889447236182e-05, + "loss": 0.1912353515625, + "step": 225900 + }, + { + "epoch": 75.7119524248262, + "grad_norm": 0.6513300538063049, + "learning_rate": 1.2161139028475712e-05, + "loss": 0.19171392440795898, + "step": 226000 + }, + { + "epoch": 75.74545606834744, + "grad_norm": 0.6188165545463562, + "learning_rate": 1.2144388609715243e-05, + "loss": 0.19226541519165039, + "step": 226100 + }, + { + "epoch": 75.77895971186867, + "grad_norm": 0.6310757994651794, + "learning_rate": 1.2127638190954775e-05, + "loss": 0.1912686538696289, + "step": 226200 + }, + { + "epoch": 75.8124633553899, + "grad_norm": 0.6972214579582214, + "learning_rate": 1.2110887772194306e-05, + "loss": 0.19245899200439454, + "step": 226300 + }, + { + "epoch": 75.84596699891114, + "grad_norm": 0.6156506538391113, + "learning_rate": 1.2094137353433836e-05, + "loss": 0.1912640380859375, + "step": 226400 + }, + { + "epoch": 75.87947064243237, + "grad_norm": 0.627688467502594, + "learning_rate": 1.2077386934673367e-05, + "loss": 0.19346479415893555, + "step": 226500 + }, + { + "epoch": 75.9129742859536, + "grad_norm": 0.620262622833252, + "learning_rate": 1.2060636515912899e-05, + "loss": 0.19184036254882814, + "step": 226600 + }, + { + "epoch": 75.94647792947482, + "grad_norm": 0.6578592658042908, + "learning_rate": 1.204388609715243e-05, + "loss": 0.1920124626159668, + "step": 226700 + }, + { + "epoch": 75.97998157299607, + "grad_norm": 0.4712987542152405, + "learning_rate": 1.202713567839196e-05, + "loss": 0.19146875381469727, + "step": 226800 + }, + { + "epoch": 76.01340145740849, + "grad_norm": 0.5716565251350403, + "learning_rate": 1.2010385259631492e-05, + "loss": 0.19078388214111328, + "step": 226900 + }, + { + "epoch": 76.04690510092972, + "grad_norm": 0.7094972133636475, + "learning_rate": 1.1993634840871023e-05, + "loss": 0.18728803634643554, + "step": 227000 + }, + { + "epoch": 76.08040874445096, + "grad_norm": 0.6303561329841614, + "learning_rate": 1.1976884422110553e-05, + "loss": 0.18724044799804687, + "step": 227100 + }, + { + "epoch": 76.11391238797219, + "grad_norm": 0.7359886765480042, + "learning_rate": 1.1960134003350085e-05, + "loss": 0.1879755973815918, + "step": 227200 + }, + { + "epoch": 76.14741603149342, + "grad_norm": 0.857787013053894, + "learning_rate": 1.1943383584589616e-05, + "loss": 0.18758907318115234, + "step": 227300 + }, + { + "epoch": 76.18091967501466, + "grad_norm": 0.607428252696991, + "learning_rate": 1.1926633165829146e-05, + "loss": 0.18798053741455079, + "step": 227400 + }, + { + "epoch": 76.21442331853589, + "grad_norm": 0.8037320375442505, + "learning_rate": 1.1909882747068679e-05, + "loss": 0.1890050506591797, + "step": 227500 + }, + { + "epoch": 76.24792696205712, + "grad_norm": 0.6359191536903381, + "learning_rate": 1.1893132328308209e-05, + "loss": 0.18898937225341797, + "step": 227600 + }, + { + "epoch": 76.28143060557835, + "grad_norm": 0.6721845269203186, + "learning_rate": 1.187638190954774e-05, + "loss": 0.1883324432373047, + "step": 227700 + }, + { + "epoch": 76.3149342490996, + "grad_norm": 0.6467797756195068, + "learning_rate": 1.185963149078727e-05, + "loss": 0.1888943099975586, + "step": 227800 + }, + { + "epoch": 76.34843789262082, + "grad_norm": 0.7214395999908447, + "learning_rate": 1.1843048576214406e-05, + "loss": 0.1892184829711914, + "step": 227900 + }, + { + "epoch": 76.38194153614205, + "grad_norm": 0.6020253896713257, + "learning_rate": 1.1826298157453937e-05, + "loss": 0.1896377372741699, + "step": 228000 + }, + { + "epoch": 76.4154451796633, + "grad_norm": 0.6029198169708252, + "learning_rate": 1.1809547738693467e-05, + "loss": 0.18889514923095704, + "step": 228100 + }, + { + "epoch": 76.44894882318452, + "grad_norm": 0.7419018745422363, + "learning_rate": 1.1792797319933e-05, + "loss": 0.18998069763183595, + "step": 228200 + }, + { + "epoch": 76.48245246670575, + "grad_norm": 0.6079985499382019, + "learning_rate": 1.177604690117253e-05, + "loss": 0.19057266235351564, + "step": 228300 + }, + { + "epoch": 76.51595611022698, + "grad_norm": 0.6738330125808716, + "learning_rate": 1.175929648241206e-05, + "loss": 0.19021852493286132, + "step": 228400 + }, + { + "epoch": 76.54945975374822, + "grad_norm": 0.6184301376342773, + "learning_rate": 1.1742546063651593e-05, + "loss": 0.19030994415283203, + "step": 228500 + }, + { + "epoch": 76.58296339726945, + "grad_norm": 0.6210246682167053, + "learning_rate": 1.1725795644891123e-05, + "loss": 0.18975492477416991, + "step": 228600 + }, + { + "epoch": 76.61646704079068, + "grad_norm": 0.6398160457611084, + "learning_rate": 1.1709045226130654e-05, + "loss": 0.19056596755981445, + "step": 228700 + }, + { + "epoch": 76.64997068431192, + "grad_norm": 0.5791774392127991, + "learning_rate": 1.1692294807370186e-05, + "loss": 0.19000568389892578, + "step": 228800 + }, + { + "epoch": 76.68347432783315, + "grad_norm": 0.6452813744544983, + "learning_rate": 1.1675544388609716e-05, + "loss": 0.19119565963745117, + "step": 228900 + }, + { + "epoch": 76.71697797135438, + "grad_norm": 0.5637299418449402, + "learning_rate": 1.1658793969849247e-05, + "loss": 0.1906993293762207, + "step": 229000 + }, + { + "epoch": 76.75048161487561, + "grad_norm": 0.6561068892478943, + "learning_rate": 1.1642043551088777e-05, + "loss": 0.1915520668029785, + "step": 229100 + }, + { + "epoch": 76.78398525839685, + "grad_norm": 0.6777018904685974, + "learning_rate": 1.162529313232831e-05, + "loss": 0.19029684066772462, + "step": 229200 + }, + { + "epoch": 76.81748890191808, + "grad_norm": 0.4779558479785919, + "learning_rate": 1.160854271356784e-05, + "loss": 0.19119384765625, + "step": 229300 + }, + { + "epoch": 76.85099254543931, + "grad_norm": 0.5411806106567383, + "learning_rate": 1.159179229480737e-05, + "loss": 0.19078275680541992, + "step": 229400 + }, + { + "epoch": 76.88449618896055, + "grad_norm": 0.623041033744812, + "learning_rate": 1.1575041876046903e-05, + "loss": 0.19250349044799805, + "step": 229500 + }, + { + "epoch": 76.91799983248178, + "grad_norm": 0.5169858336448669, + "learning_rate": 1.1558291457286433e-05, + "loss": 0.19133710861206055, + "step": 229600 + }, + { + "epoch": 76.95150347600301, + "grad_norm": 0.5985132455825806, + "learning_rate": 1.1541541038525964e-05, + "loss": 0.19112289428710938, + "step": 229700 + }, + { + "epoch": 76.98500711952425, + "grad_norm": 0.6158753633499146, + "learning_rate": 1.1524790619765494e-05, + "loss": 0.1921292495727539, + "step": 229800 + }, + { + "epoch": 77.01842700393668, + "grad_norm": 0.5963013172149658, + "learning_rate": 1.1508040201005025e-05, + "loss": 0.18872583389282227, + "step": 229900 + }, + { + "epoch": 77.05193064745791, + "grad_norm": 0.5578435659408569, + "learning_rate": 1.149145728643216e-05, + "loss": 0.1861967658996582, + "step": 230000 + }, + { + "epoch": 77.08543429097914, + "grad_norm": 0.5361016988754272, + "learning_rate": 1.1474706867671691e-05, + "loss": 0.18753931045532227, + "step": 230100 + }, + { + "epoch": 77.11893793450038, + "grad_norm": 0.7023466229438782, + "learning_rate": 1.1457956448911223e-05, + "loss": 0.18739143371582032, + "step": 230200 + }, + { + "epoch": 77.15244157802161, + "grad_norm": 0.5231741666793823, + "learning_rate": 1.1441206030150754e-05, + "loss": 0.1882183074951172, + "step": 230300 + }, + { + "epoch": 77.18594522154284, + "grad_norm": 0.7267812490463257, + "learning_rate": 1.1424455611390284e-05, + "loss": 0.18830036163330077, + "step": 230400 + }, + { + "epoch": 77.21944886506408, + "grad_norm": 0.5698330998420715, + "learning_rate": 1.1407705192629817e-05, + "loss": 0.18730653762817384, + "step": 230500 + }, + { + "epoch": 77.25295250858531, + "grad_norm": 0.6907638907432556, + "learning_rate": 1.1390954773869347e-05, + "loss": 0.18742834091186522, + "step": 230600 + }, + { + "epoch": 77.28645615210654, + "grad_norm": 0.5616415739059448, + "learning_rate": 1.1374204355108878e-05, + "loss": 0.1885102844238281, + "step": 230700 + }, + { + "epoch": 77.31995979562778, + "grad_norm": 0.6362226009368896, + "learning_rate": 1.135745393634841e-05, + "loss": 0.18842847824096678, + "step": 230800 + }, + { + "epoch": 77.35346343914901, + "grad_norm": 0.5648617744445801, + "learning_rate": 1.134070351758794e-05, + "loss": 0.18916454315185546, + "step": 230900 + }, + { + "epoch": 77.38696708267024, + "grad_norm": 0.7212550044059753, + "learning_rate": 1.1323953098827471e-05, + "loss": 0.1888494873046875, + "step": 231000 + }, + { + "epoch": 77.42047072619147, + "grad_norm": 0.8556243777275085, + "learning_rate": 1.1307202680067003e-05, + "loss": 0.18897062301635742, + "step": 231100 + }, + { + "epoch": 77.45397436971271, + "grad_norm": 0.8663336634635925, + "learning_rate": 1.1290452261306534e-05, + "loss": 0.18911514282226563, + "step": 231200 + }, + { + "epoch": 77.48747801323394, + "grad_norm": 0.555095911026001, + "learning_rate": 1.1273701842546064e-05, + "loss": 0.19008974075317384, + "step": 231300 + }, + { + "epoch": 77.52098165675517, + "grad_norm": 0.5795916318893433, + "learning_rate": 1.1256951423785596e-05, + "loss": 0.19058879852294922, + "step": 231400 + }, + { + "epoch": 77.55448530027641, + "grad_norm": 0.6374692916870117, + "learning_rate": 1.1240201005025127e-05, + "loss": 0.19093334197998046, + "step": 231500 + }, + { + "epoch": 77.58798894379764, + "grad_norm": 0.5286735892295837, + "learning_rate": 1.1223450586264657e-05, + "loss": 0.18953340530395507, + "step": 231600 + }, + { + "epoch": 77.62149258731887, + "grad_norm": 0.7152593731880188, + "learning_rate": 1.120670016750419e-05, + "loss": 0.18968648910522462, + "step": 231700 + }, + { + "epoch": 77.6549962308401, + "grad_norm": 0.6775063276290894, + "learning_rate": 1.118994974874372e-05, + "loss": 0.19057016372680663, + "step": 231800 + }, + { + "epoch": 77.68849987436134, + "grad_norm": 0.5843816995620728, + "learning_rate": 1.117319932998325e-05, + "loss": 0.18996496200561525, + "step": 231900 + }, + { + "epoch": 77.72200351788257, + "grad_norm": 0.6201971769332886, + "learning_rate": 1.1156616415410385e-05, + "loss": 0.1909531021118164, + "step": 232000 + }, + { + "epoch": 77.7555071614038, + "grad_norm": 0.6630064249038696, + "learning_rate": 1.1139865996649915e-05, + "loss": 0.18996026992797851, + "step": 232100 + }, + { + "epoch": 77.78901080492504, + "grad_norm": 0.6778659224510193, + "learning_rate": 1.1123115577889448e-05, + "loss": 0.19063941955566407, + "step": 232200 + }, + { + "epoch": 77.82251444844627, + "grad_norm": 0.6163811087608337, + "learning_rate": 1.1106365159128978e-05, + "loss": 0.19099504470825196, + "step": 232300 + }, + { + "epoch": 77.8560180919675, + "grad_norm": 0.5668363571166992, + "learning_rate": 1.1089614740368509e-05, + "loss": 0.1901922607421875, + "step": 232400 + }, + { + "epoch": 77.88952173548873, + "grad_norm": 0.5424449443817139, + "learning_rate": 1.1072864321608041e-05, + "loss": 0.19019113540649413, + "step": 232500 + }, + { + "epoch": 77.92302537900997, + "grad_norm": 0.5976355671882629, + "learning_rate": 1.1056113902847571e-05, + "loss": 0.19223594665527344, + "step": 232600 + }, + { + "epoch": 77.9565290225312, + "grad_norm": 0.586529016494751, + "learning_rate": 1.1039363484087102e-05, + "loss": 0.19147846221923828, + "step": 232700 + }, + { + "epoch": 77.99003266605243, + "grad_norm": 0.478441447019577, + "learning_rate": 1.1022613065326634e-05, + "loss": 0.19069934844970704, + "step": 232800 + }, + { + "epoch": 78.02345255046487, + "grad_norm": 0.595913290977478, + "learning_rate": 1.1005862646566165e-05, + "loss": 0.188853759765625, + "step": 232900 + }, + { + "epoch": 78.0569561939861, + "grad_norm": 0.7776252031326294, + "learning_rate": 1.0989112227805695e-05, + "loss": 0.18635259628295897, + "step": 233000 + }, + { + "epoch": 78.09045983750732, + "grad_norm": 0.5748878717422485, + "learning_rate": 1.0972361809045227e-05, + "loss": 0.18685552597045899, + "step": 233100 + }, + { + "epoch": 78.12396348102857, + "grad_norm": 0.5180676579475403, + "learning_rate": 1.0955611390284758e-05, + "loss": 0.1877056121826172, + "step": 233200 + }, + { + "epoch": 78.1574671245498, + "grad_norm": 0.673117458820343, + "learning_rate": 1.0938860971524288e-05, + "loss": 0.18688018798828124, + "step": 233300 + }, + { + "epoch": 78.19097076807103, + "grad_norm": 0.6519831418991089, + "learning_rate": 1.092211055276382e-05, + "loss": 0.18750722885131835, + "step": 233400 + }, + { + "epoch": 78.22447441159225, + "grad_norm": 0.5309635400772095, + "learning_rate": 1.0905360134003351e-05, + "loss": 0.18738748550415038, + "step": 233500 + }, + { + "epoch": 78.2579780551135, + "grad_norm": 0.6039297580718994, + "learning_rate": 1.0888609715242882e-05, + "loss": 0.18785961151123046, + "step": 233600 + }, + { + "epoch": 78.29148169863473, + "grad_norm": 0.4987012445926666, + "learning_rate": 1.0871859296482414e-05, + "loss": 0.18820880889892577, + "step": 233700 + }, + { + "epoch": 78.32498534215595, + "grad_norm": 0.6190744638442993, + "learning_rate": 1.0855108877721944e-05, + "loss": 0.18877883911132812, + "step": 233800 + }, + { + "epoch": 78.3584889856772, + "grad_norm": 0.6907918453216553, + "learning_rate": 1.0838358458961475e-05, + "loss": 0.18849582672119142, + "step": 233900 + }, + { + "epoch": 78.39199262919843, + "grad_norm": 0.5600749850273132, + "learning_rate": 1.0821608040201005e-05, + "loss": 0.18884668350219727, + "step": 234000 + }, + { + "epoch": 78.42549627271966, + "grad_norm": 0.6390280723571777, + "learning_rate": 1.0805025125628141e-05, + "loss": 0.1880735397338867, + "step": 234100 + }, + { + "epoch": 78.45899991624088, + "grad_norm": 0.6333056688308716, + "learning_rate": 1.0788274706867672e-05, + "loss": 0.18834163665771483, + "step": 234200 + }, + { + "epoch": 78.49250355976213, + "grad_norm": 0.5011644959449768, + "learning_rate": 1.0771524288107202e-05, + "loss": 0.18952463150024415, + "step": 234300 + }, + { + "epoch": 78.52600720328336, + "grad_norm": 0.7219404578208923, + "learning_rate": 1.0754773869346735e-05, + "loss": 0.18985385894775392, + "step": 234400 + }, + { + "epoch": 78.55951084680459, + "grad_norm": 0.6397419571876526, + "learning_rate": 1.0738023450586265e-05, + "loss": 0.18919252395629882, + "step": 234500 + }, + { + "epoch": 78.59301449032583, + "grad_norm": 0.6841224431991577, + "learning_rate": 1.0721273031825796e-05, + "loss": 0.18944778442382812, + "step": 234600 + }, + { + "epoch": 78.62651813384706, + "grad_norm": 0.7453842163085938, + "learning_rate": 1.0704522613065328e-05, + "loss": 0.19007984161376953, + "step": 234700 + }, + { + "epoch": 78.66002177736829, + "grad_norm": 0.5905109643936157, + "learning_rate": 1.0687772194304858e-05, + "loss": 0.18957454681396485, + "step": 234800 + }, + { + "epoch": 78.69352542088953, + "grad_norm": 0.6769446134567261, + "learning_rate": 1.0671021775544389e-05, + "loss": 0.19039548873901369, + "step": 234900 + }, + { + "epoch": 78.72702906441076, + "grad_norm": 0.5825620293617249, + "learning_rate": 1.065427135678392e-05, + "loss": 0.1897379684448242, + "step": 235000 + }, + { + "epoch": 78.76053270793199, + "grad_norm": 0.6064398288726807, + "learning_rate": 1.0637520938023452e-05, + "loss": 0.18956695556640624, + "step": 235100 + }, + { + "epoch": 78.79403635145322, + "grad_norm": 0.5826224088668823, + "learning_rate": 1.0620770519262982e-05, + "loss": 0.19094810485839844, + "step": 235200 + }, + { + "epoch": 78.82753999497446, + "grad_norm": 0.6187439560890198, + "learning_rate": 1.0604020100502513e-05, + "loss": 0.190173397064209, + "step": 235300 + }, + { + "epoch": 78.86104363849569, + "grad_norm": 0.7878564596176147, + "learning_rate": 1.0587269681742045e-05, + "loss": 0.19098638534545898, + "step": 235400 + }, + { + "epoch": 78.89454728201692, + "grad_norm": 0.7218932509422302, + "learning_rate": 1.0570519262981575e-05, + "loss": 0.19098539352416993, + "step": 235500 + }, + { + "epoch": 78.92805092553816, + "grad_norm": 0.5134685635566711, + "learning_rate": 1.0553768844221106e-05, + "loss": 0.19038022994995119, + "step": 235600 + }, + { + "epoch": 78.96155456905939, + "grad_norm": 0.641615092754364, + "learning_rate": 1.0537018425460638e-05, + "loss": 0.1914260482788086, + "step": 235700 + }, + { + "epoch": 78.99505821258062, + "grad_norm": 0.6211548447608948, + "learning_rate": 1.0520268006700169e-05, + "loss": 0.1908476448059082, + "step": 235800 + }, + { + "epoch": 79.02847809699304, + "grad_norm": 0.5376355648040771, + "learning_rate": 1.0503517587939699e-05, + "loss": 0.18590696334838866, + "step": 235900 + }, + { + "epoch": 79.06198174051428, + "grad_norm": 0.5554808974266052, + "learning_rate": 1.0486767169179231e-05, + "loss": 0.18621206283569336, + "step": 236000 + }, + { + "epoch": 79.09548538403551, + "grad_norm": 0.6652063727378845, + "learning_rate": 1.0470184254606365e-05, + "loss": 0.18646297454833985, + "step": 236100 + }, + { + "epoch": 79.12898902755674, + "grad_norm": 0.6671931147575378, + "learning_rate": 1.0453433835845896e-05, + "loss": 0.18682302474975587, + "step": 236200 + }, + { + "epoch": 79.16249267107798, + "grad_norm": 0.6100969910621643, + "learning_rate": 1.0436683417085426e-05, + "loss": 0.18717609405517577, + "step": 236300 + }, + { + "epoch": 79.19599631459921, + "grad_norm": 0.7126432061195374, + "learning_rate": 1.0419932998324959e-05, + "loss": 0.18632455825805663, + "step": 236400 + }, + { + "epoch": 79.22949995812044, + "grad_norm": 0.5226724147796631, + "learning_rate": 1.040318257956449e-05, + "loss": 0.18794141769409178, + "step": 236500 + }, + { + "epoch": 79.26300360164169, + "grad_norm": 0.5243064165115356, + "learning_rate": 1.038643216080402e-05, + "loss": 0.18816068649291992, + "step": 236600 + }, + { + "epoch": 79.29650724516291, + "grad_norm": 0.607912003993988, + "learning_rate": 1.0369681742043552e-05, + "loss": 0.18687108993530274, + "step": 236700 + }, + { + "epoch": 79.33001088868414, + "grad_norm": 0.5773678421974182, + "learning_rate": 1.0352931323283082e-05, + "loss": 0.18846334457397462, + "step": 236800 + }, + { + "epoch": 79.36351453220537, + "grad_norm": 0.6360297203063965, + "learning_rate": 1.0336180904522613e-05, + "loss": 0.18933845520019532, + "step": 236900 + }, + { + "epoch": 79.39701817572661, + "grad_norm": 0.6809837222099304, + "learning_rate": 1.0319430485762145e-05, + "loss": 0.18878520965576173, + "step": 237000 + }, + { + "epoch": 79.43052181924784, + "grad_norm": 0.6212404370307922, + "learning_rate": 1.0302680067001676e-05, + "loss": 0.18835649490356446, + "step": 237100 + }, + { + "epoch": 79.46402546276907, + "grad_norm": 0.5026853680610657, + "learning_rate": 1.0285929648241206e-05, + "loss": 0.18797584533691405, + "step": 237200 + }, + { + "epoch": 79.49752910629032, + "grad_norm": 0.5610924959182739, + "learning_rate": 1.0269179229480738e-05, + "loss": 0.18864788055419923, + "step": 237300 + }, + { + "epoch": 79.53103274981154, + "grad_norm": 0.5812443494796753, + "learning_rate": 1.0252428810720269e-05, + "loss": 0.18857982635498047, + "step": 237400 + }, + { + "epoch": 79.56453639333277, + "grad_norm": 0.5942834615707397, + "learning_rate": 1.02356783919598e-05, + "loss": 0.18995513916015624, + "step": 237500 + }, + { + "epoch": 79.598040036854, + "grad_norm": 0.780934751033783, + "learning_rate": 1.021892797319933e-05, + "loss": 0.1898634147644043, + "step": 237600 + }, + { + "epoch": 79.63154368037524, + "grad_norm": 0.6805693507194519, + "learning_rate": 1.0202177554438862e-05, + "loss": 0.18985597610473634, + "step": 237700 + }, + { + "epoch": 79.66504732389647, + "grad_norm": 0.6133860349655151, + "learning_rate": 1.0185427135678393e-05, + "loss": 0.18866056442260742, + "step": 237800 + }, + { + "epoch": 79.6985509674177, + "grad_norm": 0.509017825126648, + "learning_rate": 1.0168676716917923e-05, + "loss": 0.1894827651977539, + "step": 237900 + }, + { + "epoch": 79.73205461093895, + "grad_norm": 0.7108103036880493, + "learning_rate": 1.0151926298157455e-05, + "loss": 0.18957220077514647, + "step": 238000 + }, + { + "epoch": 79.76555825446017, + "grad_norm": 0.5843678712844849, + "learning_rate": 1.013534338358459e-05, + "loss": 0.1894863700866699, + "step": 238100 + }, + { + "epoch": 79.7990618979814, + "grad_norm": 0.5689200758934021, + "learning_rate": 1.011859296482412e-05, + "loss": 0.189605712890625, + "step": 238200 + }, + { + "epoch": 79.83256554150263, + "grad_norm": 0.5582265257835388, + "learning_rate": 1.010184254606365e-05, + "loss": 0.1899770736694336, + "step": 238300 + }, + { + "epoch": 79.86606918502387, + "grad_norm": 0.7666222453117371, + "learning_rate": 1.0085092127303183e-05, + "loss": 0.19003982543945314, + "step": 238400 + }, + { + "epoch": 79.8995728285451, + "grad_norm": 0.5454803109169006, + "learning_rate": 1.0068341708542713e-05, + "loss": 0.1902810287475586, + "step": 238500 + }, + { + "epoch": 79.93307647206633, + "grad_norm": 0.7217103838920593, + "learning_rate": 1.0051591289782244e-05, + "loss": 0.19129709243774415, + "step": 238600 + }, + { + "epoch": 79.96658011558758, + "grad_norm": 0.5859233140945435, + "learning_rate": 1.0034840871021776e-05, + "loss": 0.19089550018310547, + "step": 238700 + }, + { + "epoch": 80.0, + "grad_norm": 0.7871226072311401, + "learning_rate": 1.0018090452261307e-05, + "loss": 0.19010568618774415, + "step": 238800 + }, + { + "epoch": 80.03350364352123, + "grad_norm": 0.6410444974899292, + "learning_rate": 1.0001340033500837e-05, + "loss": 0.18579286575317383, + "step": 238900 + }, + { + "epoch": 80.06700728704247, + "grad_norm": 0.49249953031539917, + "learning_rate": 9.98458961474037e-06, + "loss": 0.18595710754394532, + "step": 239000 + }, + { + "epoch": 80.1005109305637, + "grad_norm": 0.4707689583301544, + "learning_rate": 9.9678391959799e-06, + "loss": 0.1854451370239258, + "step": 239100 + }, + { + "epoch": 80.13401457408493, + "grad_norm": 0.6049455404281616, + "learning_rate": 9.95108877721943e-06, + "loss": 0.18605972290039063, + "step": 239200 + }, + { + "epoch": 80.16751821760616, + "grad_norm": 0.5813843011856079, + "learning_rate": 9.934338358458963e-06, + "loss": 0.18595891952514648, + "step": 239300 + }, + { + "epoch": 80.2010218611274, + "grad_norm": 0.6518586277961731, + "learning_rate": 9.917587939698493e-06, + "loss": 0.18725431442260743, + "step": 239400 + }, + { + "epoch": 80.23452550464863, + "grad_norm": 0.7379871010780334, + "learning_rate": 9.900837520938024e-06, + "loss": 0.18730653762817384, + "step": 239500 + }, + { + "epoch": 80.26802914816986, + "grad_norm": 0.7457312941551208, + "learning_rate": 9.884087102177556e-06, + "loss": 0.18689844131469727, + "step": 239600 + }, + { + "epoch": 80.3015327916911, + "grad_norm": 0.8484863638877869, + "learning_rate": 9.867336683417086e-06, + "loss": 0.18761758804321288, + "step": 239700 + }, + { + "epoch": 80.33503643521233, + "grad_norm": 0.6102080941200256, + "learning_rate": 9.850586264656617e-06, + "loss": 0.18688488006591797, + "step": 239800 + }, + { + "epoch": 80.36854007873356, + "grad_norm": 0.6622928380966187, + "learning_rate": 9.833835845896149e-06, + "loss": 0.18741252899169922, + "step": 239900 + }, + { + "epoch": 80.40204372225479, + "grad_norm": 0.5935907959938049, + "learning_rate": 9.81708542713568e-06, + "loss": 0.1878078269958496, + "step": 240000 + }, + { + "epoch": 80.43554736577603, + "grad_norm": 0.6074280142784119, + "learning_rate": 9.800502512562816e-06, + "loss": 0.18737226486206054, + "step": 240100 + }, + { + "epoch": 80.46905100929726, + "grad_norm": 0.6889368295669556, + "learning_rate": 9.783752093802346e-06, + "loss": 0.18822650909423827, + "step": 240200 + }, + { + "epoch": 80.50255465281849, + "grad_norm": 0.5317627787590027, + "learning_rate": 9.767001675041877e-06, + "loss": 0.1878480339050293, + "step": 240300 + }, + { + "epoch": 80.53605829633973, + "grad_norm": 0.5207783579826355, + "learning_rate": 9.750251256281407e-06, + "loss": 0.1882781219482422, + "step": 240400 + }, + { + "epoch": 80.56956193986096, + "grad_norm": 0.6113369464874268, + "learning_rate": 9.733500837520938e-06, + "loss": 0.1896601676940918, + "step": 240500 + }, + { + "epoch": 80.60306558338219, + "grad_norm": 0.6112746000289917, + "learning_rate": 9.716750418760468e-06, + "loss": 0.18931255340576172, + "step": 240600 + }, + { + "epoch": 80.63656922690343, + "grad_norm": 0.5978585481643677, + "learning_rate": 9.7e-06, + "loss": 0.18961137771606446, + "step": 240700 + }, + { + "epoch": 80.67007287042466, + "grad_norm": 0.5999939441680908, + "learning_rate": 9.68324958123953e-06, + "loss": 0.1893038558959961, + "step": 240800 + }, + { + "epoch": 80.70357651394589, + "grad_norm": 0.7477551698684692, + "learning_rate": 9.666499162479061e-06, + "loss": 0.19065048217773437, + "step": 240900 + }, + { + "epoch": 80.73708015746712, + "grad_norm": 0.49969878792762756, + "learning_rate": 9.649748743718594e-06, + "loss": 0.18887239456176758, + "step": 241000 + }, + { + "epoch": 80.77058380098836, + "grad_norm": 0.6229384541511536, + "learning_rate": 9.632998324958124e-06, + "loss": 0.18931352615356445, + "step": 241100 + }, + { + "epoch": 80.80408744450959, + "grad_norm": 0.5331135988235474, + "learning_rate": 9.616247906197655e-06, + "loss": 0.18917076110839845, + "step": 241200 + }, + { + "epoch": 80.83759108803082, + "grad_norm": 0.5475077629089355, + "learning_rate": 9.599497487437187e-06, + "loss": 0.18999635696411132, + "step": 241300 + }, + { + "epoch": 80.87109473155206, + "grad_norm": 0.6110318303108215, + "learning_rate": 9.582747068676717e-06, + "loss": 0.18988681793212892, + "step": 241400 + }, + { + "epoch": 80.90459837507329, + "grad_norm": 0.6834789514541626, + "learning_rate": 9.565996649916248e-06, + "loss": 0.18972234725952147, + "step": 241500 + }, + { + "epoch": 80.93810201859452, + "grad_norm": 0.5601489543914795, + "learning_rate": 9.54924623115578e-06, + "loss": 0.1901242446899414, + "step": 241600 + }, + { + "epoch": 80.97160566211575, + "grad_norm": 0.5707966685295105, + "learning_rate": 9.53249581239531e-06, + "loss": 0.19092308044433592, + "step": 241700 + }, + { + "epoch": 81.00502554652819, + "grad_norm": 0.6027684211730957, + "learning_rate": 9.515745393634841e-06, + "loss": 0.18986186981201172, + "step": 241800 + }, + { + "epoch": 81.03852919004942, + "grad_norm": 0.43851712346076965, + "learning_rate": 9.498994974874373e-06, + "loss": 0.1864785385131836, + "step": 241900 + }, + { + "epoch": 81.07203283357065, + "grad_norm": 0.5600922107696533, + "learning_rate": 9.482244556113904e-06, + "loss": 0.18667762756347656, + "step": 242000 + }, + { + "epoch": 81.10553647709189, + "grad_norm": 0.639335036277771, + "learning_rate": 9.46566164154104e-06, + "loss": 0.18642004013061522, + "step": 242100 + }, + { + "epoch": 81.13904012061312, + "grad_norm": 0.6750245690345764, + "learning_rate": 9.44891122278057e-06, + "loss": 0.18629102706909179, + "step": 242200 + }, + { + "epoch": 81.17254376413435, + "grad_norm": 0.5700585842132568, + "learning_rate": 9.4321608040201e-06, + "loss": 0.18613723754882813, + "step": 242300 + }, + { + "epoch": 81.20604740765559, + "grad_norm": 0.6852511167526245, + "learning_rate": 9.415410385259631e-06, + "loss": 0.18597820281982422, + "step": 242400 + }, + { + "epoch": 81.23955105117682, + "grad_norm": 0.5194628834724426, + "learning_rate": 9.398659966499162e-06, + "loss": 0.18753597259521484, + "step": 242500 + }, + { + "epoch": 81.27305469469805, + "grad_norm": 0.6448808312416077, + "learning_rate": 9.381909547738694e-06, + "loss": 0.18645841598510743, + "step": 242600 + }, + { + "epoch": 81.30655833821928, + "grad_norm": 0.4830906391143799, + "learning_rate": 9.365159128978224e-06, + "loss": 0.18598066329956053, + "step": 242700 + }, + { + "epoch": 81.34006198174052, + "grad_norm": 0.5368765592575073, + "learning_rate": 9.348408710217755e-06, + "loss": 0.18756242752075195, + "step": 242800 + }, + { + "epoch": 81.37356562526175, + "grad_norm": 0.7084921598434448, + "learning_rate": 9.331658291457287e-06, + "loss": 0.18713598251342772, + "step": 242900 + }, + { + "epoch": 81.40706926878298, + "grad_norm": 0.5406467318534851, + "learning_rate": 9.314907872696818e-06, + "loss": 0.18767911911010743, + "step": 243000 + }, + { + "epoch": 81.44057291230422, + "grad_norm": 0.6811279654502869, + "learning_rate": 9.298157453936348e-06, + "loss": 0.18792261123657228, + "step": 243100 + }, + { + "epoch": 81.47407655582545, + "grad_norm": 0.6793702244758606, + "learning_rate": 9.281407035175879e-06, + "loss": 0.18808685302734374, + "step": 243200 + }, + { + "epoch": 81.50758019934668, + "grad_norm": 0.5923267006874084, + "learning_rate": 9.264656616415411e-06, + "loss": 0.1878205108642578, + "step": 243300 + }, + { + "epoch": 81.5410838428679, + "grad_norm": 0.5069772005081177, + "learning_rate": 9.247906197654941e-06, + "loss": 0.18798334121704102, + "step": 243400 + }, + { + "epoch": 81.57458748638915, + "grad_norm": 0.6971927881240845, + "learning_rate": 9.231155778894472e-06, + "loss": 0.18779460906982423, + "step": 243500 + }, + { + "epoch": 81.60809112991038, + "grad_norm": 0.4844462275505066, + "learning_rate": 9.214405360134004e-06, + "loss": 0.1885888671875, + "step": 243600 + }, + { + "epoch": 81.6415947734316, + "grad_norm": 0.6287949085235596, + "learning_rate": 9.197654941373535e-06, + "loss": 0.18853179931640626, + "step": 243700 + }, + { + "epoch": 81.67509841695285, + "grad_norm": 0.5208948254585266, + "learning_rate": 9.180904522613065e-06, + "loss": 0.18876758575439453, + "step": 243800 + }, + { + "epoch": 81.70860206047408, + "grad_norm": 0.559596598148346, + "learning_rate": 9.164154103852597e-06, + "loss": 0.18983572006225585, + "step": 243900 + }, + { + "epoch": 81.7421057039953, + "grad_norm": 0.6286110877990723, + "learning_rate": 9.147403685092128e-06, + "loss": 0.18990949630737305, + "step": 244000 + }, + { + "epoch": 81.77560934751654, + "grad_norm": 0.6826990246772766, + "learning_rate": 9.130820770519264e-06, + "loss": 0.18897735595703125, + "step": 244100 + }, + { + "epoch": 81.80911299103778, + "grad_norm": 0.6137732267379761, + "learning_rate": 9.114070351758794e-06, + "loss": 0.1890528106689453, + "step": 244200 + }, + { + "epoch": 81.84261663455901, + "grad_norm": 0.6284852027893066, + "learning_rate": 9.097319932998327e-06, + "loss": 0.18912405014038086, + "step": 244300 + }, + { + "epoch": 81.87612027808024, + "grad_norm": 0.5774878859519958, + "learning_rate": 9.080569514237857e-06, + "loss": 0.18894084930419922, + "step": 244400 + }, + { + "epoch": 81.90962392160148, + "grad_norm": 0.6259322166442871, + "learning_rate": 9.063819095477388e-06, + "loss": 0.1898725700378418, + "step": 244500 + }, + { + "epoch": 81.94312756512271, + "grad_norm": 0.5645041465759277, + "learning_rate": 9.047068676716918e-06, + "loss": 0.18911539077758788, + "step": 244600 + }, + { + "epoch": 81.97663120864394, + "grad_norm": 0.5545311570167542, + "learning_rate": 9.030318257956449e-06, + "loss": 0.18874195098876953, + "step": 244700 + }, + { + "epoch": 82.01005109305638, + "grad_norm": 0.5122572779655457, + "learning_rate": 9.01356783919598e-06, + "loss": 0.1884039306640625, + "step": 244800 + }, + { + "epoch": 82.0435547365776, + "grad_norm": 0.5515125393867493, + "learning_rate": 8.996817420435511e-06, + "loss": 0.18567270278930664, + "step": 244900 + }, + { + "epoch": 82.07705838009883, + "grad_norm": 0.6537274122238159, + "learning_rate": 8.980067001675042e-06, + "loss": 0.18508878707885743, + "step": 245000 + }, + { + "epoch": 82.11056202362006, + "grad_norm": 0.5276825428009033, + "learning_rate": 8.963316582914572e-06, + "loss": 0.18604862213134765, + "step": 245100 + }, + { + "epoch": 82.1440656671413, + "grad_norm": 0.5946404933929443, + "learning_rate": 8.946566164154105e-06, + "loss": 0.18516014099121095, + "step": 245200 + }, + { + "epoch": 82.17756931066253, + "grad_norm": 0.5449401140213013, + "learning_rate": 8.929815745393635e-06, + "loss": 0.18614362716674804, + "step": 245300 + }, + { + "epoch": 82.21107295418376, + "grad_norm": 0.5503102540969849, + "learning_rate": 8.913065326633166e-06, + "loss": 0.18611763000488282, + "step": 245400 + }, + { + "epoch": 82.244576597705, + "grad_norm": 0.6990886330604553, + "learning_rate": 8.896314907872698e-06, + "loss": 0.1872243881225586, + "step": 245500 + }, + { + "epoch": 82.27808024122623, + "grad_norm": 0.5072383880615234, + "learning_rate": 8.879564489112228e-06, + "loss": 0.1860810661315918, + "step": 245600 + }, + { + "epoch": 82.31158388474746, + "grad_norm": 0.5636463165283203, + "learning_rate": 8.862814070351759e-06, + "loss": 0.18700706481933593, + "step": 245700 + }, + { + "epoch": 82.34508752826869, + "grad_norm": 0.5329198837280273, + "learning_rate": 8.84606365159129e-06, + "loss": 0.18637537002563476, + "step": 245800 + }, + { + "epoch": 82.37859117178994, + "grad_norm": 0.7562859654426575, + "learning_rate": 8.829313232830822e-06, + "loss": 0.1869906997680664, + "step": 245900 + }, + { + "epoch": 82.41209481531116, + "grad_norm": 0.642741322517395, + "learning_rate": 8.812562814070352e-06, + "loss": 0.18656137466430664, + "step": 246000 + }, + { + "epoch": 82.4455984588324, + "grad_norm": 0.62885582447052, + "learning_rate": 8.795979899497488e-06, + "loss": 0.18802295684814452, + "step": 246100 + }, + { + "epoch": 82.47910210235364, + "grad_norm": 0.5594859719276428, + "learning_rate": 8.779229480737019e-06, + "loss": 0.18712615966796875, + "step": 246200 + }, + { + "epoch": 82.51260574587486, + "grad_norm": 0.6333134174346924, + "learning_rate": 8.76247906197655e-06, + "loss": 0.18846635818481444, + "step": 246300 + }, + { + "epoch": 82.5461093893961, + "grad_norm": 0.6623076796531677, + "learning_rate": 8.745728643216081e-06, + "loss": 0.1880592155456543, + "step": 246400 + }, + { + "epoch": 82.57961303291734, + "grad_norm": 0.5541040301322937, + "learning_rate": 8.728978224455612e-06, + "loss": 0.1872352409362793, + "step": 246500 + }, + { + "epoch": 82.61311667643857, + "grad_norm": 0.5087713599205017, + "learning_rate": 8.712227805695142e-06, + "loss": 0.1888579559326172, + "step": 246600 + }, + { + "epoch": 82.6466203199598, + "grad_norm": 0.5055890679359436, + "learning_rate": 8.695477386934673e-06, + "loss": 0.18866750717163086, + "step": 246700 + }, + { + "epoch": 82.68012396348102, + "grad_norm": 0.4937209188938141, + "learning_rate": 8.678726968174205e-06, + "loss": 0.18850959777832033, + "step": 246800 + }, + { + "epoch": 82.71362760700227, + "grad_norm": 0.6762095093727112, + "learning_rate": 8.661976549413736e-06, + "loss": 0.1879727554321289, + "step": 246900 + }, + { + "epoch": 82.7471312505235, + "grad_norm": 0.6171196699142456, + "learning_rate": 8.645226130653266e-06, + "loss": 0.18954423904418946, + "step": 247000 + }, + { + "epoch": 82.78063489404472, + "grad_norm": 0.6400672197341919, + "learning_rate": 8.628475711892797e-06, + "loss": 0.18838544845581054, + "step": 247100 + }, + { + "epoch": 82.81413853756597, + "grad_norm": 0.5874627828598022, + "learning_rate": 8.611725293132329e-06, + "loss": 0.18863496780395508, + "step": 247200 + }, + { + "epoch": 82.8476421810872, + "grad_norm": 0.6051297187805176, + "learning_rate": 8.59497487437186e-06, + "loss": 0.1890684509277344, + "step": 247300 + }, + { + "epoch": 82.88114582460842, + "grad_norm": 0.6647644639015198, + "learning_rate": 8.57822445561139e-06, + "loss": 0.18968358993530274, + "step": 247400 + }, + { + "epoch": 82.91464946812965, + "grad_norm": 0.6016401648521423, + "learning_rate": 8.561474036850922e-06, + "loss": 0.18822206497192384, + "step": 247500 + }, + { + "epoch": 82.9481531116509, + "grad_norm": 0.5627951622009277, + "learning_rate": 8.544723618090453e-06, + "loss": 0.18971824645996094, + "step": 247600 + }, + { + "epoch": 82.98165675517212, + "grad_norm": 0.6368587613105774, + "learning_rate": 8.527973199329983e-06, + "loss": 0.18886089324951172, + "step": 247700 + }, + { + "epoch": 83.01507663958455, + "grad_norm": 0.5568286180496216, + "learning_rate": 8.511222780569515e-06, + "loss": 0.18792394638061524, + "step": 247800 + }, + { + "epoch": 83.04858028310579, + "grad_norm": 0.750466525554657, + "learning_rate": 8.494472361809046e-06, + "loss": 0.18552347183227538, + "step": 247900 + }, + { + "epoch": 83.08208392662702, + "grad_norm": 0.5758387446403503, + "learning_rate": 8.477721943048576e-06, + "loss": 0.18548595428466796, + "step": 248000 + }, + { + "epoch": 83.11558757014825, + "grad_norm": 0.6715633273124695, + "learning_rate": 8.461139028475712e-06, + "loss": 0.1856230354309082, + "step": 248100 + }, + { + "epoch": 83.1490912136695, + "grad_norm": 0.6111332178115845, + "learning_rate": 8.444388609715244e-06, + "loss": 0.1855340576171875, + "step": 248200 + }, + { + "epoch": 83.18259485719072, + "grad_norm": 0.5966615676879883, + "learning_rate": 8.427638190954775e-06, + "loss": 0.18604198455810547, + "step": 248300 + }, + { + "epoch": 83.21609850071195, + "grad_norm": 0.612937331199646, + "learning_rate": 8.410887772194305e-06, + "loss": 0.18526275634765624, + "step": 248400 + }, + { + "epoch": 83.24960214423318, + "grad_norm": 0.6167147159576416, + "learning_rate": 8.394137353433838e-06, + "loss": 0.18677328109741212, + "step": 248500 + }, + { + "epoch": 83.28310578775442, + "grad_norm": 0.5629482865333557, + "learning_rate": 8.377386934673368e-06, + "loss": 0.18594594955444335, + "step": 248600 + }, + { + "epoch": 83.31660943127565, + "grad_norm": 0.5856372714042664, + "learning_rate": 8.360636515912899e-06, + "loss": 0.18747835159301757, + "step": 248700 + }, + { + "epoch": 83.35011307479688, + "grad_norm": 0.6533538103103638, + "learning_rate": 8.34388609715243e-06, + "loss": 0.18700716018676758, + "step": 248800 + }, + { + "epoch": 83.38361671831812, + "grad_norm": 0.5694628953933716, + "learning_rate": 8.32713567839196e-06, + "loss": 0.1867087936401367, + "step": 248900 + }, + { + "epoch": 83.41712036183935, + "grad_norm": 0.7100234031677246, + "learning_rate": 8.31038525963149e-06, + "loss": 0.18678861618041992, + "step": 249000 + }, + { + "epoch": 83.45062400536058, + "grad_norm": 0.528014063835144, + "learning_rate": 8.29363484087102e-06, + "loss": 0.18693504333496094, + "step": 249100 + }, + { + "epoch": 83.48412764888181, + "grad_norm": 0.6683924198150635, + "learning_rate": 8.276884422110553e-06, + "loss": 0.18630191802978516, + "step": 249200 + }, + { + "epoch": 83.51763129240305, + "grad_norm": 0.6140015125274658, + "learning_rate": 8.260134003350083e-06, + "loss": 0.18822259902954103, + "step": 249300 + }, + { + "epoch": 83.55113493592428, + "grad_norm": 0.6404419541358948, + "learning_rate": 8.243383584589614e-06, + "loss": 0.18734935760498048, + "step": 249400 + }, + { + "epoch": 83.58463857944551, + "grad_norm": 0.5253821611404419, + "learning_rate": 8.226633165829146e-06, + "loss": 0.18713035583496093, + "step": 249500 + }, + { + "epoch": 83.61814222296675, + "grad_norm": 0.592951774597168, + "learning_rate": 8.209882747068677e-06, + "loss": 0.1879220962524414, + "step": 249600 + }, + { + "epoch": 83.65164586648798, + "grad_norm": 0.6963580846786499, + "learning_rate": 8.193132328308207e-06, + "loss": 0.18711292266845703, + "step": 249700 + }, + { + "epoch": 83.68514951000921, + "grad_norm": 0.5152623653411865, + "learning_rate": 8.17638190954774e-06, + "loss": 0.18781234741210937, + "step": 249800 + }, + { + "epoch": 83.71865315353044, + "grad_norm": 0.6002013087272644, + "learning_rate": 8.15963149078727e-06, + "loss": 0.18788719177246094, + "step": 249900 + }, + { + "epoch": 83.75215679705168, + "grad_norm": 0.7012782692909241, + "learning_rate": 8.1428810720268e-06, + "loss": 0.1878870391845703, + "step": 250000 + }, + { + "epoch": 83.78566044057291, + "grad_norm": 0.5836089849472046, + "learning_rate": 8.126130653266333e-06, + "loss": 0.18869754791259766, + "step": 250100 + }, + { + "epoch": 83.81916408409414, + "grad_norm": 0.5142480134963989, + "learning_rate": 8.109547738693469e-06, + "loss": 0.18811010360717773, + "step": 250200 + }, + { + "epoch": 83.85266772761538, + "grad_norm": 0.5308085083961487, + "learning_rate": 8.092797319932999e-06, + "loss": 0.18894163131713868, + "step": 250300 + }, + { + "epoch": 83.88617137113661, + "grad_norm": 0.5777791142463684, + "learning_rate": 8.07604690117253e-06, + "loss": 0.18823001861572267, + "step": 250400 + }, + { + "epoch": 83.91967501465784, + "grad_norm": 0.5273643732070923, + "learning_rate": 8.059296482412062e-06, + "loss": 0.18896015167236327, + "step": 250500 + }, + { + "epoch": 83.95317865817908, + "grad_norm": 0.5124455094337463, + "learning_rate": 8.042546063651592e-06, + "loss": 0.18926893234252928, + "step": 250600 + }, + { + "epoch": 83.98668230170031, + "grad_norm": 0.6289759278297424, + "learning_rate": 8.025795644891123e-06, + "loss": 0.18870933532714843, + "step": 250700 + }, + { + "epoch": 84.02010218611274, + "grad_norm": 0.6009929776191711, + "learning_rate": 8.009045226130653e-06, + "loss": 0.1856600570678711, + "step": 250800 + }, + { + "epoch": 84.05360582963397, + "grad_norm": 0.6856387257575989, + "learning_rate": 7.992294807370186e-06, + "loss": 0.18487995147705077, + "step": 250900 + }, + { + "epoch": 84.08710947315521, + "grad_norm": 0.5233118534088135, + "learning_rate": 7.975544388609716e-06, + "loss": 0.18613203048706053, + "step": 251000 + }, + { + "epoch": 84.12061311667644, + "grad_norm": 0.6100374460220337, + "learning_rate": 7.958793969849247e-06, + "loss": 0.18532003402709962, + "step": 251100 + }, + { + "epoch": 84.15411676019767, + "grad_norm": 0.5868030786514282, + "learning_rate": 7.942043551088777e-06, + "loss": 0.18455961227416992, + "step": 251200 + }, + { + "epoch": 84.18762040371891, + "grad_norm": 0.6049501299858093, + "learning_rate": 7.925293132328308e-06, + "loss": 0.1862618064880371, + "step": 251300 + }, + { + "epoch": 84.22112404724014, + "grad_norm": 0.6399788856506348, + "learning_rate": 7.90854271356784e-06, + "loss": 0.18547624588012696, + "step": 251400 + }, + { + "epoch": 84.25462769076137, + "grad_norm": 0.6293793320655823, + "learning_rate": 7.89179229480737e-06, + "loss": 0.18608217239379882, + "step": 251500 + }, + { + "epoch": 84.2881313342826, + "grad_norm": 0.5287208557128906, + "learning_rate": 7.875041876046901e-06, + "loss": 0.18579626083374023, + "step": 251600 + }, + { + "epoch": 84.32163497780384, + "grad_norm": 0.5985024571418762, + "learning_rate": 7.858291457286431e-06, + "loss": 0.18519624710083007, + "step": 251700 + }, + { + "epoch": 84.35513862132507, + "grad_norm": 0.594869077205658, + "learning_rate": 7.841541038525964e-06, + "loss": 0.18641794204711915, + "step": 251800 + }, + { + "epoch": 84.3886422648463, + "grad_norm": 0.6310123801231384, + "learning_rate": 7.824790619765494e-06, + "loss": 0.18554765701293946, + "step": 251900 + }, + { + "epoch": 84.42214590836754, + "grad_norm": 0.6834468841552734, + "learning_rate": 7.808040201005025e-06, + "loss": 0.18662025451660155, + "step": 252000 + }, + { + "epoch": 84.45564955188877, + "grad_norm": 0.5541797280311584, + "learning_rate": 7.791289782244557e-06, + "loss": 0.18684375762939454, + "step": 252100 + }, + { + "epoch": 84.48915319541, + "grad_norm": 0.6487085223197937, + "learning_rate": 7.774706867671693e-06, + "loss": 0.18705474853515625, + "step": 252200 + }, + { + "epoch": 84.52265683893124, + "grad_norm": 0.4895366430282593, + "learning_rate": 7.757956448911223e-06, + "loss": 0.18700340270996094, + "step": 252300 + }, + { + "epoch": 84.55616048245247, + "grad_norm": 0.5531443357467651, + "learning_rate": 7.741206030150754e-06, + "loss": 0.18807411193847656, + "step": 252400 + }, + { + "epoch": 84.5896641259737, + "grad_norm": 0.5510408878326416, + "learning_rate": 7.724455611390286e-06, + "loss": 0.18698272705078126, + "step": 252500 + }, + { + "epoch": 84.62316776949493, + "grad_norm": 0.6708593964576721, + "learning_rate": 7.707705192629817e-06, + "loss": 0.1877949905395508, + "step": 252600 + }, + { + "epoch": 84.65667141301617, + "grad_norm": 0.5115278363227844, + "learning_rate": 7.690954773869347e-06, + "loss": 0.1879779052734375, + "step": 252700 + }, + { + "epoch": 84.6901750565374, + "grad_norm": 0.6127870082855225, + "learning_rate": 7.67420435510888e-06, + "loss": 0.18695253372192383, + "step": 252800 + }, + { + "epoch": 84.72367870005863, + "grad_norm": 0.7335399389266968, + "learning_rate": 7.65745393634841e-06, + "loss": 0.18774644851684572, + "step": 252900 + }, + { + "epoch": 84.75718234357987, + "grad_norm": 0.5237014293670654, + "learning_rate": 7.64070351758794e-06, + "loss": 0.1880354881286621, + "step": 253000 + }, + { + "epoch": 84.7906859871011, + "grad_norm": 0.5270113348960876, + "learning_rate": 7.623953098827472e-06, + "loss": 0.18749366760253905, + "step": 253100 + }, + { + "epoch": 84.82418963062233, + "grad_norm": 0.6281821727752686, + "learning_rate": 7.607202680067002e-06, + "loss": 0.1876792335510254, + "step": 253200 + }, + { + "epoch": 84.85769327414356, + "grad_norm": 0.5125153064727783, + "learning_rate": 7.590452261306533e-06, + "loss": 0.18819995880126952, + "step": 253300 + }, + { + "epoch": 84.8911969176648, + "grad_norm": 0.5630070567131042, + "learning_rate": 7.573701842546065e-06, + "loss": 0.18900468826293945, + "step": 253400 + }, + { + "epoch": 84.92470056118603, + "grad_norm": 0.551005482673645, + "learning_rate": 7.556951423785595e-06, + "loss": 0.188682861328125, + "step": 253500 + }, + { + "epoch": 84.95820420470726, + "grad_norm": 0.5519696474075317, + "learning_rate": 7.540201005025126e-06, + "loss": 0.18850210189819336, + "step": 253600 + }, + { + "epoch": 84.9917078482285, + "grad_norm": 0.64322829246521, + "learning_rate": 7.523450586264657e-06, + "loss": 0.18925397872924804, + "step": 253700 + }, + { + "epoch": 85.02512773264093, + "grad_norm": 0.569341778755188, + "learning_rate": 7.506700167504188e-06, + "loss": 0.18594614028930664, + "step": 253800 + }, + { + "epoch": 85.05863137616215, + "grad_norm": 0.5993043184280396, + "learning_rate": 7.489949748743718e-06, + "loss": 0.18460994720458984, + "step": 253900 + }, + { + "epoch": 85.0921350196834, + "grad_norm": 0.4627517759799957, + "learning_rate": 7.4731993299832505e-06, + "loss": 0.18417888641357422, + "step": 254000 + }, + { + "epoch": 85.12563866320463, + "grad_norm": 0.5186675190925598, + "learning_rate": 7.456448911222781e-06, + "loss": 0.18561904907226562, + "step": 254100 + }, + { + "epoch": 85.15914230672585, + "grad_norm": 0.6953118443489075, + "learning_rate": 7.439865996649917e-06, + "loss": 0.18514400482177734, + "step": 254200 + }, + { + "epoch": 85.19264595024708, + "grad_norm": 0.507422685623169, + "learning_rate": 7.4231155778894475e-06, + "loss": 0.18599794387817384, + "step": 254300 + }, + { + "epoch": 85.22614959376833, + "grad_norm": 0.5243151783943176, + "learning_rate": 7.40636515912898e-06, + "loss": 0.18585119247436524, + "step": 254400 + }, + { + "epoch": 85.25965323728956, + "grad_norm": 0.5282275676727295, + "learning_rate": 7.38961474036851e-06, + "loss": 0.18537141799926757, + "step": 254500 + }, + { + "epoch": 85.29315688081078, + "grad_norm": 0.8133143782615662, + "learning_rate": 7.372864321608041e-06, + "loss": 0.18567739486694335, + "step": 254600 + }, + { + "epoch": 85.32666052433203, + "grad_norm": 0.5648775100708008, + "learning_rate": 7.356113902847571e-06, + "loss": 0.1864516830444336, + "step": 254700 + }, + { + "epoch": 85.36016416785326, + "grad_norm": 0.6094685792922974, + "learning_rate": 7.339363484087103e-06, + "loss": 0.1870036506652832, + "step": 254800 + }, + { + "epoch": 85.39366781137448, + "grad_norm": 0.5950913429260254, + "learning_rate": 7.322613065326633e-06, + "loss": 0.18513656616210938, + "step": 254900 + }, + { + "epoch": 85.42717145489571, + "grad_norm": 0.5510959029197693, + "learning_rate": 7.305862646566164e-06, + "loss": 0.18647272109985352, + "step": 255000 + }, + { + "epoch": 85.46067509841696, + "grad_norm": 0.7267409563064575, + "learning_rate": 7.289112227805696e-06, + "loss": 0.1857898712158203, + "step": 255100 + }, + { + "epoch": 85.49417874193819, + "grad_norm": 0.45163479447364807, + "learning_rate": 7.272361809045226e-06, + "loss": 0.18607278823852538, + "step": 255200 + }, + { + "epoch": 85.52768238545941, + "grad_norm": 0.4602172374725342, + "learning_rate": 7.255611390284757e-06, + "loss": 0.18727361679077148, + "step": 255300 + }, + { + "epoch": 85.56118602898066, + "grad_norm": 0.635420024394989, + "learning_rate": 7.238860971524289e-06, + "loss": 0.18634784698486329, + "step": 255400 + }, + { + "epoch": 85.59468967250189, + "grad_norm": 0.7202033996582031, + "learning_rate": 7.22211055276382e-06, + "loss": 0.18726907730102538, + "step": 255500 + }, + { + "epoch": 85.62819331602311, + "grad_norm": 0.5407751798629761, + "learning_rate": 7.20536013400335e-06, + "loss": 0.18667268753051758, + "step": 255600 + }, + { + "epoch": 85.66169695954434, + "grad_norm": 0.5636637806892395, + "learning_rate": 7.188609715242882e-06, + "loss": 0.18750267028808593, + "step": 255700 + }, + { + "epoch": 85.69520060306559, + "grad_norm": 0.4898567199707031, + "learning_rate": 7.171859296482413e-06, + "loss": 0.1871859359741211, + "step": 255800 + }, + { + "epoch": 85.72870424658682, + "grad_norm": 0.5712749361991882, + "learning_rate": 7.155108877721943e-06, + "loss": 0.18638862609863283, + "step": 255900 + }, + { + "epoch": 85.76220789010804, + "grad_norm": 0.46651607751846313, + "learning_rate": 7.138358458961475e-06, + "loss": 0.18812761306762696, + "step": 256000 + }, + { + "epoch": 85.79571153362929, + "grad_norm": 0.5160844326019287, + "learning_rate": 7.121608040201005e-06, + "loss": 0.18870893478393555, + "step": 256100 + }, + { + "epoch": 85.82921517715052, + "grad_norm": 0.5459625124931335, + "learning_rate": 7.105025125628141e-06, + "loss": 0.18762758255004883, + "step": 256200 + }, + { + "epoch": 85.86271882067174, + "grad_norm": 0.5653469562530518, + "learning_rate": 7.088274706867672e-06, + "loss": 0.18779273986816405, + "step": 256300 + }, + { + "epoch": 85.89622246419299, + "grad_norm": 0.6370869278907776, + "learning_rate": 7.071524288107204e-06, + "loss": 0.18751178741455077, + "step": 256400 + }, + { + "epoch": 85.92972610771422, + "grad_norm": 0.5533131957054138, + "learning_rate": 7.054773869346734e-06, + "loss": 0.1884653663635254, + "step": 256500 + }, + { + "epoch": 85.96322975123545, + "grad_norm": 0.6711784601211548, + "learning_rate": 7.038023450586265e-06, + "loss": 0.18683214187622071, + "step": 256600 + }, + { + "epoch": 85.99673339475667, + "grad_norm": 0.5515606999397278, + "learning_rate": 7.021273031825796e-06, + "loss": 0.1888846969604492, + "step": 256700 + }, + { + "epoch": 86.03015327916911, + "grad_norm": 0.5068252086639404, + "learning_rate": 7.004522613065327e-06, + "loss": 0.18496566772460937, + "step": 256800 + }, + { + "epoch": 86.06365692269034, + "grad_norm": 0.47771593928337097, + "learning_rate": 6.987772194304857e-06, + "loss": 0.184095401763916, + "step": 256900 + }, + { + "epoch": 86.09716056621157, + "grad_norm": 0.47911855578422546, + "learning_rate": 6.9710217755443895e-06, + "loss": 0.18482202529907227, + "step": 257000 + }, + { + "epoch": 86.13066420973281, + "grad_norm": 0.5584221482276917, + "learning_rate": 6.95427135678392e-06, + "loss": 0.18487674713134766, + "step": 257100 + }, + { + "epoch": 86.16416785325404, + "grad_norm": 0.47040486335754395, + "learning_rate": 6.9375209380234505e-06, + "loss": 0.18475263595581054, + "step": 257200 + }, + { + "epoch": 86.19767149677527, + "grad_norm": 0.6007068753242493, + "learning_rate": 6.920770519262981e-06, + "loss": 0.18603864669799805, + "step": 257300 + }, + { + "epoch": 86.23117514029651, + "grad_norm": 0.6026456356048584, + "learning_rate": 6.904020100502513e-06, + "loss": 0.18502817153930665, + "step": 257400 + }, + { + "epoch": 86.26467878381774, + "grad_norm": 0.4999913275241852, + "learning_rate": 6.887269681742044e-06, + "loss": 0.1868625259399414, + "step": 257500 + }, + { + "epoch": 86.29818242733897, + "grad_norm": 0.5064532160758972, + "learning_rate": 6.870519262981574e-06, + "loss": 0.18557401657104491, + "step": 257600 + }, + { + "epoch": 86.3316860708602, + "grad_norm": 0.47061556577682495, + "learning_rate": 6.8537688442211065e-06, + "loss": 0.1852064323425293, + "step": 257700 + }, + { + "epoch": 86.36518971438144, + "grad_norm": 0.5401563048362732, + "learning_rate": 6.837018425460637e-06, + "loss": 0.18540374755859376, + "step": 257800 + }, + { + "epoch": 86.39869335790267, + "grad_norm": 0.46041640639305115, + "learning_rate": 6.8202680067001675e-06, + "loss": 0.18596946716308593, + "step": 257900 + }, + { + "epoch": 86.4321970014239, + "grad_norm": 0.597866415977478, + "learning_rate": 6.803517587939699e-06, + "loss": 0.18595813751220702, + "step": 258000 + }, + { + "epoch": 86.46570064494514, + "grad_norm": 0.6081616878509521, + "learning_rate": 6.786767169179229e-06, + "loss": 0.18565729141235351, + "step": 258100 + }, + { + "epoch": 86.49920428846637, + "grad_norm": 0.5523788332939148, + "learning_rate": 6.770184254606365e-06, + "loss": 0.187158260345459, + "step": 258200 + }, + { + "epoch": 86.5327079319876, + "grad_norm": 0.5216212272644043, + "learning_rate": 6.753433835845896e-06, + "loss": 0.1858182144165039, + "step": 258300 + }, + { + "epoch": 86.56621157550883, + "grad_norm": 0.5936647057533264, + "learning_rate": 6.736683417085428e-06, + "loss": 0.1869313621520996, + "step": 258400 + }, + { + "epoch": 86.59971521903007, + "grad_norm": 0.6182869672775269, + "learning_rate": 6.7199329983249586e-06, + "loss": 0.18541063308715822, + "step": 258500 + }, + { + "epoch": 86.6332188625513, + "grad_norm": 0.5022922158241272, + "learning_rate": 6.703182579564489e-06, + "loss": 0.18641475677490235, + "step": 258600 + }, + { + "epoch": 86.66672250607253, + "grad_norm": 0.5892537832260132, + "learning_rate": 6.686432160804021e-06, + "loss": 0.1863780975341797, + "step": 258700 + }, + { + "epoch": 86.70022614959377, + "grad_norm": 0.6023449301719666, + "learning_rate": 6.669681742043552e-06, + "loss": 0.18697059631347657, + "step": 258800 + }, + { + "epoch": 86.733729793115, + "grad_norm": 0.4677959680557251, + "learning_rate": 6.652931323283082e-06, + "loss": 0.1872576904296875, + "step": 258900 + }, + { + "epoch": 86.76723343663623, + "grad_norm": 0.5693555474281311, + "learning_rate": 6.636180904522614e-06, + "loss": 0.18713676452636718, + "step": 259000 + }, + { + "epoch": 86.80073708015746, + "grad_norm": 0.6497491598129272, + "learning_rate": 6.619430485762144e-06, + "loss": 0.1870942497253418, + "step": 259100 + }, + { + "epoch": 86.8342407236787, + "grad_norm": 0.548832356929779, + "learning_rate": 6.602680067001675e-06, + "loss": 0.18688385009765626, + "step": 259200 + }, + { + "epoch": 86.86774436719993, + "grad_norm": 0.596001923084259, + "learning_rate": 6.585929648241207e-06, + "loss": 0.1876131248474121, + "step": 259300 + }, + { + "epoch": 86.90124801072116, + "grad_norm": 0.4879089891910553, + "learning_rate": 6.5691792294807374e-06, + "loss": 0.18763301849365235, + "step": 259400 + }, + { + "epoch": 86.9347516542424, + "grad_norm": 0.637677013874054, + "learning_rate": 6.552428810720268e-06, + "loss": 0.18786365509033204, + "step": 259500 + }, + { + "epoch": 86.96825529776363, + "grad_norm": 0.6771053671836853, + "learning_rate": 6.5356783919598e-06, + "loss": 0.18699560165405274, + "step": 259600 + }, + { + "epoch": 87.00167518217606, + "grad_norm": 0.4932768940925598, + "learning_rate": 6.518927973199331e-06, + "loss": 0.18727890014648438, + "step": 259700 + }, + { + "epoch": 87.0351788256973, + "grad_norm": 0.5554237961769104, + "learning_rate": 6.502177554438861e-06, + "loss": 0.18363922119140624, + "step": 259800 + }, + { + "epoch": 87.06868246921853, + "grad_norm": 0.49361878633499146, + "learning_rate": 6.485427135678392e-06, + "loss": 0.18403356552124023, + "step": 259900 + }, + { + "epoch": 87.10218611273976, + "grad_norm": 0.5164247155189514, + "learning_rate": 6.468676716917924e-06, + "loss": 0.1847250556945801, + "step": 260000 + }, + { + "epoch": 87.13568975626099, + "grad_norm": 0.6231299638748169, + "learning_rate": 6.4519262981574544e-06, + "loss": 0.18410905838012695, + "step": 260100 + }, + { + "epoch": 87.16919339978223, + "grad_norm": 0.510552167892456, + "learning_rate": 6.4353433835845895e-06, + "loss": 0.18483367919921875, + "step": 260200 + }, + { + "epoch": 87.20269704330346, + "grad_norm": 0.5737383961677551, + "learning_rate": 6.41859296482412e-06, + "loss": 0.18470308303833008, + "step": 260300 + }, + { + "epoch": 87.23620068682469, + "grad_norm": 0.5129623413085938, + "learning_rate": 6.401842546063652e-06, + "loss": 0.18547887802124025, + "step": 260400 + }, + { + "epoch": 87.26970433034593, + "grad_norm": 0.6173266172409058, + "learning_rate": 6.385092127303183e-06, + "loss": 0.18598060607910155, + "step": 260500 + }, + { + "epoch": 87.30320797386716, + "grad_norm": 0.544044554233551, + "learning_rate": 6.368341708542713e-06, + "loss": 0.18537967681884765, + "step": 260600 + }, + { + "epoch": 87.33671161738839, + "grad_norm": 0.5292858481407166, + "learning_rate": 6.3515912897822455e-06, + "loss": 0.18521123886108398, + "step": 260700 + }, + { + "epoch": 87.37021526090962, + "grad_norm": 0.594588041305542, + "learning_rate": 6.334840871021776e-06, + "loss": 0.18591339111328126, + "step": 260800 + }, + { + "epoch": 87.40371890443086, + "grad_norm": 0.5692018270492554, + "learning_rate": 6.3180904522613065e-06, + "loss": 0.1846309471130371, + "step": 260900 + }, + { + "epoch": 87.43722254795209, + "grad_norm": 0.6212311387062073, + "learning_rate": 6.301340033500838e-06, + "loss": 0.18584171295166016, + "step": 261000 + }, + { + "epoch": 87.47072619147332, + "grad_norm": 0.6049195528030396, + "learning_rate": 6.284589614740368e-06, + "loss": 0.1861904716491699, + "step": 261100 + }, + { + "epoch": 87.50422983499456, + "grad_norm": 0.5650988221168518, + "learning_rate": 6.2678391959799e-06, + "loss": 0.18642744064331054, + "step": 261200 + }, + { + "epoch": 87.53773347851579, + "grad_norm": 0.6198245286941528, + "learning_rate": 6.251088777219431e-06, + "loss": 0.1867201805114746, + "step": 261300 + }, + { + "epoch": 87.57123712203702, + "grad_norm": 0.6500935554504395, + "learning_rate": 6.234338358458962e-06, + "loss": 0.1860578727722168, + "step": 261400 + }, + { + "epoch": 87.60474076555825, + "grad_norm": 0.5311732888221741, + "learning_rate": 6.217587939698493e-06, + "loss": 0.18565948486328124, + "step": 261500 + }, + { + "epoch": 87.63824440907949, + "grad_norm": 0.736834704875946, + "learning_rate": 6.2008375209380235e-06, + "loss": 0.18650445938110352, + "step": 261600 + }, + { + "epoch": 87.67174805260072, + "grad_norm": 0.567558228969574, + "learning_rate": 6.184087102177555e-06, + "loss": 0.18658845901489257, + "step": 261700 + }, + { + "epoch": 87.70525169612195, + "grad_norm": 0.4581720232963562, + "learning_rate": 6.167336683417086e-06, + "loss": 0.18680118560791015, + "step": 261800 + }, + { + "epoch": 87.73875533964319, + "grad_norm": 0.6665058135986328, + "learning_rate": 6.150586264656617e-06, + "loss": 0.18713037490844728, + "step": 261900 + }, + { + "epoch": 87.77225898316442, + "grad_norm": 0.5811572670936584, + "learning_rate": 6.133835845896148e-06, + "loss": 0.1872100830078125, + "step": 262000 + }, + { + "epoch": 87.80576262668565, + "grad_norm": 0.5392748117446899, + "learning_rate": 6.117085427135679e-06, + "loss": 0.18684432983398438, + "step": 262100 + }, + { + "epoch": 87.83926627020689, + "grad_norm": 0.5572375655174255, + "learning_rate": 6.100502512562814e-06, + "loss": 0.18601211547851562, + "step": 262200 + }, + { + "epoch": 87.87276991372812, + "grad_norm": 0.6901904940605164, + "learning_rate": 6.083752093802345e-06, + "loss": 0.18694435119628905, + "step": 262300 + }, + { + "epoch": 87.90627355724935, + "grad_norm": 0.5973819494247437, + "learning_rate": 6.067001675041876e-06, + "loss": 0.18795061111450195, + "step": 262400 + }, + { + "epoch": 87.93977720077058, + "grad_norm": 0.5847058296203613, + "learning_rate": 6.050251256281407e-06, + "loss": 0.1869793701171875, + "step": 262500 + }, + { + "epoch": 87.97328084429182, + "grad_norm": 0.5993967056274414, + "learning_rate": 6.033500837520938e-06, + "loss": 0.1878180694580078, + "step": 262600 + }, + { + "epoch": 88.00670072870425, + "grad_norm": 0.532988429069519, + "learning_rate": 6.01675041876047e-06, + "loss": 0.18654600143432618, + "step": 262700 + }, + { + "epoch": 88.04020437222547, + "grad_norm": 0.5655828714370728, + "learning_rate": 6e-06, + "loss": 0.18439163208007814, + "step": 262800 + }, + { + "epoch": 88.07370801574672, + "grad_norm": 0.5616503357887268, + "learning_rate": 5.9832495812395315e-06, + "loss": 0.1837614631652832, + "step": 262900 + }, + { + "epoch": 88.10721165926795, + "grad_norm": 0.4429595470428467, + "learning_rate": 5.966499162479063e-06, + "loss": 0.18412097930908203, + "step": 263000 + }, + { + "epoch": 88.14071530278918, + "grad_norm": 0.4846174120903015, + "learning_rate": 5.949748743718593e-06, + "loss": 0.18443714141845702, + "step": 263100 + }, + { + "epoch": 88.17421894631042, + "grad_norm": 0.5053496956825256, + "learning_rate": 5.932998324958124e-06, + "loss": 0.1849221420288086, + "step": 263200 + }, + { + "epoch": 88.20772258983165, + "grad_norm": 0.5732136368751526, + "learning_rate": 5.916247906197655e-06, + "loss": 0.18445537567138673, + "step": 263300 + }, + { + "epoch": 88.24122623335288, + "grad_norm": 0.671688437461853, + "learning_rate": 5.899497487437186e-06, + "loss": 0.18499351501464845, + "step": 263400 + }, + { + "epoch": 88.2747298768741, + "grad_norm": 0.5794471502304077, + "learning_rate": 5.882747068676717e-06, + "loss": 0.18498233795166016, + "step": 263500 + }, + { + "epoch": 88.30823352039535, + "grad_norm": 0.5552869439125061, + "learning_rate": 5.865996649916248e-06, + "loss": 0.18548328399658204, + "step": 263600 + }, + { + "epoch": 88.34173716391658, + "grad_norm": 0.5315948724746704, + "learning_rate": 5.849246231155779e-06, + "loss": 0.18444686889648437, + "step": 263700 + }, + { + "epoch": 88.3752408074378, + "grad_norm": 0.6291096210479736, + "learning_rate": 5.83249581239531e-06, + "loss": 0.18497331619262694, + "step": 263800 + }, + { + "epoch": 88.40874445095905, + "grad_norm": 0.6358299851417542, + "learning_rate": 5.815745393634841e-06, + "loss": 0.1851169967651367, + "step": 263900 + }, + { + "epoch": 88.44224809448028, + "grad_norm": 0.5641636848449707, + "learning_rate": 5.798994974874372e-06, + "loss": 0.18581708908081054, + "step": 264000 + }, + { + "epoch": 88.4757517380015, + "grad_norm": 0.646516740322113, + "learning_rate": 5.782244556113904e-06, + "loss": 0.18616880416870119, + "step": 264100 + }, + { + "epoch": 88.50925538152273, + "grad_norm": 0.5487529635429382, + "learning_rate": 5.765494137353434e-06, + "loss": 0.18532644271850585, + "step": 264200 + }, + { + "epoch": 88.54275902504398, + "grad_norm": 0.5325868129730225, + "learning_rate": 5.748911222780569e-06, + "loss": 0.1863404655456543, + "step": 264300 + }, + { + "epoch": 88.5762626685652, + "grad_norm": 0.5119947195053101, + "learning_rate": 5.7321608040201006e-06, + "loss": 0.1858821678161621, + "step": 264400 + }, + { + "epoch": 88.60976631208644, + "grad_norm": 0.5027479529380798, + "learning_rate": 5.715410385259632e-06, + "loss": 0.18715795516967773, + "step": 264500 + }, + { + "epoch": 88.64326995560768, + "grad_norm": 0.6127695441246033, + "learning_rate": 5.6986599664991625e-06, + "loss": 0.1849302864074707, + "step": 264600 + }, + { + "epoch": 88.67677359912891, + "grad_norm": 0.5115147233009338, + "learning_rate": 5.681909547738694e-06, + "loss": 0.18587541580200195, + "step": 264700 + }, + { + "epoch": 88.71027724265014, + "grad_norm": 0.5533451437950134, + "learning_rate": 5.665159128978225e-06, + "loss": 0.1865237045288086, + "step": 264800 + }, + { + "epoch": 88.74378088617136, + "grad_norm": 0.7907216548919678, + "learning_rate": 5.648408710217756e-06, + "loss": 0.18539291381835937, + "step": 264900 + }, + { + "epoch": 88.77728452969261, + "grad_norm": 0.6062288284301758, + "learning_rate": 5.631658291457287e-06, + "loss": 0.18620302200317382, + "step": 265000 + }, + { + "epoch": 88.81078817321384, + "grad_norm": 0.5403768420219421, + "learning_rate": 5.6149078726968176e-06, + "loss": 0.18627490997314453, + "step": 265100 + }, + { + "epoch": 88.84429181673507, + "grad_norm": 0.47379136085510254, + "learning_rate": 5.598157453936349e-06, + "loss": 0.18624238967895507, + "step": 265200 + }, + { + "epoch": 88.87779546025631, + "grad_norm": 0.6376839280128479, + "learning_rate": 5.5814070351758794e-06, + "loss": 0.18673583984375, + "step": 265300 + }, + { + "epoch": 88.91129910377754, + "grad_norm": 0.5186110138893127, + "learning_rate": 5.564656616415411e-06, + "loss": 0.18633831024169922, + "step": 265400 + }, + { + "epoch": 88.94480274729877, + "grad_norm": 0.5298460721969604, + "learning_rate": 5.547906197654941e-06, + "loss": 0.18666128158569337, + "step": 265500 + }, + { + "epoch": 88.97830639082, + "grad_norm": 0.6699676513671875, + "learning_rate": 5.531155778894473e-06, + "loss": 0.18743110656738282, + "step": 265600 + }, + { + "epoch": 89.01172627523243, + "grad_norm": 0.7564083933830261, + "learning_rate": 5.514405360134003e-06, + "loss": 0.18580760955810546, + "step": 265700 + }, + { + "epoch": 89.04522991875366, + "grad_norm": 0.4524352252483368, + "learning_rate": 5.4976549413735346e-06, + "loss": 0.18369712829589843, + "step": 265800 + }, + { + "epoch": 89.07873356227489, + "grad_norm": 0.5215601325035095, + "learning_rate": 5.480904522613066e-06, + "loss": 0.18392160415649414, + "step": 265900 + }, + { + "epoch": 89.11223720579613, + "grad_norm": 0.5558773875236511, + "learning_rate": 5.4641541038525964e-06, + "loss": 0.18470701217651367, + "step": 266000 + }, + { + "epoch": 89.14574084931736, + "grad_norm": 0.5827058553695679, + "learning_rate": 5.447403685092128e-06, + "loss": 0.18471426010131836, + "step": 266100 + }, + { + "epoch": 89.17924449283859, + "grad_norm": 0.6175124645233154, + "learning_rate": 5.430653266331658e-06, + "loss": 0.18419244766235351, + "step": 266200 + }, + { + "epoch": 89.21274813635983, + "grad_norm": 0.5262554883956909, + "learning_rate": 5.41390284757119e-06, + "loss": 0.18310293197631836, + "step": 266300 + }, + { + "epoch": 89.24625177988106, + "grad_norm": 0.5767905712127686, + "learning_rate": 5.397319932998325e-06, + "loss": 0.1847786521911621, + "step": 266400 + }, + { + "epoch": 89.27975542340229, + "grad_norm": 0.45258834958076477, + "learning_rate": 5.380569514237856e-06, + "loss": 0.18412622451782226, + "step": 266500 + }, + { + "epoch": 89.31325906692352, + "grad_norm": 0.546626091003418, + "learning_rate": 5.363819095477387e-06, + "loss": 0.1842401695251465, + "step": 266600 + }, + { + "epoch": 89.34676271044476, + "grad_norm": 0.48357829451560974, + "learning_rate": 5.347068676716918e-06, + "loss": 0.18534393310546876, + "step": 266700 + }, + { + "epoch": 89.380266353966, + "grad_norm": 0.5069622993469238, + "learning_rate": 5.330318257956449e-06, + "loss": 0.18502262115478516, + "step": 266800 + }, + { + "epoch": 89.41376999748722, + "grad_norm": 0.6336747407913208, + "learning_rate": 5.31356783919598e-06, + "loss": 0.18472951889038086, + "step": 266900 + }, + { + "epoch": 89.44727364100847, + "grad_norm": 0.5919739603996277, + "learning_rate": 5.296817420435511e-06, + "loss": 0.185218505859375, + "step": 267000 + }, + { + "epoch": 89.4807772845297, + "grad_norm": 0.48863354325294495, + "learning_rate": 5.280067001675043e-06, + "loss": 0.18563102722167968, + "step": 267100 + }, + { + "epoch": 89.51428092805092, + "grad_norm": 0.6356630921363831, + "learning_rate": 5.263316582914573e-06, + "loss": 0.18483596801757812, + "step": 267200 + }, + { + "epoch": 89.54778457157215, + "grad_norm": 0.6572123765945435, + "learning_rate": 5.2465661641541045e-06, + "loss": 0.18614835739135743, + "step": 267300 + }, + { + "epoch": 89.5812882150934, + "grad_norm": 0.4905427396297455, + "learning_rate": 5.229815745393636e-06, + "loss": 0.18502700805664063, + "step": 267400 + }, + { + "epoch": 89.61479185861462, + "grad_norm": 0.53782057762146, + "learning_rate": 5.213065326633166e-06, + "loss": 0.1857935905456543, + "step": 267500 + }, + { + "epoch": 89.64829550213585, + "grad_norm": 0.6450851559638977, + "learning_rate": 5.196314907872697e-06, + "loss": 0.18643198013305665, + "step": 267600 + }, + { + "epoch": 89.6817991456571, + "grad_norm": 0.6173422336578369, + "learning_rate": 5.179564489112227e-06, + "loss": 0.1862980079650879, + "step": 267700 + }, + { + "epoch": 89.71530278917832, + "grad_norm": 0.564839243888855, + "learning_rate": 5.162814070351759e-06, + "loss": 0.1857726287841797, + "step": 267800 + }, + { + "epoch": 89.74880643269955, + "grad_norm": 0.5647773742675781, + "learning_rate": 5.14606365159129e-06, + "loss": 0.18673162460327147, + "step": 267900 + }, + { + "epoch": 89.7823100762208, + "grad_norm": 0.5144478678703308, + "learning_rate": 5.129313232830821e-06, + "loss": 0.18588918685913086, + "step": 268000 + }, + { + "epoch": 89.81581371974202, + "grad_norm": 0.47654643654823303, + "learning_rate": 5.112562814070352e-06, + "loss": 0.1857970428466797, + "step": 268100 + }, + { + "epoch": 89.84931736326325, + "grad_norm": 0.6091083288192749, + "learning_rate": 5.095812395309883e-06, + "loss": 0.18509552001953125, + "step": 268200 + }, + { + "epoch": 89.88282100678448, + "grad_norm": 0.5405870676040649, + "learning_rate": 5.079061976549414e-06, + "loss": 0.18604494094848634, + "step": 268300 + }, + { + "epoch": 89.91632465030573, + "grad_norm": 0.5205516815185547, + "learning_rate": 5.06247906197655e-06, + "loss": 0.1859523582458496, + "step": 268400 + }, + { + "epoch": 89.94982829382695, + "grad_norm": 0.5739098787307739, + "learning_rate": 5.04572864321608e-06, + "loss": 0.1862436866760254, + "step": 268500 + }, + { + "epoch": 89.98333193734818, + "grad_norm": 0.6661388278007507, + "learning_rate": 5.028978224455612e-06, + "loss": 0.18580772399902343, + "step": 268600 + }, + { + "epoch": 90.01675182176062, + "grad_norm": 0.5268995761871338, + "learning_rate": 5.012227805695142e-06, + "loss": 0.18514154434204103, + "step": 268700 + }, + { + "epoch": 90.05025546528185, + "grad_norm": 0.752692461013794, + "learning_rate": 4.9954773869346735e-06, + "loss": 0.18381275177001954, + "step": 268800 + }, + { + "epoch": 90.08375910880308, + "grad_norm": 0.6190829873085022, + "learning_rate": 4.978726968174205e-06, + "loss": 0.1839034652709961, + "step": 268900 + }, + { + "epoch": 90.11726275232432, + "grad_norm": 0.5042902827262878, + "learning_rate": 4.961976549413735e-06, + "loss": 0.18465267181396483, + "step": 269000 + }, + { + "epoch": 90.15076639584555, + "grad_norm": 0.5969473719596863, + "learning_rate": 4.945226130653267e-06, + "loss": 0.18303195953369142, + "step": 269100 + }, + { + "epoch": 90.18427003936678, + "grad_norm": 0.6725231409072876, + "learning_rate": 4.928475711892797e-06, + "loss": 0.18475696563720703, + "step": 269200 + }, + { + "epoch": 90.21777368288801, + "grad_norm": 0.456318736076355, + "learning_rate": 4.911725293132329e-06, + "loss": 0.18457313537597655, + "step": 269300 + }, + { + "epoch": 90.25127732640925, + "grad_norm": 0.5855475068092346, + "learning_rate": 4.89497487437186e-06, + "loss": 0.18437076568603517, + "step": 269400 + }, + { + "epoch": 90.28478096993048, + "grad_norm": 0.529436469078064, + "learning_rate": 4.8782244556113905e-06, + "loss": 0.18375736236572265, + "step": 269500 + }, + { + "epoch": 90.31828461345171, + "grad_norm": 0.5961082577705383, + "learning_rate": 4.861474036850922e-06, + "loss": 0.18455684661865235, + "step": 269600 + }, + { + "epoch": 90.35178825697295, + "grad_norm": 0.5185309052467346, + "learning_rate": 4.844723618090452e-06, + "loss": 0.1851878547668457, + "step": 269700 + }, + { + "epoch": 90.38529190049418, + "grad_norm": 0.40312084555625916, + "learning_rate": 4.827973199329983e-06, + "loss": 0.18382146835327148, + "step": 269800 + }, + { + "epoch": 90.41879554401541, + "grad_norm": 0.5168654322624207, + "learning_rate": 4.811222780569514e-06, + "loss": 0.18515111923217772, + "step": 269900 + }, + { + "epoch": 90.45229918753664, + "grad_norm": 0.5459558963775635, + "learning_rate": 4.794472361809046e-06, + "loss": 0.18459436416625977, + "step": 270000 + }, + { + "epoch": 90.48580283105788, + "grad_norm": 0.5190539956092834, + "learning_rate": 4.777721943048576e-06, + "loss": 0.1858159065246582, + "step": 270100 + }, + { + "epoch": 90.51930647457911, + "grad_norm": 0.4919435381889343, + "learning_rate": 4.7609715242881075e-06, + "loss": 0.18439708709716796, + "step": 270200 + }, + { + "epoch": 90.55281011810034, + "grad_norm": 0.4750555157661438, + "learning_rate": 4.744221105527638e-06, + "loss": 0.1842019462585449, + "step": 270300 + }, + { + "epoch": 90.58631376162158, + "grad_norm": 0.6852492690086365, + "learning_rate": 4.727638190954775e-06, + "loss": 0.18526426315307618, + "step": 270400 + }, + { + "epoch": 90.61981740514281, + "grad_norm": 0.6319891810417175, + "learning_rate": 4.710887772194305e-06, + "loss": 0.1851023864746094, + "step": 270500 + }, + { + "epoch": 90.65332104866404, + "grad_norm": 0.49747490882873535, + "learning_rate": 4.694137353433836e-06, + "loss": 0.18547800064086914, + "step": 270600 + }, + { + "epoch": 90.68682469218527, + "grad_norm": 0.4589165151119232, + "learning_rate": 4.677386934673366e-06, + "loss": 0.1850799560546875, + "step": 270700 + }, + { + "epoch": 90.72032833570651, + "grad_norm": 0.647290050983429, + "learning_rate": 4.660636515912898e-06, + "loss": 0.18597793579101562, + "step": 270800 + }, + { + "epoch": 90.75383197922774, + "grad_norm": 0.6682136058807373, + "learning_rate": 4.643886097152429e-06, + "loss": 0.1855238914489746, + "step": 270900 + }, + { + "epoch": 90.78733562274897, + "grad_norm": 0.5782601237297058, + "learning_rate": 4.62713567839196e-06, + "loss": 0.18538637161254884, + "step": 271000 + }, + { + "epoch": 90.82083926627021, + "grad_norm": 0.5579448938369751, + "learning_rate": 4.610385259631491e-06, + "loss": 0.1856587600708008, + "step": 271100 + }, + { + "epoch": 90.85434290979144, + "grad_norm": 0.5620039105415344, + "learning_rate": 4.593634840871022e-06, + "loss": 0.18588842391967775, + "step": 271200 + }, + { + "epoch": 90.88784655331267, + "grad_norm": 0.6530576348304749, + "learning_rate": 4.576884422110553e-06, + "loss": 0.18567676544189454, + "step": 271300 + }, + { + "epoch": 90.9213501968339, + "grad_norm": 0.6144570708274841, + "learning_rate": 4.560134003350084e-06, + "loss": 0.18605300903320313, + "step": 271400 + }, + { + "epoch": 90.95485384035514, + "grad_norm": 0.5530267357826233, + "learning_rate": 4.5433835845896156e-06, + "loss": 0.18595090866088868, + "step": 271500 + }, + { + "epoch": 90.98835748387637, + "grad_norm": 0.5598485469818115, + "learning_rate": 4.526633165829146e-06, + "loss": 0.1865631675720215, + "step": 271600 + }, + { + "epoch": 91.0217773682888, + "grad_norm": 0.4829404652118683, + "learning_rate": 4.5098827470686774e-06, + "loss": 0.18459095001220704, + "step": 271700 + }, + { + "epoch": 91.05528101181004, + "grad_norm": 0.7115753889083862, + "learning_rate": 4.493132328308208e-06, + "loss": 0.1838077163696289, + "step": 271800 + }, + { + "epoch": 91.08878465533127, + "grad_norm": 0.557543158531189, + "learning_rate": 4.4763819095477385e-06, + "loss": 0.1847819519042969, + "step": 271900 + }, + { + "epoch": 91.1222882988525, + "grad_norm": 0.5555517077445984, + "learning_rate": 4.45963149078727e-06, + "loss": 0.18323816299438478, + "step": 272000 + }, + { + "epoch": 91.15579194237374, + "grad_norm": 0.5963297486305237, + "learning_rate": 4.4428810720268e-06, + "loss": 0.1839584732055664, + "step": 272100 + }, + { + "epoch": 91.18929558589497, + "grad_norm": 0.58128821849823, + "learning_rate": 4.426130653266332e-06, + "loss": 0.1841065788269043, + "step": 272200 + }, + { + "epoch": 91.2227992294162, + "grad_norm": 0.4545518457889557, + "learning_rate": 4.409380234505863e-06, + "loss": 0.1835637855529785, + "step": 272300 + }, + { + "epoch": 91.25630287293743, + "grad_norm": 0.5214167237281799, + "learning_rate": 4.392629815745394e-06, + "loss": 0.18443021774291993, + "step": 272400 + }, + { + "epoch": 91.28980651645867, + "grad_norm": 0.46389076113700867, + "learning_rate": 4.3760469011725295e-06, + "loss": 0.18393590927124023, + "step": 272500 + }, + { + "epoch": 91.3233101599799, + "grad_norm": 0.6274188160896301, + "learning_rate": 4.359296482412061e-06, + "loss": 0.18395915985107422, + "step": 272600 + }, + { + "epoch": 91.35681380350113, + "grad_norm": 0.5550768971443176, + "learning_rate": 4.342546063651591e-06, + "loss": 0.18435438156127928, + "step": 272700 + }, + { + "epoch": 91.39031744702237, + "grad_norm": 0.5795305967330933, + "learning_rate": 4.325795644891122e-06, + "loss": 0.18411699295043946, + "step": 272800 + }, + { + "epoch": 91.4238210905436, + "grad_norm": 0.5524510145187378, + "learning_rate": 4.309045226130653e-06, + "loss": 0.18482681274414062, + "step": 272900 + }, + { + "epoch": 91.45732473406483, + "grad_norm": 0.4713156521320343, + "learning_rate": 4.292294807370185e-06, + "loss": 0.18384735107421876, + "step": 273000 + }, + { + "epoch": 91.49082837758607, + "grad_norm": 0.5844002366065979, + "learning_rate": 4.275544388609715e-06, + "loss": 0.1849127197265625, + "step": 273100 + }, + { + "epoch": 91.5243320211073, + "grad_norm": 0.5675417184829712, + "learning_rate": 4.2587939698492465e-06, + "loss": 0.18468017578125, + "step": 273200 + }, + { + "epoch": 91.55783566462853, + "grad_norm": 0.5666652917861938, + "learning_rate": 4.242043551088777e-06, + "loss": 0.18494237899780275, + "step": 273300 + }, + { + "epoch": 91.59133930814976, + "grad_norm": 0.46655622124671936, + "learning_rate": 4.225293132328308e-06, + "loss": 0.18492658615112303, + "step": 273400 + }, + { + "epoch": 91.624842951671, + "grad_norm": 0.5972129106521606, + "learning_rate": 4.20854271356784e-06, + "loss": 0.1859132766723633, + "step": 273500 + }, + { + "epoch": 91.65834659519223, + "grad_norm": 0.5144099593162537, + "learning_rate": 4.19179229480737e-06, + "loss": 0.1850869369506836, + "step": 273600 + }, + { + "epoch": 91.69185023871346, + "grad_norm": 0.46821364760398865, + "learning_rate": 4.175041876046902e-06, + "loss": 0.1852436828613281, + "step": 273700 + }, + { + "epoch": 91.7253538822347, + "grad_norm": 0.6473614573478699, + "learning_rate": 4.158291457286433e-06, + "loss": 0.1850813102722168, + "step": 273800 + }, + { + "epoch": 91.75885752575593, + "grad_norm": 0.7392449378967285, + "learning_rate": 4.1415410385259635e-06, + "loss": 0.18418787002563478, + "step": 273900 + }, + { + "epoch": 91.79236116927716, + "grad_norm": 0.5982920527458191, + "learning_rate": 4.124790619765494e-06, + "loss": 0.18475706100463868, + "step": 274000 + }, + { + "epoch": 91.82586481279839, + "grad_norm": 0.5010756254196167, + "learning_rate": 4.108040201005025e-06, + "loss": 0.18550140380859376, + "step": 274100 + }, + { + "epoch": 91.85936845631963, + "grad_norm": 0.42886313796043396, + "learning_rate": 4.091289782244556e-06, + "loss": 0.1851121711730957, + "step": 274200 + }, + { + "epoch": 91.89287209984086, + "grad_norm": 0.6056686043739319, + "learning_rate": 4.074539363484087e-06, + "loss": 0.18567405700683592, + "step": 274300 + }, + { + "epoch": 91.92637574336209, + "grad_norm": 0.6657816171646118, + "learning_rate": 4.057788944723618e-06, + "loss": 0.185372314453125, + "step": 274400 + }, + { + "epoch": 91.95987938688333, + "grad_norm": 0.7955371737480164, + "learning_rate": 4.041038525963149e-06, + "loss": 0.18559362411499022, + "step": 274500 + }, + { + "epoch": 91.99338303040456, + "grad_norm": 0.5486671924591064, + "learning_rate": 4.024455611390285e-06, + "loss": 0.18554763793945311, + "step": 274600 + }, + { + "epoch": 92.02680291481698, + "grad_norm": 0.4851992130279541, + "learning_rate": 4.007705192629816e-06, + "loss": 0.1837984085083008, + "step": 274700 + }, + { + "epoch": 92.06030655833823, + "grad_norm": 0.6564006805419922, + "learning_rate": 3.990954773869347e-06, + "loss": 0.1828889274597168, + "step": 274800 + }, + { + "epoch": 92.09381020185945, + "grad_norm": 0.4906276762485504, + "learning_rate": 3.974204355108877e-06, + "loss": 0.18224969863891602, + "step": 274900 + }, + { + "epoch": 92.12731384538068, + "grad_norm": 0.47474029660224915, + "learning_rate": 3.957453936348409e-06, + "loss": 0.18334747314453126, + "step": 275000 + }, + { + "epoch": 92.16081748890191, + "grad_norm": 0.5322253704071045, + "learning_rate": 3.940703517587939e-06, + "loss": 0.18336933135986327, + "step": 275100 + }, + { + "epoch": 92.19432113242316, + "grad_norm": 0.6422849297523499, + "learning_rate": 3.923953098827471e-06, + "loss": 0.18472524642944335, + "step": 275200 + }, + { + "epoch": 92.22782477594438, + "grad_norm": 0.555906355381012, + "learning_rate": 3.907202680067002e-06, + "loss": 0.18407018661499022, + "step": 275300 + }, + { + "epoch": 92.26132841946561, + "grad_norm": 0.5680630207061768, + "learning_rate": 3.8904522613065325e-06, + "loss": 0.18363739013671876, + "step": 275400 + }, + { + "epoch": 92.29483206298686, + "grad_norm": 0.5128674507141113, + "learning_rate": 3.873701842546064e-06, + "loss": 0.18399686813354493, + "step": 275500 + }, + { + "epoch": 92.32833570650808, + "grad_norm": 0.6279745697975159, + "learning_rate": 3.856951423785595e-06, + "loss": 0.18378208160400392, + "step": 275600 + }, + { + "epoch": 92.36183935002931, + "grad_norm": 0.601681113243103, + "learning_rate": 3.840201005025126e-06, + "loss": 0.18319509506225587, + "step": 275700 + }, + { + "epoch": 92.39534299355054, + "grad_norm": 0.5092858672142029, + "learning_rate": 3.823450586264657e-06, + "loss": 0.18382539749145507, + "step": 275800 + }, + { + "epoch": 92.42884663707179, + "grad_norm": 0.5969312191009521, + "learning_rate": 3.8067001675041877e-06, + "loss": 0.1847224235534668, + "step": 275900 + }, + { + "epoch": 92.46235028059301, + "grad_norm": 0.49249494075775146, + "learning_rate": 3.7899497487437186e-06, + "loss": 0.18417783737182616, + "step": 276000 + }, + { + "epoch": 92.49585392411424, + "grad_norm": 0.5279737710952759, + "learning_rate": 3.77319932998325e-06, + "loss": 0.18486669540405273, + "step": 276100 + }, + { + "epoch": 92.52935756763549, + "grad_norm": 0.5199563503265381, + "learning_rate": 3.7564489112227805e-06, + "loss": 0.18549766540527343, + "step": 276200 + }, + { + "epoch": 92.56286121115672, + "grad_norm": 0.5814909934997559, + "learning_rate": 3.739698492462312e-06, + "loss": 0.18439958572387696, + "step": 276300 + }, + { + "epoch": 92.59636485467794, + "grad_norm": 0.5165287852287292, + "learning_rate": 3.7229480737018428e-06, + "loss": 0.18408321380615233, + "step": 276400 + }, + { + "epoch": 92.62986849819917, + "grad_norm": 0.47519955039024353, + "learning_rate": 3.7061976549413733e-06, + "loss": 0.18507766723632812, + "step": 276500 + }, + { + "epoch": 92.66337214172042, + "grad_norm": 0.5444027185440063, + "learning_rate": 3.6894472361809047e-06, + "loss": 0.1847231101989746, + "step": 276600 + }, + { + "epoch": 92.69687578524164, + "grad_norm": 0.46999087929725647, + "learning_rate": 3.6728643216080406e-06, + "loss": 0.18614614486694336, + "step": 276700 + }, + { + "epoch": 92.73037942876287, + "grad_norm": 0.8311703205108643, + "learning_rate": 3.6561139028475715e-06, + "loss": 0.18451465606689454, + "step": 276800 + }, + { + "epoch": 92.76388307228412, + "grad_norm": 0.5036934614181519, + "learning_rate": 3.639363484087102e-06, + "loss": 0.18498050689697265, + "step": 276900 + }, + { + "epoch": 92.79738671580535, + "grad_norm": 0.7324947714805603, + "learning_rate": 3.6226130653266334e-06, + "loss": 0.184973087310791, + "step": 277000 + }, + { + "epoch": 92.83089035932657, + "grad_norm": 0.4393749535083771, + "learning_rate": 3.6058626465661647e-06, + "loss": 0.1858364486694336, + "step": 277100 + }, + { + "epoch": 92.8643940028478, + "grad_norm": 0.6435522437095642, + "learning_rate": 3.5891122278056953e-06, + "loss": 0.18547016143798828, + "step": 277200 + }, + { + "epoch": 92.89789764636905, + "grad_norm": 0.4739900529384613, + "learning_rate": 3.572361809045226e-06, + "loss": 0.18432489395141602, + "step": 277300 + }, + { + "epoch": 92.93140128989027, + "grad_norm": 0.5389711856842041, + "learning_rate": 3.555611390284757e-06, + "loss": 0.18447877883911132, + "step": 277400 + }, + { + "epoch": 92.9649049334115, + "grad_norm": 0.5507364869117737, + "learning_rate": 3.538860971524288e-06, + "loss": 0.18475034713745117, + "step": 277500 + }, + { + "epoch": 92.99840857693275, + "grad_norm": 0.6159628629684448, + "learning_rate": 3.5221105527638194e-06, + "loss": 0.18557378768920899, + "step": 277600 + }, + { + "epoch": 93.03182846134517, + "grad_norm": 0.555902361869812, + "learning_rate": 3.50536013400335e-06, + "loss": 0.18302148818969727, + "step": 277700 + }, + { + "epoch": 93.0653321048664, + "grad_norm": 0.6510830521583557, + "learning_rate": 3.4886097152428813e-06, + "loss": 0.18316720962524413, + "step": 277800 + }, + { + "epoch": 93.09883574838764, + "grad_norm": 0.5541417598724365, + "learning_rate": 3.4718592964824123e-06, + "loss": 0.18269014358520508, + "step": 277900 + }, + { + "epoch": 93.13233939190887, + "grad_norm": 0.5546096563339233, + "learning_rate": 3.455108877721943e-06, + "loss": 0.18281387329101562, + "step": 278000 + }, + { + "epoch": 93.1658430354301, + "grad_norm": 0.5906556248664856, + "learning_rate": 3.438358458961474e-06, + "loss": 0.18238527297973633, + "step": 278100 + }, + { + "epoch": 93.19934667895133, + "grad_norm": 0.5291375517845154, + "learning_rate": 3.4216080402010055e-06, + "loss": 0.18321968078613282, + "step": 278200 + }, + { + "epoch": 93.23285032247257, + "grad_norm": 0.49932029843330383, + "learning_rate": 3.404857621440536e-06, + "loss": 0.18250431060791017, + "step": 278300 + }, + { + "epoch": 93.2663539659938, + "grad_norm": 0.5344804525375366, + "learning_rate": 3.3881072026800674e-06, + "loss": 0.18370258331298828, + "step": 278400 + }, + { + "epoch": 93.29985760951503, + "grad_norm": 0.547133207321167, + "learning_rate": 3.371356783919598e-06, + "loss": 0.18311479568481445, + "step": 278500 + }, + { + "epoch": 93.33336125303627, + "grad_norm": 0.6846116185188293, + "learning_rate": 3.354606365159129e-06, + "loss": 0.18370712280273438, + "step": 278600 + }, + { + "epoch": 93.3668648965575, + "grad_norm": 0.5736503005027771, + "learning_rate": 3.33785594639866e-06, + "loss": 0.18427995681762696, + "step": 278700 + }, + { + "epoch": 93.40036854007873, + "grad_norm": 0.5363325476646423, + "learning_rate": 3.321273031825796e-06, + "loss": 0.18477426528930663, + "step": 278800 + }, + { + "epoch": 93.43387218359997, + "grad_norm": 0.5641268491744995, + "learning_rate": 3.3045226130653266e-06, + "loss": 0.18418367385864257, + "step": 278900 + }, + { + "epoch": 93.4673758271212, + "grad_norm": 0.5597323179244995, + "learning_rate": 3.2877721943048576e-06, + "loss": 0.18357982635498046, + "step": 279000 + }, + { + "epoch": 93.50087947064243, + "grad_norm": 0.5814647078514099, + "learning_rate": 3.271021775544389e-06, + "loss": 0.18340383529663085, + "step": 279100 + }, + { + "epoch": 93.53438311416366, + "grad_norm": 0.6923455595970154, + "learning_rate": 3.2542713567839194e-06, + "loss": 0.18384368896484374, + "step": 279200 + }, + { + "epoch": 93.5678867576849, + "grad_norm": 0.5960889458656311, + "learning_rate": 3.237520938023451e-06, + "loss": 0.18405187606811524, + "step": 279300 + }, + { + "epoch": 93.60139040120613, + "grad_norm": 0.4457511305809021, + "learning_rate": 3.2207705192629817e-06, + "loss": 0.1838911247253418, + "step": 279400 + }, + { + "epoch": 93.63489404472736, + "grad_norm": 0.5525141954421997, + "learning_rate": 3.2040201005025127e-06, + "loss": 0.18411317825317383, + "step": 279500 + }, + { + "epoch": 93.6683976882486, + "grad_norm": 0.4308946430683136, + "learning_rate": 3.1872696817420436e-06, + "loss": 0.18421003341674805, + "step": 279600 + }, + { + "epoch": 93.70190133176983, + "grad_norm": 0.4606753885746002, + "learning_rate": 3.170519262981575e-06, + "loss": 0.1856534194946289, + "step": 279700 + }, + { + "epoch": 93.73540497529106, + "grad_norm": 0.5044844150543213, + "learning_rate": 3.1537688442211055e-06, + "loss": 0.1849703598022461, + "step": 279800 + }, + { + "epoch": 93.76890861881229, + "grad_norm": 0.5462206602096558, + "learning_rate": 3.137018425460637e-06, + "loss": 0.18439491271972655, + "step": 279900 + }, + { + "epoch": 93.80241226233353, + "grad_norm": 0.6235095262527466, + "learning_rate": 3.120268006700168e-06, + "loss": 0.18433120727539062, + "step": 280000 + }, + { + "epoch": 93.83591590585476, + "grad_norm": 0.49713248014450073, + "learning_rate": 3.1035175879396987e-06, + "loss": 0.18527395248413087, + "step": 280100 + }, + { + "epoch": 93.86941954937599, + "grad_norm": 0.43499988317489624, + "learning_rate": 3.0867671691792297e-06, + "loss": 0.1845208740234375, + "step": 280200 + }, + { + "epoch": 93.90292319289723, + "grad_norm": 0.5285036563873291, + "learning_rate": 3.0700167504187606e-06, + "loss": 0.1845704460144043, + "step": 280300 + }, + { + "epoch": 93.93642683641846, + "grad_norm": 0.7002624869346619, + "learning_rate": 3.0532663316582916e-06, + "loss": 0.18544256210327148, + "step": 280400 + }, + { + "epoch": 93.96993047993969, + "grad_norm": 0.5086694955825806, + "learning_rate": 3.0365159128978225e-06, + "loss": 0.18481266021728515, + "step": 280500 + }, + { + "epoch": 94.00335036435213, + "grad_norm": 0.541530966758728, + "learning_rate": 3.019765494137354e-06, + "loss": 0.18497087478637694, + "step": 280600 + }, + { + "epoch": 94.03685400787336, + "grad_norm": 0.5113808512687683, + "learning_rate": 3.0030150753768844e-06, + "loss": 0.1830722427368164, + "step": 280700 + }, + { + "epoch": 94.07035765139459, + "grad_norm": 0.578902542591095, + "learning_rate": 2.9864321608040203e-06, + "loss": 0.1829450798034668, + "step": 280800 + }, + { + "epoch": 94.10386129491582, + "grad_norm": 0.47617286443710327, + "learning_rate": 2.9696817420435512e-06, + "loss": 0.18288434982299806, + "step": 280900 + }, + { + "epoch": 94.13736493843706, + "grad_norm": 0.5248568654060364, + "learning_rate": 2.952931323283082e-06, + "loss": 0.18265800476074218, + "step": 281000 + }, + { + "epoch": 94.17086858195829, + "grad_norm": 0.5427269339561462, + "learning_rate": 2.936180904522613e-06, + "loss": 0.1820301628112793, + "step": 281100 + }, + { + "epoch": 94.20437222547952, + "grad_norm": 0.5137001276016235, + "learning_rate": 2.919430485762144e-06, + "loss": 0.18303417205810546, + "step": 281200 + }, + { + "epoch": 94.23787586900076, + "grad_norm": 0.5321929454803467, + "learning_rate": 2.902680067001675e-06, + "loss": 0.1835261344909668, + "step": 281300 + }, + { + "epoch": 94.27137951252199, + "grad_norm": 0.4833122491836548, + "learning_rate": 2.8859296482412063e-06, + "loss": 0.18361148834228516, + "step": 281400 + }, + { + "epoch": 94.30488315604322, + "grad_norm": 0.6427774429321289, + "learning_rate": 2.8691792294807373e-06, + "loss": 0.18336435317993163, + "step": 281500 + }, + { + "epoch": 94.33838679956445, + "grad_norm": 0.45124322175979614, + "learning_rate": 2.8524288107202682e-06, + "loss": 0.1830876350402832, + "step": 281600 + }, + { + "epoch": 94.37189044308569, + "grad_norm": 0.5530322194099426, + "learning_rate": 2.835678391959799e-06, + "loss": 0.18310989379882814, + "step": 281700 + }, + { + "epoch": 94.40539408660692, + "grad_norm": 0.4179496169090271, + "learning_rate": 2.81892797319933e-06, + "loss": 0.18375337600708008, + "step": 281800 + }, + { + "epoch": 94.43889773012815, + "grad_norm": 0.5519108772277832, + "learning_rate": 2.802177554438861e-06, + "loss": 0.1845833969116211, + "step": 281900 + }, + { + "epoch": 94.47240137364939, + "grad_norm": 0.5219084620475769, + "learning_rate": 2.785427135678392e-06, + "loss": 0.18406974792480468, + "step": 282000 + }, + { + "epoch": 94.50590501717062, + "grad_norm": 0.6132789850234985, + "learning_rate": 2.7686767169179233e-06, + "loss": 0.18442945480346679, + "step": 282100 + }, + { + "epoch": 94.53940866069185, + "grad_norm": 0.5181702971458435, + "learning_rate": 2.7519262981574543e-06, + "loss": 0.1834421730041504, + "step": 282200 + }, + { + "epoch": 94.57291230421308, + "grad_norm": 0.549511194229126, + "learning_rate": 2.735175879396985e-06, + "loss": 0.18456022262573243, + "step": 282300 + }, + { + "epoch": 94.60641594773432, + "grad_norm": 0.5756514072418213, + "learning_rate": 2.7184254606365157e-06, + "loss": 0.1831919479370117, + "step": 282400 + }, + { + "epoch": 94.63991959125555, + "grad_norm": 0.5692307949066162, + "learning_rate": 2.701675041876047e-06, + "loss": 0.18358297348022462, + "step": 282500 + }, + { + "epoch": 94.67342323477678, + "grad_norm": 0.6947788596153259, + "learning_rate": 2.684924623115578e-06, + "loss": 0.1838298225402832, + "step": 282600 + }, + { + "epoch": 94.70692687829802, + "grad_norm": 0.5112714767456055, + "learning_rate": 2.668174204355109e-06, + "loss": 0.18363580703735352, + "step": 282700 + }, + { + "epoch": 94.74043052181925, + "grad_norm": 0.6610069274902344, + "learning_rate": 2.6515912897822445e-06, + "loss": 0.184285888671875, + "step": 282800 + }, + { + "epoch": 94.77393416534048, + "grad_norm": 0.5555760860443115, + "learning_rate": 2.634840871021776e-06, + "loss": 0.18415529251098633, + "step": 282900 + }, + { + "epoch": 94.8074378088617, + "grad_norm": 0.6111050844192505, + "learning_rate": 2.6180904522613068e-06, + "loss": 0.18409820556640624, + "step": 283000 + }, + { + "epoch": 94.84094145238295, + "grad_norm": 0.5163633227348328, + "learning_rate": 2.6013400335008377e-06, + "loss": 0.18490222930908204, + "step": 283100 + }, + { + "epoch": 94.87444509590418, + "grad_norm": 0.5600749254226685, + "learning_rate": 2.5845896147403686e-06, + "loss": 0.18375289916992188, + "step": 283200 + }, + { + "epoch": 94.90794873942541, + "grad_norm": 0.49500954151153564, + "learning_rate": 2.5678391959798996e-06, + "loss": 0.18480894088745117, + "step": 283300 + }, + { + "epoch": 94.94145238294665, + "grad_norm": 0.5733513236045837, + "learning_rate": 2.5510887772194305e-06, + "loss": 0.1837126922607422, + "step": 283400 + }, + { + "epoch": 94.97495602646788, + "grad_norm": 0.549117386341095, + "learning_rate": 2.5343383584589615e-06, + "loss": 0.18447158813476563, + "step": 283500 + }, + { + "epoch": 95.0083759108803, + "grad_norm": 0.4763764441013336, + "learning_rate": 2.517587939698493e-06, + "loss": 0.18384462356567383, + "step": 283600 + }, + { + "epoch": 95.04187955440155, + "grad_norm": 0.5236153602600098, + "learning_rate": 2.5008375209380238e-06, + "loss": 0.18261993408203125, + "step": 283700 + }, + { + "epoch": 95.07538319792278, + "grad_norm": 0.4592667818069458, + "learning_rate": 2.4840871021775543e-06, + "loss": 0.18320878982543945, + "step": 283800 + }, + { + "epoch": 95.108886841444, + "grad_norm": 0.506898820400238, + "learning_rate": 2.4673366834170852e-06, + "loss": 0.18264638900756835, + "step": 283900 + }, + { + "epoch": 95.14239048496523, + "grad_norm": 0.619023859500885, + "learning_rate": 2.4505862646566166e-06, + "loss": 0.18314945220947265, + "step": 284000 + }, + { + "epoch": 95.17589412848648, + "grad_norm": 0.48291823267936707, + "learning_rate": 2.4338358458961475e-06, + "loss": 0.18282480239868165, + "step": 284100 + }, + { + "epoch": 95.2093977720077, + "grad_norm": 0.48036035895347595, + "learning_rate": 2.4170854271356785e-06, + "loss": 0.1841721534729004, + "step": 284200 + }, + { + "epoch": 95.24290141552893, + "grad_norm": 0.5450857877731323, + "learning_rate": 2.40033500837521e-06, + "loss": 0.18397005081176757, + "step": 284300 + }, + { + "epoch": 95.27640505905018, + "grad_norm": 0.47729921340942383, + "learning_rate": 2.3835845896147403e-06, + "loss": 0.18345026016235352, + "step": 284400 + }, + { + "epoch": 95.3099087025714, + "grad_norm": 0.6052916646003723, + "learning_rate": 2.3668341708542713e-06, + "loss": 0.1844022560119629, + "step": 284500 + }, + { + "epoch": 95.34341234609263, + "grad_norm": 0.5513006448745728, + "learning_rate": 2.3500837520938022e-06, + "loss": 0.1827683639526367, + "step": 284600 + }, + { + "epoch": 95.37691598961388, + "grad_norm": 0.48488298058509827, + "learning_rate": 2.3333333333333336e-06, + "loss": 0.1831340026855469, + "step": 284700 + }, + { + "epoch": 95.4104196331351, + "grad_norm": 0.5309977531433105, + "learning_rate": 2.316750418760469e-06, + "loss": 0.18309810638427734, + "step": 284800 + }, + { + "epoch": 95.44392327665634, + "grad_norm": 0.43957263231277466, + "learning_rate": 2.3e-06, + "loss": 0.1831692123413086, + "step": 284900 + }, + { + "epoch": 95.47742692017756, + "grad_norm": 0.5356688499450684, + "learning_rate": 2.283249581239531e-06, + "loss": 0.18342973709106444, + "step": 285000 + }, + { + "epoch": 95.5109305636988, + "grad_norm": 0.5657954812049866, + "learning_rate": 2.2664991624790623e-06, + "loss": 0.18340103149414064, + "step": 285100 + }, + { + "epoch": 95.54443420722004, + "grad_norm": 0.5092414617538452, + "learning_rate": 2.2497487437185932e-06, + "loss": 0.18338417053222655, + "step": 285200 + }, + { + "epoch": 95.57793785074126, + "grad_norm": 0.4153210520744324, + "learning_rate": 2.232998324958124e-06, + "loss": 0.1836545181274414, + "step": 285300 + }, + { + "epoch": 95.61144149426251, + "grad_norm": 0.5015280842781067, + "learning_rate": 2.2162479061976547e-06, + "loss": 0.1827981948852539, + "step": 285400 + }, + { + "epoch": 95.64494513778374, + "grad_norm": 0.7179563641548157, + "learning_rate": 2.199497487437186e-06, + "loss": 0.18311439514160155, + "step": 285500 + }, + { + "epoch": 95.67844878130497, + "grad_norm": 0.5288705825805664, + "learning_rate": 2.182747068676717e-06, + "loss": 0.18439481735229493, + "step": 285600 + }, + { + "epoch": 95.7119524248262, + "grad_norm": 0.5110313296318054, + "learning_rate": 2.165996649916248e-06, + "loss": 0.18332534790039062, + "step": 285700 + }, + { + "epoch": 95.74545606834744, + "grad_norm": 0.5360533595085144, + "learning_rate": 2.1492462311557793e-06, + "loss": 0.18395133972167968, + "step": 285800 + }, + { + "epoch": 95.77895971186867, + "grad_norm": 0.534217894077301, + "learning_rate": 2.13249581239531e-06, + "loss": 0.18385652542114259, + "step": 285900 + }, + { + "epoch": 95.8124633553899, + "grad_norm": 0.6536206007003784, + "learning_rate": 2.1157453936348408e-06, + "loss": 0.18364360809326172, + "step": 286000 + }, + { + "epoch": 95.84596699891114, + "grad_norm": 0.5675894618034363, + "learning_rate": 2.0989949748743717e-06, + "loss": 0.18334434509277345, + "step": 286100 + }, + { + "epoch": 95.87947064243237, + "grad_norm": 0.5131775736808777, + "learning_rate": 2.082244556113903e-06, + "loss": 0.18401821136474608, + "step": 286200 + }, + { + "epoch": 95.9129742859536, + "grad_norm": 0.4480537176132202, + "learning_rate": 2.065494137353434e-06, + "loss": 0.18490314483642578, + "step": 286300 + }, + { + "epoch": 95.94647792947482, + "grad_norm": 0.566072404384613, + "learning_rate": 2.048743718592965e-06, + "loss": 0.18334156036376953, + "step": 286400 + }, + { + "epoch": 95.97998157299607, + "grad_norm": 0.5423669815063477, + "learning_rate": 2.031993299832496e-06, + "loss": 0.18419130325317382, + "step": 286500 + }, + { + "epoch": 96.01340145740849, + "grad_norm": 0.5609968900680542, + "learning_rate": 2.015242881072027e-06, + "loss": 0.18358615875244141, + "step": 286600 + }, + { + "epoch": 96.04690510092972, + "grad_norm": 0.4528324604034424, + "learning_rate": 1.9984924623115578e-06, + "loss": 0.18235225677490235, + "step": 286700 + }, + { + "epoch": 96.08040874445096, + "grad_norm": 0.4424758851528168, + "learning_rate": 1.9817420435510887e-06, + "loss": 0.18314834594726562, + "step": 286800 + }, + { + "epoch": 96.11391238797219, + "grad_norm": 0.5286248922348022, + "learning_rate": 1.965159128978224e-06, + "loss": 0.18267539978027345, + "step": 286900 + }, + { + "epoch": 96.14741603149342, + "grad_norm": 0.44464874267578125, + "learning_rate": 1.9484087102177555e-06, + "loss": 0.18318920135498046, + "step": 287000 + }, + { + "epoch": 96.18091967501466, + "grad_norm": 0.5130648016929626, + "learning_rate": 1.9316582914572865e-06, + "loss": 0.18308115005493164, + "step": 287100 + }, + { + "epoch": 96.21442331853589, + "grad_norm": 0.8183990120887756, + "learning_rate": 1.9149078726968174e-06, + "loss": 0.1834044075012207, + "step": 287200 + }, + { + "epoch": 96.24792696205712, + "grad_norm": 0.5199669599533081, + "learning_rate": 1.8981574539363486e-06, + "loss": 0.18283458709716796, + "step": 287300 + }, + { + "epoch": 96.28143060557835, + "grad_norm": 0.4842471778392792, + "learning_rate": 1.8814070351758795e-06, + "loss": 0.18268014907836913, + "step": 287400 + }, + { + "epoch": 96.3149342490996, + "grad_norm": 0.6083213686943054, + "learning_rate": 1.8646566164154105e-06, + "loss": 0.18216041564941407, + "step": 287500 + }, + { + "epoch": 96.34843789262082, + "grad_norm": 0.46411433815956116, + "learning_rate": 1.8479061976549414e-06, + "loss": 0.18271490097045898, + "step": 287600 + }, + { + "epoch": 96.38194153614205, + "grad_norm": 0.5906765460968018, + "learning_rate": 1.8311557788944725e-06, + "loss": 0.18355520248413085, + "step": 287700 + }, + { + "epoch": 96.4154451796633, + "grad_norm": 0.6398022174835205, + "learning_rate": 1.8144053601340035e-06, + "loss": 0.18388975143432618, + "step": 287800 + }, + { + "epoch": 96.44894882318452, + "grad_norm": 0.5343595147132874, + "learning_rate": 1.7976549413735344e-06, + "loss": 0.1829561996459961, + "step": 287900 + }, + { + "epoch": 96.48245246670575, + "grad_norm": 0.5307978987693787, + "learning_rate": 1.7809045226130656e-06, + "loss": 0.1831664276123047, + "step": 288000 + }, + { + "epoch": 96.51595611022698, + "grad_norm": 0.42967861890792847, + "learning_rate": 1.7641541038525965e-06, + "loss": 0.18227174758911133, + "step": 288100 + }, + { + "epoch": 96.54945975374822, + "grad_norm": 0.5349688529968262, + "learning_rate": 1.7474036850921274e-06, + "loss": 0.1833807945251465, + "step": 288200 + }, + { + "epoch": 96.58296339726945, + "grad_norm": 0.5560780167579651, + "learning_rate": 1.7306532663316582e-06, + "loss": 0.1837186622619629, + "step": 288300 + }, + { + "epoch": 96.61646704079068, + "grad_norm": 0.6274934411048889, + "learning_rate": 1.7139028475711895e-06, + "loss": 0.18322343826293946, + "step": 288400 + }, + { + "epoch": 96.64997068431192, + "grad_norm": 0.4825371503829956, + "learning_rate": 1.6971524288107205e-06, + "loss": 0.18326036453247072, + "step": 288500 + }, + { + "epoch": 96.68347432783315, + "grad_norm": 0.6797924041748047, + "learning_rate": 1.6804020100502512e-06, + "loss": 0.18284734725952148, + "step": 288600 + }, + { + "epoch": 96.71697797135438, + "grad_norm": 0.5788692235946655, + "learning_rate": 1.6636515912897821e-06, + "loss": 0.1840299606323242, + "step": 288700 + }, + { + "epoch": 96.75048161487561, + "grad_norm": 0.49273577332496643, + "learning_rate": 1.6469011725293135e-06, + "loss": 0.18266069412231445, + "step": 288800 + }, + { + "epoch": 96.78398525839685, + "grad_norm": 0.5252591967582703, + "learning_rate": 1.630318257956449e-06, + "loss": 0.1839330291748047, + "step": 288900 + }, + { + "epoch": 96.81748890191808, + "grad_norm": 0.6281270980834961, + "learning_rate": 1.61356783919598e-06, + "loss": 0.18259082794189452, + "step": 289000 + }, + { + "epoch": 96.85099254543931, + "grad_norm": 0.589600682258606, + "learning_rate": 1.5968174204355109e-06, + "loss": 0.18413593292236327, + "step": 289100 + }, + { + "epoch": 96.88449618896055, + "grad_norm": 0.52843177318573, + "learning_rate": 1.580067001675042e-06, + "loss": 0.18312227249145507, + "step": 289200 + }, + { + "epoch": 96.91799983248178, + "grad_norm": 0.5499556660652161, + "learning_rate": 1.563316582914573e-06, + "loss": 0.18327688217163085, + "step": 289300 + }, + { + "epoch": 96.95150347600301, + "grad_norm": 0.5910999178886414, + "learning_rate": 1.5465661641541041e-06, + "loss": 0.18362533569335937, + "step": 289400 + }, + { + "epoch": 96.98500711952425, + "grad_norm": 0.47498592734336853, + "learning_rate": 1.5298157453936348e-06, + "loss": 0.18386016845703124, + "step": 289500 + }, + { + "epoch": 97.01842700393668, + "grad_norm": 0.5408181548118591, + "learning_rate": 1.513065326633166e-06, + "loss": 0.18346582412719725, + "step": 289600 + }, + { + "epoch": 97.05193064745791, + "grad_norm": 0.6393353939056396, + "learning_rate": 1.496314907872697e-06, + "loss": 0.18178239822387696, + "step": 289700 + }, + { + "epoch": 97.08543429097914, + "grad_norm": 0.568048894405365, + "learning_rate": 1.4795644891122279e-06, + "loss": 0.1829755973815918, + "step": 289800 + }, + { + "epoch": 97.11893793450038, + "grad_norm": 0.4984806776046753, + "learning_rate": 1.4628140703517588e-06, + "loss": 0.1820225715637207, + "step": 289900 + }, + { + "epoch": 97.15244157802161, + "grad_norm": 0.4840709865093231, + "learning_rate": 1.44606365159129e-06, + "loss": 0.18249683380126952, + "step": 290000 + }, + { + "epoch": 97.18594522154284, + "grad_norm": 0.5016071200370789, + "learning_rate": 1.4293132328308207e-06, + "loss": 0.18231712341308592, + "step": 290100 + }, + { + "epoch": 97.21944886506408, + "grad_norm": 0.6901659965515137, + "learning_rate": 1.4125628140703518e-06, + "loss": 0.18322145462036132, + "step": 290200 + }, + { + "epoch": 97.25295250858531, + "grad_norm": 0.4563469886779785, + "learning_rate": 1.3958123953098828e-06, + "loss": 0.18245380401611327, + "step": 290300 + }, + { + "epoch": 97.28645615210654, + "grad_norm": 0.6341580152511597, + "learning_rate": 1.3790619765494137e-06, + "loss": 0.18248394012451172, + "step": 290400 + }, + { + "epoch": 97.31995979562778, + "grad_norm": 0.681046187877655, + "learning_rate": 1.3623115577889449e-06, + "loss": 0.18289484024047853, + "step": 290500 + }, + { + "epoch": 97.35346343914901, + "grad_norm": 0.5641540884971619, + "learning_rate": 1.3455611390284758e-06, + "loss": 0.18241430282592774, + "step": 290600 + }, + { + "epoch": 97.38696708267024, + "grad_norm": 0.46917444467544556, + "learning_rate": 1.3288107202680067e-06, + "loss": 0.18300029754638672, + "step": 290700 + }, + { + "epoch": 97.42047072619147, + "grad_norm": 0.5886017084121704, + "learning_rate": 1.3120603015075377e-06, + "loss": 0.18347707748413086, + "step": 290800 + }, + { + "epoch": 97.45397436971271, + "grad_norm": 0.5818371772766113, + "learning_rate": 1.2954773869346736e-06, + "loss": 0.1830360221862793, + "step": 290900 + }, + { + "epoch": 97.48747801323394, + "grad_norm": 0.5439379215240479, + "learning_rate": 1.2787269681742043e-06, + "loss": 0.18396745681762694, + "step": 291000 + }, + { + "epoch": 97.52098165675517, + "grad_norm": 0.5070674419403076, + "learning_rate": 1.2619765494137355e-06, + "loss": 0.1832095718383789, + "step": 291100 + }, + { + "epoch": 97.55448530027641, + "grad_norm": 0.4415448307991028, + "learning_rate": 1.2452261306532664e-06, + "loss": 0.18289644241333008, + "step": 291200 + }, + { + "epoch": 97.58798894379764, + "grad_norm": 0.4324808418750763, + "learning_rate": 1.2284757118927973e-06, + "loss": 0.18389009475708007, + "step": 291300 + }, + { + "epoch": 97.62149258731887, + "grad_norm": 0.653737485408783, + "learning_rate": 1.2117252931323283e-06, + "loss": 0.1822391700744629, + "step": 291400 + }, + { + "epoch": 97.6549962308401, + "grad_norm": 0.5741151571273804, + "learning_rate": 1.1949748743718594e-06, + "loss": 0.18301633834838868, + "step": 291500 + }, + { + "epoch": 97.68849987436134, + "grad_norm": 0.526233971118927, + "learning_rate": 1.1782244556113904e-06, + "loss": 0.18326601028442382, + "step": 291600 + }, + { + "epoch": 97.72200351788257, + "grad_norm": 0.4789596498012543, + "learning_rate": 1.1614740368509213e-06, + "loss": 0.18228565216064452, + "step": 291700 + }, + { + "epoch": 97.7555071614038, + "grad_norm": 0.711111307144165, + "learning_rate": 1.1447236180904523e-06, + "loss": 0.18288152694702148, + "step": 291800 + }, + { + "epoch": 97.78901080492504, + "grad_norm": 0.5140437483787537, + "learning_rate": 1.1279731993299832e-06, + "loss": 0.18254825592041016, + "step": 291900 + }, + { + "epoch": 97.82251444844627, + "grad_norm": 0.47034555673599243, + "learning_rate": 1.1112227805695143e-06, + "loss": 0.18244110107421874, + "step": 292000 + }, + { + "epoch": 97.8560180919675, + "grad_norm": 0.5814681053161621, + "learning_rate": 1.0944723618090453e-06, + "loss": 0.1832912254333496, + "step": 292100 + }, + { + "epoch": 97.88952173548873, + "grad_norm": 0.5516090393066406, + "learning_rate": 1.0777219430485762e-06, + "loss": 0.18352859497070312, + "step": 292200 + }, + { + "epoch": 97.92302537900997, + "grad_norm": 0.5123777985572815, + "learning_rate": 1.0609715242881072e-06, + "loss": 0.18379606246948244, + "step": 292300 + }, + { + "epoch": 97.9565290225312, + "grad_norm": 0.6835401654243469, + "learning_rate": 1.0442211055276383e-06, + "loss": 0.18410768508911132, + "step": 292400 + }, + { + "epoch": 97.99003266605243, + "grad_norm": 0.5012428760528564, + "learning_rate": 1.0274706867671693e-06, + "loss": 0.18317014694213868, + "step": 292500 + }, + { + "epoch": 98.02345255046487, + "grad_norm": 0.4708642065525055, + "learning_rate": 1.0107202680067002e-06, + "loss": 0.18331142425537109, + "step": 292600 + }, + { + "epoch": 98.0569561939861, + "grad_norm": 0.5567511320114136, + "learning_rate": 9.939698492462311e-07, + "loss": 0.18246702194213868, + "step": 292700 + }, + { + "epoch": 98.09045983750732, + "grad_norm": 0.7058369517326355, + "learning_rate": 9.772194304857623e-07, + "loss": 0.18259771347045897, + "step": 292800 + }, + { + "epoch": 98.12396348102857, + "grad_norm": 0.6134818196296692, + "learning_rate": 9.604690117252932e-07, + "loss": 0.1822067070007324, + "step": 292900 + }, + { + "epoch": 98.1574671245498, + "grad_norm": 0.4781286418437958, + "learning_rate": 9.438860971524289e-07, + "loss": 0.18297542572021486, + "step": 293000 + }, + { + "epoch": 98.19097076807103, + "grad_norm": 0.49279746413230896, + "learning_rate": 9.271356783919598e-07, + "loss": 0.18277181625366212, + "step": 293100 + }, + { + "epoch": 98.22447441159225, + "grad_norm": 0.5490056276321411, + "learning_rate": 9.103852596314908e-07, + "loss": 0.1828497314453125, + "step": 293200 + }, + { + "epoch": 98.2579780551135, + "grad_norm": 0.6629262566566467, + "learning_rate": 8.936348408710217e-07, + "loss": 0.1831769371032715, + "step": 293300 + }, + { + "epoch": 98.29148169863473, + "grad_norm": 0.6081374883651733, + "learning_rate": 8.768844221105528e-07, + "loss": 0.18234825134277344, + "step": 293400 + }, + { + "epoch": 98.32498534215595, + "grad_norm": 0.5573914051055908, + "learning_rate": 8.601340033500838e-07, + "loss": 0.18284347534179687, + "step": 293500 + }, + { + "epoch": 98.3584889856772, + "grad_norm": 0.4881286025047302, + "learning_rate": 8.433835845896148e-07, + "loss": 0.18250568389892577, + "step": 293600 + }, + { + "epoch": 98.39199262919843, + "grad_norm": 0.5479198694229126, + "learning_rate": 8.266331658291458e-07, + "loss": 0.1822296905517578, + "step": 293700 + }, + { + "epoch": 98.42549627271966, + "grad_norm": 0.48754844069480896, + "learning_rate": 8.098827470686768e-07, + "loss": 0.1824342918395996, + "step": 293800 + }, + { + "epoch": 98.45899991624088, + "grad_norm": 0.5909836292266846, + "learning_rate": 7.931323283082078e-07, + "loss": 0.18264894485473632, + "step": 293900 + }, + { + "epoch": 98.49250355976213, + "grad_norm": 0.6499689817428589, + "learning_rate": 7.763819095477387e-07, + "loss": 0.1826353645324707, + "step": 294000 + }, + { + "epoch": 98.52600720328336, + "grad_norm": 0.5792352557182312, + "learning_rate": 7.596314907872698e-07, + "loss": 0.18250282287597655, + "step": 294100 + }, + { + "epoch": 98.55951084680459, + "grad_norm": 0.6496483087539673, + "learning_rate": 7.428810720268007e-07, + "loss": 0.18278635025024415, + "step": 294200 + }, + { + "epoch": 98.59301449032583, + "grad_norm": 0.5034297704696655, + "learning_rate": 7.261306532663317e-07, + "loss": 0.18362100601196288, + "step": 294300 + }, + { + "epoch": 98.62651813384706, + "grad_norm": 0.4216485917568207, + "learning_rate": 7.093802345058627e-07, + "loss": 0.18190402984619142, + "step": 294400 + }, + { + "epoch": 98.66002177736829, + "grad_norm": 0.4336554706096649, + "learning_rate": 6.926298157453936e-07, + "loss": 0.18188596725463868, + "step": 294500 + }, + { + "epoch": 98.69352542088953, + "grad_norm": 0.557890772819519, + "learning_rate": 6.758793969849246e-07, + "loss": 0.1827729797363281, + "step": 294600 + }, + { + "epoch": 98.72702906441076, + "grad_norm": 0.5158662796020508, + "learning_rate": 6.591289782244556e-07, + "loss": 0.18270872116088868, + "step": 294700 + }, + { + "epoch": 98.76053270793199, + "grad_norm": 0.5574226975440979, + "learning_rate": 6.423785594639867e-07, + "loss": 0.18279212951660156, + "step": 294800 + }, + { + "epoch": 98.79403635145322, + "grad_norm": 0.6103866696357727, + "learning_rate": 6.256281407035176e-07, + "loss": 0.18242774963378905, + "step": 294900 + }, + { + "epoch": 98.82753999497446, + "grad_norm": 0.6679960489273071, + "learning_rate": 6.088777219430487e-07, + "loss": 0.18265195846557616, + "step": 295000 + }, + { + "epoch": 98.86104363849569, + "grad_norm": 0.5146142244338989, + "learning_rate": 5.922948073701842e-07, + "loss": 0.1826561737060547, + "step": 295100 + }, + { + "epoch": 98.89454728201692, + "grad_norm": 0.4862828850746155, + "learning_rate": 5.755443886097152e-07, + "loss": 0.1830119514465332, + "step": 295200 + }, + { + "epoch": 98.92805092553816, + "grad_norm": 0.5384283661842346, + "learning_rate": 5.587939698492462e-07, + "loss": 0.18346889495849608, + "step": 295300 + }, + { + "epoch": 98.96155456905939, + "grad_norm": 0.5220957398414612, + "learning_rate": 5.420435510887773e-07, + "loss": 0.18368080139160156, + "step": 295400 + }, + { + "epoch": 98.99505821258062, + "grad_norm": 0.4835510849952698, + "learning_rate": 5.252931323283082e-07, + "loss": 0.1819740867614746, + "step": 295500 + }, + { + "epoch": 99.02847809699304, + "grad_norm": 0.599375307559967, + "learning_rate": 5.085427135678393e-07, + "loss": 0.18192974090576172, + "step": 295600 + }, + { + "epoch": 99.06198174051428, + "grad_norm": 0.7051849365234375, + "learning_rate": 4.917922948073702e-07, + "loss": 0.1823443603515625, + "step": 295700 + }, + { + "epoch": 99.09548538403551, + "grad_norm": 0.503696858882904, + "learning_rate": 4.750418760469012e-07, + "loss": 0.18231864929199218, + "step": 295800 + }, + { + "epoch": 99.12898902755674, + "grad_norm": 0.48068055510520935, + "learning_rate": 4.582914572864322e-07, + "loss": 0.1825026512145996, + "step": 295900 + }, + { + "epoch": 99.16249267107798, + "grad_norm": 0.5054277777671814, + "learning_rate": 4.415410385259632e-07, + "loss": 0.18171930313110352, + "step": 296000 + }, + { + "epoch": 99.19599631459921, + "grad_norm": 0.4834759831428528, + "learning_rate": 4.247906197654941e-07, + "loss": 0.18209936141967772, + "step": 296100 + }, + { + "epoch": 99.22949995812044, + "grad_norm": 0.5204523205757141, + "learning_rate": 4.080402010050251e-07, + "loss": 0.18290546417236328, + "step": 296200 + }, + { + "epoch": 99.26300360164169, + "grad_norm": 0.4851609766483307, + "learning_rate": 3.9128978224455616e-07, + "loss": 0.18262216567993164, + "step": 296300 + }, + { + "epoch": 99.29650724516291, + "grad_norm": 0.506882905960083, + "learning_rate": 3.745393634840871e-07, + "loss": 0.18311552047729493, + "step": 296400 + }, + { + "epoch": 99.33001088868414, + "grad_norm": 0.4979182183742523, + "learning_rate": 3.577889447236181e-07, + "loss": 0.18193258285522462, + "step": 296500 + }, + { + "epoch": 99.36351453220537, + "grad_norm": 0.41721171140670776, + "learning_rate": 3.4103852596314913e-07, + "loss": 0.18166379928588866, + "step": 296600 + }, + { + "epoch": 99.39701817572661, + "grad_norm": 0.5125341415405273, + "learning_rate": 3.2428810720268007e-07, + "loss": 0.1818573760986328, + "step": 296700 + }, + { + "epoch": 99.43052181924784, + "grad_norm": 0.5992101430892944, + "learning_rate": 3.0753768844221106e-07, + "loss": 0.1827593421936035, + "step": 296800 + }, + { + "epoch": 99.46402546276907, + "grad_norm": 0.551201343536377, + "learning_rate": 2.9078726968174206e-07, + "loss": 0.18226703643798828, + "step": 296900 + }, + { + "epoch": 99.49752910629032, + "grad_norm": 0.4715881645679474, + "learning_rate": 2.7403685092127305e-07, + "loss": 0.18271636962890625, + "step": 297000 + }, + { + "epoch": 99.53103274981154, + "grad_norm": 0.48507949709892273, + "learning_rate": 2.5728643216080404e-07, + "loss": 0.18286649703979493, + "step": 297100 + }, + { + "epoch": 99.56453639333277, + "grad_norm": 0.5795986652374268, + "learning_rate": 2.4070351758793973e-07, + "loss": 0.18219593048095703, + "step": 297200 + }, + { + "epoch": 99.598040036854, + "grad_norm": 0.4794217646121979, + "learning_rate": 2.239530988274707e-07, + "loss": 0.18355159759521483, + "step": 297300 + }, + { + "epoch": 99.63154368037524, + "grad_norm": 0.5386576056480408, + "learning_rate": 2.0720268006700167e-07, + "loss": 0.1827494430541992, + "step": 297400 + }, + { + "epoch": 99.66504732389647, + "grad_norm": 0.5734672546386719, + "learning_rate": 1.9045226130653268e-07, + "loss": 0.18233570098876953, + "step": 297500 + }, + { + "epoch": 99.6985509674177, + "grad_norm": 0.49709200859069824, + "learning_rate": 1.7370184254606365e-07, + "loss": 0.18292242050170898, + "step": 297600 + }, + { + "epoch": 99.73205461093895, + "grad_norm": 0.46515047550201416, + "learning_rate": 1.5695142378559464e-07, + "loss": 0.18247623443603517, + "step": 297700 + }, + { + "epoch": 99.76555825446017, + "grad_norm": 0.5647607445716858, + "learning_rate": 1.4020100502512564e-07, + "loss": 0.18333343505859376, + "step": 297800 + }, + { + "epoch": 99.7990618979814, + "grad_norm": 0.5439239144325256, + "learning_rate": 1.2345058626465663e-07, + "loss": 0.1823881721496582, + "step": 297900 + }, + { + "epoch": 99.83256554150263, + "grad_norm": 0.5171498656272888, + "learning_rate": 1.067001675041876e-07, + "loss": 0.18236944198608399, + "step": 298000 + }, + { + "epoch": 99.86606918502387, + "grad_norm": 0.5662410259246826, + "learning_rate": 8.99497487437186e-08, + "loss": 0.18176408767700195, + "step": 298100 + }, + { + "epoch": 99.8995728285451, + "grad_norm": 0.5604025721549988, + "learning_rate": 7.319932998324959e-08, + "loss": 0.18264013290405273, + "step": 298200 + }, + { + "epoch": 99.93307647206633, + "grad_norm": 0.47708413004875183, + "learning_rate": 5.644891122278057e-08, + "loss": 0.1830152130126953, + "step": 298300 + }, + { + "epoch": 99.96658011558758, + "grad_norm": 0.4832232594490051, + "learning_rate": 3.9698492462311556e-08, + "loss": 0.1830759811401367, + "step": 298400 + } + ], + "logging_steps": 100, + "max_steps": 298500, + "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.5105618635902157e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/training_args.bin b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..4243bd5e526d7e7d0d142ff9063a8e0096d948ea --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.0.0", + "use_cache": false, + "vocab_size": 1534 +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/generation_config.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/model.safetensors b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5de27da8ceb77c5490af7b61ce03cde0a993d426 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66976903988ad797b867d068d9a572a8c4baa88c7831fb903c1f5d47623b590e +size 177980872 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/optimizer.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..27e40bc2bf33a942b93b8a71ad142f822bf9f6b3 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06c5409261dea3508969e05cf26df2efee96e721d7b55004aec8bb2e3e6157d +size 356010827 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/rng_state.pth b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5ce542d3ff1f5d03be07fd47b5a197c1be116702 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcdb8d39506c311048b7764ac9e7312750c48d27fb64a9c2121e355680d22507 +size 14645 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/scaler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c5844f46ec2501ed70fec3338f98cfc7eccb8188 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963d758f373d9beb9182307e0d112688361b11abd75e6daf15da4e69b029254b +size 1383 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/scheduler.pt b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..17b92a6d1781d2fafaeba55fe246b63e273c5bea --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c709a73e2b5f9806b087743ab6a02ab31f7e57b7ccd8c8127198abd9296afe56 +size 1465 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/trainer_state.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4e4589fc417b0c8a98722b4743dd3eafbcc73d61 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/trainer_state.json @@ -0,0 +1,20929 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 298500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.03350364352123293, + "grad_norm": 0.8461591005325317, + "learning_rate": 4.9983417085427135e-05, + "loss": 1.800863037109375, + "step": 100 + }, + { + "epoch": 0.06700728704246586, + "grad_norm": 0.7391623258590698, + "learning_rate": 4.996666666666667e-05, + "loss": 0.8150953674316406, + "step": 200 + }, + { + "epoch": 0.10051093056369881, + "grad_norm": 0.6344850659370422, + "learning_rate": 4.99499162479062e-05, + "loss": 0.7532137298583984, + "step": 300 + }, + { + "epoch": 0.13401457408493173, + "grad_norm": 0.6711709499359131, + "learning_rate": 4.993316582914573e-05, + "loss": 0.7202082061767578, + "step": 400 + }, + { + "epoch": 0.16751821760616467, + "grad_norm": 0.6779165267944336, + "learning_rate": 4.9916415410385264e-05, + "loss": 0.7091973114013672, + "step": 500 + }, + { + "epoch": 0.20102186112739762, + "grad_norm": 0.6654858589172363, + "learning_rate": 4.989966499162479e-05, + "loss": 0.685182876586914, + "step": 600 + }, + { + "epoch": 0.23452550464863053, + "grad_norm": 0.6182253956794739, + "learning_rate": 4.988291457286433e-05, + "loss": 0.6745145416259766, + "step": 700 + }, + { + "epoch": 0.26802914816986345, + "grad_norm": 0.6512383818626404, + "learning_rate": 4.986616415410386e-05, + "loss": 0.6662254333496094, + "step": 800 + }, + { + "epoch": 0.3015327916910964, + "grad_norm": 0.6715951561927795, + "learning_rate": 4.9849413735343386e-05, + "loss": 0.6557020568847656, + "step": 900 + }, + { + "epoch": 0.33503643521232934, + "grad_norm": 0.5785344839096069, + "learning_rate": 4.9832663316582915e-05, + "loss": 0.6456297302246093, + "step": 1000 + }, + { + "epoch": 0.36854007873356226, + "grad_norm": 0.6495988368988037, + "learning_rate": 4.981591289782245e-05, + "loss": 0.6365409851074219, + "step": 1100 + }, + { + "epoch": 0.40204372225479523, + "grad_norm": 0.634831428527832, + "learning_rate": 4.979916247906198e-05, + "loss": 0.6296848678588867, + "step": 1200 + }, + { + "epoch": 0.43554736577602815, + "grad_norm": 0.5968198180198669, + "learning_rate": 4.978241206030151e-05, + "loss": 0.6211205673217773, + "step": 1300 + }, + { + "epoch": 0.46905100929726107, + "grad_norm": 0.634230375289917, + "learning_rate": 4.976566164154104e-05, + "loss": 0.6164393997192383, + "step": 1400 + }, + { + "epoch": 0.502554652818494, + "grad_norm": 0.5891489386558533, + "learning_rate": 4.974891122278057e-05, + "loss": 0.6082125854492187, + "step": 1500 + }, + { + "epoch": 0.5360582963397269, + "grad_norm": 0.6446542739868164, + "learning_rate": 4.97321608040201e-05, + "loss": 0.611778564453125, + "step": 1600 + }, + { + "epoch": 0.5695619398609599, + "grad_norm": 0.6366457343101501, + "learning_rate": 4.971541038525964e-05, + "loss": 0.6013064193725586, + "step": 1700 + }, + { + "epoch": 0.6030655833821928, + "grad_norm": 0.6310938596725464, + "learning_rate": 4.9698659966499166e-05, + "loss": 0.5960189819335937, + "step": 1800 + }, + { + "epoch": 0.6365692269034258, + "grad_norm": 0.6312111616134644, + "learning_rate": 4.9681909547738694e-05, + "loss": 0.5902027511596679, + "step": 1900 + }, + { + "epoch": 0.6700728704246587, + "grad_norm": 0.6359553337097168, + "learning_rate": 4.966515912897823e-05, + "loss": 0.5884978485107422, + "step": 2000 + }, + { + "epoch": 0.7035765139458916, + "grad_norm": 0.6602451205253601, + "learning_rate": 4.964840871021776e-05, + "loss": 0.58427734375, + "step": 2100 + }, + { + "epoch": 0.7370801574671245, + "grad_norm": 0.6105899810791016, + "learning_rate": 4.963165829145729e-05, + "loss": 0.5838186645507812, + "step": 2200 + }, + { + "epoch": 0.7705838009883574, + "grad_norm": 0.5694506764411926, + "learning_rate": 4.9614907872696816e-05, + "loss": 0.5781952667236329, + "step": 2300 + }, + { + "epoch": 0.8040874445095905, + "grad_norm": 0.6220190525054932, + "learning_rate": 4.959815745393635e-05, + "loss": 0.5734509658813477, + "step": 2400 + }, + { + "epoch": 0.8375910880308234, + "grad_norm": 0.5669824481010437, + "learning_rate": 4.958140703517588e-05, + "loss": 0.573906478881836, + "step": 2500 + }, + { + "epoch": 0.8710947315520563, + "grad_norm": 0.6178188920021057, + "learning_rate": 4.956465661641541e-05, + "loss": 0.5677206802368164, + "step": 2600 + }, + { + "epoch": 0.9045983750732892, + "grad_norm": 0.5571620464324951, + "learning_rate": 4.9547906197654945e-05, + "loss": 0.5622820663452148, + "step": 2700 + }, + { + "epoch": 0.9381020185945221, + "grad_norm": 0.5818703770637512, + "learning_rate": 4.9531155778894474e-05, + "loss": 0.5609216690063477, + "step": 2800 + }, + { + "epoch": 0.971605662115755, + "grad_norm": 0.5967586040496826, + "learning_rate": 4.9514405360134e-05, + "loss": 0.5596435165405274, + "step": 2900 + }, + { + "epoch": 1.005025546528185, + "grad_norm": 0.6468071937561035, + "learning_rate": 4.949765494137354e-05, + "loss": 0.5584405899047852, + "step": 3000 + }, + { + "epoch": 1.0385291900494178, + "grad_norm": 0.6350861191749573, + "learning_rate": 4.948090452261307e-05, + "loss": 0.5500188446044922, + "step": 3100 + }, + { + "epoch": 1.0720328335706508, + "grad_norm": 0.6933004260063171, + "learning_rate": 4.94641541038526e-05, + "loss": 0.546169662475586, + "step": 3200 + }, + { + "epoch": 1.1055364770918836, + "grad_norm": 0.6557233333587646, + "learning_rate": 4.944740368509213e-05, + "loss": 0.5476358795166015, + "step": 3300 + }, + { + "epoch": 1.1390401206131167, + "grad_norm": 0.6253458857536316, + "learning_rate": 4.943065326633166e-05, + "loss": 0.544293212890625, + "step": 3400 + }, + { + "epoch": 1.1725437641343497, + "grad_norm": 0.6146714091300964, + "learning_rate": 4.941390284757119e-05, + "loss": 0.5420544052124023, + "step": 3500 + }, + { + "epoch": 1.2060474076555825, + "grad_norm": 0.6168274879455566, + "learning_rate": 4.9397152428810725e-05, + "loss": 0.5440950775146485, + "step": 3600 + }, + { + "epoch": 1.2395510511768155, + "grad_norm": 0.6314318180084229, + "learning_rate": 4.9380402010050254e-05, + "loss": 0.5422676086425782, + "step": 3700 + }, + { + "epoch": 1.2730546946980486, + "grad_norm": 0.6257957816123962, + "learning_rate": 4.936365159128978e-05, + "loss": 0.5370346069335937, + "step": 3800 + }, + { + "epoch": 1.3065583382192814, + "grad_norm": 0.6324900984764099, + "learning_rate": 4.934690117252931e-05, + "loss": 0.5346813583374024, + "step": 3900 + }, + { + "epoch": 1.3400619817405142, + "grad_norm": 0.6128197312355042, + "learning_rate": 4.933015075376885e-05, + "loss": 0.5321989822387695, + "step": 4000 + }, + { + "epoch": 1.3735656252617472, + "grad_norm": 0.5664730072021484, + "learning_rate": 4.9313400335008376e-05, + "loss": 0.5304061126708984, + "step": 4100 + }, + { + "epoch": 1.4070692687829802, + "grad_norm": 0.5894239544868469, + "learning_rate": 4.929664991624791e-05, + "loss": 0.5285339736938477, + "step": 4200 + }, + { + "epoch": 1.440572912304213, + "grad_norm": 0.6181634068489075, + "learning_rate": 4.927989949748744e-05, + "loss": 0.5315813446044921, + "step": 4300 + }, + { + "epoch": 1.474076555825446, + "grad_norm": 0.6103029251098633, + "learning_rate": 4.926314907872697e-05, + "loss": 0.5283493423461914, + "step": 4400 + }, + { + "epoch": 1.507580199346679, + "grad_norm": 0.5960842967033386, + "learning_rate": 4.9246398659966505e-05, + "loss": 0.5253337097167968, + "step": 4500 + }, + { + "epoch": 1.541083842867912, + "grad_norm": 0.6720269918441772, + "learning_rate": 4.9229648241206034e-05, + "loss": 0.5257507705688477, + "step": 4600 + }, + { + "epoch": 1.5745874863891447, + "grad_norm": 0.6651366949081421, + "learning_rate": 4.921289782244556e-05, + "loss": 0.5222479248046875, + "step": 4700 + }, + { + "epoch": 1.6080911299103777, + "grad_norm": 0.6316231489181519, + "learning_rate": 4.919614740368509e-05, + "loss": 0.5179043197631836, + "step": 4800 + }, + { + "epoch": 1.6415947734316108, + "grad_norm": 0.5880525708198547, + "learning_rate": 4.917939698492463e-05, + "loss": 0.5151556777954102, + "step": 4900 + }, + { + "epoch": 1.6750984169528436, + "grad_norm": 0.6046984195709229, + "learning_rate": 4.9162646566164156e-05, + "loss": 0.5172126007080078, + "step": 5000 + }, + { + "epoch": 1.7086020604740766, + "grad_norm": 0.6584818959236145, + "learning_rate": 4.9145896147403684e-05, + "loss": 0.5168862533569336, + "step": 5100 + }, + { + "epoch": 1.7421057039953096, + "grad_norm": 0.644334077835083, + "learning_rate": 4.912914572864321e-05, + "loss": 0.516330337524414, + "step": 5200 + }, + { + "epoch": 1.7756093475165424, + "grad_norm": 0.6277704834938049, + "learning_rate": 4.911239530988275e-05, + "loss": 0.5101805114746094, + "step": 5300 + }, + { + "epoch": 1.8091129910377752, + "grad_norm": 0.6398980617523193, + "learning_rate": 4.909564489112228e-05, + "loss": 0.5114438247680664, + "step": 5400 + }, + { + "epoch": 1.8426166345590083, + "grad_norm": 0.6116181015968323, + "learning_rate": 4.907889447236181e-05, + "loss": 0.5063412094116211, + "step": 5500 + }, + { + "epoch": 1.8761202780802413, + "grad_norm": 0.6046104431152344, + "learning_rate": 4.906214405360134e-05, + "loss": 0.5081657409667969, + "step": 5600 + }, + { + "epoch": 1.909623921601474, + "grad_norm": 0.5920073390007019, + "learning_rate": 4.904539363484088e-05, + "loss": 0.5051012802124023, + "step": 5700 + }, + { + "epoch": 1.9431275651227071, + "grad_norm": 0.6170016527175903, + "learning_rate": 4.9028643216080407e-05, + "loss": 0.5026112747192383, + "step": 5800 + }, + { + "epoch": 1.9766312086439402, + "grad_norm": 0.6302964091300964, + "learning_rate": 4.9011892797319935e-05, + "loss": 0.501869125366211, + "step": 5900 + }, + { + "epoch": 2.01005109305637, + "grad_norm": 0.6208528280258179, + "learning_rate": 4.8995142378559464e-05, + "loss": 0.49743770599365233, + "step": 6000 + }, + { + "epoch": 2.043554736577603, + "grad_norm": 0.6439351439476013, + "learning_rate": 4.8978391959799e-05, + "loss": 0.49052135467529295, + "step": 6100 + }, + { + "epoch": 2.0770583800988356, + "grad_norm": 0.6153578162193298, + "learning_rate": 4.896164154103853e-05, + "loss": 0.4963309860229492, + "step": 6200 + }, + { + "epoch": 2.110562023620069, + "grad_norm": 0.5905429720878601, + "learning_rate": 4.894489112227806e-05, + "loss": 0.4935873413085938, + "step": 6300 + }, + { + "epoch": 2.1440656671413016, + "grad_norm": 0.5844092965126038, + "learning_rate": 4.8928140703517586e-05, + "loss": 0.49054019927978515, + "step": 6400 + }, + { + "epoch": 2.1775693106625345, + "grad_norm": 0.6116010546684265, + "learning_rate": 4.891139028475712e-05, + "loss": 0.4881373596191406, + "step": 6500 + }, + { + "epoch": 2.2110729541837673, + "grad_norm": 0.5920172333717346, + "learning_rate": 4.889463986599665e-05, + "loss": 0.48111820220947266, + "step": 6600 + }, + { + "epoch": 2.2445765977050005, + "grad_norm": 0.6223201155662537, + "learning_rate": 4.8877889447236186e-05, + "loss": 0.4858921813964844, + "step": 6700 + }, + { + "epoch": 2.2780802412262333, + "grad_norm": 0.679458737373352, + "learning_rate": 4.8861139028475715e-05, + "loss": 0.4880897903442383, + "step": 6800 + }, + { + "epoch": 2.311583884747466, + "grad_norm": 0.6320315003395081, + "learning_rate": 4.8844388609715244e-05, + "loss": 0.4870236587524414, + "step": 6900 + }, + { + "epoch": 2.3450875282686994, + "grad_norm": 0.6325832009315491, + "learning_rate": 4.882763819095478e-05, + "loss": 0.4866282272338867, + "step": 7000 + }, + { + "epoch": 2.378591171789932, + "grad_norm": 0.6240285634994507, + "learning_rate": 4.881088777219431e-05, + "loss": 0.48300540924072266, + "step": 7100 + }, + { + "epoch": 2.412094815311165, + "grad_norm": 0.6501027941703796, + "learning_rate": 4.879413735343384e-05, + "loss": 0.48553779602050784, + "step": 7200 + }, + { + "epoch": 2.4455984588323982, + "grad_norm": 0.6311469078063965, + "learning_rate": 4.8777386934673366e-05, + "loss": 0.4865619659423828, + "step": 7300 + }, + { + "epoch": 2.479102102353631, + "grad_norm": 0.6794814467430115, + "learning_rate": 4.87606365159129e-05, + "loss": 0.4808743286132813, + "step": 7400 + }, + { + "epoch": 2.512605745874864, + "grad_norm": 0.5595630407333374, + "learning_rate": 4.874388609715243e-05, + "loss": 0.48029510498046873, + "step": 7500 + }, + { + "epoch": 2.546109389396097, + "grad_norm": 0.6712229251861572, + "learning_rate": 4.872713567839196e-05, + "loss": 0.476650276184082, + "step": 7600 + }, + { + "epoch": 2.57961303291733, + "grad_norm": 0.6312442421913147, + "learning_rate": 4.871038525963149e-05, + "loss": 0.4794431686401367, + "step": 7700 + }, + { + "epoch": 2.6131166764385627, + "grad_norm": 0.6586233377456665, + "learning_rate": 4.8693634840871024e-05, + "loss": 0.4789765930175781, + "step": 7800 + }, + { + "epoch": 2.6466203199597955, + "grad_norm": 0.6464796662330627, + "learning_rate": 4.867688442211055e-05, + "loss": 0.4760271072387695, + "step": 7900 + }, + { + "epoch": 2.6801239634810283, + "grad_norm": 0.6250919103622437, + "learning_rate": 4.866013400335009e-05, + "loss": 0.47466728210449216, + "step": 8000 + }, + { + "epoch": 2.7136276070022616, + "grad_norm": 0.6650984287261963, + "learning_rate": 4.864338358458962e-05, + "loss": 0.4735995864868164, + "step": 8100 + }, + { + "epoch": 2.7471312505234944, + "grad_norm": 0.6536551713943481, + "learning_rate": 4.862663316582915e-05, + "loss": 0.47292491912841794, + "step": 8200 + }, + { + "epoch": 2.780634894044727, + "grad_norm": 0.6191151142120361, + "learning_rate": 4.860988274706868e-05, + "loss": 0.4695613479614258, + "step": 8300 + }, + { + "epoch": 2.8141385375659604, + "grad_norm": 0.6110975742340088, + "learning_rate": 4.859313232830821e-05, + "loss": 0.47242835998535154, + "step": 8400 + }, + { + "epoch": 2.8476421810871932, + "grad_norm": 0.6511522531509399, + "learning_rate": 4.857638190954774e-05, + "loss": 0.46818080902099607, + "step": 8500 + }, + { + "epoch": 2.881145824608426, + "grad_norm": 0.640023410320282, + "learning_rate": 4.8559631490787275e-05, + "loss": 0.4684713745117188, + "step": 8600 + }, + { + "epoch": 2.9146494681296593, + "grad_norm": 0.6558462381362915, + "learning_rate": 4.85428810720268e-05, + "loss": 0.47039485931396485, + "step": 8700 + }, + { + "epoch": 2.948153111650892, + "grad_norm": 0.64987713098526, + "learning_rate": 4.852613065326633e-05, + "loss": 0.46639087677001956, + "step": 8800 + }, + { + "epoch": 2.981656755172125, + "grad_norm": 0.6003667712211609, + "learning_rate": 4.850938023450586e-05, + "loss": 0.4636190795898438, + "step": 8900 + }, + { + "epoch": 3.0150766395845547, + "grad_norm": 0.6194270253181458, + "learning_rate": 4.8492629815745397e-05, + "loss": 0.4602717590332031, + "step": 9000 + }, + { + "epoch": 3.0485802831057875, + "grad_norm": 0.6473113894462585, + "learning_rate": 4.8475879396984925e-05, + "loss": 0.4513474655151367, + "step": 9100 + }, + { + "epoch": 3.082083926627021, + "grad_norm": 0.581709086894989, + "learning_rate": 4.845912897822446e-05, + "loss": 0.45967998504638674, + "step": 9200 + }, + { + "epoch": 3.1155875701482536, + "grad_norm": 0.6870703101158142, + "learning_rate": 4.844237855946399e-05, + "loss": 0.4573031997680664, + "step": 9300 + }, + { + "epoch": 3.1490912136694864, + "grad_norm": 0.6703235507011414, + "learning_rate": 4.842562814070352e-05, + "loss": 0.45413665771484374, + "step": 9400 + }, + { + "epoch": 3.1825948571907197, + "grad_norm": 0.6165799498558044, + "learning_rate": 4.8408877721943054e-05, + "loss": 0.4570289993286133, + "step": 9500 + }, + { + "epoch": 3.2160985007119525, + "grad_norm": 0.6460033059120178, + "learning_rate": 4.839212730318258e-05, + "loss": 0.4591374969482422, + "step": 9600 + }, + { + "epoch": 3.2496021442331853, + "grad_norm": 0.6148829460144043, + "learning_rate": 4.837537688442211e-05, + "loss": 0.4580984115600586, + "step": 9700 + }, + { + "epoch": 3.283105787754418, + "grad_norm": 0.6245681047439575, + "learning_rate": 4.835862646566164e-05, + "loss": 0.4545408248901367, + "step": 9800 + }, + { + "epoch": 3.3166094312756513, + "grad_norm": 0.6586223840713501, + "learning_rate": 4.8341876046901176e-05, + "loss": 0.4529739761352539, + "step": 9900 + }, + { + "epoch": 3.350113074796884, + "grad_norm": 0.6357883810997009, + "learning_rate": 4.8325125628140705e-05, + "loss": 0.4568283843994141, + "step": 10000 + }, + { + "epoch": 3.383616718318117, + "grad_norm": 0.6078239679336548, + "learning_rate": 4.8308375209380234e-05, + "loss": 0.45651729583740236, + "step": 10100 + }, + { + "epoch": 3.41712036183935, + "grad_norm": 0.6468596458435059, + "learning_rate": 4.829162479061976e-05, + "loss": 0.45133846282958984, + "step": 10200 + }, + { + "epoch": 3.450624005360583, + "grad_norm": 0.6487044095993042, + "learning_rate": 4.82748743718593e-05, + "loss": 0.4508181381225586, + "step": 10300 + }, + { + "epoch": 3.484127648881816, + "grad_norm": 0.642910897731781, + "learning_rate": 4.825812395309883e-05, + "loss": 0.45145717620849607, + "step": 10400 + }, + { + "epoch": 3.517631292403049, + "grad_norm": 0.6625356674194336, + "learning_rate": 4.824137353433836e-05, + "loss": 0.45529659271240236, + "step": 10500 + }, + { + "epoch": 3.551134935924282, + "grad_norm": 0.6431829929351807, + "learning_rate": 4.822462311557789e-05, + "loss": 0.4476095962524414, + "step": 10600 + }, + { + "epoch": 3.5846385794455147, + "grad_norm": 0.6072223782539368, + "learning_rate": 4.820787269681743e-05, + "loss": 0.4495735168457031, + "step": 10700 + }, + { + "epoch": 3.6181422229667475, + "grad_norm": 0.586395800113678, + "learning_rate": 4.8191122278056956e-05, + "loss": 0.44253528594970704, + "step": 10800 + }, + { + "epoch": 3.6516458664879807, + "grad_norm": 0.5829164981842041, + "learning_rate": 4.8174371859296485e-05, + "loss": 0.44407268524169924, + "step": 10900 + }, + { + "epoch": 3.6851495100092135, + "grad_norm": 0.612237274646759, + "learning_rate": 4.8157621440536014e-05, + "loss": 0.44537506103515623, + "step": 11000 + }, + { + "epoch": 3.7186531535304463, + "grad_norm": 0.5877944827079773, + "learning_rate": 4.814087102177555e-05, + "loss": 0.44692161560058596, + "step": 11100 + }, + { + "epoch": 3.752156797051679, + "grad_norm": 0.6447933316230774, + "learning_rate": 4.812412060301508e-05, + "loss": 0.44803882598876954, + "step": 11200 + }, + { + "epoch": 3.7856604405729124, + "grad_norm": 0.6374318599700928, + "learning_rate": 4.810737018425461e-05, + "loss": 0.4482523345947266, + "step": 11300 + }, + { + "epoch": 3.819164084094145, + "grad_norm": 0.7126030921936035, + "learning_rate": 4.8090619765494136e-05, + "loss": 0.44646026611328127, + "step": 11400 + }, + { + "epoch": 3.852667727615378, + "grad_norm": 0.6466185450553894, + "learning_rate": 4.807386934673367e-05, + "loss": 0.44249160766601564, + "step": 11500 + }, + { + "epoch": 3.8861713711366113, + "grad_norm": 0.6428183913230896, + "learning_rate": 4.80571189279732e-05, + "loss": 0.44268692016601563, + "step": 11600 + }, + { + "epoch": 3.919675014657844, + "grad_norm": 0.5706833600997925, + "learning_rate": 4.8040368509212736e-05, + "loss": 0.4477870559692383, + "step": 11700 + }, + { + "epoch": 3.953178658179077, + "grad_norm": 0.6583021879196167, + "learning_rate": 4.8023618090452265e-05, + "loss": 0.44658790588378905, + "step": 11800 + }, + { + "epoch": 3.98668230170031, + "grad_norm": 0.6143375039100647, + "learning_rate": 4.800686767169179e-05, + "loss": 0.4439199447631836, + "step": 11900 + }, + { + "epoch": 4.02010218611274, + "grad_norm": 0.5873826146125793, + "learning_rate": 4.799011725293133e-05, + "loss": 0.43299171447753904, + "step": 12000 + }, + { + "epoch": 4.053605829633972, + "grad_norm": 0.652965247631073, + "learning_rate": 4.797336683417086e-05, + "loss": 0.43379459381103513, + "step": 12100 + }, + { + "epoch": 4.087109473155206, + "grad_norm": 0.6809676885604858, + "learning_rate": 4.795661641541039e-05, + "loss": 0.434725341796875, + "step": 12200 + }, + { + "epoch": 4.120613116676439, + "grad_norm": 0.7001864314079285, + "learning_rate": 4.7939865996649915e-05, + "loss": 0.4402421188354492, + "step": 12300 + }, + { + "epoch": 4.154116760197671, + "grad_norm": 0.5879281759262085, + "learning_rate": 4.792311557788945e-05, + "loss": 0.436952018737793, + "step": 12400 + }, + { + "epoch": 4.187620403718904, + "grad_norm": 0.6814981698989868, + "learning_rate": 4.790636515912898e-05, + "loss": 0.43582103729248045, + "step": 12500 + }, + { + "epoch": 4.221124047240138, + "grad_norm": 0.6850152611732483, + "learning_rate": 4.788961474036851e-05, + "loss": 0.4337678527832031, + "step": 12600 + }, + { + "epoch": 4.25462769076137, + "grad_norm": 0.6886492967605591, + "learning_rate": 4.787286432160804e-05, + "loss": 0.4366899108886719, + "step": 12700 + }, + { + "epoch": 4.288131334282603, + "grad_norm": 0.6915615797042847, + "learning_rate": 4.785611390284757e-05, + "loss": 0.4344156265258789, + "step": 12800 + }, + { + "epoch": 4.3216349778038365, + "grad_norm": 0.6565848588943481, + "learning_rate": 4.78393634840871e-05, + "loss": 0.43212577819824216, + "step": 12900 + }, + { + "epoch": 4.355138621325069, + "grad_norm": 0.6957235336303711, + "learning_rate": 4.782261306532664e-05, + "loss": 0.4340908432006836, + "step": 13000 + }, + { + "epoch": 4.388642264846302, + "grad_norm": 0.6763550043106079, + "learning_rate": 4.7805862646566166e-05, + "loss": 0.43744525909423826, + "step": 13100 + }, + { + "epoch": 4.4221459083675345, + "grad_norm": 0.6657949090003967, + "learning_rate": 4.77891122278057e-05, + "loss": 0.4336092758178711, + "step": 13200 + }, + { + "epoch": 4.455649551888768, + "grad_norm": 0.6623894572257996, + "learning_rate": 4.777236180904523e-05, + "loss": 0.43067619323730466, + "step": 13300 + }, + { + "epoch": 4.489153195410001, + "grad_norm": 0.7518236041069031, + "learning_rate": 4.775561139028476e-05, + "loss": 0.4269240951538086, + "step": 13400 + }, + { + "epoch": 4.522656838931233, + "grad_norm": 0.6672277450561523, + "learning_rate": 4.773886097152429e-05, + "loss": 0.42989879608154297, + "step": 13500 + }, + { + "epoch": 4.556160482452467, + "grad_norm": 0.6400379538536072, + "learning_rate": 4.7722110552763824e-05, + "loss": 0.4264271926879883, + "step": 13600 + }, + { + "epoch": 4.5896641259737, + "grad_norm": 0.5992236733436584, + "learning_rate": 4.770536013400335e-05, + "loss": 0.4286244964599609, + "step": 13700 + }, + { + "epoch": 4.623167769494932, + "grad_norm": 0.674788773059845, + "learning_rate": 4.768860971524288e-05, + "loss": 0.42616188049316406, + "step": 13800 + }, + { + "epoch": 4.6566714130161655, + "grad_norm": 0.6788604259490967, + "learning_rate": 4.767185929648241e-05, + "loss": 0.4273800277709961, + "step": 13900 + }, + { + "epoch": 4.690175056537399, + "grad_norm": 0.6140567064285278, + "learning_rate": 4.7655108877721946e-05, + "loss": 0.43147178649902346, + "step": 14000 + }, + { + "epoch": 4.723678700058631, + "grad_norm": 0.6155766248703003, + "learning_rate": 4.7638525963149085e-05, + "loss": 0.4265935134887695, + "step": 14100 + }, + { + "epoch": 4.757182343579864, + "grad_norm": 0.6408616304397583, + "learning_rate": 4.7621775544388614e-05, + "loss": 0.4271296691894531, + "step": 14200 + }, + { + "epoch": 4.790685987101098, + "grad_norm": 0.6060003638267517, + "learning_rate": 4.760502512562814e-05, + "loss": 0.42877567291259766, + "step": 14300 + }, + { + "epoch": 4.82418963062233, + "grad_norm": 0.594854474067688, + "learning_rate": 4.758827470686767e-05, + "loss": 0.42625518798828127, + "step": 14400 + }, + { + "epoch": 4.857693274143563, + "grad_norm": 0.7048496007919312, + "learning_rate": 4.757152428810721e-05, + "loss": 0.4247948455810547, + "step": 14500 + }, + { + "epoch": 4.8911969176647965, + "grad_norm": 0.6743406057357788, + "learning_rate": 4.7554773869346736e-05, + "loss": 0.42869789123535157, + "step": 14600 + }, + { + "epoch": 4.924700561186029, + "grad_norm": 0.6159805059432983, + "learning_rate": 4.7538023450586265e-05, + "loss": 0.42471588134765625, + "step": 14700 + }, + { + "epoch": 4.958204204707262, + "grad_norm": 0.6490402817726135, + "learning_rate": 4.7521273031825794e-05, + "loss": 0.42407047271728515, + "step": 14800 + }, + { + "epoch": 4.991707848228495, + "grad_norm": 0.6755446791648865, + "learning_rate": 4.750452261306533e-05, + "loss": 0.42307563781738283, + "step": 14900 + }, + { + "epoch": 5.025127732640924, + "grad_norm": 0.6245474219322205, + "learning_rate": 4.748777219430486e-05, + "loss": 0.4140509796142578, + "step": 15000 + }, + { + "epoch": 5.0586313761621575, + "grad_norm": 0.6199154257774353, + "learning_rate": 4.747102177554439e-05, + "loss": 0.4141695785522461, + "step": 15100 + }, + { + "epoch": 5.092135019683391, + "grad_norm": 0.6318620443344116, + "learning_rate": 4.7454271356783916e-05, + "loss": 0.4133845520019531, + "step": 15200 + }, + { + "epoch": 5.125638663204623, + "grad_norm": 0.6261297464370728, + "learning_rate": 4.743752093802346e-05, + "loss": 0.41985397338867186, + "step": 15300 + }, + { + "epoch": 5.159142306725856, + "grad_norm": 0.6642125248908997, + "learning_rate": 4.742077051926299e-05, + "loss": 0.41414112091064453, + "step": 15400 + }, + { + "epoch": 5.19264595024709, + "grad_norm": 0.7118062973022461, + "learning_rate": 4.7404020100502516e-05, + "loss": 0.4157746505737305, + "step": 15500 + }, + { + "epoch": 5.226149593768322, + "grad_norm": 0.6888347268104553, + "learning_rate": 4.7387269681742045e-05, + "loss": 0.41798015594482424, + "step": 15600 + }, + { + "epoch": 5.259653237289555, + "grad_norm": 0.6572776436805725, + "learning_rate": 4.737051926298158e-05, + "loss": 0.4158905029296875, + "step": 15700 + }, + { + "epoch": 5.2931568808107885, + "grad_norm": 0.6731371283531189, + "learning_rate": 4.735376884422111e-05, + "loss": 0.4200982666015625, + "step": 15800 + }, + { + "epoch": 5.326660524332021, + "grad_norm": 0.6026290655136108, + "learning_rate": 4.733701842546064e-05, + "loss": 0.4160591125488281, + "step": 15900 + }, + { + "epoch": 5.360164167853254, + "grad_norm": 0.6480405926704407, + "learning_rate": 4.732026800670017e-05, + "loss": 0.4141067123413086, + "step": 16000 + }, + { + "epoch": 5.393667811374487, + "grad_norm": 0.7435486912727356, + "learning_rate": 4.7303685092127306e-05, + "loss": 0.4195803451538086, + "step": 16100 + }, + { + "epoch": 5.42717145489572, + "grad_norm": 0.6561776995658875, + "learning_rate": 4.7286934673366835e-05, + "loss": 0.41183818817138673, + "step": 16200 + }, + { + "epoch": 5.460675098416953, + "grad_norm": 0.637554407119751, + "learning_rate": 4.727018425460637e-05, + "loss": 0.41124614715576174, + "step": 16300 + }, + { + "epoch": 5.494178741938185, + "grad_norm": 0.6575638055801392, + "learning_rate": 4.72534338358459e-05, + "loss": 0.41794925689697265, + "step": 16400 + }, + { + "epoch": 5.527682385459419, + "grad_norm": 0.678394079208374, + "learning_rate": 4.723668341708543e-05, + "loss": 0.4172962188720703, + "step": 16500 + }, + { + "epoch": 5.561186028980652, + "grad_norm": 0.6401932835578918, + "learning_rate": 4.7219932998324964e-05, + "loss": 0.4176398468017578, + "step": 16600 + }, + { + "epoch": 5.594689672501884, + "grad_norm": 0.7197437286376953, + "learning_rate": 4.720318257956449e-05, + "loss": 0.4155929183959961, + "step": 16700 + }, + { + "epoch": 5.6281933160231175, + "grad_norm": 0.6697796583175659, + "learning_rate": 4.718643216080402e-05, + "loss": 0.41755367279052735, + "step": 16800 + }, + { + "epoch": 5.661696959544351, + "grad_norm": 0.6090868711471558, + "learning_rate": 4.716968174204355e-05, + "loss": 0.4136951446533203, + "step": 16900 + }, + { + "epoch": 5.695200603065583, + "grad_norm": 0.6004068851470947, + "learning_rate": 4.7152931323283086e-05, + "loss": 0.4162490463256836, + "step": 17000 + }, + { + "epoch": 5.728704246586816, + "grad_norm": 0.6552139520645142, + "learning_rate": 4.7136180904522615e-05, + "loss": 0.4109830856323242, + "step": 17100 + }, + { + "epoch": 5.76220789010805, + "grad_norm": 0.7132771015167236, + "learning_rate": 4.7119430485762144e-05, + "loss": 0.4129109573364258, + "step": 17200 + }, + { + "epoch": 5.795711533629282, + "grad_norm": 0.6571471095085144, + "learning_rate": 4.710268006700167e-05, + "loss": 0.4140293121337891, + "step": 17300 + }, + { + "epoch": 5.829215177150515, + "grad_norm": 0.6521652936935425, + "learning_rate": 4.708592964824121e-05, + "loss": 0.41335311889648435, + "step": 17400 + }, + { + "epoch": 5.862718820671748, + "grad_norm": 0.6223021149635315, + "learning_rate": 4.706917922948074e-05, + "loss": 0.41415943145751954, + "step": 17500 + }, + { + "epoch": 5.896222464192981, + "grad_norm": 0.6671064496040344, + "learning_rate": 4.705242881072027e-05, + "loss": 0.4121688461303711, + "step": 17600 + }, + { + "epoch": 5.929726107714214, + "grad_norm": 0.6168386340141296, + "learning_rate": 4.70356783919598e-05, + "loss": 0.40964771270751954, + "step": 17700 + }, + { + "epoch": 5.963229751235447, + "grad_norm": 0.6829288601875305, + "learning_rate": 4.701892797319934e-05, + "loss": 0.4161583709716797, + "step": 17800 + }, + { + "epoch": 5.99673339475668, + "grad_norm": 0.6415479183197021, + "learning_rate": 4.7002177554438866e-05, + "loss": 0.4163412857055664, + "step": 17900 + }, + { + "epoch": 6.0301532791691095, + "grad_norm": 0.6762277483940125, + "learning_rate": 4.6985427135678394e-05, + "loss": 0.40404136657714845, + "step": 18000 + }, + { + "epoch": 6.063656922690343, + "grad_norm": 0.7215397357940674, + "learning_rate": 4.696884422110553e-05, + "loss": 0.40555873870849607, + "step": 18100 + }, + { + "epoch": 6.097160566211575, + "grad_norm": 0.6093649864196777, + "learning_rate": 4.695209380234506e-05, + "loss": 0.3959674072265625, + "step": 18200 + }, + { + "epoch": 6.130664209732808, + "grad_norm": 0.6576215624809265, + "learning_rate": 4.693534338358459e-05, + "loss": 0.4000381851196289, + "step": 18300 + }, + { + "epoch": 6.164167853254042, + "grad_norm": 0.6869475841522217, + "learning_rate": 4.691859296482412e-05, + "loss": 0.40716861724853515, + "step": 18400 + }, + { + "epoch": 6.197671496775274, + "grad_norm": 0.6864603161811829, + "learning_rate": 4.690184254606365e-05, + "loss": 0.4014585494995117, + "step": 18500 + }, + { + "epoch": 6.231175140296507, + "grad_norm": 0.68086177110672, + "learning_rate": 4.6885092127303185e-05, + "loss": 0.3985603713989258, + "step": 18600 + }, + { + "epoch": 6.2646787838177405, + "grad_norm": 0.700307309627533, + "learning_rate": 4.686834170854272e-05, + "loss": 0.3990879440307617, + "step": 18700 + }, + { + "epoch": 6.298182427338973, + "grad_norm": 0.7301186919212341, + "learning_rate": 4.685159128978225e-05, + "loss": 0.4010288619995117, + "step": 18800 + }, + { + "epoch": 6.331686070860206, + "grad_norm": 0.6819117069244385, + "learning_rate": 4.683484087102178e-05, + "loss": 0.4012245941162109, + "step": 18900 + }, + { + "epoch": 6.365189714381439, + "grad_norm": 0.6428888440132141, + "learning_rate": 4.681809045226131e-05, + "loss": 0.40439247131347655, + "step": 19000 + }, + { + "epoch": 6.398693357902672, + "grad_norm": 0.6879697442054749, + "learning_rate": 4.680134003350084e-05, + "loss": 0.4002133560180664, + "step": 19100 + }, + { + "epoch": 6.432197001423905, + "grad_norm": 0.7050502300262451, + "learning_rate": 4.678458961474037e-05, + "loss": 0.40451095581054686, + "step": 19200 + }, + { + "epoch": 6.465700644945138, + "grad_norm": 0.6575663685798645, + "learning_rate": 4.67678391959799e-05, + "loss": 0.40367134094238283, + "step": 19300 + }, + { + "epoch": 6.4992042884663705, + "grad_norm": 0.725883424282074, + "learning_rate": 4.675108877721943e-05, + "loss": 0.40375911712646484, + "step": 19400 + }, + { + "epoch": 6.532707931987604, + "grad_norm": 0.6960121989250183, + "learning_rate": 4.6734338358458964e-05, + "loss": 0.39711700439453124, + "step": 19500 + }, + { + "epoch": 6.566211575508836, + "grad_norm": 0.6402387022972107, + "learning_rate": 4.671758793969849e-05, + "loss": 0.40309242248535154, + "step": 19600 + }, + { + "epoch": 6.599715219030069, + "grad_norm": 0.6541135311126709, + "learning_rate": 4.670083752093802e-05, + "loss": 0.3986012268066406, + "step": 19700 + }, + { + "epoch": 6.633218862551303, + "grad_norm": 0.7802708745002747, + "learning_rate": 4.668408710217756e-05, + "loss": 0.4055080795288086, + "step": 19800 + }, + { + "epoch": 6.666722506072535, + "grad_norm": 0.7293182015419006, + "learning_rate": 4.666733668341709e-05, + "loss": 0.39762969970703127, + "step": 19900 + }, + { + "epoch": 6.700226149593768, + "grad_norm": 0.6476279497146606, + "learning_rate": 4.665058626465662e-05, + "loss": 0.39965827941894533, + "step": 20000 + }, + { + "epoch": 6.7337297931150015, + "grad_norm": 0.7234406471252441, + "learning_rate": 4.663383584589615e-05, + "loss": 0.40417919158935545, + "step": 20100 + }, + { + "epoch": 6.767233436636234, + "grad_norm": 0.6661069989204407, + "learning_rate": 4.661725293132328e-05, + "loss": 0.40048927307128906, + "step": 20200 + }, + { + "epoch": 6.800737080157467, + "grad_norm": 0.6745995283126831, + "learning_rate": 4.660050251256282e-05, + "loss": 0.40084247589111327, + "step": 20300 + }, + { + "epoch": 6.8342407236787, + "grad_norm": 0.6546103954315186, + "learning_rate": 4.658375209380235e-05, + "loss": 0.40273414611816405, + "step": 20400 + }, + { + "epoch": 6.867744367199933, + "grad_norm": 0.6249874830245972, + "learning_rate": 4.6567001675041877e-05, + "loss": 0.4047482299804688, + "step": 20500 + }, + { + "epoch": 6.901248010721166, + "grad_norm": 0.621865451335907, + "learning_rate": 4.6550251256281405e-05, + "loss": 0.40309608459472657, + "step": 20600 + }, + { + "epoch": 6.934751654242399, + "grad_norm": 0.664582371711731, + "learning_rate": 4.653350083752094e-05, + "loss": 0.402041015625, + "step": 20700 + }, + { + "epoch": 6.968255297763632, + "grad_norm": 0.6802883148193359, + "learning_rate": 4.651675041876047e-05, + "loss": 0.40645900726318357, + "step": 20800 + }, + { + "epoch": 7.001675182176061, + "grad_norm": 0.6586912870407104, + "learning_rate": 4.6500000000000005e-05, + "loss": 0.3996978759765625, + "step": 20900 + }, + { + "epoch": 7.035178825697295, + "grad_norm": 0.6849681735038757, + "learning_rate": 4.6483249581239534e-05, + "loss": 0.38614749908447266, + "step": 21000 + }, + { + "epoch": 7.068682469218528, + "grad_norm": 0.694872260093689, + "learning_rate": 4.646649916247906e-05, + "loss": 0.38619533538818357, + "step": 21100 + }, + { + "epoch": 7.10218611273976, + "grad_norm": 0.7047699689865112, + "learning_rate": 4.64497487437186e-05, + "loss": 0.38167682647705076, + "step": 21200 + }, + { + "epoch": 7.1356897562609936, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.643299832495813e-05, + "loss": 0.3932147979736328, + "step": 21300 + }, + { + "epoch": 7.169193399782226, + "grad_norm": 0.6869648098945618, + "learning_rate": 4.6416247906197656e-05, + "loss": 0.38886920928955077, + "step": 21400 + }, + { + "epoch": 7.202697043303459, + "grad_norm": 0.7238380908966064, + "learning_rate": 4.6399497487437185e-05, + "loss": 0.3933087158203125, + "step": 21500 + }, + { + "epoch": 7.236200686824692, + "grad_norm": 0.708855152130127, + "learning_rate": 4.638274706867672e-05, + "loss": 0.3932600784301758, + "step": 21600 + }, + { + "epoch": 7.269704330345925, + "grad_norm": 0.6577633619308472, + "learning_rate": 4.636599664991625e-05, + "loss": 0.38899864196777345, + "step": 21700 + }, + { + "epoch": 7.303207973867158, + "grad_norm": 0.7226035594940186, + "learning_rate": 4.634924623115578e-05, + "loss": 0.3912385559082031, + "step": 21800 + }, + { + "epoch": 7.336711617388391, + "grad_norm": 0.7393138408660889, + "learning_rate": 4.633249581239531e-05, + "loss": 0.38804672241210936, + "step": 21900 + }, + { + "epoch": 7.370215260909624, + "grad_norm": 0.7591322660446167, + "learning_rate": 4.631574539363484e-05, + "loss": 0.39187992095947266, + "step": 22000 + }, + { + "epoch": 7.403718904430857, + "grad_norm": 0.7180842757225037, + "learning_rate": 4.629899497487438e-05, + "loss": 0.3885354232788086, + "step": 22100 + }, + { + "epoch": 7.43722254795209, + "grad_norm": 0.5701187252998352, + "learning_rate": 4.628241206030151e-05, + "loss": 0.3929626083374023, + "step": 22200 + }, + { + "epoch": 7.4707261914733225, + "grad_norm": 0.6831353902816772, + "learning_rate": 4.626566164154104e-05, + "loss": 0.3864256286621094, + "step": 22300 + }, + { + "epoch": 7.504229834994556, + "grad_norm": 0.7295540571212769, + "learning_rate": 4.6248911222780575e-05, + "loss": 0.3930975341796875, + "step": 22400 + }, + { + "epoch": 7.537733478515788, + "grad_norm": 0.6555300951004028, + "learning_rate": 4.6232160804020104e-05, + "loss": 0.39193412780761716, + "step": 22500 + }, + { + "epoch": 7.571237122037021, + "grad_norm": 0.6836072206497192, + "learning_rate": 4.621541038525963e-05, + "loss": 0.39321327209472656, + "step": 22600 + }, + { + "epoch": 7.604740765558255, + "grad_norm": 0.7344244122505188, + "learning_rate": 4.619865996649916e-05, + "loss": 0.39178211212158204, + "step": 22700 + }, + { + "epoch": 7.638244409079487, + "grad_norm": 0.6757531762123108, + "learning_rate": 4.61819095477387e-05, + "loss": 0.3929476547241211, + "step": 22800 + }, + { + "epoch": 7.67174805260072, + "grad_norm": 0.790185272693634, + "learning_rate": 4.6165159128978226e-05, + "loss": 0.388702392578125, + "step": 22900 + }, + { + "epoch": 7.7052516961219535, + "grad_norm": 0.6090592741966248, + "learning_rate": 4.6148408710217755e-05, + "loss": 0.39199878692626955, + "step": 23000 + }, + { + "epoch": 7.738755339643186, + "grad_norm": 0.7253360152244568, + "learning_rate": 4.6131658291457284e-05, + "loss": 0.39112945556640627, + "step": 23100 + }, + { + "epoch": 7.772258983164419, + "grad_norm": 0.7190312147140503, + "learning_rate": 4.611490787269682e-05, + "loss": 0.39291053771972656, + "step": 23200 + }, + { + "epoch": 7.805762626685652, + "grad_norm": 0.6961659789085388, + "learning_rate": 4.6098157453936355e-05, + "loss": 0.39124824523925783, + "step": 23300 + }, + { + "epoch": 7.839266270206885, + "grad_norm": 0.7136702537536621, + "learning_rate": 4.6081407035175884e-05, + "loss": 0.39080577850341797, + "step": 23400 + }, + { + "epoch": 7.872769913728118, + "grad_norm": 0.7133346199989319, + "learning_rate": 4.606465661641541e-05, + "loss": 0.3894335174560547, + "step": 23500 + }, + { + "epoch": 7.906273557249351, + "grad_norm": 0.7279176115989685, + "learning_rate": 4.604790619765494e-05, + "loss": 0.3878567886352539, + "step": 23600 + }, + { + "epoch": 7.939777200770584, + "grad_norm": 0.6854584217071533, + "learning_rate": 4.603115577889448e-05, + "loss": 0.3958644104003906, + "step": 23700 + }, + { + "epoch": 7.973280844291817, + "grad_norm": 0.7134712934494019, + "learning_rate": 4.6014405360134006e-05, + "loss": 0.39134223937988283, + "step": 23800 + }, + { + "epoch": 8.006700728704246, + "grad_norm": 0.7242705821990967, + "learning_rate": 4.5997654941373535e-05, + "loss": 0.38787689208984377, + "step": 23900 + }, + { + "epoch": 8.04020437222548, + "grad_norm": 0.6507485508918762, + "learning_rate": 4.5980904522613064e-05, + "loss": 0.3778019332885742, + "step": 24000 + }, + { + "epoch": 8.073708015746712, + "grad_norm": 0.6936424374580383, + "learning_rate": 4.59641541038526e-05, + "loss": 0.3767805862426758, + "step": 24100 + }, + { + "epoch": 8.107211659267945, + "grad_norm": 0.6715813279151917, + "learning_rate": 4.594757118927974e-05, + "loss": 0.37527366638183596, + "step": 24200 + }, + { + "epoch": 8.140715302789179, + "grad_norm": 0.7407135367393494, + "learning_rate": 4.593082077051927e-05, + "loss": 0.37779621124267576, + "step": 24300 + }, + { + "epoch": 8.174218946310411, + "grad_norm": 0.7536392211914062, + "learning_rate": 4.5914070351758796e-05, + "loss": 0.3771663665771484, + "step": 24400 + }, + { + "epoch": 8.207722589831643, + "grad_norm": 0.7159863114356995, + "learning_rate": 4.589731993299833e-05, + "loss": 0.3789206314086914, + "step": 24500 + }, + { + "epoch": 8.241226233352878, + "grad_norm": 0.7217793464660645, + "learning_rate": 4.588056951423786e-05, + "loss": 0.37845233917236326, + "step": 24600 + }, + { + "epoch": 8.27472987687411, + "grad_norm": 0.6689481139183044, + "learning_rate": 4.586381909547739e-05, + "loss": 0.3793601989746094, + "step": 24700 + }, + { + "epoch": 8.308233520395342, + "grad_norm": 0.6575570702552795, + "learning_rate": 4.584706867671692e-05, + "loss": 0.3798051452636719, + "step": 24800 + }, + { + "epoch": 8.341737163916576, + "grad_norm": 0.7236769795417786, + "learning_rate": 4.5830318257956454e-05, + "loss": 0.3808049011230469, + "step": 24900 + }, + { + "epoch": 8.375240807437809, + "grad_norm": 0.7543460130691528, + "learning_rate": 4.581356783919598e-05, + "loss": 0.3847679138183594, + "step": 25000 + }, + { + "epoch": 8.408744450959041, + "grad_norm": 0.7130107879638672, + "learning_rate": 4.579681742043551e-05, + "loss": 0.37841434478759767, + "step": 25100 + }, + { + "epoch": 8.442248094480275, + "grad_norm": 0.6971204876899719, + "learning_rate": 4.578006700167504e-05, + "loss": 0.3828566360473633, + "step": 25200 + }, + { + "epoch": 8.475751738001508, + "grad_norm": 0.7880971431732178, + "learning_rate": 4.5763316582914576e-05, + "loss": 0.37794727325439453, + "step": 25300 + }, + { + "epoch": 8.50925538152274, + "grad_norm": 0.795606255531311, + "learning_rate": 4.574656616415411e-05, + "loss": 0.3807938003540039, + "step": 25400 + }, + { + "epoch": 8.542759025043974, + "grad_norm": 0.662270724773407, + "learning_rate": 4.572981574539364e-05, + "loss": 0.38113510131835937, + "step": 25500 + }, + { + "epoch": 8.576262668565207, + "grad_norm": 0.7585960626602173, + "learning_rate": 4.571306532663317e-05, + "loss": 0.3807952880859375, + "step": 25600 + }, + { + "epoch": 8.609766312086439, + "grad_norm": 0.7054327726364136, + "learning_rate": 4.56963149078727e-05, + "loss": 0.3791161346435547, + "step": 25700 + }, + { + "epoch": 8.643269955607673, + "grad_norm": 0.7529199719429016, + "learning_rate": 4.5679564489112233e-05, + "loss": 0.3771999359130859, + "step": 25800 + }, + { + "epoch": 8.676773599128905, + "grad_norm": 0.7693551182746887, + "learning_rate": 4.566281407035176e-05, + "loss": 0.37909912109375, + "step": 25900 + }, + { + "epoch": 8.710277242650138, + "grad_norm": 0.7142516374588013, + "learning_rate": 4.564606365159129e-05, + "loss": 0.38215831756591795, + "step": 26000 + }, + { + "epoch": 8.743780886171372, + "grad_norm": 0.7293452024459839, + "learning_rate": 4.562931323283082e-05, + "loss": 0.38390281677246096, + "step": 26100 + }, + { + "epoch": 8.777284529692604, + "grad_norm": 0.725549578666687, + "learning_rate": 4.561273031825796e-05, + "loss": 0.37903385162353515, + "step": 26200 + }, + { + "epoch": 8.810788173213837, + "grad_norm": 0.7497493028640747, + "learning_rate": 4.559597989949749e-05, + "loss": 0.3807545852661133, + "step": 26300 + }, + { + "epoch": 8.844291816735069, + "grad_norm": 0.6810445189476013, + "learning_rate": 4.557922948073702e-05, + "loss": 0.38407058715820314, + "step": 26400 + }, + { + "epoch": 8.877795460256303, + "grad_norm": 0.6970882415771484, + "learning_rate": 4.556247906197655e-05, + "loss": 0.377288818359375, + "step": 26500 + }, + { + "epoch": 8.911299103777536, + "grad_norm": 0.6579902768135071, + "learning_rate": 4.554572864321608e-05, + "loss": 0.3823952484130859, + "step": 26600 + }, + { + "epoch": 8.94480274729877, + "grad_norm": 0.7329373359680176, + "learning_rate": 4.552897822445562e-05, + "loss": 0.38345798492431643, + "step": 26700 + }, + { + "epoch": 8.978306390820002, + "grad_norm": 0.7462034821510315, + "learning_rate": 4.5512227805695146e-05, + "loss": 0.38348892211914065, + "step": 26800 + }, + { + "epoch": 9.011726275232432, + "grad_norm": 0.6734225153923035, + "learning_rate": 4.5495477386934675e-05, + "loss": 0.37156158447265625, + "step": 26900 + }, + { + "epoch": 9.045229918753664, + "grad_norm": 0.7718762159347534, + "learning_rate": 4.54787269681742e-05, + "loss": 0.3672407913208008, + "step": 27000 + }, + { + "epoch": 9.078733562274897, + "grad_norm": 0.7702797055244446, + "learning_rate": 4.546197654941374e-05, + "loss": 0.36319580078125, + "step": 27100 + }, + { + "epoch": 9.11223720579613, + "grad_norm": 0.7608715891838074, + "learning_rate": 4.544522613065327e-05, + "loss": 0.3686368179321289, + "step": 27200 + }, + { + "epoch": 9.145740849317363, + "grad_norm": 0.6544201970100403, + "learning_rate": 4.54284757118928e-05, + "loss": 0.3657124710083008, + "step": 27300 + }, + { + "epoch": 9.179244492838595, + "grad_norm": 0.7948552370071411, + "learning_rate": 4.541172529313233e-05, + "loss": 0.3642101669311523, + "step": 27400 + }, + { + "epoch": 9.21274813635983, + "grad_norm": 0.7283180356025696, + "learning_rate": 4.539497487437186e-05, + "loss": 0.36608253479003905, + "step": 27500 + }, + { + "epoch": 9.246251779881062, + "grad_norm": 0.7535043358802795, + "learning_rate": 4.537822445561139e-05, + "loss": 0.3699675750732422, + "step": 27600 + }, + { + "epoch": 9.279755423402294, + "grad_norm": 0.7893076539039612, + "learning_rate": 4.5361474036850925e-05, + "loss": 0.3712180709838867, + "step": 27700 + }, + { + "epoch": 9.313259066923528, + "grad_norm": 0.7542401552200317, + "learning_rate": 4.5344723618090454e-05, + "loss": 0.36577003479003906, + "step": 27800 + }, + { + "epoch": 9.34676271044476, + "grad_norm": 0.7122746706008911, + "learning_rate": 4.532797319932999e-05, + "loss": 0.3700094985961914, + "step": 27900 + }, + { + "epoch": 9.380266353965993, + "grad_norm": 0.7706195116043091, + "learning_rate": 4.531122278056952e-05, + "loss": 0.3662248229980469, + "step": 28000 + }, + { + "epoch": 9.413769997487227, + "grad_norm": 0.7564675211906433, + "learning_rate": 4.529447236180905e-05, + "loss": 0.37131824493408205, + "step": 28100 + }, + { + "epoch": 9.44727364100846, + "grad_norm": 0.7425429224967957, + "learning_rate": 4.5277721943048576e-05, + "loss": 0.3740149688720703, + "step": 28200 + }, + { + "epoch": 9.480777284529692, + "grad_norm": 0.7587184906005859, + "learning_rate": 4.5261139028475716e-05, + "loss": 0.3699770736694336, + "step": 28300 + }, + { + "epoch": 9.514280928050926, + "grad_norm": 0.7541705369949341, + "learning_rate": 4.5244388609715244e-05, + "loss": 0.37311084747314455, + "step": 28400 + }, + { + "epoch": 9.547784571572159, + "grad_norm": 0.7311919331550598, + "learning_rate": 4.522763819095477e-05, + "loss": 0.3715859603881836, + "step": 28500 + }, + { + "epoch": 9.581288215093391, + "grad_norm": 0.700539767742157, + "learning_rate": 4.52108877721943e-05, + "loss": 0.3688846206665039, + "step": 28600 + }, + { + "epoch": 9.614791858614625, + "grad_norm": 0.6238375306129456, + "learning_rate": 4.519413735343384e-05, + "loss": 0.3701490020751953, + "step": 28700 + }, + { + "epoch": 9.648295502135857, + "grad_norm": 0.6758601069450378, + "learning_rate": 4.517738693467337e-05, + "loss": 0.37076793670654296, + "step": 28800 + }, + { + "epoch": 9.68179914565709, + "grad_norm": 0.7019829750061035, + "learning_rate": 4.51606365159129e-05, + "loss": 0.3690201187133789, + "step": 28900 + }, + { + "epoch": 9.715302789178324, + "grad_norm": 0.8280263543128967, + "learning_rate": 4.514388609715243e-05, + "loss": 0.3725156402587891, + "step": 29000 + }, + { + "epoch": 9.748806432699556, + "grad_norm": 0.6962838172912598, + "learning_rate": 4.512713567839196e-05, + "loss": 0.3695372009277344, + "step": 29100 + }, + { + "epoch": 9.782310076220789, + "grad_norm": 0.6678254008293152, + "learning_rate": 4.5110385259631495e-05, + "loss": 0.36981796264648437, + "step": 29200 + }, + { + "epoch": 9.815813719742023, + "grad_norm": 0.7574114799499512, + "learning_rate": 4.5093634840871024e-05, + "loss": 0.3735762023925781, + "step": 29300 + }, + { + "epoch": 9.849317363263255, + "grad_norm": 0.6498548984527588, + "learning_rate": 4.507688442211055e-05, + "loss": 0.36818092346191406, + "step": 29400 + }, + { + "epoch": 9.882821006784487, + "grad_norm": 0.6784448623657227, + "learning_rate": 4.506013400335008e-05, + "loss": 0.3738037872314453, + "step": 29500 + }, + { + "epoch": 9.916324650305722, + "grad_norm": 0.748648464679718, + "learning_rate": 4.504338358458962e-05, + "loss": 0.3744197463989258, + "step": 29600 + }, + { + "epoch": 9.949828293826954, + "grad_norm": 0.7319295406341553, + "learning_rate": 4.5026633165829146e-05, + "loss": 0.3747980499267578, + "step": 29700 + }, + { + "epoch": 9.983331937348186, + "grad_norm": 0.7425316572189331, + "learning_rate": 4.5009882747068675e-05, + "loss": 0.37337436676025393, + "step": 29800 + }, + { + "epoch": 10.016751821760616, + "grad_norm": 0.6705507040023804, + "learning_rate": 4.499313232830821e-05, + "loss": 0.36580001831054687, + "step": 29900 + }, + { + "epoch": 10.050255465281849, + "grad_norm": 0.7338049411773682, + "learning_rate": 4.4976381909547746e-05, + "loss": 0.35635528564453123, + "step": 30000 + }, + { + "epoch": 10.083759108803083, + "grad_norm": 0.7279812693595886, + "learning_rate": 4.4959631490787275e-05, + "loss": 0.3529629898071289, + "step": 30100 + }, + { + "epoch": 10.117262752324315, + "grad_norm": 0.7696557641029358, + "learning_rate": 4.4942881072026804e-05, + "loss": 0.354565315246582, + "step": 30200 + }, + { + "epoch": 10.150766395845547, + "grad_norm": 0.728212833404541, + "learning_rate": 4.4926298157453936e-05, + "loss": 0.3530071258544922, + "step": 30300 + }, + { + "epoch": 10.184270039366782, + "grad_norm": 0.7012603878974915, + "learning_rate": 4.490954773869347e-05, + "loss": 0.3573540496826172, + "step": 30400 + }, + { + "epoch": 10.217773682888014, + "grad_norm": 0.7446846961975098, + "learning_rate": 4.4892797319933e-05, + "loss": 0.35920669555664064, + "step": 30500 + }, + { + "epoch": 10.251277326409246, + "grad_norm": 0.792353630065918, + "learning_rate": 4.487604690117253e-05, + "loss": 0.3555112075805664, + "step": 30600 + }, + { + "epoch": 10.28478096993048, + "grad_norm": 0.6799439787864685, + "learning_rate": 4.485929648241206e-05, + "loss": 0.36326725006103516, + "step": 30700 + }, + { + "epoch": 10.318284613451713, + "grad_norm": 0.7877249121665955, + "learning_rate": 4.4842546063651594e-05, + "loss": 0.36337570190429686, + "step": 30800 + }, + { + "epoch": 10.351788256972945, + "grad_norm": 0.8450521230697632, + "learning_rate": 4.482579564489112e-05, + "loss": 0.3597735595703125, + "step": 30900 + }, + { + "epoch": 10.38529190049418, + "grad_norm": 0.7301276922225952, + "learning_rate": 4.480904522613066e-05, + "loss": 0.3627984619140625, + "step": 31000 + }, + { + "epoch": 10.418795544015412, + "grad_norm": 0.7038715481758118, + "learning_rate": 4.479229480737019e-05, + "loss": 0.356929817199707, + "step": 31100 + }, + { + "epoch": 10.452299187536644, + "grad_norm": 0.7955334782600403, + "learning_rate": 4.4775544388609716e-05, + "loss": 0.35474601745605466, + "step": 31200 + }, + { + "epoch": 10.485802831057878, + "grad_norm": 0.7089738249778748, + "learning_rate": 4.475879396984925e-05, + "loss": 0.36358638763427736, + "step": 31300 + }, + { + "epoch": 10.51930647457911, + "grad_norm": 0.8143360018730164, + "learning_rate": 4.474204355108878e-05, + "loss": 0.3624624252319336, + "step": 31400 + }, + { + "epoch": 10.552810118100343, + "grad_norm": 0.8367409706115723, + "learning_rate": 4.472529313232831e-05, + "loss": 0.36308753967285157, + "step": 31500 + }, + { + "epoch": 10.586313761621577, + "grad_norm": 0.7856859564781189, + "learning_rate": 4.470854271356784e-05, + "loss": 0.362791862487793, + "step": 31600 + }, + { + "epoch": 10.61981740514281, + "grad_norm": 0.8061284422874451, + "learning_rate": 4.4691792294807374e-05, + "loss": 0.3634458541870117, + "step": 31700 + }, + { + "epoch": 10.653321048664042, + "grad_norm": 0.785724401473999, + "learning_rate": 4.46750418760469e-05, + "loss": 0.36115474700927735, + "step": 31800 + }, + { + "epoch": 10.686824692185276, + "grad_norm": 0.7530859112739563, + "learning_rate": 4.465829145728643e-05, + "loss": 0.36017478942871095, + "step": 31900 + }, + { + "epoch": 10.720328335706508, + "grad_norm": 0.7640136480331421, + "learning_rate": 4.464154103852596e-05, + "loss": 0.36370697021484377, + "step": 32000 + }, + { + "epoch": 10.75383197922774, + "grad_norm": 0.7125088572502136, + "learning_rate": 4.4624790619765496e-05, + "loss": 0.36396575927734376, + "step": 32100 + }, + { + "epoch": 10.787335622748975, + "grad_norm": 0.8106554746627808, + "learning_rate": 4.4608040201005025e-05, + "loss": 0.3571950912475586, + "step": 32200 + }, + { + "epoch": 10.820839266270207, + "grad_norm": 0.768183708190918, + "learning_rate": 4.4591457286432164e-05, + "loss": 0.3580643844604492, + "step": 32300 + }, + { + "epoch": 10.85434290979144, + "grad_norm": 0.7329164743423462, + "learning_rate": 4.457470686767169e-05, + "loss": 0.36159816741943357, + "step": 32400 + }, + { + "epoch": 10.887846553312674, + "grad_norm": 0.7993727922439575, + "learning_rate": 4.455795644891123e-05, + "loss": 0.3672108840942383, + "step": 32500 + }, + { + "epoch": 10.921350196833906, + "grad_norm": 0.7389618754386902, + "learning_rate": 4.454120603015076e-05, + "loss": 0.3596214294433594, + "step": 32600 + }, + { + "epoch": 10.954853840355138, + "grad_norm": 0.6745049953460693, + "learning_rate": 4.4524455611390286e-05, + "loss": 0.36047595977783203, + "step": 32700 + }, + { + "epoch": 10.98835748387637, + "grad_norm": 0.7832050919532776, + "learning_rate": 4.4507705192629815e-05, + "loss": 0.3599930953979492, + "step": 32800 + }, + { + "epoch": 11.021777368288802, + "grad_norm": 0.7236883044242859, + "learning_rate": 4.449095477386935e-05, + "loss": 0.3518721771240234, + "step": 32900 + }, + { + "epoch": 11.055281011810035, + "grad_norm": 0.6951456069946289, + "learning_rate": 4.447420435510888e-05, + "loss": 0.3448529815673828, + "step": 33000 + }, + { + "epoch": 11.088784655331267, + "grad_norm": 0.8174095749855042, + "learning_rate": 4.445745393634841e-05, + "loss": 0.3480173873901367, + "step": 33100 + }, + { + "epoch": 11.1222882988525, + "grad_norm": 0.8361256122589111, + "learning_rate": 4.444070351758794e-05, + "loss": 0.3429459762573242, + "step": 33200 + }, + { + "epoch": 11.155791942373734, + "grad_norm": 0.8620163202285767, + "learning_rate": 4.442395309882747e-05, + "loss": 0.3492248916625977, + "step": 33300 + }, + { + "epoch": 11.189295585894966, + "grad_norm": 0.7246844172477722, + "learning_rate": 4.440720268006701e-05, + "loss": 0.3458073043823242, + "step": 33400 + }, + { + "epoch": 11.222799229416198, + "grad_norm": 0.7091465592384338, + "learning_rate": 4.439045226130654e-05, + "loss": 0.34752788543701174, + "step": 33500 + }, + { + "epoch": 11.256302872937432, + "grad_norm": 0.7573132514953613, + "learning_rate": 4.4373701842546066e-05, + "loss": 0.3496548080444336, + "step": 33600 + }, + { + "epoch": 11.289806516458665, + "grad_norm": 0.7986613512039185, + "learning_rate": 4.4356951423785595e-05, + "loss": 0.34697345733642576, + "step": 33700 + }, + { + "epoch": 11.323310159979897, + "grad_norm": 0.7822960615158081, + "learning_rate": 4.434020100502513e-05, + "loss": 0.35006622314453123, + "step": 33800 + }, + { + "epoch": 11.356813803501131, + "grad_norm": 0.8444114327430725, + "learning_rate": 4.432345058626466e-05, + "loss": 0.3496244430541992, + "step": 33900 + }, + { + "epoch": 11.390317447022364, + "grad_norm": 0.7642440795898438, + "learning_rate": 4.430670016750419e-05, + "loss": 0.350846061706543, + "step": 34000 + }, + { + "epoch": 11.423821090543596, + "grad_norm": 0.7518153190612793, + "learning_rate": 4.428994974874372e-05, + "loss": 0.3499641036987305, + "step": 34100 + }, + { + "epoch": 11.45732473406483, + "grad_norm": 0.8707530498504639, + "learning_rate": 4.427319932998325e-05, + "loss": 0.3532308578491211, + "step": 34200 + }, + { + "epoch": 11.490828377586062, + "grad_norm": 0.7227981686592102, + "learning_rate": 4.4256616415410385e-05, + "loss": 0.35490013122558595, + "step": 34300 + }, + { + "epoch": 11.524332021107295, + "grad_norm": 0.7735912203788757, + "learning_rate": 4.423986599664992e-05, + "loss": 0.3542043304443359, + "step": 34400 + }, + { + "epoch": 11.557835664628529, + "grad_norm": 0.8353047370910645, + "learning_rate": 4.422311557788945e-05, + "loss": 0.34967689514160155, + "step": 34500 + }, + { + "epoch": 11.591339308149761, + "grad_norm": 0.7564737200737, + "learning_rate": 4.4206365159128985e-05, + "loss": 0.35371181488037107, + "step": 34600 + }, + { + "epoch": 11.624842951670994, + "grad_norm": 0.656694233417511, + "learning_rate": 4.4189614740368514e-05, + "loss": 0.3496272277832031, + "step": 34700 + }, + { + "epoch": 11.658346595192228, + "grad_norm": 0.8337951302528381, + "learning_rate": 4.417286432160804e-05, + "loss": 0.35147029876708985, + "step": 34800 + }, + { + "epoch": 11.69185023871346, + "grad_norm": 0.779253363609314, + "learning_rate": 4.415611390284757e-05, + "loss": 0.3496464920043945, + "step": 34900 + }, + { + "epoch": 11.725353882234693, + "grad_norm": 0.8846334218978882, + "learning_rate": 4.413936348408711e-05, + "loss": 0.3506482696533203, + "step": 35000 + }, + { + "epoch": 11.758857525755927, + "grad_norm": 0.7678661346435547, + "learning_rate": 4.4122613065326636e-05, + "loss": 0.35182670593261717, + "step": 35100 + }, + { + "epoch": 11.792361169277159, + "grad_norm": 0.779376745223999, + "learning_rate": 4.4105862646566165e-05, + "loss": 0.3535502624511719, + "step": 35200 + }, + { + "epoch": 11.825864812798391, + "grad_norm": 0.8054938316345215, + "learning_rate": 4.408911222780569e-05, + "loss": 0.35151683807373046, + "step": 35300 + }, + { + "epoch": 11.859368456319626, + "grad_norm": 0.7657700181007385, + "learning_rate": 4.407236180904523e-05, + "loss": 0.3521769714355469, + "step": 35400 + }, + { + "epoch": 11.892872099840858, + "grad_norm": 0.7825794219970703, + "learning_rate": 4.405561139028476e-05, + "loss": 0.3515496826171875, + "step": 35500 + }, + { + "epoch": 11.92637574336209, + "grad_norm": 0.811125636100769, + "learning_rate": 4.403886097152429e-05, + "loss": 0.35637962341308593, + "step": 35600 + }, + { + "epoch": 11.959879386883323, + "grad_norm": 0.7954035401344299, + "learning_rate": 4.402211055276382e-05, + "loss": 0.3535337066650391, + "step": 35700 + }, + { + "epoch": 11.993383030404557, + "grad_norm": 0.9039795994758606, + "learning_rate": 4.400536013400335e-05, + "loss": 0.351923828125, + "step": 35800 + }, + { + "epoch": 12.026802914816987, + "grad_norm": 0.7764714360237122, + "learning_rate": 4.3988609715242887e-05, + "loss": 0.3385712432861328, + "step": 35900 + }, + { + "epoch": 12.060306558338219, + "grad_norm": 0.8632619380950928, + "learning_rate": 4.3971859296482415e-05, + "loss": 0.3341633605957031, + "step": 36000 + }, + { + "epoch": 12.093810201859451, + "grad_norm": 0.7242739200592041, + "learning_rate": 4.3955108877721944e-05, + "loss": 0.33580013275146486, + "step": 36100 + }, + { + "epoch": 12.127313845380685, + "grad_norm": 0.8469365239143372, + "learning_rate": 4.393835845896147e-05, + "loss": 0.33277801513671873, + "step": 36200 + }, + { + "epoch": 12.160817488901918, + "grad_norm": 0.8422605991363525, + "learning_rate": 4.392177554438861e-05, + "loss": 0.33413345336914063, + "step": 36300 + }, + { + "epoch": 12.19432113242315, + "grad_norm": 0.7811619639396667, + "learning_rate": 4.390502512562814e-05, + "loss": 0.33585643768310547, + "step": 36400 + }, + { + "epoch": 12.227824775944384, + "grad_norm": 0.7483822703361511, + "learning_rate": 4.388827470686767e-05, + "loss": 0.33689048767089846, + "step": 36500 + }, + { + "epoch": 12.261328419465617, + "grad_norm": 0.8344827890396118, + "learning_rate": 4.3871524288107206e-05, + "loss": 0.33572166442871093, + "step": 36600 + }, + { + "epoch": 12.294832062986849, + "grad_norm": 0.8680643439292908, + "learning_rate": 4.385477386934674e-05, + "loss": 0.3416824722290039, + "step": 36700 + }, + { + "epoch": 12.328335706508083, + "grad_norm": 0.8696274757385254, + "learning_rate": 4.383802345058627e-05, + "loss": 0.33966796875, + "step": 36800 + }, + { + "epoch": 12.361839350029316, + "grad_norm": 0.8183309435844421, + "learning_rate": 4.38212730318258e-05, + "loss": 0.3437775039672852, + "step": 36900 + }, + { + "epoch": 12.395342993550548, + "grad_norm": 0.8513368368148804, + "learning_rate": 4.380452261306533e-05, + "loss": 0.3392060470581055, + "step": 37000 + }, + { + "epoch": 12.428846637071782, + "grad_norm": 0.799085259437561, + "learning_rate": 4.378777219430486e-05, + "loss": 0.34548038482666016, + "step": 37100 + }, + { + "epoch": 12.462350280593014, + "grad_norm": 0.8001937866210938, + "learning_rate": 4.377102177554439e-05, + "loss": 0.3440947723388672, + "step": 37200 + }, + { + "epoch": 12.495853924114247, + "grad_norm": 0.7208882570266724, + "learning_rate": 4.375427135678392e-05, + "loss": 0.33991405487060544, + "step": 37300 + }, + { + "epoch": 12.529357567635481, + "grad_norm": 0.7442817687988281, + "learning_rate": 4.373752093802345e-05, + "loss": 0.3403905487060547, + "step": 37400 + }, + { + "epoch": 12.562861211156713, + "grad_norm": 0.8188682794570923, + "learning_rate": 4.3720770519262985e-05, + "loss": 0.3432355499267578, + "step": 37500 + }, + { + "epoch": 12.596364854677946, + "grad_norm": 0.8770096302032471, + "learning_rate": 4.3704020100502514e-05, + "loss": 0.3425747299194336, + "step": 37600 + }, + { + "epoch": 12.62986849819918, + "grad_norm": 0.6969801187515259, + "learning_rate": 4.368726968174204e-05, + "loss": 0.3424406051635742, + "step": 37700 + }, + { + "epoch": 12.663372141720412, + "grad_norm": 0.7996489405632019, + "learning_rate": 4.367051926298157e-05, + "loss": 0.34474189758300783, + "step": 37800 + }, + { + "epoch": 12.696875785241645, + "grad_norm": 0.8017092943191528, + "learning_rate": 4.365376884422111e-05, + "loss": 0.3453398895263672, + "step": 37900 + }, + { + "epoch": 12.730379428762879, + "grad_norm": 0.8389545679092407, + "learning_rate": 4.363701842546064e-05, + "loss": 0.3442976760864258, + "step": 38000 + }, + { + "epoch": 12.763883072284111, + "grad_norm": 0.829469621181488, + "learning_rate": 4.362026800670017e-05, + "loss": 0.3431151580810547, + "step": 38100 + }, + { + "epoch": 12.797386715805343, + "grad_norm": 0.747890055179596, + "learning_rate": 4.36035175879397e-05, + "loss": 0.3406733322143555, + "step": 38200 + }, + { + "epoch": 12.830890359326578, + "grad_norm": 0.8428831100463867, + "learning_rate": 4.358693467336683e-05, + "loss": 0.34296836853027346, + "step": 38300 + }, + { + "epoch": 12.86439400284781, + "grad_norm": 0.837282121181488, + "learning_rate": 4.357018425460637e-05, + "loss": 0.3470125579833984, + "step": 38400 + }, + { + "epoch": 12.897897646369042, + "grad_norm": 0.7993006706237793, + "learning_rate": 4.35534338358459e-05, + "loss": 0.3433689117431641, + "step": 38500 + }, + { + "epoch": 12.931401289890276, + "grad_norm": 0.7729536294937134, + "learning_rate": 4.3536683417085426e-05, + "loss": 0.34415348052978517, + "step": 38600 + }, + { + "epoch": 12.964904933411509, + "grad_norm": 0.8379591107368469, + "learning_rate": 4.3519932998324955e-05, + "loss": 0.3490380096435547, + "step": 38700 + }, + { + "epoch": 12.998408576932741, + "grad_norm": 0.8118153214454651, + "learning_rate": 4.350318257956449e-05, + "loss": 0.3449933624267578, + "step": 38800 + }, + { + "epoch": 13.031828461345171, + "grad_norm": 0.7350383400917053, + "learning_rate": 4.3486432160804026e-05, + "loss": 0.3230305862426758, + "step": 38900 + }, + { + "epoch": 13.065332104866405, + "grad_norm": 0.844278872013092, + "learning_rate": 4.3469681742043555e-05, + "loss": 0.3269623565673828, + "step": 39000 + }, + { + "epoch": 13.098835748387637, + "grad_norm": 0.7997421622276306, + "learning_rate": 4.3452931323283084e-05, + "loss": 0.32578598022460936, + "step": 39100 + }, + { + "epoch": 13.13233939190887, + "grad_norm": 0.830944299697876, + "learning_rate": 4.343618090452262e-05, + "loss": 0.32753429412841795, + "step": 39200 + }, + { + "epoch": 13.165843035430104, + "grad_norm": 0.7835378646850586, + "learning_rate": 4.341943048576215e-05, + "loss": 0.32705738067626955, + "step": 39300 + }, + { + "epoch": 13.199346678951336, + "grad_norm": 0.9184708595275879, + "learning_rate": 4.340268006700168e-05, + "loss": 0.32659355163574216, + "step": 39400 + }, + { + "epoch": 13.232850322472569, + "grad_norm": 0.9233602285385132, + "learning_rate": 4.3385929648241206e-05, + "loss": 0.3316535186767578, + "step": 39500 + }, + { + "epoch": 13.266353965993801, + "grad_norm": 0.8355572819709778, + "learning_rate": 4.336917922948074e-05, + "loss": 0.3265563583374023, + "step": 39600 + }, + { + "epoch": 13.299857609515035, + "grad_norm": 0.8072609901428223, + "learning_rate": 4.335242881072027e-05, + "loss": 0.329896354675293, + "step": 39700 + }, + { + "epoch": 13.333361253036268, + "grad_norm": 0.7573186159133911, + "learning_rate": 4.33356783919598e-05, + "loss": 0.3345551300048828, + "step": 39800 + }, + { + "epoch": 13.3668648965575, + "grad_norm": 0.7736772894859314, + "learning_rate": 4.331892797319933e-05, + "loss": 0.32930431365966795, + "step": 39900 + }, + { + "epoch": 13.400368540078734, + "grad_norm": 0.6786108016967773, + "learning_rate": 4.3302177554438864e-05, + "loss": 0.3282357406616211, + "step": 40000 + }, + { + "epoch": 13.433872183599966, + "grad_norm": 0.9429032206535339, + "learning_rate": 4.328542713567839e-05, + "loss": 0.33234012603759766, + "step": 40100 + }, + { + "epoch": 13.467375827121199, + "grad_norm": 0.8342773914337158, + "learning_rate": 4.326867671691793e-05, + "loss": 0.33062789916992186, + "step": 40200 + }, + { + "epoch": 13.500879470642433, + "grad_norm": 0.8285291194915771, + "learning_rate": 4.325209380234506e-05, + "loss": 0.33372978210449217, + "step": 40300 + }, + { + "epoch": 13.534383114163665, + "grad_norm": 0.9048053622245789, + "learning_rate": 4.323534338358459e-05, + "loss": 0.3388665771484375, + "step": 40400 + }, + { + "epoch": 13.567886757684898, + "grad_norm": 0.8660252690315247, + "learning_rate": 4.3218592964824125e-05, + "loss": 0.33297966003417967, + "step": 40500 + }, + { + "epoch": 13.601390401206132, + "grad_norm": 0.8536561727523804, + "learning_rate": 4.3201842546063654e-05, + "loss": 0.3336554718017578, + "step": 40600 + }, + { + "epoch": 13.634894044727364, + "grad_norm": 0.8385009765625, + "learning_rate": 4.318509212730318e-05, + "loss": 0.3373324203491211, + "step": 40700 + }, + { + "epoch": 13.668397688248596, + "grad_norm": 0.8286055326461792, + "learning_rate": 4.316834170854271e-05, + "loss": 0.3344192886352539, + "step": 40800 + }, + { + "epoch": 13.70190133176983, + "grad_norm": 0.8716219067573547, + "learning_rate": 4.315159128978225e-05, + "loss": 0.3346976089477539, + "step": 40900 + }, + { + "epoch": 13.735404975291063, + "grad_norm": 0.9002569317817688, + "learning_rate": 4.3134840871021776e-05, + "loss": 0.33477676391601563, + "step": 41000 + }, + { + "epoch": 13.768908618812295, + "grad_norm": 0.7407629489898682, + "learning_rate": 4.3118090452261305e-05, + "loss": 0.3335411071777344, + "step": 41100 + }, + { + "epoch": 13.80241226233353, + "grad_norm": 0.8391560316085815, + "learning_rate": 4.310134003350084e-05, + "loss": 0.33270046234130857, + "step": 41200 + }, + { + "epoch": 13.835915905854762, + "grad_norm": 0.8274234533309937, + "learning_rate": 4.3084589614740376e-05, + "loss": 0.3338147735595703, + "step": 41300 + }, + { + "epoch": 13.869419549375994, + "grad_norm": 0.7722423672676086, + "learning_rate": 4.3067839195979905e-05, + "loss": 0.3329287338256836, + "step": 41400 + }, + { + "epoch": 13.902923192897228, + "grad_norm": 0.8129300475120544, + "learning_rate": 4.3051088777219434e-05, + "loss": 0.3391679000854492, + "step": 41500 + }, + { + "epoch": 13.93642683641846, + "grad_norm": 0.7851378917694092, + "learning_rate": 4.303433835845896e-05, + "loss": 0.33578712463378907, + "step": 41600 + }, + { + "epoch": 13.969930479939693, + "grad_norm": 0.8963794708251953, + "learning_rate": 4.30175879396985e-05, + "loss": 0.3370305252075195, + "step": 41700 + }, + { + "epoch": 14.003350364352123, + "grad_norm": 0.7511172890663147, + "learning_rate": 4.300083752093803e-05, + "loss": 0.3332187652587891, + "step": 41800 + }, + { + "epoch": 14.036854007873357, + "grad_norm": 0.8411696553230286, + "learning_rate": 4.2984087102177556e-05, + "loss": 0.3142329978942871, + "step": 41900 + }, + { + "epoch": 14.07035765139459, + "grad_norm": 0.8463764190673828, + "learning_rate": 4.2967336683417085e-05, + "loss": 0.31400049209594727, + "step": 42000 + }, + { + "epoch": 14.103861294915822, + "grad_norm": 0.8349206447601318, + "learning_rate": 4.295058626465662e-05, + "loss": 0.3154226112365723, + "step": 42100 + }, + { + "epoch": 14.137364938437056, + "grad_norm": 0.8107666373252869, + "learning_rate": 4.293383584589615e-05, + "loss": 0.31885833740234376, + "step": 42200 + }, + { + "epoch": 14.170868581958288, + "grad_norm": 0.8954828381538391, + "learning_rate": 4.291725293132329e-05, + "loss": 0.3197479820251465, + "step": 42300 + }, + { + "epoch": 14.20437222547952, + "grad_norm": 0.8605073094367981, + "learning_rate": 4.290050251256282e-05, + "loss": 0.32168098449707033, + "step": 42400 + }, + { + "epoch": 14.237875869000753, + "grad_norm": 0.8864564299583435, + "learning_rate": 4.2883752093802346e-05, + "loss": 0.31901069641113283, + "step": 42500 + }, + { + "epoch": 14.271379512521987, + "grad_norm": 0.8231778144836426, + "learning_rate": 4.286700167504188e-05, + "loss": 0.3223213577270508, + "step": 42600 + }, + { + "epoch": 14.30488315604322, + "grad_norm": 0.8360753059387207, + "learning_rate": 4.285025125628141e-05, + "loss": 0.32040260314941404, + "step": 42700 + }, + { + "epoch": 14.338386799564452, + "grad_norm": 0.8900824785232544, + "learning_rate": 4.283350083752094e-05, + "loss": 0.32190364837646485, + "step": 42800 + }, + { + "epoch": 14.371890443085686, + "grad_norm": 0.8233429193496704, + "learning_rate": 4.281675041876047e-05, + "loss": 0.32389614105224607, + "step": 42900 + }, + { + "epoch": 14.405394086606918, + "grad_norm": 0.7868608236312866, + "learning_rate": 4.2800000000000004e-05, + "loss": 0.3197458839416504, + "step": 43000 + }, + { + "epoch": 14.43889773012815, + "grad_norm": 0.9061699509620667, + "learning_rate": 4.278324958123953e-05, + "loss": 0.32365760803222654, + "step": 43100 + }, + { + "epoch": 14.472401373649385, + "grad_norm": 0.8254518508911133, + "learning_rate": 4.276649916247906e-05, + "loss": 0.32395694732666014, + "step": 43200 + }, + { + "epoch": 14.505905017170617, + "grad_norm": 0.8711475729942322, + "learning_rate": 4.274974874371859e-05, + "loss": 0.32183242797851563, + "step": 43300 + }, + { + "epoch": 14.53940866069185, + "grad_norm": 0.8801646828651428, + "learning_rate": 4.2732998324958126e-05, + "loss": 0.3255552673339844, + "step": 43400 + }, + { + "epoch": 14.572912304213084, + "grad_norm": 0.9780988693237305, + "learning_rate": 4.271624790619766e-05, + "loss": 0.32349624633789065, + "step": 43500 + }, + { + "epoch": 14.606415947734316, + "grad_norm": 0.7670713663101196, + "learning_rate": 4.269949748743719e-05, + "loss": 0.325313720703125, + "step": 43600 + }, + { + "epoch": 14.639919591255548, + "grad_norm": 0.8528743386268616, + "learning_rate": 4.268274706867672e-05, + "loss": 0.3246849822998047, + "step": 43700 + }, + { + "epoch": 14.673423234776783, + "grad_norm": 0.8485456109046936, + "learning_rate": 4.2665996649916254e-05, + "loss": 0.3302822494506836, + "step": 43800 + }, + { + "epoch": 14.706926878298015, + "grad_norm": 0.7821197509765625, + "learning_rate": 4.264924623115578e-05, + "loss": 0.3271540451049805, + "step": 43900 + }, + { + "epoch": 14.740430521819247, + "grad_norm": 0.8672188520431519, + "learning_rate": 4.263249581239531e-05, + "loss": 0.32373977661132813, + "step": 44000 + }, + { + "epoch": 14.773934165340481, + "grad_norm": 0.8280694484710693, + "learning_rate": 4.261574539363484e-05, + "loss": 0.3241862106323242, + "step": 44100 + }, + { + "epoch": 14.807437808861714, + "grad_norm": 0.8599796891212463, + "learning_rate": 4.2598994974874377e-05, + "loss": 0.32549205780029294, + "step": 44200 + }, + { + "epoch": 14.840941452382946, + "grad_norm": 0.8781849145889282, + "learning_rate": 4.258241206030151e-05, + "loss": 0.331417121887207, + "step": 44300 + }, + { + "epoch": 14.87444509590418, + "grad_norm": 0.9023721814155579, + "learning_rate": 4.256566164154104e-05, + "loss": 0.33159866333007815, + "step": 44400 + }, + { + "epoch": 14.907948739425413, + "grad_norm": 0.8109947443008423, + "learning_rate": 4.2548911222780573e-05, + "loss": 0.3285139846801758, + "step": 44500 + }, + { + "epoch": 14.941452382946645, + "grad_norm": 0.9133332371711731, + "learning_rate": 4.25321608040201e-05, + "loss": 0.3285633850097656, + "step": 44600 + }, + { + "epoch": 14.97495602646788, + "grad_norm": 0.897939145565033, + "learning_rate": 4.251541038525964e-05, + "loss": 0.3268856430053711, + "step": 44700 + }, + { + "epoch": 15.008375910880309, + "grad_norm": 0.8286980986595154, + "learning_rate": 4.249865996649917e-05, + "loss": 0.31992229461669924, + "step": 44800 + }, + { + "epoch": 15.041879554401541, + "grad_norm": 0.8173639178276062, + "learning_rate": 4.2481909547738696e-05, + "loss": 0.3056914710998535, + "step": 44900 + }, + { + "epoch": 15.075383197922774, + "grad_norm": 0.7765247821807861, + "learning_rate": 4.2465159128978224e-05, + "loss": 0.30892095565795896, + "step": 45000 + }, + { + "epoch": 15.108886841444008, + "grad_norm": 0.9506803750991821, + "learning_rate": 4.244840871021776e-05, + "loss": 0.31020853042602536, + "step": 45100 + }, + { + "epoch": 15.14239048496524, + "grad_norm": 0.855025053024292, + "learning_rate": 4.243165829145729e-05, + "loss": 0.30636240005493165, + "step": 45200 + }, + { + "epoch": 15.175894128486473, + "grad_norm": 0.8373168110847473, + "learning_rate": 4.241490787269682e-05, + "loss": 0.3096147537231445, + "step": 45300 + }, + { + "epoch": 15.209397772007707, + "grad_norm": 0.8214793801307678, + "learning_rate": 4.2398157453936346e-05, + "loss": 0.3086151885986328, + "step": 45400 + }, + { + "epoch": 15.242901415528939, + "grad_norm": 0.8581687211990356, + "learning_rate": 4.238140703517588e-05, + "loss": 0.3079892349243164, + "step": 45500 + }, + { + "epoch": 15.276405059050171, + "grad_norm": 0.8844295740127563, + "learning_rate": 4.236465661641541e-05, + "loss": 0.31047849655151366, + "step": 45600 + }, + { + "epoch": 15.309908702571404, + "grad_norm": 0.8439965844154358, + "learning_rate": 4.234790619765494e-05, + "loss": 0.3138412094116211, + "step": 45700 + }, + { + "epoch": 15.343412346092638, + "grad_norm": 0.903762698173523, + "learning_rate": 4.2331155778894475e-05, + "loss": 0.3122879219055176, + "step": 45800 + }, + { + "epoch": 15.37691598961387, + "grad_norm": 0.8018752932548523, + "learning_rate": 4.2314405360134004e-05, + "loss": 0.3170251655578613, + "step": 45900 + }, + { + "epoch": 15.410419633135103, + "grad_norm": 0.92534339427948, + "learning_rate": 4.229765494137354e-05, + "loss": 0.3110039138793945, + "step": 46000 + }, + { + "epoch": 15.443923276656337, + "grad_norm": 0.9206555485725403, + "learning_rate": 4.228090452261307e-05, + "loss": 0.31349218368530274, + "step": 46100 + }, + { + "epoch": 15.47742692017757, + "grad_norm": 0.9693331122398376, + "learning_rate": 4.22641541038526e-05, + "loss": 0.3193240737915039, + "step": 46200 + }, + { + "epoch": 15.510930563698802, + "grad_norm": 0.8420470952987671, + "learning_rate": 4.224757118927974e-05, + "loss": 0.3151701354980469, + "step": 46300 + }, + { + "epoch": 15.544434207220036, + "grad_norm": 0.9353216290473938, + "learning_rate": 4.2230820770519265e-05, + "loss": 0.3188944435119629, + "step": 46400 + }, + { + "epoch": 15.577937850741268, + "grad_norm": 0.9871792197227478, + "learning_rate": 4.2214070351758794e-05, + "loss": 0.31723602294921877, + "step": 46500 + }, + { + "epoch": 15.6114414942625, + "grad_norm": 0.7518536448478699, + "learning_rate": 4.219731993299832e-05, + "loss": 0.31692527770996093, + "step": 46600 + }, + { + "epoch": 15.644945137783735, + "grad_norm": 0.8153543472290039, + "learning_rate": 4.218056951423786e-05, + "loss": 0.3178220748901367, + "step": 46700 + }, + { + "epoch": 15.678448781304967, + "grad_norm": 0.9253189563751221, + "learning_rate": 4.2163819095477394e-05, + "loss": 0.31681758880615235, + "step": 46800 + }, + { + "epoch": 15.7119524248262, + "grad_norm": 0.9607227444648743, + "learning_rate": 4.214706867671692e-05, + "loss": 0.31734546661376956, + "step": 46900 + }, + { + "epoch": 15.745456068347433, + "grad_norm": 0.9105275273323059, + "learning_rate": 4.213031825795645e-05, + "loss": 0.3183962059020996, + "step": 47000 + }, + { + "epoch": 15.778959711868666, + "grad_norm": 0.943592369556427, + "learning_rate": 4.211356783919598e-05, + "loss": 0.3173214912414551, + "step": 47100 + }, + { + "epoch": 15.812463355389898, + "grad_norm": 0.8281202912330627, + "learning_rate": 4.2096817420435516e-05, + "loss": 0.31825736999511717, + "step": 47200 + }, + { + "epoch": 15.845966998911132, + "grad_norm": 0.9243564009666443, + "learning_rate": 4.2080067001675045e-05, + "loss": 0.31478778839111327, + "step": 47300 + }, + { + "epoch": 15.879470642432365, + "grad_norm": 0.9413986206054688, + "learning_rate": 4.2063316582914574e-05, + "loss": 0.3212542343139648, + "step": 47400 + }, + { + "epoch": 15.912974285953597, + "grad_norm": 0.7720843553543091, + "learning_rate": 4.20465661641541e-05, + "loss": 0.3203662109375, + "step": 47500 + }, + { + "epoch": 15.946477929474831, + "grad_norm": 0.9300262331962585, + "learning_rate": 4.202981574539364e-05, + "loss": 0.31860551834106443, + "step": 47600 + }, + { + "epoch": 15.979981572996063, + "grad_norm": 0.9552218317985535, + "learning_rate": 4.201306532663317e-05, + "loss": 0.32005401611328127, + "step": 47700 + }, + { + "epoch": 16.01340145740849, + "grad_norm": 0.9004557132720947, + "learning_rate": 4.1996314907872696e-05, + "loss": 0.30930152893066404, + "step": 47800 + }, + { + "epoch": 16.046905100929727, + "grad_norm": 0.8685380220413208, + "learning_rate": 4.1979564489112225e-05, + "loss": 0.2990193176269531, + "step": 47900 + }, + { + "epoch": 16.08040874445096, + "grad_norm": 0.9357792735099792, + "learning_rate": 4.196281407035176e-05, + "loss": 0.3014987373352051, + "step": 48000 + }, + { + "epoch": 16.113912387972192, + "grad_norm": 0.8524284362792969, + "learning_rate": 4.1946063651591296e-05, + "loss": 0.29952068328857423, + "step": 48100 + }, + { + "epoch": 16.147416031493425, + "grad_norm": 0.8511279225349426, + "learning_rate": 4.1929313232830825e-05, + "loss": 0.2990330505371094, + "step": 48200 + }, + { + "epoch": 16.180919675014657, + "grad_norm": 0.9268020987510681, + "learning_rate": 4.191273031825796e-05, + "loss": 0.2993707275390625, + "step": 48300 + }, + { + "epoch": 16.21442331853589, + "grad_norm": 0.9302972555160522, + "learning_rate": 4.1895979899497486e-05, + "loss": 0.30082115173339846, + "step": 48400 + }, + { + "epoch": 16.247926962057125, + "grad_norm": 0.7517661452293396, + "learning_rate": 4.187922948073702e-05, + "loss": 0.29987972259521484, + "step": 48500 + }, + { + "epoch": 16.281430605578358, + "grad_norm": 0.9238623976707458, + "learning_rate": 4.186247906197655e-05, + "loss": 0.30625816345214846, + "step": 48600 + }, + { + "epoch": 16.31493424909959, + "grad_norm": 0.8699862360954285, + "learning_rate": 4.184572864321608e-05, + "loss": 0.3052105522155762, + "step": 48700 + }, + { + "epoch": 16.348437892620822, + "grad_norm": 0.8557946085929871, + "learning_rate": 4.182897822445561e-05, + "loss": 0.30761667251586916, + "step": 48800 + }, + { + "epoch": 16.381941536142055, + "grad_norm": 0.9344996213912964, + "learning_rate": 4.1812227805695144e-05, + "loss": 0.3052439498901367, + "step": 48900 + }, + { + "epoch": 16.415445179663287, + "grad_norm": 0.8814606070518494, + "learning_rate": 4.179547738693467e-05, + "loss": 0.3072672843933105, + "step": 49000 + }, + { + "epoch": 16.448948823184523, + "grad_norm": 0.847149670124054, + "learning_rate": 4.177872696817421e-05, + "loss": 0.3086087226867676, + "step": 49100 + }, + { + "epoch": 16.482452466705755, + "grad_norm": 0.8724634051322937, + "learning_rate": 4.176197654941374e-05, + "loss": 0.3087570571899414, + "step": 49200 + }, + { + "epoch": 16.515956110226988, + "grad_norm": 0.909691572189331, + "learning_rate": 4.174522613065327e-05, + "loss": 0.3070098495483398, + "step": 49300 + }, + { + "epoch": 16.54945975374822, + "grad_norm": 0.9307814240455627, + "learning_rate": 4.17284757118928e-05, + "loss": 0.305695915222168, + "step": 49400 + }, + { + "epoch": 16.582963397269452, + "grad_norm": 0.7699813842773438, + "learning_rate": 4.171172529313233e-05, + "loss": 0.30605703353881836, + "step": 49500 + }, + { + "epoch": 16.616467040790685, + "grad_norm": 1.0044174194335938, + "learning_rate": 4.169497487437186e-05, + "loss": 0.3084003257751465, + "step": 49600 + }, + { + "epoch": 16.64997068431192, + "grad_norm": 0.8166942000389099, + "learning_rate": 4.1678224455611395e-05, + "loss": 0.307757682800293, + "step": 49700 + }, + { + "epoch": 16.683474327833153, + "grad_norm": 0.8853956460952759, + "learning_rate": 4.1661474036850924e-05, + "loss": 0.3071472358703613, + "step": 49800 + }, + { + "epoch": 16.716977971354385, + "grad_norm": 0.8246440291404724, + "learning_rate": 4.164472361809045e-05, + "loss": 0.3088929557800293, + "step": 49900 + }, + { + "epoch": 16.750481614875618, + "grad_norm": 0.9108903408050537, + "learning_rate": 4.162797319932998e-05, + "loss": 0.3075083541870117, + "step": 50000 + }, + { + "epoch": 16.78398525839685, + "grad_norm": 0.9037117958068848, + "learning_rate": 4.161122278056952e-05, + "loss": 0.31276445388793944, + "step": 50100 + }, + { + "epoch": 16.817488901918082, + "grad_norm": 0.9087954759597778, + "learning_rate": 4.1594472361809046e-05, + "loss": 0.30919795989990234, + "step": 50200 + }, + { + "epoch": 16.85099254543932, + "grad_norm": Infinity, + "learning_rate": 4.157772194304858e-05, + "loss": 0.3113286209106445, + "step": 50300 + }, + { + "epoch": 16.88449618896055, + "grad_norm": 0.9613434076309204, + "learning_rate": 4.1561139028475714e-05, + "loss": 0.31487524032592773, + "step": 50400 + }, + { + "epoch": 16.917999832481783, + "grad_norm": 0.9458907246589661, + "learning_rate": 4.154438860971524e-05, + "loss": 0.3127643394470215, + "step": 50500 + }, + { + "epoch": 16.951503476003015, + "grad_norm": 0.9252173900604248, + "learning_rate": 4.152763819095478e-05, + "loss": 0.3084212112426758, + "step": 50600 + }, + { + "epoch": 16.985007119524248, + "grad_norm": 0.9816356897354126, + "learning_rate": 4.151088777219431e-05, + "loss": 0.31181251525878906, + "step": 50700 + }, + { + "epoch": 17.01842700393668, + "grad_norm": 0.8120167851448059, + "learning_rate": 4.1494137353433836e-05, + "loss": 0.2999544906616211, + "step": 50800 + }, + { + "epoch": 17.05193064745791, + "grad_norm": 0.7779452800750732, + "learning_rate": 4.1477386934673365e-05, + "loss": 0.2881363487243652, + "step": 50900 + }, + { + "epoch": 17.085434290979144, + "grad_norm": 0.8800045847892761, + "learning_rate": 4.14606365159129e-05, + "loss": 0.29184545516967775, + "step": 51000 + }, + { + "epoch": 17.118937934500376, + "grad_norm": 0.8309177160263062, + "learning_rate": 4.144388609715243e-05, + "loss": 0.293133430480957, + "step": 51100 + }, + { + "epoch": 17.15244157802161, + "grad_norm": 0.8549261093139648, + "learning_rate": 4.142713567839196e-05, + "loss": 0.29502378463745116, + "step": 51200 + }, + { + "epoch": 17.18594522154284, + "grad_norm": 0.9220601916313171, + "learning_rate": 4.141038525963149e-05, + "loss": 0.29487173080444334, + "step": 51300 + }, + { + "epoch": 17.219448865064077, + "grad_norm": 0.8818517327308655, + "learning_rate": 4.139363484087103e-05, + "loss": 0.2922089767456055, + "step": 51400 + }, + { + "epoch": 17.25295250858531, + "grad_norm": 0.9325298070907593, + "learning_rate": 4.137688442211056e-05, + "loss": 0.2953068351745605, + "step": 51500 + }, + { + "epoch": 17.286456152106542, + "grad_norm": 0.842454731464386, + "learning_rate": 4.136013400335009e-05, + "loss": 0.29264474868774415, + "step": 51600 + }, + { + "epoch": 17.319959795627774, + "grad_norm": 0.9482097029685974, + "learning_rate": 4.1343383584589616e-05, + "loss": 0.2976564979553223, + "step": 51700 + }, + { + "epoch": 17.353463439149007, + "grad_norm": 0.9430213570594788, + "learning_rate": 4.132663316582915e-05, + "loss": 0.29929805755615235, + "step": 51800 + }, + { + "epoch": 17.38696708267024, + "grad_norm": 0.9468767642974854, + "learning_rate": 4.130988274706868e-05, + "loss": 0.2957676124572754, + "step": 51900 + }, + { + "epoch": 17.420470726191475, + "grad_norm": 0.9603669047355652, + "learning_rate": 4.129313232830821e-05, + "loss": 0.2980274963378906, + "step": 52000 + }, + { + "epoch": 17.453974369712707, + "grad_norm": 0.8796602487564087, + "learning_rate": 4.127638190954774e-05, + "loss": 0.3016574096679687, + "step": 52100 + }, + { + "epoch": 17.48747801323394, + "grad_norm": 0.9244174957275391, + "learning_rate": 4.125963149078727e-05, + "loss": 0.2988929748535156, + "step": 52200 + }, + { + "epoch": 17.520981656755172, + "grad_norm": 0.7938122749328613, + "learning_rate": 4.12428810720268e-05, + "loss": 0.29994075775146484, + "step": 52300 + }, + { + "epoch": 17.554485300276404, + "grad_norm": 0.9149840474128723, + "learning_rate": 4.122629815745394e-05, + "loss": 0.29651493072509766, + "step": 52400 + }, + { + "epoch": 17.587988943797637, + "grad_norm": 0.96629399061203, + "learning_rate": 4.120954773869347e-05, + "loss": 0.30109855651855466, + "step": 52500 + }, + { + "epoch": 17.621492587318873, + "grad_norm": 0.8029501438140869, + "learning_rate": 4.1192797319933e-05, + "loss": 0.3032656478881836, + "step": 52600 + }, + { + "epoch": 17.654996230840105, + "grad_norm": 0.831659734249115, + "learning_rate": 4.1176046901172535e-05, + "loss": 0.2977634048461914, + "step": 52700 + }, + { + "epoch": 17.688499874361337, + "grad_norm": 0.8770350813865662, + "learning_rate": 4.1159296482412063e-05, + "loss": 0.3002130317687988, + "step": 52800 + }, + { + "epoch": 17.72200351788257, + "grad_norm": 0.9197613596916199, + "learning_rate": 4.114254606365159e-05, + "loss": 0.30171897888183596, + "step": 52900 + }, + { + "epoch": 17.755507161403802, + "grad_norm": 0.8716971278190613, + "learning_rate": 4.112579564489112e-05, + "loss": 0.3020934104919434, + "step": 53000 + }, + { + "epoch": 17.789010804925034, + "grad_norm": 0.9348130226135254, + "learning_rate": 4.110904522613066e-05, + "loss": 0.30243810653686526, + "step": 53100 + }, + { + "epoch": 17.82251444844627, + "grad_norm": 1.0112886428833008, + "learning_rate": 4.1092294807370185e-05, + "loss": 0.3036368370056152, + "step": 53200 + }, + { + "epoch": 17.856018091967503, + "grad_norm": 0.9333941340446472, + "learning_rate": 4.1075544388609714e-05, + "loss": 0.30571670532226564, + "step": 53300 + }, + { + "epoch": 17.889521735488735, + "grad_norm": 0.8895190358161926, + "learning_rate": 4.105879396984924e-05, + "loss": 0.3056245040893555, + "step": 53400 + }, + { + "epoch": 17.923025379009967, + "grad_norm": 0.953789472579956, + "learning_rate": 4.104204355108878e-05, + "loss": 0.30313159942626955, + "step": 53500 + }, + { + "epoch": 17.9565290225312, + "grad_norm": 0.8885256052017212, + "learning_rate": 4.102529313232831e-05, + "loss": 0.3018374061584473, + "step": 53600 + }, + { + "epoch": 17.990032666052432, + "grad_norm": 1.043843388557434, + "learning_rate": 4.100854271356784e-05, + "loss": 0.30093835830688476, + "step": 53700 + }, + { + "epoch": 18.023452550464864, + "grad_norm": 0.8944602012634277, + "learning_rate": 4.099179229480737e-05, + "loss": 0.28485956192016604, + "step": 53800 + }, + { + "epoch": 18.056956193986096, + "grad_norm": 0.9355315566062927, + "learning_rate": 4.097504187604691e-05, + "loss": 0.28318214416503906, + "step": 53900 + }, + { + "epoch": 18.09045983750733, + "grad_norm": 0.7996422052383423, + "learning_rate": 4.0958291457286436e-05, + "loss": 0.2806725120544434, + "step": 54000 + }, + { + "epoch": 18.12396348102856, + "grad_norm": 0.9255834817886353, + "learning_rate": 4.0941541038525965e-05, + "loss": 0.2835847473144531, + "step": 54100 + }, + { + "epoch": 18.157467124549793, + "grad_norm": 0.9625722169876099, + "learning_rate": 4.0924790619765494e-05, + "loss": 0.28318588256835936, + "step": 54200 + }, + { + "epoch": 18.19097076807103, + "grad_norm": 0.9195216298103333, + "learning_rate": 4.090804020100503e-05, + "loss": 0.2873989105224609, + "step": 54300 + }, + { + "epoch": 18.22447441159226, + "grad_norm": 0.9396908283233643, + "learning_rate": 4.089145728643216e-05, + "loss": 0.2853095054626465, + "step": 54400 + }, + { + "epoch": 18.257978055113494, + "grad_norm": 0.8911498188972473, + "learning_rate": 4.087470686767169e-05, + "loss": 0.2902779769897461, + "step": 54500 + }, + { + "epoch": 18.291481698634726, + "grad_norm": 0.995733916759491, + "learning_rate": 4.085795644891122e-05, + "loss": 0.28672319412231445, + "step": 54600 + }, + { + "epoch": 18.32498534215596, + "grad_norm": 1.0607621669769287, + "learning_rate": 4.0841206030150755e-05, + "loss": 0.288260498046875, + "step": 54700 + }, + { + "epoch": 18.35848898567719, + "grad_norm": 0.9770358204841614, + "learning_rate": 4.082445561139029e-05, + "loss": 0.2871124267578125, + "step": 54800 + }, + { + "epoch": 18.391992629198427, + "grad_norm": 0.7948865294456482, + "learning_rate": 4.080770519262982e-05, + "loss": 0.2901685333251953, + "step": 54900 + }, + { + "epoch": 18.42549627271966, + "grad_norm": 0.829538106918335, + "learning_rate": 4.079095477386935e-05, + "loss": 0.29097063064575196, + "step": 55000 + }, + { + "epoch": 18.45899991624089, + "grad_norm": 0.972334086894989, + "learning_rate": 4.077420435510888e-05, + "loss": 0.2907312965393066, + "step": 55100 + }, + { + "epoch": 18.492503559762124, + "grad_norm": 1.0088402032852173, + "learning_rate": 4.075745393634841e-05, + "loss": 0.2925748634338379, + "step": 55200 + }, + { + "epoch": 18.526007203283356, + "grad_norm": 1.0144375562667847, + "learning_rate": 4.074070351758794e-05, + "loss": 0.29165184020996093, + "step": 55300 + }, + { + "epoch": 18.55951084680459, + "grad_norm": 0.9276221394538879, + "learning_rate": 4.072395309882747e-05, + "loss": 0.2919579887390137, + "step": 55400 + }, + { + "epoch": 18.593014490325825, + "grad_norm": 0.9088070392608643, + "learning_rate": 4.0707202680067e-05, + "loss": 0.29476572036743165, + "step": 55500 + }, + { + "epoch": 18.626518133847057, + "grad_norm": 0.8358734846115112, + "learning_rate": 4.0690452261306535e-05, + "loss": 0.29323875427246093, + "step": 55600 + }, + { + "epoch": 18.66002177736829, + "grad_norm": 0.9234775304794312, + "learning_rate": 4.0673701842546064e-05, + "loss": 0.295458984375, + "step": 55700 + }, + { + "epoch": 18.69352542088952, + "grad_norm": 1.033413052558899, + "learning_rate": 4.065695142378559e-05, + "loss": 0.29363622665405276, + "step": 55800 + }, + { + "epoch": 18.727029064410754, + "grad_norm": 0.8682520389556885, + "learning_rate": 4.064020100502513e-05, + "loss": 0.2977585220336914, + "step": 55900 + }, + { + "epoch": 18.760532707931986, + "grad_norm": 1.0640672445297241, + "learning_rate": 4.0623450586264664e-05, + "loss": 0.2952461051940918, + "step": 56000 + }, + { + "epoch": 18.794036351453222, + "grad_norm": 0.9460969567298889, + "learning_rate": 4.060670016750419e-05, + "loss": 0.2973412322998047, + "step": 56100 + }, + { + "epoch": 18.827539994974455, + "grad_norm": 0.9299043416976929, + "learning_rate": 4.058994974874372e-05, + "loss": 0.29550174713134764, + "step": 56200 + }, + { + "epoch": 18.861043638495687, + "grad_norm": 1.0823304653167725, + "learning_rate": 4.057319932998325e-05, + "loss": 0.2938914680480957, + "step": 56300 + }, + { + "epoch": 18.89454728201692, + "grad_norm": 0.9436834454536438, + "learning_rate": 4.055661641541039e-05, + "loss": 0.29774511337280274, + "step": 56400 + }, + { + "epoch": 18.92805092553815, + "grad_norm": 0.9670146107673645, + "learning_rate": 4.053986599664992e-05, + "loss": 0.29711448669433593, + "step": 56500 + }, + { + "epoch": 18.961554569059384, + "grad_norm": 0.971251368522644, + "learning_rate": 4.052311557788945e-05, + "loss": 0.29909347534179687, + "step": 56600 + }, + { + "epoch": 18.995058212580616, + "grad_norm": 0.8543409705162048, + "learning_rate": 4.0506365159128976e-05, + "loss": 0.29678007125854494, + "step": 56700 + }, + { + "epoch": 19.028478096993048, + "grad_norm": 0.9036636352539062, + "learning_rate": 4.048961474036851e-05, + "loss": 0.2788318824768066, + "step": 56800 + }, + { + "epoch": 19.06198174051428, + "grad_norm": 1.0365597009658813, + "learning_rate": 4.047286432160804e-05, + "loss": 0.2757110023498535, + "step": 56900 + }, + { + "epoch": 19.095485384035513, + "grad_norm": 0.8653129935264587, + "learning_rate": 4.0456113902847576e-05, + "loss": 0.2768836402893066, + "step": 57000 + }, + { + "epoch": 19.128989027556745, + "grad_norm": 0.8460621237754822, + "learning_rate": 4.0439363484087105e-05, + "loss": 0.2755991363525391, + "step": 57100 + }, + { + "epoch": 19.16249267107798, + "grad_norm": 0.8957028985023499, + "learning_rate": 4.0422613065326634e-05, + "loss": 0.27972606658935545, + "step": 57200 + }, + { + "epoch": 19.195996314599213, + "grad_norm": 0.9295471906661987, + "learning_rate": 4.040586264656617e-05, + "loss": 0.2782594871520996, + "step": 57300 + }, + { + "epoch": 19.229499958120446, + "grad_norm": 0.8899731636047363, + "learning_rate": 4.03891122278057e-05, + "loss": 0.2778139877319336, + "step": 57400 + }, + { + "epoch": 19.263003601641678, + "grad_norm": 0.9683830142021179, + "learning_rate": 4.037236180904523e-05, + "loss": 0.28136295318603516, + "step": 57500 + }, + { + "epoch": 19.29650724516291, + "grad_norm": 0.8920564651489258, + "learning_rate": 4.0355611390284756e-05, + "loss": 0.28040409088134766, + "step": 57600 + }, + { + "epoch": 19.330010888684143, + "grad_norm": 0.9366307854652405, + "learning_rate": 4.033886097152429e-05, + "loss": 0.28461326599121095, + "step": 57700 + }, + { + "epoch": 19.36351453220538, + "grad_norm": 0.9464457035064697, + "learning_rate": 4.032211055276382e-05, + "loss": 0.28297006607055664, + "step": 57800 + }, + { + "epoch": 19.39701817572661, + "grad_norm": 1.0350395441055298, + "learning_rate": 4.030536013400335e-05, + "loss": 0.2860834503173828, + "step": 57900 + }, + { + "epoch": 19.430521819247843, + "grad_norm": 0.8994850516319275, + "learning_rate": 4.028860971524288e-05, + "loss": 0.28455873489379885, + "step": 58000 + }, + { + "epoch": 19.464025462769076, + "grad_norm": 1.0085395574569702, + "learning_rate": 4.0271859296482414e-05, + "loss": 0.28580081939697266, + "step": 58100 + }, + { + "epoch": 19.497529106290308, + "grad_norm": 0.9378731846809387, + "learning_rate": 4.025510887772195e-05, + "loss": 0.28492233276367185, + "step": 58200 + }, + { + "epoch": 19.53103274981154, + "grad_norm": 1.1039483547210693, + "learning_rate": 4.023835845896148e-05, + "loss": 0.28393068313598635, + "step": 58300 + }, + { + "epoch": 19.564536393332776, + "grad_norm": 1.0000792741775513, + "learning_rate": 4.022177554438861e-05, + "loss": 0.28428964614868163, + "step": 58400 + }, + { + "epoch": 19.59804003685401, + "grad_norm": 0.9822189211845398, + "learning_rate": 4.0205025125628146e-05, + "loss": 0.28679338455200193, + "step": 58500 + }, + { + "epoch": 19.63154368037524, + "grad_norm": 1.008216142654419, + "learning_rate": 4.0188274706867675e-05, + "loss": 0.2877239990234375, + "step": 58600 + }, + { + "epoch": 19.665047323896474, + "grad_norm": 0.8709893822669983, + "learning_rate": 4.0171524288107204e-05, + "loss": 0.28736095428466796, + "step": 58700 + }, + { + "epoch": 19.698550967417706, + "grad_norm": 1.0486055612564087, + "learning_rate": 4.015477386934673e-05, + "loss": 0.2875706672668457, + "step": 58800 + }, + { + "epoch": 19.73205461093894, + "grad_norm": 0.9718714952468872, + "learning_rate": 4.013802345058627e-05, + "loss": 0.2887088394165039, + "step": 58900 + }, + { + "epoch": 19.765558254460174, + "grad_norm": 0.9496104717254639, + "learning_rate": 4.01212730318258e-05, + "loss": 0.2863414573669434, + "step": 59000 + }, + { + "epoch": 19.799061897981407, + "grad_norm": 1.0247166156768799, + "learning_rate": 4.0104522613065326e-05, + "loss": 0.287678165435791, + "step": 59100 + }, + { + "epoch": 19.83256554150264, + "grad_norm": 0.9370303153991699, + "learning_rate": 4.008777219430486e-05, + "loss": 0.28977474212646487, + "step": 59200 + }, + { + "epoch": 19.86606918502387, + "grad_norm": 0.8732765316963196, + "learning_rate": 4.007102177554439e-05, + "loss": 0.2899479293823242, + "step": 59300 + }, + { + "epoch": 19.899572828545104, + "grad_norm": 0.9661251306533813, + "learning_rate": 4.0054271356783926e-05, + "loss": 0.28924821853637694, + "step": 59400 + }, + { + "epoch": 19.933076472066336, + "grad_norm": 0.9300135374069214, + "learning_rate": 4.0037520938023455e-05, + "loss": 0.2898877716064453, + "step": 59500 + }, + { + "epoch": 19.96658011558757, + "grad_norm": 1.0985535383224487, + "learning_rate": 4.0020770519262983e-05, + "loss": 0.28800737380981445, + "step": 59600 + }, + { + "epoch": 20.0, + "grad_norm": 1.0769129991531372, + "learning_rate": 4.000402010050251e-05, + "loss": 0.2884260940551758, + "step": 59700 + }, + { + "epoch": 20.033503643521232, + "grad_norm": 0.9619253277778625, + "learning_rate": 3.998726968174205e-05, + "loss": 0.2721578788757324, + "step": 59800 + }, + { + "epoch": 20.067007287042465, + "grad_norm": 0.9351584911346436, + "learning_rate": 3.997051926298158e-05, + "loss": 0.2715591049194336, + "step": 59900 + }, + { + "epoch": 20.100510930563697, + "grad_norm": 0.957760214805603, + "learning_rate": 3.9953768844221106e-05, + "loss": 0.2707101821899414, + "step": 60000 + }, + { + "epoch": 20.134014574084933, + "grad_norm": 0.8414269089698792, + "learning_rate": 3.9937018425460634e-05, + "loss": 0.27344297409057616, + "step": 60100 + }, + { + "epoch": 20.167518217606165, + "grad_norm": 1.0471901893615723, + "learning_rate": 3.992026800670017e-05, + "loss": 0.2716003227233887, + "step": 60200 + }, + { + "epoch": 20.201021861127398, + "grad_norm": 0.9024125933647156, + "learning_rate": 3.99035175879397e-05, + "loss": 0.27117115020751953, + "step": 60300 + }, + { + "epoch": 20.23452550464863, + "grad_norm": 0.8774855136871338, + "learning_rate": 3.988693467336684e-05, + "loss": 0.2748865509033203, + "step": 60400 + }, + { + "epoch": 20.268029148169862, + "grad_norm": 0.9664554595947266, + "learning_rate": 3.987018425460637e-05, + "loss": 0.27406461715698244, + "step": 60500 + }, + { + "epoch": 20.301532791691095, + "grad_norm": 1.035376787185669, + "learning_rate": 3.98534338358459e-05, + "loss": 0.2735789489746094, + "step": 60600 + }, + { + "epoch": 20.33503643521233, + "grad_norm": 0.9546007513999939, + "learning_rate": 3.983668341708543e-05, + "loss": 0.2764925956726074, + "step": 60700 + }, + { + "epoch": 20.368540078733563, + "grad_norm": 1.0165990591049194, + "learning_rate": 3.981993299832496e-05, + "loss": 0.27297565460205075, + "step": 60800 + }, + { + "epoch": 20.402043722254795, + "grad_norm": 0.9471421241760254, + "learning_rate": 3.980318257956449e-05, + "loss": 0.27823368072509763, + "step": 60900 + }, + { + "epoch": 20.435547365776028, + "grad_norm": 0.9725298285484314, + "learning_rate": 3.9786432160804025e-05, + "loss": 0.2764093208312988, + "step": 61000 + }, + { + "epoch": 20.46905100929726, + "grad_norm": 0.8394715189933777, + "learning_rate": 3.976968174204355e-05, + "loss": 0.2772574996948242, + "step": 61100 + }, + { + "epoch": 20.502554652818493, + "grad_norm": 0.8922716975212097, + "learning_rate": 3.975293132328308e-05, + "loss": 0.27750770568847655, + "step": 61200 + }, + { + "epoch": 20.53605829633973, + "grad_norm": 0.9844845533370972, + "learning_rate": 3.973618090452261e-05, + "loss": 0.2779910278320312, + "step": 61300 + }, + { + "epoch": 20.56956193986096, + "grad_norm": 0.8804232478141785, + "learning_rate": 3.971943048576215e-05, + "loss": 0.2776468086242676, + "step": 61400 + }, + { + "epoch": 20.603065583382193, + "grad_norm": 0.9889972805976868, + "learning_rate": 3.970268006700168e-05, + "loss": 0.27890708923339846, + "step": 61500 + }, + { + "epoch": 20.636569226903426, + "grad_norm": 0.980644166469574, + "learning_rate": 3.968592964824121e-05, + "loss": 0.28234588623046875, + "step": 61600 + }, + { + "epoch": 20.670072870424658, + "grad_norm": 0.9484408497810364, + "learning_rate": 3.966917922948074e-05, + "loss": 0.28126981735229495, + "step": 61700 + }, + { + "epoch": 20.70357651394589, + "grad_norm": 1.055678367614746, + "learning_rate": 3.965242881072027e-05, + "loss": 0.2830071067810059, + "step": 61800 + }, + { + "epoch": 20.737080157467126, + "grad_norm": 0.8886085748672485, + "learning_rate": 3.9635678391959804e-05, + "loss": 0.27813196182250977, + "step": 61900 + }, + { + "epoch": 20.77058380098836, + "grad_norm": 1.0629770755767822, + "learning_rate": 3.961892797319933e-05, + "loss": 0.2837041664123535, + "step": 62000 + }, + { + "epoch": 20.80408744450959, + "grad_norm": 0.8154080510139465, + "learning_rate": 3.960217755443886e-05, + "loss": 0.2794221115112305, + "step": 62100 + }, + { + "epoch": 20.837591088030823, + "grad_norm": 0.9643964171409607, + "learning_rate": 3.958542713567839e-05, + "loss": 0.2807983207702637, + "step": 62200 + }, + { + "epoch": 20.871094731552056, + "grad_norm": 1.0410659313201904, + "learning_rate": 3.9568676716917926e-05, + "loss": 0.27797990798950195, + "step": 62300 + }, + { + "epoch": 20.904598375073288, + "grad_norm": 0.9507243633270264, + "learning_rate": 3.955209380234506e-05, + "loss": 0.2836384010314941, + "step": 62400 + }, + { + "epoch": 20.93810201859452, + "grad_norm": 1.0288045406341553, + "learning_rate": 3.953534338358459e-05, + "loss": 0.28449560165405274, + "step": 62500 + }, + { + "epoch": 20.971605662115756, + "grad_norm": 0.9709306359291077, + "learning_rate": 3.951859296482412e-05, + "loss": 0.282686824798584, + "step": 62600 + }, + { + "epoch": 21.005025546528184, + "grad_norm": 0.8715474009513855, + "learning_rate": 3.950184254606365e-05, + "loss": 0.2808470153808594, + "step": 62700 + }, + { + "epoch": 21.038529190049417, + "grad_norm": 0.9847482442855835, + "learning_rate": 3.948509212730319e-05, + "loss": 0.2635519218444824, + "step": 62800 + }, + { + "epoch": 21.07203283357065, + "grad_norm": 0.945732057094574, + "learning_rate": 3.9468341708542717e-05, + "loss": 0.26160152435302736, + "step": 62900 + }, + { + "epoch": 21.105536477091885, + "grad_norm": 0.9310206174850464, + "learning_rate": 3.945175879396985e-05, + "loss": 0.26616928100585935, + "step": 63000 + }, + { + "epoch": 21.139040120613117, + "grad_norm": 0.8321387767791748, + "learning_rate": 3.9435008375209385e-05, + "loss": 0.2665995216369629, + "step": 63100 + }, + { + "epoch": 21.17254376413435, + "grad_norm": 0.9247589707374573, + "learning_rate": 3.9418257956448913e-05, + "loss": 0.2642600440979004, + "step": 63200 + }, + { + "epoch": 21.206047407655582, + "grad_norm": 0.9166206121444702, + "learning_rate": 3.940150753768844e-05, + "loss": 0.2661565208435059, + "step": 63300 + }, + { + "epoch": 21.239551051176814, + "grad_norm": 1.0146381855010986, + "learning_rate": 3.938475711892797e-05, + "loss": 0.26595497131347656, + "step": 63400 + }, + { + "epoch": 21.273054694698047, + "grad_norm": 0.8782115578651428, + "learning_rate": 3.936800670016751e-05, + "loss": 0.2683505821228027, + "step": 63500 + }, + { + "epoch": 21.306558338219283, + "grad_norm": 0.8348855376243591, + "learning_rate": 3.935125628140704e-05, + "loss": 0.27002309799194335, + "step": 63600 + }, + { + "epoch": 21.340061981740515, + "grad_norm": 1.0207946300506592, + "learning_rate": 3.933450586264657e-05, + "loss": 0.2727695083618164, + "step": 63700 + }, + { + "epoch": 21.373565625261747, + "grad_norm": 0.9709821939468384, + "learning_rate": 3.93177554438861e-05, + "loss": 0.2713334655761719, + "step": 63800 + }, + { + "epoch": 21.40706926878298, + "grad_norm": 0.9931967258453369, + "learning_rate": 3.930100502512563e-05, + "loss": 0.2715752029418945, + "step": 63900 + }, + { + "epoch": 21.440572912304212, + "grad_norm": 1.002032995223999, + "learning_rate": 3.9284254606365164e-05, + "loss": 0.27039655685424807, + "step": 64000 + }, + { + "epoch": 21.474076555825445, + "grad_norm": 1.011479377746582, + "learning_rate": 3.926750418760469e-05, + "loss": 0.27180171966552735, + "step": 64100 + }, + { + "epoch": 21.50758019934668, + "grad_norm": 0.8830493092536926, + "learning_rate": 3.925075376884422e-05, + "loss": 0.27189735412597654, + "step": 64200 + }, + { + "epoch": 21.541083842867913, + "grad_norm": 0.957878828048706, + "learning_rate": 3.923400335008375e-05, + "loss": 0.27135616302490234, + "step": 64300 + }, + { + "epoch": 21.574587486389145, + "grad_norm": 0.9988912343978882, + "learning_rate": 3.9217252931323286e-05, + "loss": 0.2725925064086914, + "step": 64400 + }, + { + "epoch": 21.608091129910378, + "grad_norm": 0.9891326427459717, + "learning_rate": 3.9200502512562815e-05, + "loss": 0.27440677642822264, + "step": 64500 + }, + { + "epoch": 21.64159477343161, + "grad_norm": 1.0808324813842773, + "learning_rate": 3.9183752093802344e-05, + "loss": 0.27411041259765623, + "step": 64600 + }, + { + "epoch": 21.675098416952842, + "grad_norm": 0.9373248219490051, + "learning_rate": 3.916700167504187e-05, + "loss": 0.2749940490722656, + "step": 64700 + }, + { + "epoch": 21.708602060474078, + "grad_norm": 1.165182113647461, + "learning_rate": 3.915025125628141e-05, + "loss": 0.27408443450927733, + "step": 64800 + }, + { + "epoch": 21.74210570399531, + "grad_norm": 0.9180405139923096, + "learning_rate": 3.9133500837520944e-05, + "loss": 0.27541778564453123, + "step": 64900 + }, + { + "epoch": 21.775609347516543, + "grad_norm": 1.0415167808532715, + "learning_rate": 3.911675041876047e-05, + "loss": 0.2752027893066406, + "step": 65000 + }, + { + "epoch": 21.809112991037775, + "grad_norm": 0.996279239654541, + "learning_rate": 3.91e-05, + "loss": 0.27856874465942383, + "step": 65100 + }, + { + "epoch": 21.842616634559008, + "grad_norm": 0.8467832207679749, + "learning_rate": 3.908324958123953e-05, + "loss": 0.2744846153259277, + "step": 65200 + }, + { + "epoch": 21.87612027808024, + "grad_norm": 0.9609348177909851, + "learning_rate": 3.9066499162479066e-05, + "loss": 0.27501155853271486, + "step": 65300 + }, + { + "epoch": 21.909623921601476, + "grad_norm": 1.0232717990875244, + "learning_rate": 3.9049748743718595e-05, + "loss": 0.2766411590576172, + "step": 65400 + }, + { + "epoch": 21.94312756512271, + "grad_norm": 0.9764308333396912, + "learning_rate": 3.9032998324958124e-05, + "loss": 0.27579292297363284, + "step": 65500 + }, + { + "epoch": 21.97663120864394, + "grad_norm": 0.8772796392440796, + "learning_rate": 3.901624790619766e-05, + "loss": 0.27892873764038084, + "step": 65600 + }, + { + "epoch": 22.01005109305637, + "grad_norm": 0.9070359468460083, + "learning_rate": 3.899949748743719e-05, + "loss": 0.27117897033691407, + "step": 65700 + }, + { + "epoch": 22.043554736577605, + "grad_norm": 0.9539000988006592, + "learning_rate": 3.898274706867672e-05, + "loss": 0.2588020706176758, + "step": 65800 + }, + { + "epoch": 22.077058380098837, + "grad_norm": 0.7974834442138672, + "learning_rate": 3.8965996649916246e-05, + "loss": 0.2590653610229492, + "step": 65900 + }, + { + "epoch": 22.11056202362007, + "grad_norm": 0.9373714327812195, + "learning_rate": 3.894924623115578e-05, + "loss": 0.25843637466430663, + "step": 66000 + }, + { + "epoch": 22.1440656671413, + "grad_norm": 0.9088506698608398, + "learning_rate": 3.893249581239532e-05, + "loss": 0.2609646987915039, + "step": 66100 + }, + { + "epoch": 22.177569310662534, + "grad_norm": 0.7560039162635803, + "learning_rate": 3.8915745393634846e-05, + "loss": 0.25976266860961916, + "step": 66200 + }, + { + "epoch": 22.211072954183766, + "grad_norm": 1.0187093019485474, + "learning_rate": 3.8898994974874375e-05, + "loss": 0.2626813507080078, + "step": 66300 + }, + { + "epoch": 22.244576597705, + "grad_norm": 0.9864270687103271, + "learning_rate": 3.8882244556113904e-05, + "loss": 0.26082069396972657, + "step": 66400 + }, + { + "epoch": 22.278080241226235, + "grad_norm": 0.9238985776901245, + "learning_rate": 3.886549413735344e-05, + "loss": 0.26303247451782225, + "step": 66500 + }, + { + "epoch": 22.311583884747467, + "grad_norm": 1.06230628490448, + "learning_rate": 3.884874371859297e-05, + "loss": 0.2636404609680176, + "step": 66600 + }, + { + "epoch": 22.3450875282687, + "grad_norm": 0.8938685655593872, + "learning_rate": 3.88319932998325e-05, + "loss": 0.26432344436645505, + "step": 66700 + }, + { + "epoch": 22.37859117178993, + "grad_norm": 0.9398422837257385, + "learning_rate": 3.8815242881072026e-05, + "loss": 0.2664291763305664, + "step": 66800 + }, + { + "epoch": 22.412094815311164, + "grad_norm": 0.9452701210975647, + "learning_rate": 3.879849246231156e-05, + "loss": 0.26500213623046875, + "step": 66900 + }, + { + "epoch": 22.445598458832396, + "grad_norm": 1.0754152536392212, + "learning_rate": 3.8781909547738694e-05, + "loss": 0.266211051940918, + "step": 67000 + }, + { + "epoch": 22.479102102353632, + "grad_norm": 0.966921329498291, + "learning_rate": 3.876515912897823e-05, + "loss": 0.26374603271484376, + "step": 67100 + }, + { + "epoch": 22.512605745874865, + "grad_norm": 0.979242742061615, + "learning_rate": 3.874840871021776e-05, + "loss": 0.266760082244873, + "step": 67200 + }, + { + "epoch": 22.546109389396097, + "grad_norm": 1.169141173362732, + "learning_rate": 3.873165829145729e-05, + "loss": 0.2670201873779297, + "step": 67300 + }, + { + "epoch": 22.57961303291733, + "grad_norm": 0.9599239230155945, + "learning_rate": 3.871490787269682e-05, + "loss": 0.2680745315551758, + "step": 67400 + }, + { + "epoch": 22.613116676438562, + "grad_norm": 1.0141677856445312, + "learning_rate": 3.869815745393635e-05, + "loss": 0.26869884490966794, + "step": 67500 + }, + { + "epoch": 22.646620319959794, + "grad_norm": 0.9633665084838867, + "learning_rate": 3.868140703517588e-05, + "loss": 0.26763187408447264, + "step": 67600 + }, + { + "epoch": 22.68012396348103, + "grad_norm": 1.046339750289917, + "learning_rate": 3.866465661641541e-05, + "loss": 0.271055965423584, + "step": 67700 + }, + { + "epoch": 22.713627607002262, + "grad_norm": 1.0029908418655396, + "learning_rate": 3.8647906197654945e-05, + "loss": 0.26755489349365236, + "step": 67800 + }, + { + "epoch": 22.747131250523495, + "grad_norm": 0.9917793273925781, + "learning_rate": 3.8631155778894473e-05, + "loss": 0.26893938064575196, + "step": 67900 + }, + { + "epoch": 22.780634894044727, + "grad_norm": 0.921280026435852, + "learning_rate": 3.8614405360134e-05, + "loss": 0.26891294479370115, + "step": 68000 + }, + { + "epoch": 22.81413853756596, + "grad_norm": 0.9776479601860046, + "learning_rate": 3.859765494137353e-05, + "loss": 0.2671005058288574, + "step": 68100 + }, + { + "epoch": 22.847642181087192, + "grad_norm": 0.8705649375915527, + "learning_rate": 3.858090452261307e-05, + "loss": 0.2690028762817383, + "step": 68200 + }, + { + "epoch": 22.881145824608428, + "grad_norm": 0.8992595076560974, + "learning_rate": 3.8564154103852595e-05, + "loss": 0.26913272857666015, + "step": 68300 + }, + { + "epoch": 22.91464946812966, + "grad_norm": 0.8897244334220886, + "learning_rate": 3.854740368509213e-05, + "loss": 0.27021236419677735, + "step": 68400 + }, + { + "epoch": 22.948153111650893, + "grad_norm": 0.9646697044372559, + "learning_rate": 3.853065326633166e-05, + "loss": 0.27057441711425784, + "step": 68500 + }, + { + "epoch": 22.981656755172125, + "grad_norm": 0.9705012440681458, + "learning_rate": 3.8513902847571195e-05, + "loss": 0.27003257751464843, + "step": 68600 + }, + { + "epoch": 23.015076639584557, + "grad_norm": 0.9501924514770508, + "learning_rate": 3.8497152428810724e-05, + "loss": 0.2624375915527344, + "step": 68700 + }, + { + "epoch": 23.04858028310579, + "grad_norm": 0.9246262311935425, + "learning_rate": 3.848040201005025e-05, + "loss": 0.2510771560668945, + "step": 68800 + }, + { + "epoch": 23.08208392662702, + "grad_norm": 1.0363575220108032, + "learning_rate": 3.846365159128978e-05, + "loss": 0.2513089370727539, + "step": 68900 + }, + { + "epoch": 23.115587570148254, + "grad_norm": 1.0965619087219238, + "learning_rate": 3.844706867671692e-05, + "loss": 0.2531783103942871, + "step": 69000 + }, + { + "epoch": 23.149091213669486, + "grad_norm": 0.7851601839065552, + "learning_rate": 3.843031825795645e-05, + "loss": 0.25430681228637697, + "step": 69100 + }, + { + "epoch": 23.18259485719072, + "grad_norm": 0.8714056611061096, + "learning_rate": 3.841356783919598e-05, + "loss": 0.2563682746887207, + "step": 69200 + }, + { + "epoch": 23.21609850071195, + "grad_norm": 0.9404228925704956, + "learning_rate": 3.839681742043551e-05, + "loss": 0.25634672164916994, + "step": 69300 + }, + { + "epoch": 23.249602144233187, + "grad_norm": 1.04526948928833, + "learning_rate": 3.838006700167504e-05, + "loss": 0.2558123779296875, + "step": 69400 + }, + { + "epoch": 23.28310578775442, + "grad_norm": 1.0145646333694458, + "learning_rate": 3.836331658291458e-05, + "loss": 0.25761409759521486, + "step": 69500 + }, + { + "epoch": 23.31660943127565, + "grad_norm": 1.0709373950958252, + "learning_rate": 3.834656616415411e-05, + "loss": 0.25936553955078123, + "step": 69600 + }, + { + "epoch": 23.350113074796884, + "grad_norm": 1.0656367540359497, + "learning_rate": 3.8329815745393637e-05, + "loss": 0.25993459701538085, + "step": 69700 + }, + { + "epoch": 23.383616718318116, + "grad_norm": 0.9517690539360046, + "learning_rate": 3.8313065326633165e-05, + "loss": 0.2593793296813965, + "step": 69800 + }, + { + "epoch": 23.41712036183935, + "grad_norm": 0.9651705026626587, + "learning_rate": 3.82963149078727e-05, + "loss": 0.2592854309082031, + "step": 69900 + }, + { + "epoch": 23.450624005360584, + "grad_norm": 0.9077875018119812, + "learning_rate": 3.827956448911223e-05, + "loss": 0.2614713668823242, + "step": 70000 + }, + { + "epoch": 23.484127648881817, + "grad_norm": 0.9982284307479858, + "learning_rate": 3.826281407035176e-05, + "loss": 0.2588504219055176, + "step": 70100 + }, + { + "epoch": 23.51763129240305, + "grad_norm": 0.9539495706558228, + "learning_rate": 3.824606365159129e-05, + "loss": 0.26046722412109374, + "step": 70200 + }, + { + "epoch": 23.55113493592428, + "grad_norm": 1.0776108503341675, + "learning_rate": 3.822931323283082e-05, + "loss": 0.2608753776550293, + "step": 70300 + }, + { + "epoch": 23.584638579445514, + "grad_norm": 1.0306613445281982, + "learning_rate": 3.821256281407035e-05, + "loss": 0.26188905715942384, + "step": 70400 + }, + { + "epoch": 23.618142222966746, + "grad_norm": 0.9900612831115723, + "learning_rate": 3.819581239530988e-05, + "loss": 0.26530147552490235, + "step": 70500 + }, + { + "epoch": 23.651645866487982, + "grad_norm": 1.047272801399231, + "learning_rate": 3.817906197654941e-05, + "loss": 0.26567121505737307, + "step": 70600 + }, + { + "epoch": 23.685149510009214, + "grad_norm": 0.9837287068367004, + "learning_rate": 3.816231155778895e-05, + "loss": 0.2618439865112305, + "step": 70700 + }, + { + "epoch": 23.718653153530447, + "grad_norm": 1.0495308637619019, + "learning_rate": 3.814556113902848e-05, + "loss": 0.2637239646911621, + "step": 70800 + }, + { + "epoch": 23.75215679705168, + "grad_norm": 0.9998559951782227, + "learning_rate": 3.812881072026801e-05, + "loss": 0.2645314788818359, + "step": 70900 + }, + { + "epoch": 23.78566044057291, + "grad_norm": 1.0041533708572388, + "learning_rate": 3.811222780569514e-05, + "loss": 0.26535621643066404, + "step": 71000 + }, + { + "epoch": 23.819164084094144, + "grad_norm": 0.8790546655654907, + "learning_rate": 3.809547738693468e-05, + "loss": 0.26744958877563474, + "step": 71100 + }, + { + "epoch": 23.85266772761538, + "grad_norm": 1.0044236183166504, + "learning_rate": 3.8078726968174206e-05, + "loss": 0.2647633171081543, + "step": 71200 + }, + { + "epoch": 23.886171371136612, + "grad_norm": 0.9612513184547424, + "learning_rate": 3.8061976549413735e-05, + "loss": 0.2649590682983398, + "step": 71300 + }, + { + "epoch": 23.919675014657845, + "grad_norm": 0.8713734745979309, + "learning_rate": 3.8045226130653264e-05, + "loss": 0.266021728515625, + "step": 71400 + }, + { + "epoch": 23.953178658179077, + "grad_norm": 1.0584930181503296, + "learning_rate": 3.80284757118928e-05, + "loss": 0.2661307907104492, + "step": 71500 + }, + { + "epoch": 23.98668230170031, + "grad_norm": 1.003209114074707, + "learning_rate": 3.801172529313233e-05, + "loss": 0.26575571060180664, + "step": 71600 + }, + { + "epoch": 24.02010218611274, + "grad_norm": 1.0001593828201294, + "learning_rate": 3.7994974874371864e-05, + "loss": 0.25387475967407225, + "step": 71700 + }, + { + "epoch": 24.053605829633973, + "grad_norm": 1.0081121921539307, + "learning_rate": 3.797822445561139e-05, + "loss": 0.24931825637817384, + "step": 71800 + }, + { + "epoch": 24.087109473155206, + "grad_norm": 0.969540536403656, + "learning_rate": 3.796147403685092e-05, + "loss": 0.24639154434204102, + "step": 71900 + }, + { + "epoch": 24.120613116676438, + "grad_norm": 0.9975810050964355, + "learning_rate": 3.794472361809046e-05, + "loss": 0.24772171020507813, + "step": 72000 + }, + { + "epoch": 24.15411676019767, + "grad_norm": 1.0242449045181274, + "learning_rate": 3.7927973199329986e-05, + "loss": 0.24881784439086915, + "step": 72100 + }, + { + "epoch": 24.187620403718903, + "grad_norm": 0.9321593642234802, + "learning_rate": 3.7911222780569515e-05, + "loss": 0.250980339050293, + "step": 72200 + }, + { + "epoch": 24.22112404724014, + "grad_norm": 0.8362423181533813, + "learning_rate": 3.7894472361809044e-05, + "loss": 0.2504695320129395, + "step": 72300 + }, + { + "epoch": 24.25462769076137, + "grad_norm": 1.0577383041381836, + "learning_rate": 3.787772194304858e-05, + "loss": 0.25103809356689455, + "step": 72400 + }, + { + "epoch": 24.288131334282603, + "grad_norm": 0.9327830672264099, + "learning_rate": 3.786097152428811e-05, + "loss": 0.2529195785522461, + "step": 72500 + }, + { + "epoch": 24.321634977803836, + "grad_norm": 0.941429078578949, + "learning_rate": 3.784422110552764e-05, + "loss": 0.25365312576293947, + "step": 72600 + }, + { + "epoch": 24.355138621325068, + "grad_norm": 0.9718444347381592, + "learning_rate": 3.7827470686767166e-05, + "loss": 0.25447874069213866, + "step": 72700 + }, + { + "epoch": 24.3886422648463, + "grad_norm": 1.0243566036224365, + "learning_rate": 3.78107202680067e-05, + "loss": 0.2550676727294922, + "step": 72800 + }, + { + "epoch": 24.422145908367536, + "grad_norm": 1.0174282789230347, + "learning_rate": 3.779396984924624e-05, + "loss": 0.25832677841186524, + "step": 72900 + }, + { + "epoch": 24.45564955188877, + "grad_norm": 0.9675871133804321, + "learning_rate": 3.777738693467337e-05, + "loss": 0.2548235511779785, + "step": 73000 + }, + { + "epoch": 24.48915319541, + "grad_norm": 1.095906138420105, + "learning_rate": 3.77606365159129e-05, + "loss": 0.2557443809509277, + "step": 73100 + }, + { + "epoch": 24.522656838931233, + "grad_norm": 0.8963753581047058, + "learning_rate": 3.7743886097152434e-05, + "loss": 0.25586761474609376, + "step": 73200 + }, + { + "epoch": 24.556160482452466, + "grad_norm": 0.8457279801368713, + "learning_rate": 3.772713567839196e-05, + "loss": 0.2581898307800293, + "step": 73300 + }, + { + "epoch": 24.589664125973698, + "grad_norm": 1.0806199312210083, + "learning_rate": 3.771038525963149e-05, + "loss": 0.25776454925537107, + "step": 73400 + }, + { + "epoch": 24.623167769494934, + "grad_norm": 1.117748737335205, + "learning_rate": 3.769363484087102e-05, + "loss": 0.25891387939453125, + "step": 73500 + }, + { + "epoch": 24.656671413016166, + "grad_norm": 1.022865653038025, + "learning_rate": 3.7676884422110556e-05, + "loss": 0.25816925048828127, + "step": 73600 + }, + { + "epoch": 24.6901750565374, + "grad_norm": 1.0696437358856201, + "learning_rate": 3.7660134003350085e-05, + "loss": 0.2563637351989746, + "step": 73700 + }, + { + "epoch": 24.72367870005863, + "grad_norm": 0.9979215860366821, + "learning_rate": 3.7643383584589614e-05, + "loss": 0.25864744186401367, + "step": 73800 + }, + { + "epoch": 24.757182343579863, + "grad_norm": 1.0636203289031982, + "learning_rate": 3.762663316582914e-05, + "loss": 0.25936466217041015, + "step": 73900 + }, + { + "epoch": 24.790685987101096, + "grad_norm": 1.0561468601226807, + "learning_rate": 3.760988274706868e-05, + "loss": 0.2596282005310059, + "step": 74000 + }, + { + "epoch": 24.82418963062233, + "grad_norm": 1.0279403924942017, + "learning_rate": 3.7593132328308214e-05, + "loss": 0.25866455078125, + "step": 74100 + }, + { + "epoch": 24.857693274143564, + "grad_norm": 1.0280523300170898, + "learning_rate": 3.757638190954774e-05, + "loss": 0.2624567985534668, + "step": 74200 + }, + { + "epoch": 24.891196917664796, + "grad_norm": 1.0582387447357178, + "learning_rate": 3.755963149078727e-05, + "loss": 0.26197324752807616, + "step": 74300 + }, + { + "epoch": 24.92470056118603, + "grad_norm": 0.9122918248176575, + "learning_rate": 3.75428810720268e-05, + "loss": 0.25970455169677736, + "step": 74400 + }, + { + "epoch": 24.95820420470726, + "grad_norm": 1.223061442375183, + "learning_rate": 3.7526130653266336e-05, + "loss": 0.2615465927124023, + "step": 74500 + }, + { + "epoch": 24.991707848228494, + "grad_norm": 0.9313095808029175, + "learning_rate": 3.7509380234505865e-05, + "loss": 0.26078268051147463, + "step": 74600 + }, + { + "epoch": 25.025127732640925, + "grad_norm": 0.9277160167694092, + "learning_rate": 3.7492629815745393e-05, + "loss": 0.2467232322692871, + "step": 74700 + }, + { + "epoch": 25.058631376162158, + "grad_norm": 0.8967624306678772, + "learning_rate": 3.747587939698492e-05, + "loss": 0.2427264404296875, + "step": 74800 + }, + { + "epoch": 25.09213501968339, + "grad_norm": 0.9991577863693237, + "learning_rate": 3.745912897822446e-05, + "loss": 0.24398237228393554, + "step": 74900 + }, + { + "epoch": 25.125638663204622, + "grad_norm": 0.9068632125854492, + "learning_rate": 3.74425460636516e-05, + "loss": 0.24407464981079102, + "step": 75000 + }, + { + "epoch": 25.159142306725858, + "grad_norm": 0.9610689878463745, + "learning_rate": 3.7425795644891126e-05, + "loss": 0.2451825523376465, + "step": 75100 + }, + { + "epoch": 25.19264595024709, + "grad_norm": 1.0655577182769775, + "learning_rate": 3.7409045226130655e-05, + "loss": 0.24775781631469726, + "step": 75200 + }, + { + "epoch": 25.226149593768323, + "grad_norm": 0.9166316390037537, + "learning_rate": 3.739229480737019e-05, + "loss": 0.24586162567138672, + "step": 75300 + }, + { + "epoch": 25.259653237289555, + "grad_norm": 1.0330859422683716, + "learning_rate": 3.737554438860972e-05, + "loss": 0.2476130485534668, + "step": 75400 + }, + { + "epoch": 25.293156880810788, + "grad_norm": 0.9790452122688293, + "learning_rate": 3.735879396984925e-05, + "loss": 0.24896875381469727, + "step": 75500 + }, + { + "epoch": 25.32666052433202, + "grad_norm": 0.9078829288482666, + "learning_rate": 3.734204355108878e-05, + "loss": 0.25146854400634766, + "step": 75600 + }, + { + "epoch": 25.360164167853252, + "grad_norm": 1.0172176361083984, + "learning_rate": 3.732529313232831e-05, + "loss": 0.24892644882202147, + "step": 75700 + }, + { + "epoch": 25.39366781137449, + "grad_norm": 0.8392038941383362, + "learning_rate": 3.730854271356784e-05, + "loss": 0.2486979866027832, + "step": 75800 + }, + { + "epoch": 25.42717145489572, + "grad_norm": 1.120992660522461, + "learning_rate": 3.729179229480737e-05, + "loss": 0.2500802612304687, + "step": 75900 + }, + { + "epoch": 25.460675098416953, + "grad_norm": 0.9740986227989197, + "learning_rate": 3.727520938023451e-05, + "loss": 0.2497385025024414, + "step": 76000 + }, + { + "epoch": 25.494178741938185, + "grad_norm": 1.1447396278381348, + "learning_rate": 3.725845896147404e-05, + "loss": 0.2524580001831055, + "step": 76100 + }, + { + "epoch": 25.527682385459418, + "grad_norm": 0.8573219776153564, + "learning_rate": 3.7241708542713574e-05, + "loss": 0.2522186470031738, + "step": 76200 + }, + { + "epoch": 25.56118602898065, + "grad_norm": 1.0129204988479614, + "learning_rate": 3.72249581239531e-05, + "loss": 0.2548684501647949, + "step": 76300 + }, + { + "epoch": 25.594689672501886, + "grad_norm": 0.9877455830574036, + "learning_rate": 3.720820770519263e-05, + "loss": 0.2520929527282715, + "step": 76400 + }, + { + "epoch": 25.62819331602312, + "grad_norm": 0.9686979651451111, + "learning_rate": 3.719145728643216e-05, + "loss": 0.25263065338134766, + "step": 76500 + }, + { + "epoch": 25.66169695954435, + "grad_norm": 0.9908387660980225, + "learning_rate": 3.7174706867671696e-05, + "loss": 0.25347740173339844, + "step": 76600 + }, + { + "epoch": 25.695200603065583, + "grad_norm": 1.006608009338379, + "learning_rate": 3.7157956448911225e-05, + "loss": 0.2546247863769531, + "step": 76700 + }, + { + "epoch": 25.728704246586815, + "grad_norm": 1.003769874572754, + "learning_rate": 3.7141206030150754e-05, + "loss": 0.253816089630127, + "step": 76800 + }, + { + "epoch": 25.762207890108048, + "grad_norm": 1.0374062061309814, + "learning_rate": 3.712445561139028e-05, + "loss": 0.25663318634033205, + "step": 76900 + }, + { + "epoch": 25.795711533629284, + "grad_norm": 1.0362064838409424, + "learning_rate": 3.710770519262982e-05, + "loss": 0.2567397880554199, + "step": 77000 + }, + { + "epoch": 25.829215177150516, + "grad_norm": 1.0892760753631592, + "learning_rate": 3.709095477386935e-05, + "loss": 0.25798879623413085, + "step": 77100 + }, + { + "epoch": 25.86271882067175, + "grad_norm": 1.049902081489563, + "learning_rate": 3.7074204355108876e-05, + "loss": 0.25775598526000976, + "step": 77200 + }, + { + "epoch": 25.89622246419298, + "grad_norm": 0.8818158507347107, + "learning_rate": 3.705745393634841e-05, + "loss": 0.2554671287536621, + "step": 77300 + }, + { + "epoch": 25.929726107714213, + "grad_norm": 1.0922232866287231, + "learning_rate": 3.704070351758795e-05, + "loss": 0.25704565048217776, + "step": 77400 + }, + { + "epoch": 25.963229751235446, + "grad_norm": 0.9811676144599915, + "learning_rate": 3.7023953098827476e-05, + "loss": 0.25583274841308595, + "step": 77500 + }, + { + "epoch": 25.99673339475668, + "grad_norm": 1.044572353363037, + "learning_rate": 3.7007202680067004e-05, + "loss": 0.25744909286499024, + "step": 77600 + }, + { + "epoch": 26.03015327916911, + "grad_norm": 0.790084958076477, + "learning_rate": 3.699045226130653e-05, + "loss": 0.23935884475708008, + "step": 77700 + }, + { + "epoch": 26.063656922690342, + "grad_norm": 0.9131903052330017, + "learning_rate": 3.697370184254607e-05, + "loss": 0.2395966339111328, + "step": 77800 + }, + { + "epoch": 26.097160566211574, + "grad_norm": 1.0206575393676758, + "learning_rate": 3.69569514237856e-05, + "loss": 0.23894302368164064, + "step": 77900 + }, + { + "epoch": 26.13066420973281, + "grad_norm": 0.9167901873588562, + "learning_rate": 3.6940201005025127e-05, + "loss": 0.24095657348632812, + "step": 78000 + }, + { + "epoch": 26.164167853254042, + "grad_norm": 0.9756499528884888, + "learning_rate": 3.6923450586264655e-05, + "loss": 0.24229476928710938, + "step": 78100 + }, + { + "epoch": 26.197671496775275, + "grad_norm": 1.1261674165725708, + "learning_rate": 3.690670016750419e-05, + "loss": 0.24467144012451172, + "step": 78200 + }, + { + "epoch": 26.231175140296507, + "grad_norm": 0.8712000846862793, + "learning_rate": 3.688994974874372e-05, + "loss": 0.2426918601989746, + "step": 78300 + }, + { + "epoch": 26.26467878381774, + "grad_norm": 0.9853079915046692, + "learning_rate": 3.687319932998325e-05, + "loss": 0.2432308578491211, + "step": 78400 + }, + { + "epoch": 26.298182427338972, + "grad_norm": 0.9844798445701599, + "learning_rate": 3.6856448911222784e-05, + "loss": 0.24566902160644533, + "step": 78500 + }, + { + "epoch": 26.331686070860208, + "grad_norm": 0.991397500038147, + "learning_rate": 3.683969849246231e-05, + "loss": 0.24585660934448242, + "step": 78600 + }, + { + "epoch": 26.36518971438144, + "grad_norm": 0.9551209211349487, + "learning_rate": 3.682294807370185e-05, + "loss": 0.24546436309814454, + "step": 78700 + }, + { + "epoch": 26.398693357902673, + "grad_norm": 1.0218653678894043, + "learning_rate": 3.680619765494138e-05, + "loss": 0.2468564987182617, + "step": 78800 + }, + { + "epoch": 26.432197001423905, + "grad_norm": 0.879303514957428, + "learning_rate": 3.6789447236180906e-05, + "loss": 0.24688074111938477, + "step": 78900 + }, + { + "epoch": 26.465700644945137, + "grad_norm": 0.9550554156303406, + "learning_rate": 3.6772696817420435e-05, + "loss": 0.24929559707641602, + "step": 79000 + }, + { + "epoch": 26.49920428846637, + "grad_norm": 1.092371940612793, + "learning_rate": 3.675594639865997e-05, + "loss": 0.2490665817260742, + "step": 79100 + }, + { + "epoch": 26.532707931987602, + "grad_norm": 0.9425039887428284, + "learning_rate": 3.67391959798995e-05, + "loss": 0.24648136138916016, + "step": 79200 + }, + { + "epoch": 26.566211575508838, + "grad_norm": 0.9212557077407837, + "learning_rate": 3.672244556113903e-05, + "loss": 0.24588151931762695, + "step": 79300 + }, + { + "epoch": 26.59971521903007, + "grad_norm": 1.0376055240631104, + "learning_rate": 3.670569514237856e-05, + "loss": 0.24943052291870116, + "step": 79400 + }, + { + "epoch": 26.633218862551303, + "grad_norm": 0.9473478198051453, + "learning_rate": 3.668894472361809e-05, + "loss": 0.24888269424438478, + "step": 79500 + }, + { + "epoch": 26.666722506072535, + "grad_norm": 1.052951455116272, + "learning_rate": 3.667219430485762e-05, + "loss": 0.24891986846923828, + "step": 79600 + }, + { + "epoch": 26.700226149593767, + "grad_norm": 1.1100990772247314, + "learning_rate": 3.665544388609715e-05, + "loss": 0.2513142776489258, + "step": 79700 + }, + { + "epoch": 26.733729793115, + "grad_norm": 0.9589593410491943, + "learning_rate": 3.6638693467336686e-05, + "loss": 0.24993154525756836, + "step": 79800 + }, + { + "epoch": 26.767233436636236, + "grad_norm": 0.9308981895446777, + "learning_rate": 3.662194304857622e-05, + "loss": 0.2495902442932129, + "step": 79900 + }, + { + "epoch": 26.800737080157468, + "grad_norm": 1.0080679655075073, + "learning_rate": 3.6605360134003354e-05, + "loss": 0.25091459274291994, + "step": 80000 + }, + { + "epoch": 26.8342407236787, + "grad_norm": 0.965578556060791, + "learning_rate": 3.658860971524288e-05, + "loss": 0.2524791526794434, + "step": 80100 + }, + { + "epoch": 26.867744367199933, + "grad_norm": 1.0109574794769287, + "learning_rate": 3.657185929648241e-05, + "loss": 0.2515005111694336, + "step": 80200 + }, + { + "epoch": 26.901248010721165, + "grad_norm": 1.0662031173706055, + "learning_rate": 3.655510887772195e-05, + "loss": 0.25569900512695315, + "step": 80300 + }, + { + "epoch": 26.934751654242397, + "grad_norm": 1.0011720657348633, + "learning_rate": 3.6538358458961476e-05, + "loss": 0.25127042770385744, + "step": 80400 + }, + { + "epoch": 26.968255297763633, + "grad_norm": 1.0007758140563965, + "learning_rate": 3.6521608040201005e-05, + "loss": 0.25374698638916016, + "step": 80500 + }, + { + "epoch": 27.00167518217606, + "grad_norm": 0.8360596895217896, + "learning_rate": 3.6504857621440534e-05, + "loss": 0.2519091033935547, + "step": 80600 + }, + { + "epoch": 27.035178825697294, + "grad_norm": 0.772354781627655, + "learning_rate": 3.648810720268007e-05, + "loss": 0.2350589370727539, + "step": 80700 + }, + { + "epoch": 27.068682469218526, + "grad_norm": 0.9291853904724121, + "learning_rate": 3.6471356783919605e-05, + "loss": 0.23687738418579102, + "step": 80800 + }, + { + "epoch": 27.102186112739762, + "grad_norm": 0.8280290365219116, + "learning_rate": 3.6454606365159134e-05, + "loss": 0.23724706649780272, + "step": 80900 + }, + { + "epoch": 27.135689756260994, + "grad_norm": 1.0114185810089111, + "learning_rate": 3.643785594639866e-05, + "loss": 0.2386191940307617, + "step": 81000 + }, + { + "epoch": 27.169193399782227, + "grad_norm": 0.8960608839988708, + "learning_rate": 3.642110552763819e-05, + "loss": 0.23746776580810547, + "step": 81100 + }, + { + "epoch": 27.20269704330346, + "grad_norm": 0.9211316704750061, + "learning_rate": 3.640435510887773e-05, + "loss": 0.24118051528930665, + "step": 81200 + }, + { + "epoch": 27.23620068682469, + "grad_norm": 0.9914082884788513, + "learning_rate": 3.6387604690117256e-05, + "loss": 0.2407957649230957, + "step": 81300 + }, + { + "epoch": 27.269704330345924, + "grad_norm": 0.8905548453330994, + "learning_rate": 3.6370854271356785e-05, + "loss": 0.23928272247314453, + "step": 81400 + }, + { + "epoch": 27.30320797386716, + "grad_norm": 0.8846296072006226, + "learning_rate": 3.635427135678392e-05, + "loss": 0.24042049407958985, + "step": 81500 + }, + { + "epoch": 27.336711617388392, + "grad_norm": 0.9076329469680786, + "learning_rate": 3.633752093802345e-05, + "loss": 0.24250953674316406, + "step": 81600 + }, + { + "epoch": 27.370215260909625, + "grad_norm": 1.1054998636245728, + "learning_rate": 3.632077051926298e-05, + "loss": 0.2428689956665039, + "step": 81700 + }, + { + "epoch": 27.403718904430857, + "grad_norm": 0.9182295799255371, + "learning_rate": 3.630402010050251e-05, + "loss": 0.24241937637329103, + "step": 81800 + }, + { + "epoch": 27.43722254795209, + "grad_norm": 1.0540192127227783, + "learning_rate": 3.6287269681742046e-05, + "loss": 0.24241340637207032, + "step": 81900 + }, + { + "epoch": 27.47072619147332, + "grad_norm": 0.9639661312103271, + "learning_rate": 3.6270519262981575e-05, + "loss": 0.24282842636108398, + "step": 82000 + }, + { + "epoch": 27.504229834994554, + "grad_norm": 0.8837372064590454, + "learning_rate": 3.625376884422111e-05, + "loss": 0.24227666854858398, + "step": 82100 + }, + { + "epoch": 27.53773347851579, + "grad_norm": 0.8825430274009705, + "learning_rate": 3.623701842546064e-05, + "loss": 0.24317176818847655, + "step": 82200 + }, + { + "epoch": 27.571237122037022, + "grad_norm": 1.0860276222229004, + "learning_rate": 3.622026800670017e-05, + "loss": 0.2448468780517578, + "step": 82300 + }, + { + "epoch": 27.604740765558255, + "grad_norm": 1.0138317346572876, + "learning_rate": 3.6203517587939704e-05, + "loss": 0.24316675186157227, + "step": 82400 + }, + { + "epoch": 27.638244409079487, + "grad_norm": 1.0941250324249268, + "learning_rate": 3.618676716917923e-05, + "loss": 0.2473929786682129, + "step": 82500 + }, + { + "epoch": 27.67174805260072, + "grad_norm": 0.8989108800888062, + "learning_rate": 3.617001675041876e-05, + "loss": 0.247222900390625, + "step": 82600 + }, + { + "epoch": 27.70525169612195, + "grad_norm": 1.0026638507843018, + "learning_rate": 3.615326633165829e-05, + "loss": 0.24576572418212891, + "step": 82700 + }, + { + "epoch": 27.738755339643188, + "grad_norm": 1.0626496076583862, + "learning_rate": 3.6136515912897826e-05, + "loss": 0.2481866455078125, + "step": 82800 + }, + { + "epoch": 27.77225898316442, + "grad_norm": 0.8049838542938232, + "learning_rate": 3.6119765494137355e-05, + "loss": 0.24766799926757813, + "step": 82900 + }, + { + "epoch": 27.805762626685652, + "grad_norm": 1.0565505027770996, + "learning_rate": 3.6103015075376883e-05, + "loss": 0.24823820114135742, + "step": 83000 + }, + { + "epoch": 27.839266270206885, + "grad_norm": 1.0819406509399414, + "learning_rate": 3.608626465661642e-05, + "loss": 0.24928997039794923, + "step": 83100 + }, + { + "epoch": 27.872769913728117, + "grad_norm": 1.014066457748413, + "learning_rate": 3.606951423785595e-05, + "loss": 0.24671865463256837, + "step": 83200 + }, + { + "epoch": 27.90627355724935, + "grad_norm": 1.002631425857544, + "learning_rate": 3.6052763819095483e-05, + "loss": 0.24837955474853515, + "step": 83300 + }, + { + "epoch": 27.939777200770585, + "grad_norm": 1.0699118375778198, + "learning_rate": 3.603601340033501e-05, + "loss": 0.25022062301635745, + "step": 83400 + }, + { + "epoch": 27.973280844291818, + "grad_norm": 0.9003764986991882, + "learning_rate": 3.601926298157454e-05, + "loss": 0.24779138565063477, + "step": 83500 + }, + { + "epoch": 28.006700728704246, + "grad_norm": 0.7831597924232483, + "learning_rate": 3.600251256281407e-05, + "loss": 0.24304958343505859, + "step": 83600 + }, + { + "epoch": 28.040204372225478, + "grad_norm": 0.8876057267189026, + "learning_rate": 3.5985762144053605e-05, + "loss": 0.23251798629760742, + "step": 83700 + }, + { + "epoch": 28.073708015746714, + "grad_norm": 0.8161166906356812, + "learning_rate": 3.5969011725293134e-05, + "loss": 0.23175537109375, + "step": 83800 + }, + { + "epoch": 28.107211659267946, + "grad_norm": 1.0348833799362183, + "learning_rate": 3.595226130653266e-05, + "loss": 0.23300014495849608, + "step": 83900 + }, + { + "epoch": 28.14071530278918, + "grad_norm": 0.9496212601661682, + "learning_rate": 3.5935678391959796e-05, + "loss": 0.23465946197509766, + "step": 84000 + }, + { + "epoch": 28.17421894631041, + "grad_norm": 0.8523275256156921, + "learning_rate": 3.591892797319933e-05, + "loss": 0.23583173751831055, + "step": 84100 + }, + { + "epoch": 28.207722589831643, + "grad_norm": 0.9591325521469116, + "learning_rate": 3.590217755443887e-05, + "loss": 0.2353810691833496, + "step": 84200 + }, + { + "epoch": 28.241226233352876, + "grad_norm": 0.876011312007904, + "learning_rate": 3.5885427135678396e-05, + "loss": 0.23749792098999023, + "step": 84300 + }, + { + "epoch": 28.27472987687411, + "grad_norm": 0.9948890209197998, + "learning_rate": 3.5868676716917924e-05, + "loss": 0.23812158584594725, + "step": 84400 + }, + { + "epoch": 28.308233520395344, + "grad_norm": 0.99249267578125, + "learning_rate": 3.585192629815745e-05, + "loss": 0.23765924453735351, + "step": 84500 + }, + { + "epoch": 28.341737163916576, + "grad_norm": 0.8422896265983582, + "learning_rate": 3.583517587939699e-05, + "loss": 0.2388518714904785, + "step": 84600 + }, + { + "epoch": 28.37524080743781, + "grad_norm": 1.0225242376327515, + "learning_rate": 3.581842546063652e-05, + "loss": 0.2379816436767578, + "step": 84700 + }, + { + "epoch": 28.40874445095904, + "grad_norm": 0.9493758082389832, + "learning_rate": 3.5801675041876047e-05, + "loss": 0.23900142669677735, + "step": 84800 + }, + { + "epoch": 28.442248094480274, + "grad_norm": 1.0754547119140625, + "learning_rate": 3.578492462311558e-05, + "loss": 0.2420096778869629, + "step": 84900 + }, + { + "epoch": 28.475751738001506, + "grad_norm": 1.1404248476028442, + "learning_rate": 3.576817420435511e-05, + "loss": 0.2387169647216797, + "step": 85000 + }, + { + "epoch": 28.509255381522742, + "grad_norm": 1.0831667184829712, + "learning_rate": 3.575142378559464e-05, + "loss": 0.23977863311767578, + "step": 85100 + }, + { + "epoch": 28.542759025043974, + "grad_norm": 0.9713730812072754, + "learning_rate": 3.573467336683417e-05, + "loss": 0.24276636123657228, + "step": 85200 + }, + { + "epoch": 28.576262668565207, + "grad_norm": 0.8892617225646973, + "learning_rate": 3.5717922948073704e-05, + "loss": 0.24079540252685547, + "step": 85300 + }, + { + "epoch": 28.60976631208644, + "grad_norm": 0.90485680103302, + "learning_rate": 3.570117252931324e-05, + "loss": 0.23991119384765625, + "step": 85400 + }, + { + "epoch": 28.64326995560767, + "grad_norm": 0.8535875678062439, + "learning_rate": 3.568442211055277e-05, + "loss": 0.24252616882324218, + "step": 85500 + }, + { + "epoch": 28.676773599128904, + "grad_norm": 1.1108918190002441, + "learning_rate": 3.56676716917923e-05, + "loss": 0.24145748138427733, + "step": 85600 + }, + { + "epoch": 28.71027724265014, + "grad_norm": 1.0389022827148438, + "learning_rate": 3.5650921273031826e-05, + "loss": 0.24423345565795898, + "step": 85700 + }, + { + "epoch": 28.743780886171372, + "grad_norm": 1.0552116632461548, + "learning_rate": 3.563417085427136e-05, + "loss": 0.24410188674926758, + "step": 85800 + }, + { + "epoch": 28.777284529692604, + "grad_norm": 0.9229023456573486, + "learning_rate": 3.561742043551089e-05, + "loss": 0.24257204055786133, + "step": 85900 + }, + { + "epoch": 28.810788173213837, + "grad_norm": 1.0788532495498657, + "learning_rate": 3.560067001675042e-05, + "loss": 0.24557861328125, + "step": 86000 + }, + { + "epoch": 28.84429181673507, + "grad_norm": 0.8226192593574524, + "learning_rate": 3.558391959798995e-05, + "loss": 0.24487424850463868, + "step": 86100 + }, + { + "epoch": 28.8777954602563, + "grad_norm": 0.9678732752799988, + "learning_rate": 3.5567169179229484e-05, + "loss": 0.24371047973632812, + "step": 86200 + }, + { + "epoch": 28.911299103777537, + "grad_norm": 0.9942400455474854, + "learning_rate": 3.555041876046901e-05, + "loss": 0.24467437744140624, + "step": 86300 + }, + { + "epoch": 28.94480274729877, + "grad_norm": 1.050825595855713, + "learning_rate": 3.553366834170854e-05, + "loss": 0.2451385498046875, + "step": 86400 + }, + { + "epoch": 28.978306390820002, + "grad_norm": 0.9947119951248169, + "learning_rate": 3.551691792294807e-05, + "loss": 0.24689924240112304, + "step": 86500 + }, + { + "epoch": 29.01172627523243, + "grad_norm": 0.7659996151924133, + "learning_rate": 3.5500167504187606e-05, + "loss": 0.23850542068481445, + "step": 86600 + }, + { + "epoch": 29.045229918753666, + "grad_norm": 0.7991949915885925, + "learning_rate": 3.548341708542714e-05, + "loss": 0.23052330017089845, + "step": 86700 + }, + { + "epoch": 29.0787335622749, + "grad_norm": 0.9375367760658264, + "learning_rate": 3.546666666666667e-05, + "loss": 0.228839168548584, + "step": 86800 + }, + { + "epoch": 29.11223720579613, + "grad_norm": 1.0139492750167847, + "learning_rate": 3.54499162479062e-05, + "loss": 0.2321438217163086, + "step": 86900 + }, + { + "epoch": 29.145740849317363, + "grad_norm": 0.8823564648628235, + "learning_rate": 3.543316582914573e-05, + "loss": 0.23002294540405274, + "step": 87000 + }, + { + "epoch": 29.179244492838595, + "grad_norm": 0.8460071086883545, + "learning_rate": 3.5416415410385264e-05, + "loss": 0.23179996490478516, + "step": 87100 + }, + { + "epoch": 29.212748136359828, + "grad_norm": 0.9480848908424377, + "learning_rate": 3.539966499162479e-05, + "loss": 0.23330198287963866, + "step": 87200 + }, + { + "epoch": 29.246251779881064, + "grad_norm": 0.9003339409828186, + "learning_rate": 3.538291457286432e-05, + "loss": 0.2348067855834961, + "step": 87300 + }, + { + "epoch": 29.279755423402296, + "grad_norm": 0.9011369943618774, + "learning_rate": 3.536616415410386e-05, + "loss": 0.23475120544433595, + "step": 87400 + }, + { + "epoch": 29.31325906692353, + "grad_norm": 1.102575421333313, + "learning_rate": 3.5349413735343386e-05, + "loss": 0.23566722869873047, + "step": 87500 + }, + { + "epoch": 29.34676271044476, + "grad_norm": 1.0036569833755493, + "learning_rate": 3.5332663316582915e-05, + "loss": 0.2358757209777832, + "step": 87600 + }, + { + "epoch": 29.380266353965993, + "grad_norm": 0.9289223551750183, + "learning_rate": 3.531591289782244e-05, + "loss": 0.23525848388671874, + "step": 87700 + }, + { + "epoch": 29.413769997487226, + "grad_norm": 0.9896803498268127, + "learning_rate": 3.529916247906198e-05, + "loss": 0.23644231796264648, + "step": 87800 + }, + { + "epoch": 29.447273641008458, + "grad_norm": 0.9522982239723206, + "learning_rate": 3.5282412060301515e-05, + "loss": 0.23636116027832033, + "step": 87900 + }, + { + "epoch": 29.480777284529694, + "grad_norm": 0.9571079611778259, + "learning_rate": 3.526582914572865e-05, + "loss": 0.23850887298583984, + "step": 88000 + }, + { + "epoch": 29.514280928050926, + "grad_norm": 1.0205976963043213, + "learning_rate": 3.5249078726968176e-05, + "loss": 0.23928991317749024, + "step": 88100 + }, + { + "epoch": 29.54778457157216, + "grad_norm": 1.0385000705718994, + "learning_rate": 3.5232328308207705e-05, + "loss": 0.2364453125, + "step": 88200 + }, + { + "epoch": 29.58128821509339, + "grad_norm": 0.8799936771392822, + "learning_rate": 3.521557788944724e-05, + "loss": 0.2379269027709961, + "step": 88300 + }, + { + "epoch": 29.614791858614623, + "grad_norm": 1.0788037776947021, + "learning_rate": 3.519882747068677e-05, + "loss": 0.23958860397338866, + "step": 88400 + }, + { + "epoch": 29.648295502135856, + "grad_norm": 0.8725781440734863, + "learning_rate": 3.51820770519263e-05, + "loss": 0.23952722549438477, + "step": 88500 + }, + { + "epoch": 29.68179914565709, + "grad_norm": 1.0508238077163696, + "learning_rate": 3.516532663316583e-05, + "loss": 0.2397722053527832, + "step": 88600 + }, + { + "epoch": 29.715302789178324, + "grad_norm": 1.098661184310913, + "learning_rate": 3.514857621440536e-05, + "loss": 0.2380986213684082, + "step": 88700 + }, + { + "epoch": 29.748806432699556, + "grad_norm": 1.1082944869995117, + "learning_rate": 3.513182579564489e-05, + "loss": 0.2417365074157715, + "step": 88800 + }, + { + "epoch": 29.78231007622079, + "grad_norm": 0.9109951853752136, + "learning_rate": 3.511507537688443e-05, + "loss": 0.23964044570922852, + "step": 88900 + }, + { + "epoch": 29.81581371974202, + "grad_norm": 1.106863021850586, + "learning_rate": 3.5098324958123956e-05, + "loss": 0.24028875350952147, + "step": 89000 + }, + { + "epoch": 29.849317363263253, + "grad_norm": 0.9252721667289734, + "learning_rate": 3.5081574539363484e-05, + "loss": 0.24027196884155275, + "step": 89100 + }, + { + "epoch": 29.88282100678449, + "grad_norm": 1.18505859375, + "learning_rate": 3.506482412060302e-05, + "loss": 0.2418280601501465, + "step": 89200 + }, + { + "epoch": 29.91632465030572, + "grad_norm": 0.956193745136261, + "learning_rate": 3.504807370184255e-05, + "loss": 0.24323488235473634, + "step": 89300 + }, + { + "epoch": 29.949828293826954, + "grad_norm": 0.9459329843521118, + "learning_rate": 3.503132328308208e-05, + "loss": 0.24398193359375, + "step": 89400 + }, + { + "epoch": 29.983331937348186, + "grad_norm": 0.9862803816795349, + "learning_rate": 3.5014572864321607e-05, + "loss": 0.2418046760559082, + "step": 89500 + }, + { + "epoch": 30.016751821760618, + "grad_norm": 0.9011918902397156, + "learning_rate": 3.499782244556114e-05, + "loss": 0.23376155853271485, + "step": 89600 + }, + { + "epoch": 30.05025546528185, + "grad_norm": 0.9960854649543762, + "learning_rate": 3.498107202680067e-05, + "loss": 0.22885730743408203, + "step": 89700 + }, + { + "epoch": 30.083759108803083, + "grad_norm": 0.953056275844574, + "learning_rate": 3.49643216080402e-05, + "loss": 0.22713994979858398, + "step": 89800 + }, + { + "epoch": 30.117262752324315, + "grad_norm": 0.8877431154251099, + "learning_rate": 3.494757118927973e-05, + "loss": 0.22972366333007813, + "step": 89900 + }, + { + "epoch": 30.150766395845547, + "grad_norm": 0.9188148379325867, + "learning_rate": 3.493115577889448e-05, + "loss": 0.22967748641967772, + "step": 90000 + }, + { + "epoch": 30.18427003936678, + "grad_norm": 0.8880020380020142, + "learning_rate": 3.491440536013401e-05, + "loss": 0.22878494262695312, + "step": 90100 + }, + { + "epoch": 30.217773682888016, + "grad_norm": 0.9602766036987305, + "learning_rate": 3.4897654941373536e-05, + "loss": 0.23181842803955077, + "step": 90200 + }, + { + "epoch": 30.251277326409248, + "grad_norm": 0.8411327600479126, + "learning_rate": 3.4880904522613065e-05, + "loss": 0.23128870010375976, + "step": 90300 + }, + { + "epoch": 30.28478096993048, + "grad_norm": 0.9455945491790771, + "learning_rate": 3.48641541038526e-05, + "loss": 0.22971813201904298, + "step": 90400 + }, + { + "epoch": 30.318284613451713, + "grad_norm": 1.0151312351226807, + "learning_rate": 3.484740368509213e-05, + "loss": 0.2330830955505371, + "step": 90500 + }, + { + "epoch": 30.351788256972945, + "grad_norm": 0.9535360932350159, + "learning_rate": 3.483065326633166e-05, + "loss": 0.2313951873779297, + "step": 90600 + }, + { + "epoch": 30.385291900494177, + "grad_norm": 1.0460865497589111, + "learning_rate": 3.481390284757119e-05, + "loss": 0.23312372207641602, + "step": 90700 + }, + { + "epoch": 30.418795544015413, + "grad_norm": 0.9364484548568726, + "learning_rate": 3.479715242881072e-05, + "loss": 0.2326444625854492, + "step": 90800 + }, + { + "epoch": 30.452299187536646, + "grad_norm": 1.133334994316101, + "learning_rate": 3.478040201005025e-05, + "loss": 0.23389068603515625, + "step": 90900 + }, + { + "epoch": 30.485802831057878, + "grad_norm": 0.9046189188957214, + "learning_rate": 3.476365159128979e-05, + "loss": 0.23185604095458984, + "step": 91000 + }, + { + "epoch": 30.51930647457911, + "grad_norm": 0.7889045476913452, + "learning_rate": 3.4746901172529316e-05, + "loss": 0.23226310729980468, + "step": 91100 + }, + { + "epoch": 30.552810118100343, + "grad_norm": 0.8806297183036804, + "learning_rate": 3.4730150753768845e-05, + "loss": 0.23628852844238282, + "step": 91200 + }, + { + "epoch": 30.586313761621575, + "grad_norm": 0.8764693737030029, + "learning_rate": 3.471340033500838e-05, + "loss": 0.23575132369995117, + "step": 91300 + }, + { + "epoch": 30.619817405142808, + "grad_norm": 0.8656399846076965, + "learning_rate": 3.469664991624791e-05, + "loss": 0.23674060821533202, + "step": 91400 + }, + { + "epoch": 30.653321048664044, + "grad_norm": 1.0599033832550049, + "learning_rate": 3.467989949748744e-05, + "loss": 0.23605079650878907, + "step": 91500 + }, + { + "epoch": 30.686824692185276, + "grad_norm": 0.994979202747345, + "learning_rate": 3.4663149078726967e-05, + "loss": 0.23578712463378906, + "step": 91600 + }, + { + "epoch": 30.72032833570651, + "grad_norm": 0.9587284326553345, + "learning_rate": 3.46463986599665e-05, + "loss": 0.23613155364990235, + "step": 91700 + }, + { + "epoch": 30.75383197922774, + "grad_norm": 0.8443505764007568, + "learning_rate": 3.462964824120603e-05, + "loss": 0.23871355056762694, + "step": 91800 + }, + { + "epoch": 30.787335622748973, + "grad_norm": 1.099453091621399, + "learning_rate": 3.461289782244556e-05, + "loss": 0.24006723403930663, + "step": 91900 + }, + { + "epoch": 30.820839266270205, + "grad_norm": 1.0319575071334839, + "learning_rate": 3.459614740368509e-05, + "loss": 0.23815488815307617, + "step": 92000 + }, + { + "epoch": 30.85434290979144, + "grad_norm": 1.0333192348480225, + "learning_rate": 3.4579396984924624e-05, + "loss": 0.23808452606201172, + "step": 92100 + }, + { + "epoch": 30.887846553312674, + "grad_norm": 0.9881009459495544, + "learning_rate": 3.456264656616416e-05, + "loss": 0.2392608642578125, + "step": 92200 + }, + { + "epoch": 30.921350196833906, + "grad_norm": 1.0562998056411743, + "learning_rate": 3.454589614740369e-05, + "loss": 0.2401527976989746, + "step": 92300 + }, + { + "epoch": 30.95485384035514, + "grad_norm": 1.0023164749145508, + "learning_rate": 3.452914572864322e-05, + "loss": 0.23784709930419923, + "step": 92400 + }, + { + "epoch": 30.98835748387637, + "grad_norm": 0.8636544942855835, + "learning_rate": 3.451239530988275e-05, + "loss": 0.2380337142944336, + "step": 92500 + }, + { + "epoch": 31.021777368288802, + "grad_norm": 0.9277747273445129, + "learning_rate": 3.449564489112228e-05, + "loss": 0.22985034942626953, + "step": 92600 + }, + { + "epoch": 31.055281011810035, + "grad_norm": 0.8739263415336609, + "learning_rate": 3.4479061976549414e-05, + "loss": 0.22400131225585937, + "step": 92700 + }, + { + "epoch": 31.088784655331267, + "grad_norm": 0.8611975908279419, + "learning_rate": 3.446231155778894e-05, + "loss": 0.22545413970947265, + "step": 92800 + }, + { + "epoch": 31.1222882988525, + "grad_norm": 0.8462928533554077, + "learning_rate": 3.444556113902848e-05, + "loss": 0.22551637649536133, + "step": 92900 + }, + { + "epoch": 31.15579194237373, + "grad_norm": 1.022512435913086, + "learning_rate": 3.442881072026801e-05, + "loss": 0.22650592803955077, + "step": 93000 + }, + { + "epoch": 31.189295585894968, + "grad_norm": 0.9026772975921631, + "learning_rate": 3.4412060301507537e-05, + "loss": 0.22779397964477538, + "step": 93100 + }, + { + "epoch": 31.2227992294162, + "grad_norm": 1.0489071607589722, + "learning_rate": 3.4395309882747065e-05, + "loss": 0.22914936065673827, + "step": 93200 + }, + { + "epoch": 31.256302872937432, + "grad_norm": 0.9933543801307678, + "learning_rate": 3.43785594639866e-05, + "loss": 0.2292425537109375, + "step": 93300 + }, + { + "epoch": 31.289806516458665, + "grad_norm": 0.9085004329681396, + "learning_rate": 3.4361809045226137e-05, + "loss": 0.22929515838623046, + "step": 93400 + }, + { + "epoch": 31.323310159979897, + "grad_norm": 1.075490117073059, + "learning_rate": 3.4345058626465665e-05, + "loss": 0.22939607620239258, + "step": 93500 + }, + { + "epoch": 31.35681380350113, + "grad_norm": 0.9651515483856201, + "learning_rate": 3.4328308207705194e-05, + "loss": 0.22934986114501954, + "step": 93600 + }, + { + "epoch": 31.390317447022365, + "grad_norm": 0.8695613145828247, + "learning_rate": 3.431155778894472e-05, + "loss": 0.22976022720336914, + "step": 93700 + }, + { + "epoch": 31.423821090543598, + "grad_norm": 0.844338595867157, + "learning_rate": 3.429480737018426e-05, + "loss": 0.2312468147277832, + "step": 93800 + }, + { + "epoch": 31.45732473406483, + "grad_norm": 1.0382046699523926, + "learning_rate": 3.427805695142379e-05, + "loss": 0.2319161796569824, + "step": 93900 + }, + { + "epoch": 31.490828377586062, + "grad_norm": 0.9150004386901855, + "learning_rate": 3.4261306532663316e-05, + "loss": 0.23153928756713868, + "step": 94000 + }, + { + "epoch": 31.524332021107295, + "grad_norm": 0.9382134079933167, + "learning_rate": 3.4244556113902845e-05, + "loss": 0.23179262161254882, + "step": 94100 + }, + { + "epoch": 31.557835664628527, + "grad_norm": 1.003744125366211, + "learning_rate": 3.422780569514238e-05, + "loss": 0.2336377716064453, + "step": 94200 + }, + { + "epoch": 31.591339308149763, + "grad_norm": 1.0066591501235962, + "learning_rate": 3.421105527638191e-05, + "loss": 0.23306447982788087, + "step": 94300 + }, + { + "epoch": 31.624842951670995, + "grad_norm": 0.9587600827217102, + "learning_rate": 3.419430485762144e-05, + "loss": 0.23304904937744142, + "step": 94400 + }, + { + "epoch": 31.658346595192228, + "grad_norm": 0.9264236092567444, + "learning_rate": 3.4177554438860974e-05, + "loss": 0.23374231338500975, + "step": 94500 + }, + { + "epoch": 31.69185023871346, + "grad_norm": 0.9786285758018494, + "learning_rate": 3.416080402010051e-05, + "loss": 0.23288776397705077, + "step": 94600 + }, + { + "epoch": 31.725353882234693, + "grad_norm": 1.0406526327133179, + "learning_rate": 3.414405360134004e-05, + "loss": 0.23135658264160155, + "step": 94700 + }, + { + "epoch": 31.758857525755925, + "grad_norm": 1.0150673389434814, + "learning_rate": 3.412730318257957e-05, + "loss": 0.23329238891601561, + "step": 94800 + }, + { + "epoch": 31.792361169277157, + "grad_norm": 1.039716124534607, + "learning_rate": 3.4110552763819096e-05, + "loss": 0.23622480392456055, + "step": 94900 + }, + { + "epoch": 31.825864812798393, + "grad_norm": 0.8796889185905457, + "learning_rate": 3.409380234505863e-05, + "loss": 0.23527551651000977, + "step": 95000 + }, + { + "epoch": 31.859368456319626, + "grad_norm": 1.0430560111999512, + "learning_rate": 3.407705192629816e-05, + "loss": 0.23613218307495118, + "step": 95100 + }, + { + "epoch": 31.892872099840858, + "grad_norm": 0.934065043926239, + "learning_rate": 3.406030150753769e-05, + "loss": 0.23549306869506836, + "step": 95200 + }, + { + "epoch": 31.92637574336209, + "grad_norm": 0.9562022089958191, + "learning_rate": 3.404355108877722e-05, + "loss": 0.23596378326416015, + "step": 95300 + }, + { + "epoch": 31.959879386883323, + "grad_norm": 0.9484182000160217, + "learning_rate": 3.4026800670016754e-05, + "loss": 0.23749320983886718, + "step": 95400 + }, + { + "epoch": 31.993383030404555, + "grad_norm": 0.9226858615875244, + "learning_rate": 3.401005025125628e-05, + "loss": 0.23577556610107422, + "step": 95500 + }, + { + "epoch": 32.02680291481698, + "grad_norm": 0.8082904815673828, + "learning_rate": 3.399346733668342e-05, + "loss": 0.2252376174926758, + "step": 95600 + }, + { + "epoch": 32.06030655833822, + "grad_norm": 0.8369967341423035, + "learning_rate": 3.397671691792295e-05, + "loss": 0.22338224411010743, + "step": 95700 + }, + { + "epoch": 32.093810201859455, + "grad_norm": 0.8281686305999756, + "learning_rate": 3.395996649916248e-05, + "loss": 0.22212993621826171, + "step": 95800 + }, + { + "epoch": 32.127313845380684, + "grad_norm": 0.9705724716186523, + "learning_rate": 3.3943216080402015e-05, + "loss": 0.22465606689453124, + "step": 95900 + }, + { + "epoch": 32.16081748890192, + "grad_norm": 0.8423786163330078, + "learning_rate": 3.3926465661641544e-05, + "loss": 0.2250945281982422, + "step": 96000 + }, + { + "epoch": 32.19432113242315, + "grad_norm": 0.8339988589286804, + "learning_rate": 3.390971524288107e-05, + "loss": 0.22318048477172853, + "step": 96100 + }, + { + "epoch": 32.227824775944384, + "grad_norm": 0.8893176913261414, + "learning_rate": 3.38929648241206e-05, + "loss": 0.22539207458496094, + "step": 96200 + }, + { + "epoch": 32.26132841946562, + "grad_norm": 0.9052960276603699, + "learning_rate": 3.387621440536014e-05, + "loss": 0.22607305526733398, + "step": 96300 + }, + { + "epoch": 32.29483206298685, + "grad_norm": 1.0362404584884644, + "learning_rate": 3.3859463986599666e-05, + "loss": 0.22683595657348632, + "step": 96400 + }, + { + "epoch": 32.328335706508085, + "grad_norm": 0.9416490793228149, + "learning_rate": 3.3842713567839195e-05, + "loss": 0.22825729370117187, + "step": 96500 + }, + { + "epoch": 32.361839350029314, + "grad_norm": 0.8258299827575684, + "learning_rate": 3.3825963149078724e-05, + "loss": 0.2302044677734375, + "step": 96600 + }, + { + "epoch": 32.39534299355055, + "grad_norm": 0.8278768062591553, + "learning_rate": 3.380921273031826e-05, + "loss": 0.22817007064819336, + "step": 96700 + }, + { + "epoch": 32.42884663707178, + "grad_norm": 0.9295879006385803, + "learning_rate": 3.3792462311557795e-05, + "loss": 0.22796960830688476, + "step": 96800 + }, + { + "epoch": 32.462350280593014, + "grad_norm": 0.9297919273376465, + "learning_rate": 3.3775711892797324e-05, + "loss": 0.2300715446472168, + "step": 96900 + }, + { + "epoch": 32.49585392411425, + "grad_norm": 0.9032301902770996, + "learning_rate": 3.375896147403685e-05, + "loss": 0.22858844757080077, + "step": 97000 + }, + { + "epoch": 32.52935756763548, + "grad_norm": 0.9087026119232178, + "learning_rate": 3.374221105527639e-05, + "loss": 0.2282412528991699, + "step": 97100 + }, + { + "epoch": 32.562861211156715, + "grad_norm": 0.846002995967865, + "learning_rate": 3.372546063651592e-05, + "loss": 0.2312621307373047, + "step": 97200 + }, + { + "epoch": 32.596364854677944, + "grad_norm": 1.1084449291229248, + "learning_rate": 3.3708710217755446e-05, + "loss": 0.23065135955810548, + "step": 97300 + }, + { + "epoch": 32.62986849819918, + "grad_norm": 1.00586998462677, + "learning_rate": 3.3691959798994974e-05, + "loss": 0.2318124580383301, + "step": 97400 + }, + { + "epoch": 32.663372141720416, + "grad_norm": 1.010598063468933, + "learning_rate": 3.367520938023451e-05, + "loss": 0.22885004043579102, + "step": 97500 + }, + { + "epoch": 32.696875785241645, + "grad_norm": 0.9496275186538696, + "learning_rate": 3.365845896147404e-05, + "loss": 0.2315340232849121, + "step": 97600 + }, + { + "epoch": 32.73037942876288, + "grad_norm": 0.9502295255661011, + "learning_rate": 3.364170854271357e-05, + "loss": 0.2300456428527832, + "step": 97700 + }, + { + "epoch": 32.76388307228411, + "grad_norm": 0.8757120370864868, + "learning_rate": 3.3624958123953096e-05, + "loss": 0.2325787353515625, + "step": 97800 + }, + { + "epoch": 32.797386715805345, + "grad_norm": 1.086429476737976, + "learning_rate": 3.360820770519263e-05, + "loss": 0.23413005828857422, + "step": 97900 + }, + { + "epoch": 32.830890359326574, + "grad_norm": 0.9264597296714783, + "learning_rate": 3.359145728643216e-05, + "loss": 0.23220701217651368, + "step": 98000 + }, + { + "epoch": 32.86439400284781, + "grad_norm": 1.1024547815322876, + "learning_rate": 3.3574706867671696e-05, + "loss": 0.2337321662902832, + "step": 98100 + }, + { + "epoch": 32.897897646369046, + "grad_norm": 1.0790379047393799, + "learning_rate": 3.355812395309883e-05, + "loss": 0.23275186538696288, + "step": 98200 + }, + { + "epoch": 32.931401289890275, + "grad_norm": 1.0850489139556885, + "learning_rate": 3.354137353433836e-05, + "loss": 0.2350110626220703, + "step": 98300 + }, + { + "epoch": 32.96490493341151, + "grad_norm": 1.0384962558746338, + "learning_rate": 3.3524623115577893e-05, + "loss": 0.23315866470336913, + "step": 98400 + }, + { + "epoch": 32.99840857693274, + "grad_norm": 0.9511744379997253, + "learning_rate": 3.350787269681742e-05, + "loss": 0.23335418701171876, + "step": 98500 + }, + { + "epoch": 33.03182846134517, + "grad_norm": 0.9015313386917114, + "learning_rate": 3.349112227805695e-05, + "loss": 0.2207508850097656, + "step": 98600 + }, + { + "epoch": 33.06533210486641, + "grad_norm": 0.9277299046516418, + "learning_rate": 3.347437185929648e-05, + "loss": 0.2212068557739258, + "step": 98700 + }, + { + "epoch": 33.098835748387636, + "grad_norm": 0.9584958553314209, + "learning_rate": 3.3457621440536015e-05, + "loss": 0.2199711036682129, + "step": 98800 + }, + { + "epoch": 33.13233939190887, + "grad_norm": 0.788788378238678, + "learning_rate": 3.3440871021775544e-05, + "loss": 0.222060546875, + "step": 98900 + }, + { + "epoch": 33.1658430354301, + "grad_norm": 0.7377296090126038, + "learning_rate": 3.342412060301507e-05, + "loss": 0.2214929962158203, + "step": 99000 + }, + { + "epoch": 33.199346678951336, + "grad_norm": 0.9132254719734192, + "learning_rate": 3.340737018425461e-05, + "loss": 0.22287454605102539, + "step": 99100 + }, + { + "epoch": 33.23285032247257, + "grad_norm": 0.8702635169029236, + "learning_rate": 3.3390619765494144e-05, + "loss": 0.2249801254272461, + "step": 99200 + }, + { + "epoch": 33.2663539659938, + "grad_norm": 1.008585810661316, + "learning_rate": 3.337386934673367e-05, + "loss": 0.22441143035888672, + "step": 99300 + }, + { + "epoch": 33.29985760951504, + "grad_norm": 0.9218880534172058, + "learning_rate": 3.33571189279732e-05, + "loss": 0.22384666442871093, + "step": 99400 + }, + { + "epoch": 33.333361253036266, + "grad_norm": 0.8806573748588562, + "learning_rate": 3.334036850921273e-05, + "loss": 0.22616491317749024, + "step": 99500 + }, + { + "epoch": 33.3668648965575, + "grad_norm": 0.9997828602790833, + "learning_rate": 3.3323618090452266e-05, + "loss": 0.2251066780090332, + "step": 99600 + }, + { + "epoch": 33.40036854007873, + "grad_norm": 0.80961012840271, + "learning_rate": 3.3306867671691795e-05, + "loss": 0.22590801239013672, + "step": 99700 + }, + { + "epoch": 33.433872183599966, + "grad_norm": 0.8894720077514648, + "learning_rate": 3.3290117252931324e-05, + "loss": 0.2253563690185547, + "step": 99800 + }, + { + "epoch": 33.4673758271212, + "grad_norm": 0.9108457565307617, + "learning_rate": 3.327336683417085e-05, + "loss": 0.22678316116333008, + "step": 99900 + }, + { + "epoch": 33.50087947064243, + "grad_norm": 0.9380918145179749, + "learning_rate": 3.325661641541039e-05, + "loss": 0.22538763046264648, + "step": 100000 + }, + { + "epoch": 33.53438311416367, + "grad_norm": 0.9901800155639648, + "learning_rate": 3.323986599664992e-05, + "loss": 0.2280316734313965, + "step": 100100 + }, + { + "epoch": 33.567886757684896, + "grad_norm": 0.9266390204429626, + "learning_rate": 3.3223115577889446e-05, + "loss": 0.22870094299316407, + "step": 100200 + }, + { + "epoch": 33.60139040120613, + "grad_norm": 1.033541202545166, + "learning_rate": 3.3206365159128975e-05, + "loss": 0.22756708145141602, + "step": 100300 + }, + { + "epoch": 33.63489404472736, + "grad_norm": 0.9486100673675537, + "learning_rate": 3.318961474036851e-05, + "loss": 0.23031322479248048, + "step": 100400 + }, + { + "epoch": 33.6683976882486, + "grad_norm": 1.0127127170562744, + "learning_rate": 3.3172864321608046e-05, + "loss": 0.22845163345336914, + "step": 100500 + }, + { + "epoch": 33.70190133176983, + "grad_norm": 0.8763633966445923, + "learning_rate": 3.3156113902847575e-05, + "loss": 0.22902427673339842, + "step": 100600 + }, + { + "epoch": 33.73540497529106, + "grad_norm": 1.1065373420715332, + "learning_rate": 3.3139363484087104e-05, + "loss": 0.23073022842407226, + "step": 100700 + }, + { + "epoch": 33.7689086188123, + "grad_norm": 0.9771313071250916, + "learning_rate": 3.3122780569514236e-05, + "loss": 0.23011575698852538, + "step": 100800 + }, + { + "epoch": 33.802412262333526, + "grad_norm": 0.8843592405319214, + "learning_rate": 3.310603015075377e-05, + "loss": 0.23142065048217775, + "step": 100900 + }, + { + "epoch": 33.83591590585476, + "grad_norm": 0.8456923961639404, + "learning_rate": 3.30892797319933e-05, + "loss": 0.23063251495361328, + "step": 101000 + }, + { + "epoch": 33.869419549376, + "grad_norm": 0.8443148732185364, + "learning_rate": 3.307252931323283e-05, + "loss": 0.23091581344604492, + "step": 101100 + }, + { + "epoch": 33.90292319289723, + "grad_norm": 0.960616409778595, + "learning_rate": 3.305577889447236e-05, + "loss": 0.2316324806213379, + "step": 101200 + }, + { + "epoch": 33.93642683641846, + "grad_norm": 0.9722175002098083, + "learning_rate": 3.3039028475711894e-05, + "loss": 0.23007387161254883, + "step": 101300 + }, + { + "epoch": 33.96993047993969, + "grad_norm": 0.8240259289741516, + "learning_rate": 3.302227805695143e-05, + "loss": 0.2318846321105957, + "step": 101400 + }, + { + "epoch": 34.00335036435212, + "grad_norm": 0.9287110567092896, + "learning_rate": 3.300552763819096e-05, + "loss": 0.23206823348999023, + "step": 101500 + }, + { + "epoch": 34.03685400787336, + "grad_norm": 0.9008814692497253, + "learning_rate": 3.298877721943049e-05, + "loss": 0.21785154342651367, + "step": 101600 + }, + { + "epoch": 34.07035765139459, + "grad_norm": 0.9070394039154053, + "learning_rate": 3.297202680067002e-05, + "loss": 0.2177290725708008, + "step": 101700 + }, + { + "epoch": 34.10386129491582, + "grad_norm": 0.9032074809074402, + "learning_rate": 3.295527638190955e-05, + "loss": 0.21938394546508788, + "step": 101800 + }, + { + "epoch": 34.13736493843705, + "grad_norm": 0.9069404006004333, + "learning_rate": 3.293852596314908e-05, + "loss": 0.2203085708618164, + "step": 101900 + }, + { + "epoch": 34.17086858195829, + "grad_norm": 0.9074708819389343, + "learning_rate": 3.292177554438861e-05, + "loss": 0.2204928970336914, + "step": 102000 + }, + { + "epoch": 34.204372225479524, + "grad_norm": 0.9713619351387024, + "learning_rate": 3.2905025125628145e-05, + "loss": 0.22204416275024413, + "step": 102100 + }, + { + "epoch": 34.23787586900075, + "grad_norm": 0.9323224425315857, + "learning_rate": 3.2888274706867674e-05, + "loss": 0.22052072525024413, + "step": 102200 + }, + { + "epoch": 34.27137951252199, + "grad_norm": 0.8843114376068115, + "learning_rate": 3.28715242881072e-05, + "loss": 0.22254072189331053, + "step": 102300 + }, + { + "epoch": 34.30488315604322, + "grad_norm": 1.0152033567428589, + "learning_rate": 3.285477386934673e-05, + "loss": 0.2236959457397461, + "step": 102400 + }, + { + "epoch": 34.338386799564454, + "grad_norm": 0.9482904672622681, + "learning_rate": 3.283802345058627e-05, + "loss": 0.224102725982666, + "step": 102500 + }, + { + "epoch": 34.37189044308568, + "grad_norm": 0.8699772953987122, + "learning_rate": 3.28212730318258e-05, + "loss": 0.22381122589111327, + "step": 102600 + }, + { + "epoch": 34.40539408660692, + "grad_norm": 0.9056621193885803, + "learning_rate": 3.280452261306533e-05, + "loss": 0.22394416809082032, + "step": 102700 + }, + { + "epoch": 34.438897730128154, + "grad_norm": 1.0373077392578125, + "learning_rate": 3.2787939698492464e-05, + "loss": 0.22495691299438478, + "step": 102800 + }, + { + "epoch": 34.47240137364938, + "grad_norm": 1.0134550333023071, + "learning_rate": 3.277118927973199e-05, + "loss": 0.22408302307128905, + "step": 102900 + }, + { + "epoch": 34.50590501717062, + "grad_norm": 0.9845434427261353, + "learning_rate": 3.275443886097153e-05, + "loss": 0.22512359619140626, + "step": 103000 + }, + { + "epoch": 34.53940866069185, + "grad_norm": 1.0372213125228882, + "learning_rate": 3.273768844221106e-05, + "loss": 0.22693737030029296, + "step": 103100 + }, + { + "epoch": 34.572912304213084, + "grad_norm": 0.8394227027893066, + "learning_rate": 3.2720938023450586e-05, + "loss": 0.22773279190063478, + "step": 103200 + }, + { + "epoch": 34.60641594773432, + "grad_norm": 0.9733761548995972, + "learning_rate": 3.2704187604690115e-05, + "loss": 0.2269156265258789, + "step": 103300 + }, + { + "epoch": 34.63991959125555, + "grad_norm": 0.9194538593292236, + "learning_rate": 3.268743718592965e-05, + "loss": 0.22706941604614259, + "step": 103400 + }, + { + "epoch": 34.673423234776784, + "grad_norm": 0.9639450311660767, + "learning_rate": 3.267068676716918e-05, + "loss": 0.22622791290283203, + "step": 103500 + }, + { + "epoch": 34.70692687829801, + "grad_norm": 1.0700583457946777, + "learning_rate": 3.265393634840871e-05, + "loss": 0.2273421859741211, + "step": 103600 + }, + { + "epoch": 34.74043052181925, + "grad_norm": 0.9843416810035706, + "learning_rate": 3.2637185929648244e-05, + "loss": 0.22782588958740235, + "step": 103700 + }, + { + "epoch": 34.77393416534048, + "grad_norm": 0.9237584471702576, + "learning_rate": 3.262043551088777e-05, + "loss": 0.22874467849731445, + "step": 103800 + }, + { + "epoch": 34.807437808861714, + "grad_norm": 0.8710795640945435, + "learning_rate": 3.260368509212731e-05, + "loss": 0.22824941635131835, + "step": 103900 + }, + { + "epoch": 34.84094145238295, + "grad_norm": 0.8803784847259521, + "learning_rate": 3.258693467336684e-05, + "loss": 0.225937442779541, + "step": 104000 + }, + { + "epoch": 34.87444509590418, + "grad_norm": 0.9234800338745117, + "learning_rate": 3.2570184254606366e-05, + "loss": 0.22656524658203125, + "step": 104100 + }, + { + "epoch": 34.907948739425414, + "grad_norm": 0.9999638795852661, + "learning_rate": 3.25534338358459e-05, + "loss": 0.2282132911682129, + "step": 104200 + }, + { + "epoch": 34.94145238294664, + "grad_norm": 1.1694445610046387, + "learning_rate": 3.253668341708543e-05, + "loss": 0.22793378829956054, + "step": 104300 + }, + { + "epoch": 34.97495602646788, + "grad_norm": 0.8837403655052185, + "learning_rate": 3.251993299832496e-05, + "loss": 0.22847984313964845, + "step": 104400 + }, + { + "epoch": 35.00837591088031, + "grad_norm": 0.8809188604354858, + "learning_rate": 3.250318257956449e-05, + "loss": 0.22692270278930665, + "step": 104500 + }, + { + "epoch": 35.04187955440154, + "grad_norm": 1.0068167448043823, + "learning_rate": 3.248643216080402e-05, + "loss": 0.21723543167114256, + "step": 104600 + }, + { + "epoch": 35.075383197922775, + "grad_norm": 0.8723959922790527, + "learning_rate": 3.246968174204355e-05, + "loss": 0.21555179595947266, + "step": 104700 + }, + { + "epoch": 35.108886841444004, + "grad_norm": 0.8103620409965515, + "learning_rate": 3.245293132328308e-05, + "loss": 0.21831268310546875, + "step": 104800 + }, + { + "epoch": 35.14239048496524, + "grad_norm": 0.9336848855018616, + "learning_rate": 3.2436180904522617e-05, + "loss": 0.21713750839233398, + "step": 104900 + }, + { + "epoch": 35.175894128486476, + "grad_norm": 0.7471016049385071, + "learning_rate": 3.2419430485762145e-05, + "loss": 0.21997308731079102, + "step": 105000 + }, + { + "epoch": 35.209397772007705, + "grad_norm": 0.8775885105133057, + "learning_rate": 3.240268006700168e-05, + "loss": 0.21831626892089845, + "step": 105100 + }, + { + "epoch": 35.24290141552894, + "grad_norm": 0.8458008170127869, + "learning_rate": 3.238592964824121e-05, + "loss": 0.21945228576660156, + "step": 105200 + }, + { + "epoch": 35.27640505905017, + "grad_norm": 0.8437234163284302, + "learning_rate": 3.236917922948074e-05, + "loss": 0.2186195182800293, + "step": 105300 + }, + { + "epoch": 35.309908702571406, + "grad_norm": 0.7865097522735596, + "learning_rate": 3.235259631490787e-05, + "loss": 0.22217554092407227, + "step": 105400 + }, + { + "epoch": 35.343412346092634, + "grad_norm": 0.866061806678772, + "learning_rate": 3.233584589614741e-05, + "loss": 0.22084756851196288, + "step": 105500 + }, + { + "epoch": 35.37691598961387, + "grad_norm": 0.9198658466339111, + "learning_rate": 3.2319095477386936e-05, + "loss": 0.21991580963134766, + "step": 105600 + }, + { + "epoch": 35.410419633135106, + "grad_norm": 0.8831592202186584, + "learning_rate": 3.2302345058626464e-05, + "loss": 0.22320646286010742, + "step": 105700 + }, + { + "epoch": 35.443923276656335, + "grad_norm": 0.9197396636009216, + "learning_rate": 3.228559463986599e-05, + "loss": 0.22325061798095702, + "step": 105800 + }, + { + "epoch": 35.47742692017757, + "grad_norm": 0.8785274624824524, + "learning_rate": 3.226884422110553e-05, + "loss": 0.22299362182617188, + "step": 105900 + }, + { + "epoch": 35.5109305636988, + "grad_norm": 0.8461816310882568, + "learning_rate": 3.2252093802345064e-05, + "loss": 0.2225216484069824, + "step": 106000 + }, + { + "epoch": 35.544434207220036, + "grad_norm": 1.063522219657898, + "learning_rate": 3.223534338358459e-05, + "loss": 0.2242141342163086, + "step": 106100 + }, + { + "epoch": 35.57793785074127, + "grad_norm": 0.867465615272522, + "learning_rate": 3.221859296482412e-05, + "loss": 0.2223381805419922, + "step": 106200 + }, + { + "epoch": 35.6114414942625, + "grad_norm": 0.9031139016151428, + "learning_rate": 3.220184254606365e-05, + "loss": 0.22474571228027343, + "step": 106300 + }, + { + "epoch": 35.644945137783736, + "grad_norm": 1.0108989477157593, + "learning_rate": 3.2185092127303186e-05, + "loss": 0.22544246673583984, + "step": 106400 + }, + { + "epoch": 35.678448781304965, + "grad_norm": 1.0109949111938477, + "learning_rate": 3.2168341708542715e-05, + "loss": 0.22579713821411132, + "step": 106500 + }, + { + "epoch": 35.7119524248262, + "grad_norm": 0.9123691916465759, + "learning_rate": 3.2151591289782244e-05, + "loss": 0.22499269485473633, + "step": 106600 + }, + { + "epoch": 35.74545606834743, + "grad_norm": 0.951260507106781, + "learning_rate": 3.213484087102178e-05, + "loss": 0.22552137374877929, + "step": 106700 + }, + { + "epoch": 35.778959711868666, + "grad_norm": 0.8786386251449585, + "learning_rate": 3.211809045226131e-05, + "loss": 0.22638605117797853, + "step": 106800 + }, + { + "epoch": 35.8124633553899, + "grad_norm": 0.9864464998245239, + "learning_rate": 3.210134003350084e-05, + "loss": 0.2277699089050293, + "step": 106900 + }, + { + "epoch": 35.84596699891113, + "grad_norm": 1.0679579973220825, + "learning_rate": 3.2084589614740366e-05, + "loss": 0.22652555465698243, + "step": 107000 + }, + { + "epoch": 35.879470642432366, + "grad_norm": 1.0075697898864746, + "learning_rate": 3.20678391959799e-05, + "loss": 0.22713031768798828, + "step": 107100 + }, + { + "epoch": 35.912974285953595, + "grad_norm": 0.9335576891899109, + "learning_rate": 3.205108877721944e-05, + "loss": 0.22596691131591798, + "step": 107200 + }, + { + "epoch": 35.94647792947483, + "grad_norm": 0.7710935473442078, + "learning_rate": 3.2034338358458966e-05, + "loss": 0.22641992568969727, + "step": 107300 + }, + { + "epoch": 35.97998157299606, + "grad_norm": 1.083516001701355, + "learning_rate": 3.2017587939698495e-05, + "loss": 0.22827293395996093, + "step": 107400 + }, + { + "epoch": 36.01340145740849, + "grad_norm": 0.8612881302833557, + "learning_rate": 3.2000837520938024e-05, + "loss": 0.22379323959350586, + "step": 107500 + }, + { + "epoch": 36.04690510092973, + "grad_norm": 0.7906754016876221, + "learning_rate": 3.198408710217756e-05, + "loss": 0.21393178939819335, + "step": 107600 + }, + { + "epoch": 36.080408744450956, + "grad_norm": 0.6994041800498962, + "learning_rate": 3.196733668341709e-05, + "loss": 0.2150893211364746, + "step": 107700 + }, + { + "epoch": 36.11391238797219, + "grad_norm": 0.7304232120513916, + "learning_rate": 3.195058626465662e-05, + "loss": 0.21509407043457032, + "step": 107800 + }, + { + "epoch": 36.14741603149343, + "grad_norm": 0.8723782896995544, + "learning_rate": 3.1933835845896146e-05, + "loss": 0.21703847885131836, + "step": 107900 + }, + { + "epoch": 36.18091967501466, + "grad_norm": 0.8350656628608704, + "learning_rate": 3.191708542713568e-05, + "loss": 0.21680261611938476, + "step": 108000 + }, + { + "epoch": 36.21442331853589, + "grad_norm": 0.8917808532714844, + "learning_rate": 3.190033500837521e-05, + "loss": 0.21753547668457032, + "step": 108100 + }, + { + "epoch": 36.24792696205712, + "grad_norm": 0.9806150197982788, + "learning_rate": 3.188358458961474e-05, + "loss": 0.21905086517333985, + "step": 108200 + }, + { + "epoch": 36.28143060557836, + "grad_norm": 0.8857609033584595, + "learning_rate": 3.186700167504188e-05, + "loss": 0.21918514251708984, + "step": 108300 + }, + { + "epoch": 36.314934249099586, + "grad_norm": 0.910219669342041, + "learning_rate": 3.185025125628141e-05, + "loss": 0.2200949287414551, + "step": 108400 + }, + { + "epoch": 36.34843789262082, + "grad_norm": 1.0122119188308716, + "learning_rate": 3.183350083752094e-05, + "loss": 0.2193107795715332, + "step": 108500 + }, + { + "epoch": 36.38194153614206, + "grad_norm": 0.9494280815124512, + "learning_rate": 3.181675041876047e-05, + "loss": 0.2197030258178711, + "step": 108600 + }, + { + "epoch": 36.41544517966329, + "grad_norm": 0.9605288505554199, + "learning_rate": 3.18e-05, + "loss": 0.22033754348754883, + "step": 108700 + }, + { + "epoch": 36.44894882318452, + "grad_norm": 0.7704981565475464, + "learning_rate": 3.178324958123953e-05, + "loss": 0.22123022079467775, + "step": 108800 + }, + { + "epoch": 36.48245246670575, + "grad_norm": 0.9490818381309509, + "learning_rate": 3.1766499162479065e-05, + "loss": 0.22183971405029296, + "step": 108900 + }, + { + "epoch": 36.51595611022699, + "grad_norm": 0.9417729377746582, + "learning_rate": 3.1749748743718594e-05, + "loss": 0.22279998779296875, + "step": 109000 + }, + { + "epoch": 36.54945975374822, + "grad_norm": 0.933033287525177, + "learning_rate": 3.173299832495812e-05, + "loss": 0.22310422897338866, + "step": 109100 + }, + { + "epoch": 36.58296339726945, + "grad_norm": 0.8921425342559814, + "learning_rate": 3.171624790619765e-05, + "loss": 0.2227332878112793, + "step": 109200 + }, + { + "epoch": 36.61646704079069, + "grad_norm": 0.8272472023963928, + "learning_rate": 3.169949748743719e-05, + "loss": 0.22220718383789062, + "step": 109300 + }, + { + "epoch": 36.64997068431192, + "grad_norm": 0.9517436027526855, + "learning_rate": 3.1682747068676716e-05, + "loss": 0.22240093231201172, + "step": 109400 + }, + { + "epoch": 36.68347432783315, + "grad_norm": 0.869287371635437, + "learning_rate": 3.166599664991625e-05, + "loss": 0.22267683029174803, + "step": 109500 + }, + { + "epoch": 36.71697797135438, + "grad_norm": 0.8402668237686157, + "learning_rate": 3.164924623115578e-05, + "loss": 0.22277099609375, + "step": 109600 + }, + { + "epoch": 36.75048161487562, + "grad_norm": 0.7411085367202759, + "learning_rate": 3.1632495812395316e-05, + "loss": 0.22394742965698242, + "step": 109700 + }, + { + "epoch": 36.783985258396854, + "grad_norm": 0.9969924092292786, + "learning_rate": 3.1615745393634845e-05, + "loss": 0.22464384078979494, + "step": 109800 + }, + { + "epoch": 36.81748890191808, + "grad_norm": 1.0667954683303833, + "learning_rate": 3.1598994974874373e-05, + "loss": 0.22305191040039063, + "step": 109900 + }, + { + "epoch": 36.85099254543932, + "grad_norm": 0.9248315095901489, + "learning_rate": 3.15822445561139e-05, + "loss": 0.22483558654785157, + "step": 110000 + }, + { + "epoch": 36.88449618896055, + "grad_norm": 0.921510636806488, + "learning_rate": 3.156549413735344e-05, + "loss": 0.22462337493896484, + "step": 110100 + }, + { + "epoch": 36.91799983248178, + "grad_norm": 0.9513688683509827, + "learning_rate": 3.154874371859297e-05, + "loss": 0.22469757080078126, + "step": 110200 + }, + { + "epoch": 36.95150347600301, + "grad_norm": 0.9634213447570801, + "learning_rate": 3.1531993299832495e-05, + "loss": 0.22559005737304688, + "step": 110300 + }, + { + "epoch": 36.98500711952425, + "grad_norm": 0.8968513607978821, + "learning_rate": 3.1515242881072024e-05, + "loss": 0.22452268600463868, + "step": 110400 + }, + { + "epoch": 37.01842700393668, + "grad_norm": 0.9366862773895264, + "learning_rate": 3.149849246231156e-05, + "loss": 0.21873317718505858, + "step": 110500 + }, + { + "epoch": 37.05193064745791, + "grad_norm": 0.9117385149002075, + "learning_rate": 3.148174204355109e-05, + "loss": 0.21297582626342773, + "step": 110600 + }, + { + "epoch": 37.085434290979144, + "grad_norm": 0.8058609962463379, + "learning_rate": 3.1464991624790624e-05, + "loss": 0.21399580001831053, + "step": 110700 + }, + { + "epoch": 37.11893793450038, + "grad_norm": 0.9793832302093506, + "learning_rate": 3.144824120603015e-05, + "loss": 0.21349397659301758, + "step": 110800 + }, + { + "epoch": 37.15244157802161, + "grad_norm": 0.7564776539802551, + "learning_rate": 3.143149078726968e-05, + "loss": 0.2160548210144043, + "step": 110900 + }, + { + "epoch": 37.185945221542845, + "grad_norm": 0.9561526775360107, + "learning_rate": 3.141474036850922e-05, + "loss": 0.21727354049682618, + "step": 111000 + }, + { + "epoch": 37.219448865064074, + "grad_norm": 0.8852317929267883, + "learning_rate": 3.1397989949748746e-05, + "loss": 0.2165077018737793, + "step": 111100 + }, + { + "epoch": 37.25295250858531, + "grad_norm": 0.9445819854736328, + "learning_rate": 3.1381239530988275e-05, + "loss": 0.21671443939208984, + "step": 111200 + }, + { + "epoch": 37.28645615210654, + "grad_norm": 0.8414257168769836, + "learning_rate": 3.136465661641541e-05, + "loss": 0.2156463623046875, + "step": 111300 + }, + { + "epoch": 37.319959795627774, + "grad_norm": 0.9724504351615906, + "learning_rate": 3.134790619765494e-05, + "loss": 0.21695276260375976, + "step": 111400 + }, + { + "epoch": 37.35346343914901, + "grad_norm": 0.8939653038978577, + "learning_rate": 3.133115577889447e-05, + "loss": 0.21864233016967774, + "step": 111500 + }, + { + "epoch": 37.38696708267024, + "grad_norm": 0.7889378070831299, + "learning_rate": 3.1314405360134e-05, + "loss": 0.2170688056945801, + "step": 111600 + }, + { + "epoch": 37.420470726191475, + "grad_norm": 0.9483622312545776, + "learning_rate": 3.129765494137353e-05, + "loss": 0.2190123176574707, + "step": 111700 + }, + { + "epoch": 37.453974369712704, + "grad_norm": 0.8011330366134644, + "learning_rate": 3.128090452261307e-05, + "loss": 0.22048694610595704, + "step": 111800 + }, + { + "epoch": 37.48747801323394, + "grad_norm": 0.8247294425964355, + "learning_rate": 3.12641541038526e-05, + "loss": 0.21904251098632813, + "step": 111900 + }, + { + "epoch": 37.520981656755175, + "grad_norm": 0.750112771987915, + "learning_rate": 3.124740368509213e-05, + "loss": 0.21833335876464843, + "step": 112000 + }, + { + "epoch": 37.554485300276404, + "grad_norm": 0.9256598353385925, + "learning_rate": 3.123065326633166e-05, + "loss": 0.21966569900512695, + "step": 112100 + }, + { + "epoch": 37.58798894379764, + "grad_norm": 0.9734209775924683, + "learning_rate": 3.1213902847571194e-05, + "loss": 0.22099735260009765, + "step": 112200 + }, + { + "epoch": 37.62149258731887, + "grad_norm": 0.990144670009613, + "learning_rate": 3.119715242881072e-05, + "loss": 0.22192005157470704, + "step": 112300 + }, + { + "epoch": 37.654996230840105, + "grad_norm": 0.6585299372673035, + "learning_rate": 3.118040201005025e-05, + "loss": 0.22165678024291993, + "step": 112400 + }, + { + "epoch": 37.688499874361334, + "grad_norm": 0.9786301255226135, + "learning_rate": 3.116365159128978e-05, + "loss": 0.22310081481933594, + "step": 112500 + }, + { + "epoch": 37.72200351788257, + "grad_norm": 0.8770159482955933, + "learning_rate": 3.1146901172529316e-05, + "loss": 0.22149917602539063, + "step": 112600 + }, + { + "epoch": 37.755507161403806, + "grad_norm": 0.9303070306777954, + "learning_rate": 3.1130150753768845e-05, + "loss": 0.22284337997436524, + "step": 112700 + }, + { + "epoch": 37.789010804925034, + "grad_norm": 0.9092078804969788, + "learning_rate": 3.1113400335008374e-05, + "loss": 0.2229990005493164, + "step": 112800 + }, + { + "epoch": 37.82251444844627, + "grad_norm": 0.9219861626625061, + "learning_rate": 3.10966499162479e-05, + "loss": 0.2217073631286621, + "step": 112900 + }, + { + "epoch": 37.8560180919675, + "grad_norm": 0.7435413002967834, + "learning_rate": 3.107989949748744e-05, + "loss": 0.22171833038330077, + "step": 113000 + }, + { + "epoch": 37.889521735488735, + "grad_norm": 0.9068054556846619, + "learning_rate": 3.1063149078726974e-05, + "loss": 0.22258939743041992, + "step": 113100 + }, + { + "epoch": 37.923025379009964, + "grad_norm": 1.0471735000610352, + "learning_rate": 3.10463986599665e-05, + "loss": 0.2234604263305664, + "step": 113200 + }, + { + "epoch": 37.9565290225312, + "grad_norm": 1.0463248491287231, + "learning_rate": 3.102964824120603e-05, + "loss": 0.22215925216674803, + "step": 113300 + }, + { + "epoch": 37.990032666052436, + "grad_norm": 0.9165071845054626, + "learning_rate": 3.101289782244556e-05, + "loss": 0.22422847747802735, + "step": 113400 + }, + { + "epoch": 38.02345255046486, + "grad_norm": 0.8414464592933655, + "learning_rate": 3.09963149078727e-05, + "loss": 0.21486921310424806, + "step": 113500 + }, + { + "epoch": 38.056956193986096, + "grad_norm": 0.8961010575294495, + "learning_rate": 3.097956448911223e-05, + "loss": 0.21109798431396484, + "step": 113600 + }, + { + "epoch": 38.09045983750733, + "grad_norm": 0.9100089073181152, + "learning_rate": 3.096281407035176e-05, + "loss": 0.21328540802001952, + "step": 113700 + }, + { + "epoch": 38.12396348102856, + "grad_norm": 0.9186659455299377, + "learning_rate": 3.0946063651591286e-05, + "loss": 0.21333318710327148, + "step": 113800 + }, + { + "epoch": 38.1574671245498, + "grad_norm": 0.7723438143730164, + "learning_rate": 3.092931323283082e-05, + "loss": 0.21231781005859374, + "step": 113900 + }, + { + "epoch": 38.190970768071026, + "grad_norm": 0.8304508328437805, + "learning_rate": 3.091256281407035e-05, + "loss": 0.21468320846557618, + "step": 114000 + }, + { + "epoch": 38.22447441159226, + "grad_norm": 0.8922227025032043, + "learning_rate": 3.0895812395309886e-05, + "loss": 0.21428609848022462, + "step": 114100 + }, + { + "epoch": 38.25797805511349, + "grad_norm": 0.7371033430099487, + "learning_rate": 3.0879061976549415e-05, + "loss": 0.2143361473083496, + "step": 114200 + }, + { + "epoch": 38.291481698634726, + "grad_norm": 0.8409704566001892, + "learning_rate": 3.086231155778895e-05, + "loss": 0.21631322860717772, + "step": 114300 + }, + { + "epoch": 38.32498534215596, + "grad_norm": 0.7273088097572327, + "learning_rate": 3.084556113902848e-05, + "loss": 0.2163697624206543, + "step": 114400 + }, + { + "epoch": 38.35848898567719, + "grad_norm": 0.8249197602272034, + "learning_rate": 3.082881072026801e-05, + "loss": 0.2180681800842285, + "step": 114500 + }, + { + "epoch": 38.39199262919843, + "grad_norm": 0.7984412312507629, + "learning_rate": 3.081206030150754e-05, + "loss": 0.21718357086181642, + "step": 114600 + }, + { + "epoch": 38.425496272719656, + "grad_norm": 1.08668851852417, + "learning_rate": 3.079530988274707e-05, + "loss": 0.21632287979125978, + "step": 114700 + }, + { + "epoch": 38.45899991624089, + "grad_norm": 0.7324666976928711, + "learning_rate": 3.07785594639866e-05, + "loss": 0.2178202438354492, + "step": 114800 + }, + { + "epoch": 38.49250355976213, + "grad_norm": 0.8047093749046326, + "learning_rate": 3.076180904522613e-05, + "loss": 0.21611106872558594, + "step": 114900 + }, + { + "epoch": 38.526007203283356, + "grad_norm": 0.8086637854576111, + "learning_rate": 3.074505862646566e-05, + "loss": 0.21893905639648437, + "step": 115000 + }, + { + "epoch": 38.55951084680459, + "grad_norm": 0.9299573302268982, + "learning_rate": 3.0728308207705195e-05, + "loss": 0.21941152572631836, + "step": 115100 + }, + { + "epoch": 38.59301449032582, + "grad_norm": 0.921328067779541, + "learning_rate": 3.0711557788944724e-05, + "loss": 0.21848363876342775, + "step": 115200 + }, + { + "epoch": 38.62651813384706, + "grad_norm": 0.8732923865318298, + "learning_rate": 3.069480737018426e-05, + "loss": 0.2199881935119629, + "step": 115300 + }, + { + "epoch": 38.660021777368286, + "grad_norm": 0.8334107995033264, + "learning_rate": 3.067805695142379e-05, + "loss": 0.21993675231933593, + "step": 115400 + }, + { + "epoch": 38.69352542088952, + "grad_norm": 0.9880418181419373, + "learning_rate": 3.066130653266332e-05, + "loss": 0.21957590103149413, + "step": 115500 + }, + { + "epoch": 38.72702906441076, + "grad_norm": 0.7397698760032654, + "learning_rate": 3.0644723618090456e-05, + "loss": 0.22164581298828126, + "step": 115600 + }, + { + "epoch": 38.760532707931986, + "grad_norm": 0.8668732047080994, + "learning_rate": 3.0627973199329985e-05, + "loss": 0.22148818969726564, + "step": 115700 + }, + { + "epoch": 38.79403635145322, + "grad_norm": 0.9017316699028015, + "learning_rate": 3.0611222780569514e-05, + "loss": 0.22045387268066408, + "step": 115800 + }, + { + "epoch": 38.82753999497445, + "grad_norm": 0.960860550403595, + "learning_rate": 3.059447236180904e-05, + "loss": 0.22010658264160157, + "step": 115900 + }, + { + "epoch": 38.86104363849569, + "grad_norm": 0.9069247245788574, + "learning_rate": 3.057772194304858e-05, + "loss": 0.22206361770629882, + "step": 116000 + }, + { + "epoch": 38.894547282016916, + "grad_norm": 0.9507908821105957, + "learning_rate": 3.056097152428811e-05, + "loss": 0.223684139251709, + "step": 116100 + }, + { + "epoch": 38.92805092553815, + "grad_norm": 0.9307253360748291, + "learning_rate": 3.0544221105527636e-05, + "loss": 0.2224336814880371, + "step": 116200 + }, + { + "epoch": 38.96155456905939, + "grad_norm": 0.8504303097724915, + "learning_rate": 3.052747068676717e-05, + "loss": 0.22100894927978515, + "step": 116300 + }, + { + "epoch": 38.995058212580616, + "grad_norm": 1.0041011571884155, + "learning_rate": 3.0510720268006704e-05, + "loss": 0.2226072692871094, + "step": 116400 + }, + { + "epoch": 39.02847809699305, + "grad_norm": 0.8630343675613403, + "learning_rate": 3.0493969849246236e-05, + "loss": 0.21175411224365234, + "step": 116500 + }, + { + "epoch": 39.061981740514284, + "grad_norm": 0.8499475717544556, + "learning_rate": 3.0477219430485765e-05, + "loss": 0.21058534622192382, + "step": 116600 + }, + { + "epoch": 39.09548538403551, + "grad_norm": 0.8700653910636902, + "learning_rate": 3.0460469011725297e-05, + "loss": 0.21063339233398437, + "step": 116700 + }, + { + "epoch": 39.12898902755675, + "grad_norm": 0.928617537021637, + "learning_rate": 3.0443718592964826e-05, + "loss": 0.21142158508300782, + "step": 116800 + }, + { + "epoch": 39.16249267107798, + "grad_norm": 0.7653895616531372, + "learning_rate": 3.0426968174204358e-05, + "loss": 0.2120248031616211, + "step": 116900 + }, + { + "epoch": 39.19599631459921, + "grad_norm": 0.9703547954559326, + "learning_rate": 3.0410217755443887e-05, + "loss": 0.21317352294921876, + "step": 117000 + }, + { + "epoch": 39.22949995812044, + "grad_norm": 0.8479989767074585, + "learning_rate": 3.039346733668342e-05, + "loss": 0.21484851837158203, + "step": 117100 + }, + { + "epoch": 39.26300360164168, + "grad_norm": 0.899630069732666, + "learning_rate": 3.0376716917922948e-05, + "loss": 0.21453136444091797, + "step": 117200 + }, + { + "epoch": 39.296507245162914, + "grad_norm": 1.086026906967163, + "learning_rate": 3.035996649916248e-05, + "loss": 0.21443565368652343, + "step": 117300 + }, + { + "epoch": 39.33001088868414, + "grad_norm": 0.8970637917518616, + "learning_rate": 3.034321608040201e-05, + "loss": 0.21288238525390624, + "step": 117400 + }, + { + "epoch": 39.36351453220538, + "grad_norm": 0.9710267186164856, + "learning_rate": 3.032646566164154e-05, + "loss": 0.21607624053955077, + "step": 117500 + }, + { + "epoch": 39.39701817572661, + "grad_norm": 0.908697783946991, + "learning_rate": 3.030988274706868e-05, + "loss": 0.2151881217956543, + "step": 117600 + }, + { + "epoch": 39.43052181924784, + "grad_norm": 0.9393781423568726, + "learning_rate": 3.029313232830821e-05, + "loss": 0.21689601898193359, + "step": 117700 + }, + { + "epoch": 39.46402546276908, + "grad_norm": 0.8031620383262634, + "learning_rate": 3.027638190954774e-05, + "loss": 0.21640504837036134, + "step": 117800 + }, + { + "epoch": 39.49752910629031, + "grad_norm": 1.027938961982727, + "learning_rate": 3.025963149078727e-05, + "loss": 0.21748722076416016, + "step": 117900 + }, + { + "epoch": 39.531032749811544, + "grad_norm": 0.9682844877243042, + "learning_rate": 3.0242881072026802e-05, + "loss": 0.21787578582763673, + "step": 118000 + }, + { + "epoch": 39.56453639333277, + "grad_norm": 0.884766697883606, + "learning_rate": 3.022613065326633e-05, + "loss": 0.21701082229614257, + "step": 118100 + }, + { + "epoch": 39.59804003685401, + "grad_norm": 0.9033914804458618, + "learning_rate": 3.0209380234505863e-05, + "loss": 0.21810293197631836, + "step": 118200 + }, + { + "epoch": 39.63154368037524, + "grad_norm": 0.8522166013717651, + "learning_rate": 3.0192629815745392e-05, + "loss": 0.2182499122619629, + "step": 118300 + }, + { + "epoch": 39.665047323896474, + "grad_norm": 1.1046702861785889, + "learning_rate": 3.0175879396984924e-05, + "loss": 0.2196645164489746, + "step": 118400 + }, + { + "epoch": 39.69855096741771, + "grad_norm": 0.7786019444465637, + "learning_rate": 3.0159128978224453e-05, + "loss": 0.21823881149291993, + "step": 118500 + }, + { + "epoch": 39.73205461093894, + "grad_norm": 0.8261039853096008, + "learning_rate": 3.0142378559463992e-05, + "loss": 0.2183905029296875, + "step": 118600 + }, + { + "epoch": 39.765558254460174, + "grad_norm": 0.7951787710189819, + "learning_rate": 3.012562814070352e-05, + "loss": 0.22037561416625975, + "step": 118700 + }, + { + "epoch": 39.7990618979814, + "grad_norm": 0.9430021047592163, + "learning_rate": 3.0108877721943053e-05, + "loss": 0.22020740509033204, + "step": 118800 + }, + { + "epoch": 39.83256554150264, + "grad_norm": 0.8699235320091248, + "learning_rate": 3.0092127303182582e-05, + "loss": 0.2182463836669922, + "step": 118900 + }, + { + "epoch": 39.866069185023875, + "grad_norm": 0.6874027252197266, + "learning_rate": 3.0075376884422114e-05, + "loss": 0.21936134338378907, + "step": 119000 + }, + { + "epoch": 39.899572828545104, + "grad_norm": 0.9950704574584961, + "learning_rate": 3.0058626465661643e-05, + "loss": 0.22008882522583006, + "step": 119100 + }, + { + "epoch": 39.93307647206634, + "grad_norm": 0.9827971458435059, + "learning_rate": 3.0041876046901175e-05, + "loss": 0.22005229949951172, + "step": 119200 + }, + { + "epoch": 39.96658011558757, + "grad_norm": 0.9177015423774719, + "learning_rate": 3.0025125628140704e-05, + "loss": 0.21897659301757813, + "step": 119300 + }, + { + "epoch": 40.0, + "grad_norm": 1.1112428903579712, + "learning_rate": 3.0008375209380236e-05, + "loss": 0.2205747604370117, + "step": 119400 + }, + { + "epoch": 40.033503643521236, + "grad_norm": 0.9478968977928162, + "learning_rate": 2.9991624790619765e-05, + "loss": 0.20781259536743163, + "step": 119500 + }, + { + "epoch": 40.067007287042465, + "grad_norm": 0.8990084528923035, + "learning_rate": 2.99750418760469e-05, + "loss": 0.20928415298461914, + "step": 119600 + }, + { + "epoch": 40.1005109305637, + "grad_norm": 1.0282913446426392, + "learning_rate": 2.9958291457286437e-05, + "loss": 0.21068788528442384, + "step": 119700 + }, + { + "epoch": 40.13401457408493, + "grad_norm": 0.781109094619751, + "learning_rate": 2.9941541038525965e-05, + "loss": 0.2100553321838379, + "step": 119800 + }, + { + "epoch": 40.167518217606165, + "grad_norm": 0.7364116311073303, + "learning_rate": 2.9924790619765498e-05, + "loss": 0.211074161529541, + "step": 119900 + }, + { + "epoch": 40.201021861127394, + "grad_norm": 0.8109786510467529, + "learning_rate": 2.9908040201005027e-05, + "loss": 0.2111503028869629, + "step": 120000 + }, + { + "epoch": 40.23452550464863, + "grad_norm": 0.8337066769599915, + "learning_rate": 2.989128978224456e-05, + "loss": 0.21187753677368165, + "step": 120100 + }, + { + "epoch": 40.268029148169866, + "grad_norm": 0.8106216788291931, + "learning_rate": 2.9874539363484088e-05, + "loss": 0.21110746383666992, + "step": 120200 + }, + { + "epoch": 40.301532791691095, + "grad_norm": 0.900480329990387, + "learning_rate": 2.985778894472362e-05, + "loss": 0.21332656860351562, + "step": 120300 + }, + { + "epoch": 40.33503643521233, + "grad_norm": 0.8936036825180054, + "learning_rate": 2.984103852596315e-05, + "loss": 0.21424699783325196, + "step": 120400 + }, + { + "epoch": 40.36854007873356, + "grad_norm": 1.0281628370285034, + "learning_rate": 2.982428810720268e-05, + "loss": 0.21567123413085937, + "step": 120500 + }, + { + "epoch": 40.402043722254795, + "grad_norm": 0.9829724431037903, + "learning_rate": 2.980753768844221e-05, + "loss": 0.21529359817504884, + "step": 120600 + }, + { + "epoch": 40.43554736577603, + "grad_norm": 0.8747444748878479, + "learning_rate": 2.9790787269681742e-05, + "loss": 0.21478731155395508, + "step": 120700 + }, + { + "epoch": 40.46905100929726, + "grad_norm": 0.8821930885314941, + "learning_rate": 2.977403685092127e-05, + "loss": 0.21482231140136718, + "step": 120800 + }, + { + "epoch": 40.502554652818496, + "grad_norm": 0.8955323696136475, + "learning_rate": 2.975728643216081e-05, + "loss": 0.2153952407836914, + "step": 120900 + }, + { + "epoch": 40.536058296339725, + "grad_norm": 0.8369837999343872, + "learning_rate": 2.974053601340034e-05, + "loss": 0.21576461791992188, + "step": 121000 + }, + { + "epoch": 40.56956193986096, + "grad_norm": 0.8737310767173767, + "learning_rate": 2.972378559463987e-05, + "loss": 0.21639930725097656, + "step": 121100 + }, + { + "epoch": 40.60306558338219, + "grad_norm": 0.9263436198234558, + "learning_rate": 2.97070351758794e-05, + "loss": 0.21683277130126954, + "step": 121200 + }, + { + "epoch": 40.636569226903426, + "grad_norm": 0.9024245142936707, + "learning_rate": 2.9690284757118932e-05, + "loss": 0.21628368377685547, + "step": 121300 + }, + { + "epoch": 40.67007287042466, + "grad_norm": 0.8429529070854187, + "learning_rate": 2.967353433835846e-05, + "loss": 0.2163913917541504, + "step": 121400 + }, + { + "epoch": 40.70357651394589, + "grad_norm": 1.2450178861618042, + "learning_rate": 2.9656783919597993e-05, + "loss": 0.2194381523132324, + "step": 121500 + }, + { + "epoch": 40.737080157467126, + "grad_norm": 0.7648131251335144, + "learning_rate": 2.964003350083752e-05, + "loss": 0.21698453903198242, + "step": 121600 + }, + { + "epoch": 40.770583800988355, + "grad_norm": 0.9009991884231567, + "learning_rate": 2.9623283082077054e-05, + "loss": 0.21700273513793944, + "step": 121700 + }, + { + "epoch": 40.80408744450959, + "grad_norm": 0.8008719086647034, + "learning_rate": 2.9606532663316583e-05, + "loss": 0.21888105392456056, + "step": 121800 + }, + { + "epoch": 40.83759108803083, + "grad_norm": 0.9055608510971069, + "learning_rate": 2.9589782244556115e-05, + "loss": 0.21676677703857422, + "step": 121900 + }, + { + "epoch": 40.871094731552056, + "grad_norm": 0.80983567237854, + "learning_rate": 2.9573199329983254e-05, + "loss": 0.21832197189331054, + "step": 122000 + }, + { + "epoch": 40.90459837507329, + "grad_norm": 0.892451286315918, + "learning_rate": 2.9556448911222783e-05, + "loss": 0.21815378189086915, + "step": 122100 + }, + { + "epoch": 40.93810201859452, + "grad_norm": 0.8478377461433411, + "learning_rate": 2.9539698492462315e-05, + "loss": 0.21775611877441406, + "step": 122200 + }, + { + "epoch": 40.971605662115756, + "grad_norm": 0.9962807297706604, + "learning_rate": 2.9522948073701844e-05, + "loss": 0.219617919921875, + "step": 122300 + }, + { + "epoch": 41.00502554652819, + "grad_norm": 0.947913646697998, + "learning_rate": 2.9506197654941376e-05, + "loss": 0.21659244537353517, + "step": 122400 + }, + { + "epoch": 41.03852919004942, + "grad_norm": 0.7525883316993713, + "learning_rate": 2.9489447236180905e-05, + "loss": 0.20789249420166014, + "step": 122500 + }, + { + "epoch": 41.07203283357065, + "grad_norm": 0.6433896422386169, + "learning_rate": 2.9472696817420437e-05, + "loss": 0.2080308723449707, + "step": 122600 + }, + { + "epoch": 41.10553647709188, + "grad_norm": 0.8577892780303955, + "learning_rate": 2.9455946398659966e-05, + "loss": 0.20854692459106444, + "step": 122700 + }, + { + "epoch": 41.13904012061312, + "grad_norm": 0.9137370586395264, + "learning_rate": 2.9439195979899498e-05, + "loss": 0.20944379806518554, + "step": 122800 + }, + { + "epoch": 41.172543764134346, + "grad_norm": 0.8469370007514954, + "learning_rate": 2.9422445561139027e-05, + "loss": 0.21084047317504884, + "step": 122900 + }, + { + "epoch": 41.20604740765558, + "grad_norm": 0.8777198791503906, + "learning_rate": 2.940569514237856e-05, + "loss": 0.209267520904541, + "step": 123000 + }, + { + "epoch": 41.23955105117682, + "grad_norm": 0.8626389503479004, + "learning_rate": 2.9388944723618088e-05, + "loss": 0.21044559478759767, + "step": 123100 + }, + { + "epoch": 41.27305469469805, + "grad_norm": 0.9588419198989868, + "learning_rate": 2.9372194304857624e-05, + "loss": 0.21222888946533203, + "step": 123200 + }, + { + "epoch": 41.30655833821928, + "grad_norm": 0.86114901304245, + "learning_rate": 2.9355443886097156e-05, + "loss": 0.21097087860107422, + "step": 123300 + }, + { + "epoch": 41.34006198174051, + "grad_norm": 0.887198269367218, + "learning_rate": 2.9338693467336688e-05, + "loss": 0.21297225952148438, + "step": 123400 + }, + { + "epoch": 41.37356562526175, + "grad_norm": 0.7785773873329163, + "learning_rate": 2.9321943048576217e-05, + "loss": 0.2132717514038086, + "step": 123500 + }, + { + "epoch": 41.40706926878298, + "grad_norm": 0.8815355896949768, + "learning_rate": 2.930519262981575e-05, + "loss": 0.2135430908203125, + "step": 123600 + }, + { + "epoch": 41.44057291230421, + "grad_norm": 0.7385589480400085, + "learning_rate": 2.9288442211055278e-05, + "loss": 0.21455587387084962, + "step": 123700 + }, + { + "epoch": 41.47407655582545, + "grad_norm": 0.9357995986938477, + "learning_rate": 2.927169179229481e-05, + "loss": 0.2131095314025879, + "step": 123800 + }, + { + "epoch": 41.50758019934668, + "grad_norm": 0.9078415632247925, + "learning_rate": 2.925494137353434e-05, + "loss": 0.21512672424316406, + "step": 123900 + }, + { + "epoch": 41.54108384286791, + "grad_norm": 0.8247988820075989, + "learning_rate": 2.923819095477387e-05, + "loss": 0.21399457931518553, + "step": 124000 + }, + { + "epoch": 41.57458748638914, + "grad_norm": 0.726129949092865, + "learning_rate": 2.9221608040201004e-05, + "loss": 0.21407983779907228, + "step": 124100 + }, + { + "epoch": 41.60809112991038, + "grad_norm": 0.8694594502449036, + "learning_rate": 2.920485762144054e-05, + "loss": 0.21551137924194336, + "step": 124200 + }, + { + "epoch": 41.64159477343161, + "grad_norm": 0.9320394992828369, + "learning_rate": 2.918810720268007e-05, + "loss": 0.21677978515625, + "step": 124300 + }, + { + "epoch": 41.67509841695284, + "grad_norm": 1.0589549541473389, + "learning_rate": 2.91713567839196e-05, + "loss": 0.21467880249023438, + "step": 124400 + }, + { + "epoch": 41.70860206047408, + "grad_norm": 0.8709360361099243, + "learning_rate": 2.9154606365159133e-05, + "loss": 0.21607656478881837, + "step": 124500 + }, + { + "epoch": 41.74210570399531, + "grad_norm": 0.8040139675140381, + "learning_rate": 2.913785594639866e-05, + "loss": 0.21505617141723632, + "step": 124600 + }, + { + "epoch": 41.77560934751654, + "grad_norm": 0.899761438369751, + "learning_rate": 2.9121105527638194e-05, + "loss": 0.2151774787902832, + "step": 124700 + }, + { + "epoch": 41.80911299103778, + "grad_norm": 0.8534619808197021, + "learning_rate": 2.9104355108877722e-05, + "loss": 0.21662195205688475, + "step": 124800 + }, + { + "epoch": 41.84261663455901, + "grad_norm": 0.96486896276474, + "learning_rate": 2.9087604690117255e-05, + "loss": 0.21604257583618164, + "step": 124900 + }, + { + "epoch": 41.87612027808024, + "grad_norm": 0.8162650465965271, + "learning_rate": 2.9070854271356783e-05, + "loss": 0.2170560836791992, + "step": 125000 + }, + { + "epoch": 41.90962392160147, + "grad_norm": 0.889887809753418, + "learning_rate": 2.9054103852596316e-05, + "loss": 0.21925149917602538, + "step": 125100 + }, + { + "epoch": 41.94312756512271, + "grad_norm": 0.9023459553718567, + "learning_rate": 2.9037353433835844e-05, + "loss": 0.21658233642578126, + "step": 125200 + }, + { + "epoch": 41.97663120864394, + "grad_norm": 0.9475107192993164, + "learning_rate": 2.9020603015075377e-05, + "loss": 0.2174862480163574, + "step": 125300 + }, + { + "epoch": 42.01005109305637, + "grad_norm": 0.8001925945281982, + "learning_rate": 2.9003852596314905e-05, + "loss": 0.21471311569213866, + "step": 125400 + }, + { + "epoch": 42.043554736577605, + "grad_norm": 0.7804350852966309, + "learning_rate": 2.898710217755444e-05, + "loss": 0.2056850814819336, + "step": 125500 + }, + { + "epoch": 42.07705838009883, + "grad_norm": 0.9709755182266235, + "learning_rate": 2.8970351758793973e-05, + "loss": 0.20687313079833985, + "step": 125600 + }, + { + "epoch": 42.11056202362007, + "grad_norm": 0.8425003290176392, + "learning_rate": 2.8953601340033502e-05, + "loss": 0.20829198837280274, + "step": 125700 + }, + { + "epoch": 42.1440656671413, + "grad_norm": 0.7324151396751404, + "learning_rate": 2.8936850921273034e-05, + "loss": 0.20799571990966798, + "step": 125800 + }, + { + "epoch": 42.177569310662534, + "grad_norm": 0.7971581220626831, + "learning_rate": 2.8920100502512567e-05, + "loss": 0.21026283264160156, + "step": 125900 + }, + { + "epoch": 42.21107295418377, + "grad_norm": 0.7958289384841919, + "learning_rate": 2.8903350083752095e-05, + "loss": 0.20917728424072266, + "step": 126000 + }, + { + "epoch": 42.244576597705, + "grad_norm": 0.8632842302322388, + "learning_rate": 2.888676716917923e-05, + "loss": 0.20981687545776367, + "step": 126100 + }, + { + "epoch": 42.278080241226235, + "grad_norm": 0.8120240569114685, + "learning_rate": 2.887001675041876e-05, + "loss": 0.21040897369384765, + "step": 126200 + }, + { + "epoch": 42.31158388474746, + "grad_norm": 0.9877341389656067, + "learning_rate": 2.8853266331658292e-05, + "loss": 0.21044788360595704, + "step": 126300 + }, + { + "epoch": 42.3450875282687, + "grad_norm": 0.803947925567627, + "learning_rate": 2.883651591289782e-05, + "loss": 0.21133209228515626, + "step": 126400 + }, + { + "epoch": 42.378591171789935, + "grad_norm": 0.8692134022712708, + "learning_rate": 2.8819765494137357e-05, + "loss": 0.21098001480102538, + "step": 126500 + }, + { + "epoch": 42.412094815311164, + "grad_norm": 0.703528642654419, + "learning_rate": 2.880301507537689e-05, + "loss": 0.21152076721191407, + "step": 126600 + }, + { + "epoch": 42.4455984588324, + "grad_norm": 0.9700392484664917, + "learning_rate": 2.8786264656616418e-05, + "loss": 0.21170536041259766, + "step": 126700 + }, + { + "epoch": 42.47910210235363, + "grad_norm": 0.7205595970153809, + "learning_rate": 2.876951423785595e-05, + "loss": 0.2123921012878418, + "step": 126800 + }, + { + "epoch": 42.512605745874865, + "grad_norm": 0.8186672925949097, + "learning_rate": 2.875276381909548e-05, + "loss": 0.2122740364074707, + "step": 126900 + }, + { + "epoch": 42.54610938939609, + "grad_norm": 0.9268088340759277, + "learning_rate": 2.873601340033501e-05, + "loss": 0.21358152389526366, + "step": 127000 + }, + { + "epoch": 42.57961303291733, + "grad_norm": 0.762809157371521, + "learning_rate": 2.871926298157454e-05, + "loss": 0.21314903259277343, + "step": 127100 + }, + { + "epoch": 42.613116676438565, + "grad_norm": 0.8699193596839905, + "learning_rate": 2.8702512562814072e-05, + "loss": 0.2129987335205078, + "step": 127200 + }, + { + "epoch": 42.646620319959794, + "grad_norm": 0.698263943195343, + "learning_rate": 2.86857621440536e-05, + "loss": 0.21600809097290039, + "step": 127300 + }, + { + "epoch": 42.68012396348103, + "grad_norm": 0.7782033681869507, + "learning_rate": 2.8669011725293133e-05, + "loss": 0.21448253631591796, + "step": 127400 + }, + { + "epoch": 42.71362760700226, + "grad_norm": 0.8113609552383423, + "learning_rate": 2.8652261306532662e-05, + "loss": 0.2134496307373047, + "step": 127500 + }, + { + "epoch": 42.747131250523495, + "grad_norm": 0.7400202751159668, + "learning_rate": 2.8635510887772194e-05, + "loss": 0.21415563583374023, + "step": 127600 + }, + { + "epoch": 42.78063489404473, + "grad_norm": 1.0038073062896729, + "learning_rate": 2.8618760469011723e-05, + "loss": 0.2144919776916504, + "step": 127700 + }, + { + "epoch": 42.81413853756596, + "grad_norm": 0.7947350144386292, + "learning_rate": 2.860201005025126e-05, + "loss": 0.21546197891235352, + "step": 127800 + }, + { + "epoch": 42.847642181087195, + "grad_norm": 0.7404258847236633, + "learning_rate": 2.858525963149079e-05, + "loss": 0.2151948356628418, + "step": 127900 + }, + { + "epoch": 42.881145824608424, + "grad_norm": 0.8000117540359497, + "learning_rate": 2.856850921273032e-05, + "loss": 0.2174908447265625, + "step": 128000 + }, + { + "epoch": 42.91464946812966, + "grad_norm": 0.8331735730171204, + "learning_rate": 2.8551758793969852e-05, + "loss": 0.2154141616821289, + "step": 128100 + }, + { + "epoch": 42.94815311165089, + "grad_norm": 0.8255071640014648, + "learning_rate": 2.8535175879396984e-05, + "loss": 0.21642459869384767, + "step": 128200 + }, + { + "epoch": 42.981656755172125, + "grad_norm": 0.8828434944152832, + "learning_rate": 2.8518425460636516e-05, + "loss": 0.21653507232666017, + "step": 128300 + }, + { + "epoch": 43.01507663958456, + "grad_norm": 0.8157568573951721, + "learning_rate": 2.8501675041876045e-05, + "loss": 0.21150121688842774, + "step": 128400 + }, + { + "epoch": 43.048580283105785, + "grad_norm": 0.7143152356147766, + "learning_rate": 2.8484924623115578e-05, + "loss": 0.20697792053222655, + "step": 128500 + }, + { + "epoch": 43.08208392662702, + "grad_norm": 0.9034318327903748, + "learning_rate": 2.846817420435511e-05, + "loss": 0.20594911575317382, + "step": 128600 + }, + { + "epoch": 43.11558757014826, + "grad_norm": 0.7974486947059631, + "learning_rate": 2.845142378559464e-05, + "loss": 0.20707765579223633, + "step": 128700 + }, + { + "epoch": 43.149091213669486, + "grad_norm": 0.7226033210754395, + "learning_rate": 2.8434673366834174e-05, + "loss": 0.20583932876586913, + "step": 128800 + }, + { + "epoch": 43.18259485719072, + "grad_norm": 0.8551874160766602, + "learning_rate": 2.8417922948073706e-05, + "loss": 0.2078396797180176, + "step": 128900 + }, + { + "epoch": 43.21609850071195, + "grad_norm": 0.7227718234062195, + "learning_rate": 2.8401172529313235e-05, + "loss": 0.20798839569091798, + "step": 129000 + }, + { + "epoch": 43.24960214423319, + "grad_norm": 0.9496952891349792, + "learning_rate": 2.8384422110552767e-05, + "loss": 0.2099104118347168, + "step": 129100 + }, + { + "epoch": 43.283105787754415, + "grad_norm": 0.9909376502037048, + "learning_rate": 2.8367671691792296e-05, + "loss": 0.20969415664672852, + "step": 129200 + }, + { + "epoch": 43.31660943127565, + "grad_norm": 0.9239180088043213, + "learning_rate": 2.835092127303183e-05, + "loss": 0.20861217498779297, + "step": 129300 + }, + { + "epoch": 43.35011307479689, + "grad_norm": 0.8692393898963928, + "learning_rate": 2.8334170854271357e-05, + "loss": 0.2091372299194336, + "step": 129400 + }, + { + "epoch": 43.383616718318116, + "grad_norm": 0.693246603012085, + "learning_rate": 2.831742043551089e-05, + "loss": 0.20966863632202148, + "step": 129500 + }, + { + "epoch": 43.41712036183935, + "grad_norm": 0.8332297205924988, + "learning_rate": 2.8300670016750418e-05, + "loss": 0.21026342391967773, + "step": 129600 + }, + { + "epoch": 43.45062400536058, + "grad_norm": 0.8729221820831299, + "learning_rate": 2.828391959798995e-05, + "loss": 0.21070770263671876, + "step": 129700 + }, + { + "epoch": 43.48412764888182, + "grad_norm": 0.7649937868118286, + "learning_rate": 2.826716917922948e-05, + "loss": 0.21120260238647462, + "step": 129800 + }, + { + "epoch": 43.517631292403046, + "grad_norm": 0.8937798738479614, + "learning_rate": 2.825041876046901e-05, + "loss": 0.21302244186401367, + "step": 129900 + }, + { + "epoch": 43.55113493592428, + "grad_norm": 1.0248814821243286, + "learning_rate": 2.8233668341708547e-05, + "loss": 0.21207603454589843, + "step": 130000 + }, + { + "epoch": 43.58463857944552, + "grad_norm": 0.9701077938079834, + "learning_rate": 2.8216917922948076e-05, + "loss": 0.2112472915649414, + "step": 130100 + }, + { + "epoch": 43.618142222966746, + "grad_norm": 0.8634024858474731, + "learning_rate": 2.8200167504187608e-05, + "loss": 0.21355249404907226, + "step": 130200 + }, + { + "epoch": 43.65164586648798, + "grad_norm": 0.9003106951713562, + "learning_rate": 2.818358458961474e-05, + "loss": 0.2142485809326172, + "step": 130300 + }, + { + "epoch": 43.68514951000921, + "grad_norm": 0.7895374298095703, + "learning_rate": 2.8166834170854273e-05, + "loss": 0.2131346321105957, + "step": 130400 + }, + { + "epoch": 43.71865315353045, + "grad_norm": 1.0067280530929565, + "learning_rate": 2.81500837520938e-05, + "loss": 0.21282941818237305, + "step": 130500 + }, + { + "epoch": 43.75215679705168, + "grad_norm": 0.7602081894874573, + "learning_rate": 2.8133333333333334e-05, + "loss": 0.2138546371459961, + "step": 130600 + }, + { + "epoch": 43.78566044057291, + "grad_norm": 0.7720736265182495, + "learning_rate": 2.8116582914572863e-05, + "loss": 0.2136884307861328, + "step": 130700 + }, + { + "epoch": 43.81916408409415, + "grad_norm": 0.7715796232223511, + "learning_rate": 2.8099832495812395e-05, + "loss": 0.21329423904418945, + "step": 130800 + }, + { + "epoch": 43.852667727615376, + "grad_norm": 0.8566184043884277, + "learning_rate": 2.8083082077051924e-05, + "loss": 0.21406152725219726, + "step": 130900 + }, + { + "epoch": 43.88617137113661, + "grad_norm": 0.8490840792655945, + "learning_rate": 2.8066331658291456e-05, + "loss": 0.21463991165161134, + "step": 131000 + }, + { + "epoch": 43.91967501465784, + "grad_norm": 0.9666714072227478, + "learning_rate": 2.804958123953099e-05, + "loss": 0.21495559692382812, + "step": 131100 + }, + { + "epoch": 43.95317865817908, + "grad_norm": 1.0371804237365723, + "learning_rate": 2.8032830820770524e-05, + "loss": 0.21566991806030272, + "step": 131200 + }, + { + "epoch": 43.98668230170031, + "grad_norm": 0.910309910774231, + "learning_rate": 2.8016080402010053e-05, + "loss": 0.215529727935791, + "step": 131300 + }, + { + "epoch": 44.02010218611274, + "grad_norm": 0.7464276552200317, + "learning_rate": 2.7999329983249585e-05, + "loss": 0.20866870880126953, + "step": 131400 + }, + { + "epoch": 44.05360582963397, + "grad_norm": 0.7517808079719543, + "learning_rate": 2.7982579564489114e-05, + "loss": 0.20390798568725585, + "step": 131500 + }, + { + "epoch": 44.08710947315521, + "grad_norm": 0.6557915210723877, + "learning_rate": 2.7965829145728646e-05, + "loss": 0.20384593963623046, + "step": 131600 + }, + { + "epoch": 44.12061311667644, + "grad_norm": 0.855191171169281, + "learning_rate": 2.7949078726968175e-05, + "loss": 0.2066969871520996, + "step": 131700 + }, + { + "epoch": 44.154116760197674, + "grad_norm": 0.8590629696846008, + "learning_rate": 2.7932328308207707e-05, + "loss": 0.2062934684753418, + "step": 131800 + }, + { + "epoch": 44.1876204037189, + "grad_norm": 0.9050695896148682, + "learning_rate": 2.7915577889447236e-05, + "loss": 0.20599493026733398, + "step": 131900 + }, + { + "epoch": 44.22112404724014, + "grad_norm": 0.8817638754844666, + "learning_rate": 2.7898827470686768e-05, + "loss": 0.2078232765197754, + "step": 132000 + }, + { + "epoch": 44.25462769076137, + "grad_norm": 0.8479394316673279, + "learning_rate": 2.7882077051926297e-05, + "loss": 0.20759906768798828, + "step": 132100 + }, + { + "epoch": 44.2881313342826, + "grad_norm": 0.8977039456367493, + "learning_rate": 2.786532663316583e-05, + "loss": 0.20864250183105468, + "step": 132200 + }, + { + "epoch": 44.32163497780384, + "grad_norm": 0.7003665566444397, + "learning_rate": 2.7848576214405365e-05, + "loss": 0.20907209396362306, + "step": 132300 + }, + { + "epoch": 44.35513862132507, + "grad_norm": 0.8874910473823547, + "learning_rate": 2.7831825795644893e-05, + "loss": 0.20834226608276368, + "step": 132400 + }, + { + "epoch": 44.388642264846304, + "grad_norm": 0.8135631680488586, + "learning_rate": 2.781524288107203e-05, + "loss": 0.2098270034790039, + "step": 132500 + }, + { + "epoch": 44.42214590836753, + "grad_norm": 1.0045340061187744, + "learning_rate": 2.7798492462311558e-05, + "loss": 0.2112841033935547, + "step": 132600 + }, + { + "epoch": 44.45564955188877, + "grad_norm": 0.8854024410247803, + "learning_rate": 2.778174204355109e-05, + "loss": 0.2096893310546875, + "step": 132700 + }, + { + "epoch": 44.48915319541, + "grad_norm": 0.8551903963088989, + "learning_rate": 2.776499162479062e-05, + "loss": 0.21038183212280273, + "step": 132800 + }, + { + "epoch": 44.52265683893123, + "grad_norm": 0.848574161529541, + "learning_rate": 2.774824120603015e-05, + "loss": 0.21035202026367186, + "step": 132900 + }, + { + "epoch": 44.55616048245247, + "grad_norm": 0.8698804378509521, + "learning_rate": 2.773149078726968e-05, + "loss": 0.21176429748535155, + "step": 133000 + }, + { + "epoch": 44.5896641259737, + "grad_norm": 0.8525173664093018, + "learning_rate": 2.7714740368509212e-05, + "loss": 0.21025493621826172, + "step": 133100 + }, + { + "epoch": 44.623167769494934, + "grad_norm": 1.0027357339859009, + "learning_rate": 2.769798994974874e-05, + "loss": 0.21228431701660155, + "step": 133200 + }, + { + "epoch": 44.65667141301616, + "grad_norm": 0.9768441915512085, + "learning_rate": 2.7681239530988273e-05, + "loss": 0.21132736206054686, + "step": 133300 + }, + { + "epoch": 44.6901750565374, + "grad_norm": 0.9287051558494568, + "learning_rate": 2.766448911222781e-05, + "loss": 0.211924991607666, + "step": 133400 + }, + { + "epoch": 44.723678700058635, + "grad_norm": 1.0014779567718506, + "learning_rate": 2.764773869346734e-05, + "loss": 0.21157003402709962, + "step": 133500 + }, + { + "epoch": 44.75718234357986, + "grad_norm": 0.8901475071907043, + "learning_rate": 2.763098827470687e-05, + "loss": 0.21130624771118164, + "step": 133600 + }, + { + "epoch": 44.7906859871011, + "grad_norm": 0.7723361253738403, + "learning_rate": 2.7614237855946402e-05, + "loss": 0.21280551910400392, + "step": 133700 + }, + { + "epoch": 44.82418963062233, + "grad_norm": 0.8794797658920288, + "learning_rate": 2.759748743718593e-05, + "loss": 0.21236923217773437, + "step": 133800 + }, + { + "epoch": 44.857693274143564, + "grad_norm": 0.8374422192573547, + "learning_rate": 2.7580737018425463e-05, + "loss": 0.21364736557006836, + "step": 133900 + }, + { + "epoch": 44.89119691766479, + "grad_norm": 0.8275327086448669, + "learning_rate": 2.7563986599664992e-05, + "loss": 0.21200048446655273, + "step": 134000 + }, + { + "epoch": 44.92470056118603, + "grad_norm": 0.9097633957862854, + "learning_rate": 2.7547236180904524e-05, + "loss": 0.21340879440307617, + "step": 134100 + }, + { + "epoch": 44.958204204707265, + "grad_norm": 0.9494147300720215, + "learning_rate": 2.7530485762144053e-05, + "loss": 0.2142266273498535, + "step": 134200 + }, + { + "epoch": 44.991707848228494, + "grad_norm": 0.814795970916748, + "learning_rate": 2.7513735343383585e-05, + "loss": 0.21452692031860351, + "step": 134300 + }, + { + "epoch": 45.025127732640925, + "grad_norm": 0.6908448934555054, + "learning_rate": 2.7496984924623114e-05, + "loss": 0.20500320434570313, + "step": 134400 + }, + { + "epoch": 45.05863137616216, + "grad_norm": 0.6426514387130737, + "learning_rate": 2.7480234505862646e-05, + "loss": 0.2033299446105957, + "step": 134500 + }, + { + "epoch": 45.09213501968339, + "grad_norm": 0.8847736716270447, + "learning_rate": 2.7463484087102182e-05, + "loss": 0.20543498992919923, + "step": 134600 + }, + { + "epoch": 45.125638663204626, + "grad_norm": 0.713890552520752, + "learning_rate": 2.744673366834171e-05, + "loss": 0.20500320434570313, + "step": 134700 + }, + { + "epoch": 45.159142306725855, + "grad_norm": 0.7541131973266602, + "learning_rate": 2.7430150753768847e-05, + "loss": 0.2060226631164551, + "step": 134800 + }, + { + "epoch": 45.19264595024709, + "grad_norm": 0.9209812879562378, + "learning_rate": 2.7413400335008375e-05, + "loss": 0.20517513275146484, + "step": 134900 + }, + { + "epoch": 45.22614959376832, + "grad_norm": 0.781428873538971, + "learning_rate": 2.7396649916247908e-05, + "loss": 0.20627330780029296, + "step": 135000 + }, + { + "epoch": 45.259653237289555, + "grad_norm": 0.8748304843902588, + "learning_rate": 2.7379899497487437e-05, + "loss": 0.20791227340698243, + "step": 135100 + }, + { + "epoch": 45.29315688081079, + "grad_norm": 0.7505505681037903, + "learning_rate": 2.736314907872697e-05, + "loss": 0.2061052703857422, + "step": 135200 + }, + { + "epoch": 45.32666052433202, + "grad_norm": 0.8114047646522522, + "learning_rate": 2.7346398659966498e-05, + "loss": 0.2083379364013672, + "step": 135300 + }, + { + "epoch": 45.360164167853256, + "grad_norm": 0.8816334009170532, + "learning_rate": 2.732964824120603e-05, + "loss": 0.2089382553100586, + "step": 135400 + }, + { + "epoch": 45.393667811374485, + "grad_norm": 0.8554006814956665, + "learning_rate": 2.731289782244556e-05, + "loss": 0.20821535110473632, + "step": 135500 + }, + { + "epoch": 45.42717145489572, + "grad_norm": 0.8525182008743286, + "learning_rate": 2.7296147403685098e-05, + "loss": 0.20828678131103515, + "step": 135600 + }, + { + "epoch": 45.46067509841695, + "grad_norm": 0.9644753932952881, + "learning_rate": 2.7279396984924626e-05, + "loss": 0.20957386016845703, + "step": 135700 + }, + { + "epoch": 45.494178741938185, + "grad_norm": 0.857822835445404, + "learning_rate": 2.726264656616416e-05, + "loss": 0.21084308624267578, + "step": 135800 + }, + { + "epoch": 45.52768238545942, + "grad_norm": 0.6781661510467529, + "learning_rate": 2.7245896147403687e-05, + "loss": 0.21013999938964845, + "step": 135900 + }, + { + "epoch": 45.56118602898065, + "grad_norm": 0.87371426820755, + "learning_rate": 2.722914572864322e-05, + "loss": 0.2115696907043457, + "step": 136000 + }, + { + "epoch": 45.594689672501886, + "grad_norm": 1.0570032596588135, + "learning_rate": 2.721239530988275e-05, + "loss": 0.20983007431030273, + "step": 136100 + }, + { + "epoch": 45.628193316023115, + "grad_norm": 0.8911213278770447, + "learning_rate": 2.719564489112228e-05, + "loss": 0.2098233413696289, + "step": 136200 + }, + { + "epoch": 45.66169695954435, + "grad_norm": 0.7911779284477234, + "learning_rate": 2.717889447236181e-05, + "loss": 0.2099312973022461, + "step": 136300 + }, + { + "epoch": 45.69520060306559, + "grad_norm": 0.8585467338562012, + "learning_rate": 2.7162144053601342e-05, + "loss": 0.21018625259399415, + "step": 136400 + }, + { + "epoch": 45.728704246586815, + "grad_norm": 0.8224589824676514, + "learning_rate": 2.714539363484087e-05, + "loss": 0.211662654876709, + "step": 136500 + }, + { + "epoch": 45.76220789010805, + "grad_norm": 0.8850246667861938, + "learning_rate": 2.7128643216080403e-05, + "loss": 0.21219783782958984, + "step": 136600 + }, + { + "epoch": 45.79571153362928, + "grad_norm": 0.9044328927993774, + "learning_rate": 2.711189279731993e-05, + "loss": 0.21055538177490235, + "step": 136700 + }, + { + "epoch": 45.829215177150516, + "grad_norm": 0.8955138325691223, + "learning_rate": 2.7095142378559464e-05, + "loss": 0.21124111175537108, + "step": 136800 + }, + { + "epoch": 45.862718820671745, + "grad_norm": 0.9041482210159302, + "learning_rate": 2.7078559463986603e-05, + "loss": 0.21166906356811524, + "step": 136900 + }, + { + "epoch": 45.89622246419298, + "grad_norm": 0.8111388087272644, + "learning_rate": 2.7061809045226132e-05, + "loss": 0.21167055130004883, + "step": 137000 + }, + { + "epoch": 45.92972610771422, + "grad_norm": 0.9616506695747375, + "learning_rate": 2.7045058626465664e-05, + "loss": 0.21228885650634766, + "step": 137100 + }, + { + "epoch": 45.963229751235446, + "grad_norm": 0.8436776399612427, + "learning_rate": 2.7028308207705193e-05, + "loss": 0.2126219940185547, + "step": 137200 + }, + { + "epoch": 45.99673339475668, + "grad_norm": 0.71140456199646, + "learning_rate": 2.7011557788944725e-05, + "loss": 0.21354110717773436, + "step": 137300 + }, + { + "epoch": 46.03015327916911, + "grad_norm": 0.7948451042175293, + "learning_rate": 2.6994807370184254e-05, + "loss": 0.2044697570800781, + "step": 137400 + }, + { + "epoch": 46.06365692269034, + "grad_norm": 0.8057336807250977, + "learning_rate": 2.6978056951423786e-05, + "loss": 0.20385299682617186, + "step": 137500 + }, + { + "epoch": 46.09716056621158, + "grad_norm": 0.7120649218559265, + "learning_rate": 2.6961306532663315e-05, + "loss": 0.20400421142578126, + "step": 137600 + }, + { + "epoch": 46.13066420973281, + "grad_norm": 0.9549148678779602, + "learning_rate": 2.6944556113902847e-05, + "loss": 0.2034744453430176, + "step": 137700 + }, + { + "epoch": 46.16416785325404, + "grad_norm": 0.8098897337913513, + "learning_rate": 2.6927805695142376e-05, + "loss": 0.203569393157959, + "step": 137800 + }, + { + "epoch": 46.19767149677527, + "grad_norm": 0.7123087644577026, + "learning_rate": 2.6911055276381915e-05, + "loss": 0.20544761657714844, + "step": 137900 + }, + { + "epoch": 46.23117514029651, + "grad_norm": 0.8449687361717224, + "learning_rate": 2.6894304857621444e-05, + "loss": 0.20498695373535156, + "step": 138000 + }, + { + "epoch": 46.26467878381774, + "grad_norm": 0.7853437066078186, + "learning_rate": 2.6877554438860976e-05, + "loss": 0.2059033203125, + "step": 138100 + }, + { + "epoch": 46.29818242733897, + "grad_norm": 0.7418807148933411, + "learning_rate": 2.6860804020100505e-05, + "loss": 0.20638565063476563, + "step": 138200 + }, + { + "epoch": 46.33168607086021, + "grad_norm": 0.9248971343040466, + "learning_rate": 2.6844053601340037e-05, + "loss": 0.2076273727416992, + "step": 138300 + }, + { + "epoch": 46.36518971438144, + "grad_norm": 0.8263251185417175, + "learning_rate": 2.6827303182579566e-05, + "loss": 0.20645214080810548, + "step": 138400 + }, + { + "epoch": 46.39869335790267, + "grad_norm": 0.9032105207443237, + "learning_rate": 2.6810552763819098e-05, + "loss": 0.20705162048339842, + "step": 138500 + }, + { + "epoch": 46.4321970014239, + "grad_norm": 0.7566851377487183, + "learning_rate": 2.6793802345058627e-05, + "loss": 0.20758819580078125, + "step": 138600 + }, + { + "epoch": 46.46570064494514, + "grad_norm": 0.7938912510871887, + "learning_rate": 2.677705192629816e-05, + "loss": 0.20770130157470704, + "step": 138700 + }, + { + "epoch": 46.49920428846637, + "grad_norm": 0.8320357799530029, + "learning_rate": 2.6760301507537688e-05, + "loss": 0.20806819915771485, + "step": 138800 + }, + { + "epoch": 46.5327079319876, + "grad_norm": 0.9987215995788574, + "learning_rate": 2.674355108877722e-05, + "loss": 0.20871660232543945, + "step": 138900 + }, + { + "epoch": 46.56621157550884, + "grad_norm": 0.8866457939147949, + "learning_rate": 2.672696817420436e-05, + "loss": 0.20802412033081055, + "step": 139000 + }, + { + "epoch": 46.59971521903007, + "grad_norm": 0.7644064426422119, + "learning_rate": 2.6710217755443888e-05, + "loss": 0.2100166893005371, + "step": 139100 + }, + { + "epoch": 46.6332188625513, + "grad_norm": 0.832198977470398, + "learning_rate": 2.669346733668342e-05, + "loss": 0.2086174964904785, + "step": 139200 + }, + { + "epoch": 46.66672250607254, + "grad_norm": 0.7455396056175232, + "learning_rate": 2.667671691792295e-05, + "loss": 0.21050701141357422, + "step": 139300 + }, + { + "epoch": 46.70022614959377, + "grad_norm": 0.7941868901252747, + "learning_rate": 2.665996649916248e-05, + "loss": 0.21018735885620118, + "step": 139400 + }, + { + "epoch": 46.733729793115, + "grad_norm": 0.745232105255127, + "learning_rate": 2.664321608040201e-05, + "loss": 0.2106583023071289, + "step": 139500 + }, + { + "epoch": 46.76723343663623, + "grad_norm": 0.8534348011016846, + "learning_rate": 2.6626465661641543e-05, + "loss": 0.21023065567016602, + "step": 139600 + }, + { + "epoch": 46.80073708015747, + "grad_norm": 0.8639134764671326, + "learning_rate": 2.660971524288107e-05, + "loss": 0.20966962814331055, + "step": 139700 + }, + { + "epoch": 46.8342407236787, + "grad_norm": 0.9052923917770386, + "learning_rate": 2.6592964824120604e-05, + "loss": 0.2114642906188965, + "step": 139800 + }, + { + "epoch": 46.86774436719993, + "grad_norm": 0.8590245246887207, + "learning_rate": 2.6576214405360132e-05, + "loss": 0.2110831069946289, + "step": 139900 + }, + { + "epoch": 46.90124801072117, + "grad_norm": 0.8708141446113586, + "learning_rate": 2.6559463986599665e-05, + "loss": 0.21110519409179687, + "step": 140000 + }, + { + "epoch": 46.9347516542424, + "grad_norm": 0.9694708585739136, + "learning_rate": 2.6542713567839193e-05, + "loss": 0.21246437072753907, + "step": 140100 + }, + { + "epoch": 46.96825529776363, + "grad_norm": 0.8531249761581421, + "learning_rate": 2.6525963149078732e-05, + "loss": 0.2127097511291504, + "step": 140200 + }, + { + "epoch": 47.001675182176065, + "grad_norm": 0.7149065136909485, + "learning_rate": 2.650921273031826e-05, + "loss": 0.21077686309814453, + "step": 140300 + }, + { + "epoch": 47.035178825697294, + "grad_norm": 0.906190812587738, + "learning_rate": 2.6492462311557793e-05, + "loss": 0.20198272705078124, + "step": 140400 + }, + { + "epoch": 47.06868246921853, + "grad_norm": 0.8794195652008057, + "learning_rate": 2.6475711892797322e-05, + "loss": 0.20144824981689452, + "step": 140500 + }, + { + "epoch": 47.10218611273976, + "grad_norm": 0.7231687307357788, + "learning_rate": 2.6458961474036854e-05, + "loss": 0.20203954696655274, + "step": 140600 + }, + { + "epoch": 47.135689756260994, + "grad_norm": 0.8035680651664734, + "learning_rate": 2.6442211055276383e-05, + "loss": 0.20453298568725586, + "step": 140700 + }, + { + "epoch": 47.16919339978222, + "grad_norm": 0.7751315832138062, + "learning_rate": 2.6425460636515916e-05, + "loss": 0.20380630493164062, + "step": 140800 + }, + { + "epoch": 47.20269704330346, + "grad_norm": 0.8336166739463806, + "learning_rate": 2.6408710217755444e-05, + "loss": 0.2044701385498047, + "step": 140900 + }, + { + "epoch": 47.236200686824695, + "grad_norm": 0.92495197057724, + "learning_rate": 2.6391959798994977e-05, + "loss": 0.20544666290283203, + "step": 141000 + }, + { + "epoch": 47.269704330345924, + "grad_norm": 0.8691511750221252, + "learning_rate": 2.637537688442211e-05, + "loss": 0.20497919082641602, + "step": 141100 + }, + { + "epoch": 47.30320797386716, + "grad_norm": 0.7744715213775635, + "learning_rate": 2.6358626465661645e-05, + "loss": 0.20545125961303712, + "step": 141200 + }, + { + "epoch": 47.33671161738839, + "grad_norm": 0.8087801337242126, + "learning_rate": 2.6341876046901177e-05, + "loss": 0.20726716995239258, + "step": 141300 + }, + { + "epoch": 47.370215260909625, + "grad_norm": 0.6278528571128845, + "learning_rate": 2.6325125628140706e-05, + "loss": 0.20632375717163087, + "step": 141400 + }, + { + "epoch": 47.40371890443085, + "grad_norm": 0.7197872996330261, + "learning_rate": 2.6308375209380238e-05, + "loss": 0.20561176300048828, + "step": 141500 + }, + { + "epoch": 47.43722254795209, + "grad_norm": 0.8030456900596619, + "learning_rate": 2.6291624790619767e-05, + "loss": 0.20726533889770507, + "step": 141600 + }, + { + "epoch": 47.470726191473325, + "grad_norm": 0.8122235536575317, + "learning_rate": 2.62748743718593e-05, + "loss": 0.20543954849243165, + "step": 141700 + }, + { + "epoch": 47.504229834994554, + "grad_norm": 0.8430666923522949, + "learning_rate": 2.6258123953098828e-05, + "loss": 0.20687795639038087, + "step": 141800 + }, + { + "epoch": 47.53773347851579, + "grad_norm": 0.7796192765235901, + "learning_rate": 2.624137353433836e-05, + "loss": 0.20932218551635742, + "step": 141900 + }, + { + "epoch": 47.57123712203702, + "grad_norm": 0.7568249702453613, + "learning_rate": 2.622462311557789e-05, + "loss": 0.20753023147583008, + "step": 142000 + }, + { + "epoch": 47.604740765558255, + "grad_norm": 0.7766709923744202, + "learning_rate": 2.620787269681742e-05, + "loss": 0.20817523956298828, + "step": 142100 + }, + { + "epoch": 47.63824440907949, + "grad_norm": 0.8407247066497803, + "learning_rate": 2.619112227805695e-05, + "loss": 0.20790090560913085, + "step": 142200 + }, + { + "epoch": 47.67174805260072, + "grad_norm": 1.0693186521530151, + "learning_rate": 2.6174371859296482e-05, + "loss": 0.20879848480224608, + "step": 142300 + }, + { + "epoch": 47.705251696121955, + "grad_norm": 0.9089698791503906, + "learning_rate": 2.615762144053601e-05, + "loss": 0.20962982177734374, + "step": 142400 + }, + { + "epoch": 47.738755339643184, + "grad_norm": 0.9101313948631287, + "learning_rate": 2.614087102177555e-05, + "loss": 0.20881969451904298, + "step": 142500 + }, + { + "epoch": 47.77225898316442, + "grad_norm": 0.9239957332611084, + "learning_rate": 2.612412060301508e-05, + "loss": 0.21106016159057617, + "step": 142600 + }, + { + "epoch": 47.80576262668565, + "grad_norm": 0.7095087170600891, + "learning_rate": 2.610737018425461e-05, + "loss": 0.21043779373168944, + "step": 142700 + }, + { + "epoch": 47.839266270206885, + "grad_norm": 0.8761176466941833, + "learning_rate": 2.609061976549414e-05, + "loss": 0.20853693008422852, + "step": 142800 + }, + { + "epoch": 47.87276991372812, + "grad_norm": 0.9387518763542175, + "learning_rate": 2.6073869346733672e-05, + "loss": 0.21088685989379882, + "step": 142900 + }, + { + "epoch": 47.90627355724935, + "grad_norm": 0.8915501832962036, + "learning_rate": 2.60571189279732e-05, + "loss": 0.21008544921875, + "step": 143000 + }, + { + "epoch": 47.939777200770585, + "grad_norm": 0.9699543714523315, + "learning_rate": 2.6040368509212733e-05, + "loss": 0.21000476837158202, + "step": 143100 + }, + { + "epoch": 47.973280844291814, + "grad_norm": 0.7812904119491577, + "learning_rate": 2.6023785594639865e-05, + "loss": 0.21052337646484376, + "step": 143200 + }, + { + "epoch": 48.006700728704246, + "grad_norm": 0.822690486907959, + "learning_rate": 2.6007035175879398e-05, + "loss": 0.20833581924438477, + "step": 143300 + }, + { + "epoch": 48.04020437222548, + "grad_norm": 0.6735044121742249, + "learning_rate": 2.5990284757118926e-05, + "loss": 0.20092033386230468, + "step": 143400 + }, + { + "epoch": 48.07370801574671, + "grad_norm": 0.7303795218467712, + "learning_rate": 2.5973534338358462e-05, + "loss": 0.2011802864074707, + "step": 143500 + }, + { + "epoch": 48.107211659267946, + "grad_norm": 0.7877155542373657, + "learning_rate": 2.5956783919597994e-05, + "loss": 0.2021241569519043, + "step": 143600 + }, + { + "epoch": 48.140715302789175, + "grad_norm": 0.7610930800437927, + "learning_rate": 2.5940033500837523e-05, + "loss": 0.20223419189453126, + "step": 143700 + }, + { + "epoch": 48.17421894631041, + "grad_norm": 0.81033855676651, + "learning_rate": 2.5923283082077055e-05, + "loss": 0.20270132064819335, + "step": 143800 + }, + { + "epoch": 48.20772258983165, + "grad_norm": 0.7211432456970215, + "learning_rate": 2.5906532663316584e-05, + "loss": 0.2033340072631836, + "step": 143900 + }, + { + "epoch": 48.241226233352876, + "grad_norm": 0.7816910147666931, + "learning_rate": 2.5889782244556116e-05, + "loss": 0.20389623641967775, + "step": 144000 + }, + { + "epoch": 48.27472987687411, + "grad_norm": 0.8680933713912964, + "learning_rate": 2.5873031825795645e-05, + "loss": 0.20449954986572266, + "step": 144100 + }, + { + "epoch": 48.30823352039534, + "grad_norm": 0.6703556776046753, + "learning_rate": 2.5856281407035177e-05, + "loss": 0.20437568664550781, + "step": 144200 + }, + { + "epoch": 48.34173716391658, + "grad_norm": 0.755338191986084, + "learning_rate": 2.5839530988274706e-05, + "loss": 0.20576271057128906, + "step": 144300 + }, + { + "epoch": 48.375240807437805, + "grad_norm": 0.7581430673599243, + "learning_rate": 2.582278056951424e-05, + "loss": 0.2058708953857422, + "step": 144400 + }, + { + "epoch": 48.40874445095904, + "grad_norm": 0.7973390817642212, + "learning_rate": 2.5806030150753767e-05, + "loss": 0.20591938018798828, + "step": 144500 + }, + { + "epoch": 48.44224809448028, + "grad_norm": 0.8226273655891418, + "learning_rate": 2.57892797319933e-05, + "loss": 0.20543519973754884, + "step": 144600 + }, + { + "epoch": 48.475751738001506, + "grad_norm": 0.9298210740089417, + "learning_rate": 2.5772529313232828e-05, + "loss": 0.2074728012084961, + "step": 144700 + }, + { + "epoch": 48.50925538152274, + "grad_norm": 0.7703186273574829, + "learning_rate": 2.5755778894472364e-05, + "loss": 0.2061468505859375, + "step": 144800 + }, + { + "epoch": 48.54275902504397, + "grad_norm": 0.7027441263198853, + "learning_rate": 2.5739028475711896e-05, + "loss": 0.2068248176574707, + "step": 144900 + }, + { + "epoch": 48.57626266856521, + "grad_norm": 0.866961658000946, + "learning_rate": 2.5722278056951425e-05, + "loss": 0.20709081649780273, + "step": 145000 + }, + { + "epoch": 48.60976631208644, + "grad_norm": 0.7900598645210266, + "learning_rate": 2.5705527638190957e-05, + "loss": 0.20745479583740234, + "step": 145100 + }, + { + "epoch": 48.64326995560767, + "grad_norm": 0.7642288208007812, + "learning_rate": 2.568877721943049e-05, + "loss": 0.20698997497558594, + "step": 145200 + }, + { + "epoch": 48.67677359912891, + "grad_norm": 0.8306117653846741, + "learning_rate": 2.5672026800670018e-05, + "loss": 0.20851272583007813, + "step": 145300 + }, + { + "epoch": 48.710277242650136, + "grad_norm": 0.9393877387046814, + "learning_rate": 2.565527638190955e-05, + "loss": 0.2079641914367676, + "step": 145400 + }, + { + "epoch": 48.74378088617137, + "grad_norm": 0.7118200659751892, + "learning_rate": 2.5638693467336683e-05, + "loss": 0.20779979705810547, + "step": 145500 + }, + { + "epoch": 48.7772845296926, + "grad_norm": 0.8508455157279968, + "learning_rate": 2.5621943048576215e-05, + "loss": 0.20885522842407225, + "step": 145600 + }, + { + "epoch": 48.81078817321384, + "grad_norm": 0.7956013083457947, + "learning_rate": 2.5605192629815744e-05, + "loss": 0.2095408821105957, + "step": 145700 + }, + { + "epoch": 48.84429181673507, + "grad_norm": 0.9105645418167114, + "learning_rate": 2.558844221105528e-05, + "loss": 0.20915800094604492, + "step": 145800 + }, + { + "epoch": 48.8777954602563, + "grad_norm": 0.8507822155952454, + "learning_rate": 2.5571691792294812e-05, + "loss": 0.20863231658935547, + "step": 145900 + }, + { + "epoch": 48.91129910377754, + "grad_norm": 0.9350414872169495, + "learning_rate": 2.555494137353434e-05, + "loss": 0.2097511100769043, + "step": 146000 + }, + { + "epoch": 48.944802747298766, + "grad_norm": 0.6584986448287964, + "learning_rate": 2.5538190954773873e-05, + "loss": 0.20917884826660157, + "step": 146100 + }, + { + "epoch": 48.97830639082, + "grad_norm": 0.8874914646148682, + "learning_rate": 2.55214405360134e-05, + "loss": 0.20966741561889649, + "step": 146200 + }, + { + "epoch": 49.011726275232434, + "grad_norm": 0.6621425747871399, + "learning_rate": 2.5504690117252934e-05, + "loss": 0.20701923370361328, + "step": 146300 + }, + { + "epoch": 49.04522991875366, + "grad_norm": 0.772162914276123, + "learning_rate": 2.5487939698492463e-05, + "loss": 0.19997344970703124, + "step": 146400 + }, + { + "epoch": 49.0787335622749, + "grad_norm": 0.7397682666778564, + "learning_rate": 2.5471189279731995e-05, + "loss": 0.19966798782348633, + "step": 146500 + }, + { + "epoch": 49.11223720579613, + "grad_norm": 0.7998943328857422, + "learning_rate": 2.5454438860971524e-05, + "loss": 0.20070135116577148, + "step": 146600 + }, + { + "epoch": 49.14574084931736, + "grad_norm": 0.8297356367111206, + "learning_rate": 2.5437688442211056e-05, + "loss": 0.2032426643371582, + "step": 146700 + }, + { + "epoch": 49.1792444928386, + "grad_norm": 0.6718747615814209, + "learning_rate": 2.5420938023450585e-05, + "loss": 0.20162422180175782, + "step": 146800 + }, + { + "epoch": 49.21274813635983, + "grad_norm": 0.8085470795631409, + "learning_rate": 2.5404187604690117e-05, + "loss": 0.20480926513671874, + "step": 146900 + }, + { + "epoch": 49.246251779881064, + "grad_norm": 0.6637224555015564, + "learning_rate": 2.5387437185929646e-05, + "loss": 0.20419147491455078, + "step": 147000 + }, + { + "epoch": 49.27975542340229, + "grad_norm": 0.8804967999458313, + "learning_rate": 2.537068676716918e-05, + "loss": 0.20260902404785155, + "step": 147100 + }, + { + "epoch": 49.31325906692353, + "grad_norm": 0.6562800407409668, + "learning_rate": 2.5353936348408713e-05, + "loss": 0.2042051887512207, + "step": 147200 + }, + { + "epoch": 49.346762710444764, + "grad_norm": 0.802295446395874, + "learning_rate": 2.5337185929648242e-05, + "loss": 0.20388504028320312, + "step": 147300 + }, + { + "epoch": 49.38026635396599, + "grad_norm": 0.6702427268028259, + "learning_rate": 2.5320435510887775e-05, + "loss": 0.20359308242797852, + "step": 147400 + }, + { + "epoch": 49.41376999748723, + "grad_norm": 0.6546157002449036, + "learning_rate": 2.5303685092127303e-05, + "loss": 0.20544279098510743, + "step": 147500 + }, + { + "epoch": 49.44727364100846, + "grad_norm": 0.7745968103408813, + "learning_rate": 2.528710217755444e-05, + "loss": 0.20460813522338867, + "step": 147600 + }, + { + "epoch": 49.480777284529694, + "grad_norm": 0.754804790019989, + "learning_rate": 2.527035175879397e-05, + "loss": 0.20541131973266602, + "step": 147700 + }, + { + "epoch": 49.51428092805092, + "grad_norm": 0.8245925307273865, + "learning_rate": 2.52536013400335e-05, + "loss": 0.20514223098754883, + "step": 147800 + }, + { + "epoch": 49.54778457157216, + "grad_norm": 0.7658609747886658, + "learning_rate": 2.5236850921273032e-05, + "loss": 0.20672239303588869, + "step": 147900 + }, + { + "epoch": 49.581288215093394, + "grad_norm": 0.8386098742485046, + "learning_rate": 2.522010050251256e-05, + "loss": 0.20576807022094726, + "step": 148000 + }, + { + "epoch": 49.61479185861462, + "grad_norm": 0.9193150997161865, + "learning_rate": 2.5203350083752097e-05, + "loss": 0.20691360473632814, + "step": 148100 + }, + { + "epoch": 49.64829550213586, + "grad_norm": 0.8064738512039185, + "learning_rate": 2.518659966499163e-05, + "loss": 0.20630212783813476, + "step": 148200 + }, + { + "epoch": 49.68179914565709, + "grad_norm": 0.6325901746749878, + "learning_rate": 2.5169849246231158e-05, + "loss": 0.20667299270629882, + "step": 148300 + }, + { + "epoch": 49.715302789178324, + "grad_norm": 0.796997606754303, + "learning_rate": 2.515309882747069e-05, + "loss": 0.20724594116210937, + "step": 148400 + }, + { + "epoch": 49.74880643269955, + "grad_norm": 0.8888092041015625, + "learning_rate": 2.513634840871022e-05, + "loss": 0.20756359100341798, + "step": 148500 + }, + { + "epoch": 49.78231007622079, + "grad_norm": 0.8092156052589417, + "learning_rate": 2.511959798994975e-05, + "loss": 0.2068187713623047, + "step": 148600 + }, + { + "epoch": 49.815813719742025, + "grad_norm": 0.9051980972290039, + "learning_rate": 2.510284757118928e-05, + "loss": 0.20732791900634764, + "step": 148700 + }, + { + "epoch": 49.84931736326325, + "grad_norm": 0.9662907719612122, + "learning_rate": 2.5086097152428812e-05, + "loss": 0.2081096076965332, + "step": 148800 + }, + { + "epoch": 49.88282100678449, + "grad_norm": 0.9831855297088623, + "learning_rate": 2.506934673366834e-05, + "loss": 0.20788869857788086, + "step": 148900 + }, + { + "epoch": 49.91632465030572, + "grad_norm": 0.6909393668174744, + "learning_rate": 2.5052596314907873e-05, + "loss": 0.20930927276611327, + "step": 149000 + }, + { + "epoch": 49.949828293826954, + "grad_norm": 0.7016172409057617, + "learning_rate": 2.5035845896147402e-05, + "loss": 0.20851097106933594, + "step": 149100 + }, + { + "epoch": 49.98333193734819, + "grad_norm": 0.9753764867782593, + "learning_rate": 2.5019095477386934e-05, + "loss": 0.20876035690307618, + "step": 149200 + }, + { + "epoch": 50.016751821760614, + "grad_norm": 0.814017117023468, + "learning_rate": 2.500234505862647e-05, + "loss": 0.20314416885375977, + "step": 149300 + }, + { + "epoch": 50.05025546528185, + "grad_norm": 0.7156041860580444, + "learning_rate": 2.4985594639866e-05, + "loss": 0.19888938903808595, + "step": 149400 + }, + { + "epoch": 50.08375910880308, + "grad_norm": 0.7967144250869751, + "learning_rate": 2.4968844221105528e-05, + "loss": 0.2009027862548828, + "step": 149500 + }, + { + "epoch": 50.117262752324315, + "grad_norm": 0.8211435079574585, + "learning_rate": 2.495209380234506e-05, + "loss": 0.20014671325683595, + "step": 149600 + }, + { + "epoch": 50.15076639584555, + "grad_norm": 0.6646608710289001, + "learning_rate": 2.4935510887772196e-05, + "loss": 0.20111976623535155, + "step": 149700 + }, + { + "epoch": 50.18427003936678, + "grad_norm": 0.7369064092636108, + "learning_rate": 2.4918760469011724e-05, + "loss": 0.20281072616577148, + "step": 149800 + }, + { + "epoch": 50.217773682888016, + "grad_norm": 0.5978965163230896, + "learning_rate": 2.4902010050251257e-05, + "loss": 0.20169940948486328, + "step": 149900 + }, + { + "epoch": 50.251277326409244, + "grad_norm": 0.8313732743263245, + "learning_rate": 2.4885259631490785e-05, + "loss": 0.2015657615661621, + "step": 150000 + }, + { + "epoch": 50.28478096993048, + "grad_norm": 0.9016907811164856, + "learning_rate": 2.486850921273032e-05, + "loss": 0.2032327651977539, + "step": 150100 + }, + { + "epoch": 50.318284613451716, + "grad_norm": 0.7199917435646057, + "learning_rate": 2.485175879396985e-05, + "loss": 0.20292411804199217, + "step": 150200 + }, + { + "epoch": 50.351788256972945, + "grad_norm": 0.8585846424102783, + "learning_rate": 2.4835008375209382e-05, + "loss": 0.20314014434814454, + "step": 150300 + }, + { + "epoch": 50.38529190049418, + "grad_norm": 0.7034669518470764, + "learning_rate": 2.481825795644891e-05, + "loss": 0.20416894912719727, + "step": 150400 + }, + { + "epoch": 50.41879554401541, + "grad_norm": 0.865682065486908, + "learning_rate": 2.4801507537688443e-05, + "loss": 0.20476892471313476, + "step": 150500 + }, + { + "epoch": 50.452299187536646, + "grad_norm": 0.7300936579704285, + "learning_rate": 2.4784757118927972e-05, + "loss": 0.20488790512084962, + "step": 150600 + }, + { + "epoch": 50.485802831057875, + "grad_norm": 0.8905784487724304, + "learning_rate": 2.4768006700167508e-05, + "loss": 0.20429906845092774, + "step": 150700 + }, + { + "epoch": 50.51930647457911, + "grad_norm": 0.759925365447998, + "learning_rate": 2.4751256281407036e-05, + "loss": 0.2061992645263672, + "step": 150800 + }, + { + "epoch": 50.552810118100346, + "grad_norm": 0.7266499996185303, + "learning_rate": 2.473450586264657e-05, + "loss": 0.20576707839965822, + "step": 150900 + }, + { + "epoch": 50.586313761621575, + "grad_norm": 0.6730079650878906, + "learning_rate": 2.4717755443886097e-05, + "loss": 0.20497604370117187, + "step": 151000 + }, + { + "epoch": 50.61981740514281, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.470100502512563e-05, + "loss": 0.20579778671264648, + "step": 151100 + }, + { + "epoch": 50.65332104866404, + "grad_norm": 0.7999610304832458, + "learning_rate": 2.468425460636516e-05, + "loss": 0.20637252807617187, + "step": 151200 + }, + { + "epoch": 50.686824692185276, + "grad_norm": 0.7081186771392822, + "learning_rate": 2.4667504187604694e-05, + "loss": 0.20630395889282227, + "step": 151300 + }, + { + "epoch": 50.720328335706505, + "grad_norm": 0.8061164021492004, + "learning_rate": 2.4650753768844223e-05, + "loss": 0.20621145248413086, + "step": 151400 + }, + { + "epoch": 50.75383197922774, + "grad_norm": 0.826841413974762, + "learning_rate": 2.4634003350083755e-05, + "loss": 0.20574779510498048, + "step": 151500 + }, + { + "epoch": 50.78733562274898, + "grad_norm": 0.7742196321487427, + "learning_rate": 2.4617252931323284e-05, + "loss": 0.205941162109375, + "step": 151600 + }, + { + "epoch": 50.820839266270205, + "grad_norm": 0.8660677075386047, + "learning_rate": 2.4600502512562816e-05, + "loss": 0.20769458770751953, + "step": 151700 + }, + { + "epoch": 50.85434290979144, + "grad_norm": 0.7156419157981873, + "learning_rate": 2.4583752093802345e-05, + "loss": 0.20709629058837892, + "step": 151800 + }, + { + "epoch": 50.88784655331267, + "grad_norm": 0.812447190284729, + "learning_rate": 2.456716917922948e-05, + "loss": 0.20599342346191407, + "step": 151900 + }, + { + "epoch": 50.921350196833906, + "grad_norm": 0.8019922375679016, + "learning_rate": 2.4550418760469013e-05, + "loss": 0.20727943420410155, + "step": 152000 + }, + { + "epoch": 50.95485384035514, + "grad_norm": 0.7810946702957153, + "learning_rate": 2.4533668341708542e-05, + "loss": 0.2080386734008789, + "step": 152100 + }, + { + "epoch": 50.98835748387637, + "grad_norm": 0.7739458084106445, + "learning_rate": 2.4516917922948074e-05, + "loss": 0.2072319793701172, + "step": 152200 + }, + { + "epoch": 51.0217773682888, + "grad_norm": 0.7210680246353149, + "learning_rate": 2.4500167504187606e-05, + "loss": 0.20264469146728514, + "step": 152300 + }, + { + "epoch": 51.05528101181003, + "grad_norm": 0.7153304219245911, + "learning_rate": 2.448341708542714e-05, + "loss": 0.19857017517089845, + "step": 152400 + }, + { + "epoch": 51.08878465533127, + "grad_norm": 0.7581055760383606, + "learning_rate": 2.4466666666666667e-05, + "loss": 0.19956087112426757, + "step": 152500 + }, + { + "epoch": 51.1222882988525, + "grad_norm": 0.7437317967414856, + "learning_rate": 2.44499162479062e-05, + "loss": 0.19829078674316405, + "step": 152600 + }, + { + "epoch": 51.15579194237373, + "grad_norm": 0.6868230104446411, + "learning_rate": 2.443316582914573e-05, + "loss": 0.19977245330810547, + "step": 152700 + }, + { + "epoch": 51.18929558589497, + "grad_norm": 0.7176596522331238, + "learning_rate": 2.441641541038526e-05, + "loss": 0.20137237548828124, + "step": 152800 + }, + { + "epoch": 51.2227992294162, + "grad_norm": 0.7465003132820129, + "learning_rate": 2.439966499162479e-05, + "loss": 0.20151824951171876, + "step": 152900 + }, + { + "epoch": 51.25630287293743, + "grad_norm": 0.8134509325027466, + "learning_rate": 2.4382914572864325e-05, + "loss": 0.20129066467285156, + "step": 153000 + }, + { + "epoch": 51.28980651645867, + "grad_norm": 0.7882896065711975, + "learning_rate": 2.4366164154103854e-05, + "loss": 0.20372648239135743, + "step": 153100 + }, + { + "epoch": 51.3233101599799, + "grad_norm": 0.6261149048805237, + "learning_rate": 2.4349413735343386e-05, + "loss": 0.20317134857177735, + "step": 153200 + }, + { + "epoch": 51.35681380350113, + "grad_norm": 0.7279029488563538, + "learning_rate": 2.4332663316582915e-05, + "loss": 0.20203876495361328, + "step": 153300 + }, + { + "epoch": 51.39031744702236, + "grad_norm": 0.7463719248771667, + "learning_rate": 2.4315912897822447e-05, + "loss": 0.2032138252258301, + "step": 153400 + }, + { + "epoch": 51.4238210905436, + "grad_norm": 0.7583816051483154, + "learning_rate": 2.4299162479061976e-05, + "loss": 0.20314373016357423, + "step": 153500 + }, + { + "epoch": 51.45732473406483, + "grad_norm": 0.7088111042976379, + "learning_rate": 2.428241206030151e-05, + "loss": 0.20380254745483398, + "step": 153600 + }, + { + "epoch": 51.49082837758606, + "grad_norm": 0.6820314526557922, + "learning_rate": 2.426566164154104e-05, + "loss": 0.20396411895751954, + "step": 153700 + }, + { + "epoch": 51.5243320211073, + "grad_norm": 0.6890659332275391, + "learning_rate": 2.4248911222780573e-05, + "loss": 0.20465932846069335, + "step": 153800 + }, + { + "epoch": 51.55783566462853, + "grad_norm": 0.7410996556282043, + "learning_rate": 2.4232328308207705e-05, + "loss": 0.20433155059814453, + "step": 153900 + }, + { + "epoch": 51.59133930814976, + "grad_norm": 0.6642614006996155, + "learning_rate": 2.4215577889447237e-05, + "loss": 0.20583141326904297, + "step": 154000 + }, + { + "epoch": 51.62484295167099, + "grad_norm": 0.8036423921585083, + "learning_rate": 2.419882747068677e-05, + "loss": 0.20297210693359374, + "step": 154100 + }, + { + "epoch": 51.65834659519223, + "grad_norm": 0.7510450482368469, + "learning_rate": 2.4182077051926298e-05, + "loss": 0.20401430130004883, + "step": 154200 + }, + { + "epoch": 51.69185023871346, + "grad_norm": 0.7840591073036194, + "learning_rate": 2.416532663316583e-05, + "loss": 0.205728702545166, + "step": 154300 + }, + { + "epoch": 51.72535388223469, + "grad_norm": 0.8357808589935303, + "learning_rate": 2.414857621440536e-05, + "loss": 0.20580055236816405, + "step": 154400 + }, + { + "epoch": 51.75885752575593, + "grad_norm": 0.7890837788581848, + "learning_rate": 2.413182579564489e-05, + "loss": 0.2051936149597168, + "step": 154500 + }, + { + "epoch": 51.79236116927716, + "grad_norm": 1.031099557876587, + "learning_rate": 2.4115075376884424e-05, + "loss": 0.20656421661376953, + "step": 154600 + }, + { + "epoch": 51.82586481279839, + "grad_norm": 0.7498375773429871, + "learning_rate": 2.4098324958123956e-05, + "loss": 0.2050635528564453, + "step": 154700 + }, + { + "epoch": 51.85936845631962, + "grad_norm": 0.760242760181427, + "learning_rate": 2.4081574539363485e-05, + "loss": 0.20564306259155274, + "step": 154800 + }, + { + "epoch": 51.89287209984086, + "grad_norm": 0.7774176597595215, + "learning_rate": 2.4064824120603017e-05, + "loss": 0.20756494522094726, + "step": 154900 + }, + { + "epoch": 51.926375743362094, + "grad_norm": 0.7169613242149353, + "learning_rate": 2.4048073701842546e-05, + "loss": 0.2062942886352539, + "step": 155000 + }, + { + "epoch": 51.95987938688332, + "grad_norm": 0.8178589344024658, + "learning_rate": 2.4031323283082078e-05, + "loss": 0.20722549438476562, + "step": 155100 + }, + { + "epoch": 51.99338303040456, + "grad_norm": 0.9282923936843872, + "learning_rate": 2.401457286432161e-05, + "loss": 0.20599929809570314, + "step": 155200 + }, + { + "epoch": 52.02680291481698, + "grad_norm": 0.718063235282898, + "learning_rate": 2.3997822445561142e-05, + "loss": 0.19876413345336913, + "step": 155300 + }, + { + "epoch": 52.06030655833822, + "grad_norm": 0.8059532642364502, + "learning_rate": 2.398107202680067e-05, + "loss": 0.19822462081909178, + "step": 155400 + }, + { + "epoch": 52.093810201859455, + "grad_norm": 0.7145259380340576, + "learning_rate": 2.3964321608040203e-05, + "loss": 0.19868303298950196, + "step": 155500 + }, + { + "epoch": 52.127313845380684, + "grad_norm": 0.8659557700157166, + "learning_rate": 2.3947571189279732e-05, + "loss": 0.19922651290893556, + "step": 155600 + }, + { + "epoch": 52.16081748890192, + "grad_norm": 0.6749393939971924, + "learning_rate": 2.3930820770519264e-05, + "loss": 0.1997986602783203, + "step": 155700 + }, + { + "epoch": 52.19432113242315, + "grad_norm": 0.6439624428749084, + "learning_rate": 2.3914070351758793e-05, + "loss": 0.20102750778198242, + "step": 155800 + }, + { + "epoch": 52.227824775944384, + "grad_norm": 0.7515970468521118, + "learning_rate": 2.389748743718593e-05, + "loss": 0.20047502517700194, + "step": 155900 + }, + { + "epoch": 52.26132841946562, + "grad_norm": 0.806867241859436, + "learning_rate": 2.388073701842546e-05, + "loss": 0.19967298507690429, + "step": 156000 + }, + { + "epoch": 52.29483206298685, + "grad_norm": 0.6517553925514221, + "learning_rate": 2.3863986599664994e-05, + "loss": 0.20189517974853516, + "step": 156100 + }, + { + "epoch": 52.328335706508085, + "grad_norm": 0.7536884546279907, + "learning_rate": 2.3847236180904522e-05, + "loss": 0.20110305786132812, + "step": 156200 + }, + { + "epoch": 52.361839350029314, + "grad_norm": 0.6968570947647095, + "learning_rate": 2.3830485762144055e-05, + "loss": 0.20244617462158204, + "step": 156300 + }, + { + "epoch": 52.39534299355055, + "grad_norm": 0.7550085783004761, + "learning_rate": 2.3813735343383587e-05, + "loss": 0.20247106552124022, + "step": 156400 + }, + { + "epoch": 52.42884663707178, + "grad_norm": 0.720716118812561, + "learning_rate": 2.3796984924623116e-05, + "loss": 0.20291017532348632, + "step": 156500 + }, + { + "epoch": 52.462350280593014, + "grad_norm": 0.8645543456077576, + "learning_rate": 2.3780234505862648e-05, + "loss": 0.20293344497680665, + "step": 156600 + }, + { + "epoch": 52.49585392411425, + "grad_norm": 0.8600931167602539, + "learning_rate": 2.3763484087102177e-05, + "loss": 0.20278577804565429, + "step": 156700 + }, + { + "epoch": 52.52935756763548, + "grad_norm": 0.7974618673324585, + "learning_rate": 2.374673366834171e-05, + "loss": 0.202381591796875, + "step": 156800 + }, + { + "epoch": 52.562861211156715, + "grad_norm": 0.7992094159126282, + "learning_rate": 2.372998324958124e-05, + "loss": 0.20381240844726561, + "step": 156900 + }, + { + "epoch": 52.596364854677944, + "grad_norm": 0.8903921842575073, + "learning_rate": 2.3713232830820773e-05, + "loss": 0.20466848373413085, + "step": 157000 + }, + { + "epoch": 52.62986849819918, + "grad_norm": 0.7660692930221558, + "learning_rate": 2.3696482412060302e-05, + "loss": 0.20477258682250976, + "step": 157100 + }, + { + "epoch": 52.663372141720416, + "grad_norm": 0.9394494891166687, + "learning_rate": 2.3679731993299834e-05, + "loss": 0.20499584197998047, + "step": 157200 + }, + { + "epoch": 52.696875785241645, + "grad_norm": 0.7494113445281982, + "learning_rate": 2.3662981574539363e-05, + "loss": 0.20393524169921876, + "step": 157300 + }, + { + "epoch": 52.73037942876288, + "grad_norm": 0.8550491333007812, + "learning_rate": 2.3646231155778895e-05, + "loss": 0.2046040725708008, + "step": 157400 + }, + { + "epoch": 52.76388307228411, + "grad_norm": 0.7414348721504211, + "learning_rate": 2.3629480737018428e-05, + "loss": 0.2042390251159668, + "step": 157500 + }, + { + "epoch": 52.797386715805345, + "grad_norm": 0.7701572775840759, + "learning_rate": 2.361273031825796e-05, + "loss": 0.20498817443847656, + "step": 157600 + }, + { + "epoch": 52.830890359326574, + "grad_norm": 0.8651624917984009, + "learning_rate": 2.359597989949749e-05, + "loss": 0.2049662399291992, + "step": 157700 + }, + { + "epoch": 52.86439400284781, + "grad_norm": 0.7625434398651123, + "learning_rate": 2.357922948073702e-05, + "loss": 0.20496458053588867, + "step": 157800 + }, + { + "epoch": 52.897897646369046, + "grad_norm": 0.7538461685180664, + "learning_rate": 2.356247906197655e-05, + "loss": 0.20603256225585936, + "step": 157900 + }, + { + "epoch": 52.931401289890275, + "grad_norm": 0.8014910221099854, + "learning_rate": 2.3545728643216082e-05, + "loss": 0.20654550552368164, + "step": 158000 + }, + { + "epoch": 52.96490493341151, + "grad_norm": 0.7098953723907471, + "learning_rate": 2.3529145728643218e-05, + "loss": 0.2058616065979004, + "step": 158100 + }, + { + "epoch": 52.99840857693274, + "grad_norm": 0.7502704858779907, + "learning_rate": 2.3512395309882747e-05, + "loss": 0.20542961120605469, + "step": 158200 + }, + { + "epoch": 53.03182846134517, + "grad_norm": 0.7823647260665894, + "learning_rate": 2.349564489112228e-05, + "loss": 0.19869186401367187, + "step": 158300 + }, + { + "epoch": 53.06533210486641, + "grad_norm": 0.6451433300971985, + "learning_rate": 2.3478894472361808e-05, + "loss": 0.19836278915405273, + "step": 158400 + }, + { + "epoch": 53.098835748387636, + "grad_norm": 0.778315544128418, + "learning_rate": 2.346214405360134e-05, + "loss": 0.196907901763916, + "step": 158500 + }, + { + "epoch": 53.13233939190887, + "grad_norm": 0.7905980944633484, + "learning_rate": 2.3445393634840872e-05, + "loss": 0.19891220092773437, + "step": 158600 + }, + { + "epoch": 53.1658430354301, + "grad_norm": 0.7197417616844177, + "learning_rate": 2.3428643216080404e-05, + "loss": 0.19840576171875, + "step": 158700 + }, + { + "epoch": 53.199346678951336, + "grad_norm": 0.8555814623832703, + "learning_rate": 2.3411892797319933e-05, + "loss": 0.20008617401123047, + "step": 158800 + }, + { + "epoch": 53.23285032247257, + "grad_norm": 0.7590495944023132, + "learning_rate": 2.3395142378559465e-05, + "loss": 0.20077667236328126, + "step": 158900 + }, + { + "epoch": 53.2663539659938, + "grad_norm": 0.7683301568031311, + "learning_rate": 2.3378391959798994e-05, + "loss": 0.19980268478393554, + "step": 159000 + }, + { + "epoch": 53.29985760951504, + "grad_norm": 0.7807407379150391, + "learning_rate": 2.3361641541038526e-05, + "loss": 0.20026128768920898, + "step": 159100 + }, + { + "epoch": 53.333361253036266, + "grad_norm": 0.8405656218528748, + "learning_rate": 2.334489112227806e-05, + "loss": 0.20058374404907225, + "step": 159200 + }, + { + "epoch": 53.3668648965575, + "grad_norm": 0.9434088468551636, + "learning_rate": 2.332814070351759e-05, + "loss": 0.2012481689453125, + "step": 159300 + }, + { + "epoch": 53.40036854007873, + "grad_norm": 0.7459748387336731, + "learning_rate": 2.331139028475712e-05, + "loss": 0.20088954925537109, + "step": 159400 + }, + { + "epoch": 53.433872183599966, + "grad_norm": 0.7078500390052795, + "learning_rate": 2.3294639865996652e-05, + "loss": 0.20286613464355469, + "step": 159500 + }, + { + "epoch": 53.4673758271212, + "grad_norm": 0.8187021017074585, + "learning_rate": 2.327788944723618e-05, + "loss": 0.2021192741394043, + "step": 159600 + }, + { + "epoch": 53.50087947064243, + "grad_norm": 0.8571094274520874, + "learning_rate": 2.3261139028475713e-05, + "loss": 0.20223554611206054, + "step": 159700 + }, + { + "epoch": 53.53438311416367, + "grad_norm": 0.7480899691581726, + "learning_rate": 2.3244388609715245e-05, + "loss": 0.20176963806152343, + "step": 159800 + }, + { + "epoch": 53.567886757684896, + "grad_norm": 0.6709027886390686, + "learning_rate": 2.3227638190954777e-05, + "loss": 0.20310573577880858, + "step": 159900 + }, + { + "epoch": 53.60139040120613, + "grad_norm": 0.8324502110481262, + "learning_rate": 2.3210887772194306e-05, + "loss": 0.20389171600341796, + "step": 160000 + }, + { + "epoch": 53.63489404472736, + "grad_norm": 0.7991625666618347, + "learning_rate": 2.3194304857621442e-05, + "loss": 0.20335477828979492, + "step": 160100 + }, + { + "epoch": 53.6683976882486, + "grad_norm": 0.8041797876358032, + "learning_rate": 2.3177554438860974e-05, + "loss": 0.20338481903076172, + "step": 160200 + }, + { + "epoch": 53.70190133176983, + "grad_norm": 0.7331723570823669, + "learning_rate": 2.3160804020100503e-05, + "loss": 0.20225767135620118, + "step": 160300 + }, + { + "epoch": 53.73540497529106, + "grad_norm": 0.8455171585083008, + "learning_rate": 2.3144053601340035e-05, + "loss": 0.20394590377807617, + "step": 160400 + }, + { + "epoch": 53.7689086188123, + "grad_norm": 0.7466434836387634, + "learning_rate": 2.3127303182579564e-05, + "loss": 0.20405231475830077, + "step": 160500 + }, + { + "epoch": 53.802412262333526, + "grad_norm": 0.7956470847129822, + "learning_rate": 2.3110552763819096e-05, + "loss": 0.20502872467041017, + "step": 160600 + }, + { + "epoch": 53.83591590585476, + "grad_norm": 0.8183136582374573, + "learning_rate": 2.3093802345058625e-05, + "loss": 0.20336063385009764, + "step": 160700 + }, + { + "epoch": 53.869419549376, + "grad_norm": 0.6803155541419983, + "learning_rate": 2.307705192629816e-05, + "loss": 0.20551418304443358, + "step": 160800 + }, + { + "epoch": 53.90292319289723, + "grad_norm": 0.7090324759483337, + "learning_rate": 2.306030150753769e-05, + "loss": 0.20483921051025392, + "step": 160900 + }, + { + "epoch": 53.93642683641846, + "grad_norm": 0.6998985409736633, + "learning_rate": 2.304355108877722e-05, + "loss": 0.20418329238891603, + "step": 161000 + }, + { + "epoch": 53.96993047993969, + "grad_norm": 0.7103771567344666, + "learning_rate": 2.302680067001675e-05, + "loss": 0.20509437561035157, + "step": 161100 + }, + { + "epoch": 54.00335036435212, + "grad_norm": 0.9205202460289001, + "learning_rate": 2.3010050251256283e-05, + "loss": 0.20359134674072266, + "step": 161200 + }, + { + "epoch": 54.03685400787336, + "grad_norm": 0.7976627349853516, + "learning_rate": 2.299329983249581e-05, + "loss": 0.19689498901367186, + "step": 161300 + }, + { + "epoch": 54.07035765139459, + "grad_norm": 0.821431040763855, + "learning_rate": 2.2976549413735344e-05, + "loss": 0.1979433059692383, + "step": 161400 + }, + { + "epoch": 54.10386129491582, + "grad_norm": 0.7001577019691467, + "learning_rate": 2.2959798994974876e-05, + "loss": 0.1971571159362793, + "step": 161500 + }, + { + "epoch": 54.13736493843705, + "grad_norm": 0.8949475884437561, + "learning_rate": 2.2943048576214408e-05, + "loss": 0.19859142303466798, + "step": 161600 + }, + { + "epoch": 54.17086858195829, + "grad_norm": 0.7298758029937744, + "learning_rate": 2.2926298157453937e-05, + "loss": 0.19952430725097656, + "step": 161700 + }, + { + "epoch": 54.204372225479524, + "grad_norm": 0.8920609951019287, + "learning_rate": 2.290954773869347e-05, + "loss": 0.1987653160095215, + "step": 161800 + }, + { + "epoch": 54.23787586900075, + "grad_norm": 0.7720832824707031, + "learning_rate": 2.2892797319932998e-05, + "loss": 0.19959186553955077, + "step": 161900 + }, + { + "epoch": 54.27137951252199, + "grad_norm": 0.7590644359588623, + "learning_rate": 2.287604690117253e-05, + "loss": 0.19991098403930663, + "step": 162000 + }, + { + "epoch": 54.30488315604322, + "grad_norm": 0.7114115357398987, + "learning_rate": 2.2859296482412062e-05, + "loss": 0.20001384735107422, + "step": 162100 + }, + { + "epoch": 54.338386799564454, + "grad_norm": 0.6103782057762146, + "learning_rate": 2.28427135678392e-05, + "loss": 0.2000261116027832, + "step": 162200 + }, + { + "epoch": 54.37189044308568, + "grad_norm": 0.678782045841217, + "learning_rate": 2.2825963149078727e-05, + "loss": 0.2014828109741211, + "step": 162300 + }, + { + "epoch": 54.40539408660692, + "grad_norm": 0.8127717971801758, + "learning_rate": 2.280921273031826e-05, + "loss": 0.1989847755432129, + "step": 162400 + }, + { + "epoch": 54.438897730128154, + "grad_norm": 0.8343021273612976, + "learning_rate": 2.279246231155779e-05, + "loss": 0.20117862701416014, + "step": 162500 + }, + { + "epoch": 54.47240137364938, + "grad_norm": 0.7219998240470886, + "learning_rate": 2.277571189279732e-05, + "loss": 0.20171173095703124, + "step": 162600 + }, + { + "epoch": 54.50590501717062, + "grad_norm": 0.817757785320282, + "learning_rate": 2.2758961474036853e-05, + "loss": 0.20216232299804687, + "step": 162700 + }, + { + "epoch": 54.53940866069185, + "grad_norm": 0.8951203227043152, + "learning_rate": 2.274221105527638e-05, + "loss": 0.20124095916748047, + "step": 162800 + }, + { + "epoch": 54.572912304213084, + "grad_norm": 0.8889951109886169, + "learning_rate": 2.2725460636515914e-05, + "loss": 0.20379587173461913, + "step": 162900 + }, + { + "epoch": 54.60641594773432, + "grad_norm": 0.8064408898353577, + "learning_rate": 2.2708710217755442e-05, + "loss": 0.20114097595214844, + "step": 163000 + }, + { + "epoch": 54.63991959125555, + "grad_norm": 0.6613183617591858, + "learning_rate": 2.2691959798994978e-05, + "loss": 0.20306098937988282, + "step": 163100 + }, + { + "epoch": 54.673423234776784, + "grad_norm": 0.8730353713035583, + "learning_rate": 2.2675209380234507e-05, + "loss": 0.20401838302612305, + "step": 163200 + }, + { + "epoch": 54.70692687829801, + "grad_norm": 0.7803497314453125, + "learning_rate": 2.265845896147404e-05, + "loss": 0.20256214141845702, + "step": 163300 + }, + { + "epoch": 54.74043052181925, + "grad_norm": 0.8791249394416809, + "learning_rate": 2.2641708542713568e-05, + "loss": 0.20302362442016603, + "step": 163400 + }, + { + "epoch": 54.77393416534048, + "grad_norm": 0.8422548770904541, + "learning_rate": 2.26249581239531e-05, + "loss": 0.2037299919128418, + "step": 163500 + }, + { + "epoch": 54.807437808861714, + "grad_norm": 0.6493898630142212, + "learning_rate": 2.260820770519263e-05, + "loss": 0.20337121963500976, + "step": 163600 + }, + { + "epoch": 54.84094145238295, + "grad_norm": 0.8213750720024109, + "learning_rate": 2.259145728643216e-05, + "loss": 0.20318853378295898, + "step": 163700 + }, + { + "epoch": 54.87444509590418, + "grad_norm": 0.9080546498298645, + "learning_rate": 2.2574706867671693e-05, + "loss": 0.20395517349243164, + "step": 163800 + }, + { + "epoch": 54.907948739425414, + "grad_norm": 0.9570611715316772, + "learning_rate": 2.2557956448911226e-05, + "loss": 0.20360021591186522, + "step": 163900 + }, + { + "epoch": 54.94145238294664, + "grad_norm": 0.848283588886261, + "learning_rate": 2.2541206030150754e-05, + "loss": 0.20453887939453125, + "step": 164000 + }, + { + "epoch": 54.97495602646788, + "grad_norm": 0.8141411542892456, + "learning_rate": 2.2524455611390287e-05, + "loss": 0.20472782135009765, + "step": 164100 + }, + { + "epoch": 55.00837591088031, + "grad_norm": 0.6006379723548889, + "learning_rate": 2.2507872696817423e-05, + "loss": 0.2019051742553711, + "step": 164200 + }, + { + "epoch": 55.04187955440154, + "grad_norm": 0.6700722575187683, + "learning_rate": 2.249112227805695e-05, + "loss": 0.1957373046875, + "step": 164300 + }, + { + "epoch": 55.075383197922775, + "grad_norm": 0.7176284193992615, + "learning_rate": 2.2474371859296484e-05, + "loss": 0.1963091278076172, + "step": 164400 + }, + { + "epoch": 55.108886841444004, + "grad_norm": 0.6696990132331848, + "learning_rate": 2.2457621440536016e-05, + "loss": 0.19629579544067383, + "step": 164500 + }, + { + "epoch": 55.14239048496524, + "grad_norm": 0.7618410587310791, + "learning_rate": 2.2440871021775545e-05, + "loss": 0.19794061660766601, + "step": 164600 + }, + { + "epoch": 55.175894128486476, + "grad_norm": 0.6654366850852966, + "learning_rate": 2.2424120603015077e-05, + "loss": 0.1991598892211914, + "step": 164700 + }, + { + "epoch": 55.209397772007705, + "grad_norm": 0.9601466059684753, + "learning_rate": 2.240737018425461e-05, + "loss": 0.19887115478515624, + "step": 164800 + }, + { + "epoch": 55.24290141552894, + "grad_norm": 0.766276478767395, + "learning_rate": 2.2390619765494138e-05, + "loss": 0.19863889694213868, + "step": 164900 + }, + { + "epoch": 55.27640505905017, + "grad_norm": 0.7112438678741455, + "learning_rate": 2.237386934673367e-05, + "loss": 0.19905502319335938, + "step": 165000 + }, + { + "epoch": 55.309908702571406, + "grad_norm": 0.6443644165992737, + "learning_rate": 2.23571189279732e-05, + "loss": 0.19937538146972655, + "step": 165100 + }, + { + "epoch": 55.343412346092634, + "grad_norm": 0.8128257393836975, + "learning_rate": 2.234036850921273e-05, + "loss": 0.19976985931396485, + "step": 165200 + }, + { + "epoch": 55.37691598961387, + "grad_norm": 0.7452270984649658, + "learning_rate": 2.232361809045226e-05, + "loss": 0.19971412658691406, + "step": 165300 + }, + { + "epoch": 55.410419633135106, + "grad_norm": 0.7263997197151184, + "learning_rate": 2.2306867671691795e-05, + "loss": 0.19973045349121094, + "step": 165400 + }, + { + "epoch": 55.443923276656335, + "grad_norm": 0.7190716862678528, + "learning_rate": 2.2290117252931324e-05, + "loss": 0.20105569839477538, + "step": 165500 + }, + { + "epoch": 55.47742692017757, + "grad_norm": 0.7603322863578796, + "learning_rate": 2.2273366834170857e-05, + "loss": 0.20152530670166016, + "step": 165600 + }, + { + "epoch": 55.5109305636988, + "grad_norm": 0.6346855759620667, + "learning_rate": 2.2256616415410385e-05, + "loss": 0.20098255157470704, + "step": 165700 + }, + { + "epoch": 55.544434207220036, + "grad_norm": 0.6980137228965759, + "learning_rate": 2.2239865996649918e-05, + "loss": 0.200362548828125, + "step": 165800 + }, + { + "epoch": 55.57793785074127, + "grad_norm": 0.7294763922691345, + "learning_rate": 2.2223115577889446e-05, + "loss": 0.20156070709228516, + "step": 165900 + }, + { + "epoch": 55.6114414942625, + "grad_norm": 0.7770695090293884, + "learning_rate": 2.2206365159128982e-05, + "loss": 0.20071981430053712, + "step": 166000 + }, + { + "epoch": 55.644945137783736, + "grad_norm": 0.6916683316230774, + "learning_rate": 2.218961474036851e-05, + "loss": 0.2019366455078125, + "step": 166100 + }, + { + "epoch": 55.678448781304965, + "grad_norm": 0.6621333360671997, + "learning_rate": 2.2172864321608043e-05, + "loss": 0.2023235321044922, + "step": 166200 + }, + { + "epoch": 55.7119524248262, + "grad_norm": 0.742199718952179, + "learning_rate": 2.2156281407035176e-05, + "loss": 0.2024928092956543, + "step": 166300 + }, + { + "epoch": 55.74545606834743, + "grad_norm": 0.6829848289489746, + "learning_rate": 2.2139530988274708e-05, + "loss": 0.20235004425048828, + "step": 166400 + }, + { + "epoch": 55.778959711868666, + "grad_norm": 0.6780540943145752, + "learning_rate": 2.212278056951424e-05, + "loss": 0.2021579360961914, + "step": 166500 + }, + { + "epoch": 55.8124633553899, + "grad_norm": 0.7976480722427368, + "learning_rate": 2.210603015075377e-05, + "loss": 0.20198610305786133, + "step": 166600 + }, + { + "epoch": 55.84596699891113, + "grad_norm": 0.7261124849319458, + "learning_rate": 2.20892797319933e-05, + "loss": 0.20343488693237305, + "step": 166700 + }, + { + "epoch": 55.879470642432366, + "grad_norm": 0.7780104279518127, + "learning_rate": 2.207252931323283e-05, + "loss": 0.20361764907836913, + "step": 166800 + }, + { + "epoch": 55.912974285953595, + "grad_norm": 0.6498653292655945, + "learning_rate": 2.2055778894472362e-05, + "loss": 0.20432092666625976, + "step": 166900 + }, + { + "epoch": 55.94647792947483, + "grad_norm": 0.8899915814399719, + "learning_rate": 2.2039028475711894e-05, + "loss": 0.2044738006591797, + "step": 167000 + }, + { + "epoch": 55.97998157299606, + "grad_norm": 0.703768789768219, + "learning_rate": 2.2022278056951426e-05, + "loss": 0.2027983283996582, + "step": 167100 + }, + { + "epoch": 56.01340145740849, + "grad_norm": 0.6999773979187012, + "learning_rate": 2.2005527638190955e-05, + "loss": 0.19977279663085937, + "step": 167200 + }, + { + "epoch": 56.04690510092973, + "grad_norm": 0.7234398126602173, + "learning_rate": 2.1988777219430487e-05, + "loss": 0.19637002944946289, + "step": 167300 + }, + { + "epoch": 56.080408744450956, + "grad_norm": 0.7196521162986755, + "learning_rate": 2.1972026800670016e-05, + "loss": 0.1961227035522461, + "step": 167400 + }, + { + "epoch": 56.11391238797219, + "grad_norm": 0.7114014625549316, + "learning_rate": 2.195527638190955e-05, + "loss": 0.19647451400756835, + "step": 167500 + }, + { + "epoch": 56.14741603149343, + "grad_norm": 0.7853075861930847, + "learning_rate": 2.1938525963149077e-05, + "loss": 0.19717487335205078, + "step": 167600 + }, + { + "epoch": 56.18091967501466, + "grad_norm": 0.6808475852012634, + "learning_rate": 2.1921775544388613e-05, + "loss": 0.19807977676391603, + "step": 167700 + }, + { + "epoch": 56.21442331853589, + "grad_norm": 0.6541131734848022, + "learning_rate": 2.1905025125628142e-05, + "loss": 0.19757047653198243, + "step": 167800 + }, + { + "epoch": 56.24792696205712, + "grad_norm": 0.7412530183792114, + "learning_rate": 2.1888274706867674e-05, + "loss": 0.19785118103027344, + "step": 167900 + }, + { + "epoch": 56.28143060557836, + "grad_norm": 0.7527230978012085, + "learning_rate": 2.1871524288107203e-05, + "loss": 0.19891765594482422, + "step": 168000 + }, + { + "epoch": 56.314934249099586, + "grad_norm": 0.7702918648719788, + "learning_rate": 2.1854773869346735e-05, + "loss": 0.19912639617919922, + "step": 168100 + }, + { + "epoch": 56.34843789262082, + "grad_norm": 0.9410870671272278, + "learning_rate": 2.1838023450586264e-05, + "loss": 0.19807853698730468, + "step": 168200 + }, + { + "epoch": 56.38194153614206, + "grad_norm": 0.7551661133766174, + "learning_rate": 2.18212730318258e-05, + "loss": 0.19915082931518555, + "step": 168300 + }, + { + "epoch": 56.41544517966329, + "grad_norm": 0.8068090081214905, + "learning_rate": 2.1804522613065328e-05, + "loss": 0.19918592453002928, + "step": 168400 + }, + { + "epoch": 56.44894882318452, + "grad_norm": 0.8415470123291016, + "learning_rate": 2.1787939698492464e-05, + "loss": 0.19998703002929688, + "step": 168500 + }, + { + "epoch": 56.48245246670575, + "grad_norm": 0.6690595149993896, + "learning_rate": 2.1771189279731993e-05, + "loss": 0.2002570152282715, + "step": 168600 + }, + { + "epoch": 56.51595611022699, + "grad_norm": 0.8166069984436035, + "learning_rate": 2.1754438860971525e-05, + "loss": 0.20179470062255858, + "step": 168700 + }, + { + "epoch": 56.54945975374822, + "grad_norm": 0.7660237550735474, + "learning_rate": 2.1737688442211057e-05, + "loss": 0.20062505722045898, + "step": 168800 + }, + { + "epoch": 56.58296339726945, + "grad_norm": 0.8243525624275208, + "learning_rate": 2.1720938023450586e-05, + "loss": 0.2011745071411133, + "step": 168900 + }, + { + "epoch": 56.61646704079069, + "grad_norm": 0.7057405114173889, + "learning_rate": 2.170418760469012e-05, + "loss": 0.2007113838195801, + "step": 169000 + }, + { + "epoch": 56.64997068431192, + "grad_norm": 0.8495818376541138, + "learning_rate": 2.1687437185929647e-05, + "loss": 0.20225597381591798, + "step": 169100 + }, + { + "epoch": 56.68347432783315, + "grad_norm": 0.6715584397315979, + "learning_rate": 2.167068676716918e-05, + "loss": 0.20023557662963867, + "step": 169200 + }, + { + "epoch": 56.71697797135438, + "grad_norm": 0.6438612937927246, + "learning_rate": 2.1653936348408708e-05, + "loss": 0.2012915802001953, + "step": 169300 + }, + { + "epoch": 56.75048161487562, + "grad_norm": 0.854141116142273, + "learning_rate": 2.1637185929648244e-05, + "loss": 0.20242010116577147, + "step": 169400 + }, + { + "epoch": 56.783985258396854, + "grad_norm": 0.7206624150276184, + "learning_rate": 2.1620435510887773e-05, + "loss": 0.20245513916015626, + "step": 169500 + }, + { + "epoch": 56.81748890191808, + "grad_norm": 0.6744206547737122, + "learning_rate": 2.1603685092127305e-05, + "loss": 0.20179567337036133, + "step": 169600 + }, + { + "epoch": 56.85099254543932, + "grad_norm": 0.7552564740180969, + "learning_rate": 2.1586934673366834e-05, + "loss": 0.20230600357055664, + "step": 169700 + }, + { + "epoch": 56.88449618896055, + "grad_norm": 0.8486445546150208, + "learning_rate": 2.1570184254606366e-05, + "loss": 0.20117643356323242, + "step": 169800 + }, + { + "epoch": 56.91799983248178, + "grad_norm": 0.5880848169326782, + "learning_rate": 2.1553433835845895e-05, + "loss": 0.20292966842651367, + "step": 169900 + }, + { + "epoch": 56.95150347600301, + "grad_norm": 0.7727257013320923, + "learning_rate": 2.153668341708543e-05, + "loss": 0.2035549736022949, + "step": 170000 + }, + { + "epoch": 56.98500711952425, + "grad_norm": 0.7095633745193481, + "learning_rate": 2.151993299832496e-05, + "loss": 0.20257196426391602, + "step": 170100 + }, + { + "epoch": 57.01842700393668, + "grad_norm": 0.5395858883857727, + "learning_rate": 2.150318257956449e-05, + "loss": 0.19870391845703125, + "step": 170200 + }, + { + "epoch": 57.05193064745791, + "grad_norm": 0.6598409414291382, + "learning_rate": 2.148643216080402e-05, + "loss": 0.1953832244873047, + "step": 170300 + }, + { + "epoch": 57.085434290979144, + "grad_norm": 0.9595073461532593, + "learning_rate": 2.1469681742043552e-05, + "loss": 0.19685894012451172, + "step": 170400 + }, + { + "epoch": 57.11893793450038, + "grad_norm": 0.5701305866241455, + "learning_rate": 2.1453098827470688e-05, + "loss": 0.19607532501220704, + "step": 170500 + }, + { + "epoch": 57.15244157802161, + "grad_norm": 0.6835476160049438, + "learning_rate": 2.143634840871022e-05, + "loss": 0.1967610549926758, + "step": 170600 + }, + { + "epoch": 57.185945221542845, + "grad_norm": 0.5928249955177307, + "learning_rate": 2.141959798994975e-05, + "loss": 0.19592588424682617, + "step": 170700 + }, + { + "epoch": 57.219448865064074, + "grad_norm": 0.7820493578910828, + "learning_rate": 2.140284757118928e-05, + "loss": 0.19711441040039063, + "step": 170800 + }, + { + "epoch": 57.25295250858531, + "grad_norm": 0.7720481753349304, + "learning_rate": 2.138609715242881e-05, + "loss": 0.19725584030151366, + "step": 170900 + }, + { + "epoch": 57.28645615210654, + "grad_norm": 0.7418736219406128, + "learning_rate": 2.1369346733668343e-05, + "loss": 0.19777252197265624, + "step": 171000 + }, + { + "epoch": 57.319959795627774, + "grad_norm": 0.7071073055267334, + "learning_rate": 2.1352596314907875e-05, + "loss": 0.19808469772338866, + "step": 171100 + }, + { + "epoch": 57.35346343914901, + "grad_norm": 0.7375087738037109, + "learning_rate": 2.1335845896147404e-05, + "loss": 0.19767127990722655, + "step": 171200 + }, + { + "epoch": 57.38696708267024, + "grad_norm": 0.8487064838409424, + "learning_rate": 2.1319095477386936e-05, + "loss": 0.19986190795898437, + "step": 171300 + }, + { + "epoch": 57.420470726191475, + "grad_norm": 0.8072951436042786, + "learning_rate": 2.1302345058626465e-05, + "loss": 0.19746374130249023, + "step": 171400 + }, + { + "epoch": 57.453974369712704, + "grad_norm": 0.8079342842102051, + "learning_rate": 2.1285594639865997e-05, + "loss": 0.19960382461547851, + "step": 171500 + }, + { + "epoch": 57.48747801323394, + "grad_norm": 0.8104588389396667, + "learning_rate": 2.126884422110553e-05, + "loss": 0.20039827346801758, + "step": 171600 + }, + { + "epoch": 57.520981656755175, + "grad_norm": 0.753643274307251, + "learning_rate": 2.125209380234506e-05, + "loss": 0.1997998046875, + "step": 171700 + }, + { + "epoch": 57.554485300276404, + "grad_norm": 0.8228442668914795, + "learning_rate": 2.123534338358459e-05, + "loss": 0.19931909561157227, + "step": 171800 + }, + { + "epoch": 57.58798894379764, + "grad_norm": 0.8214404582977295, + "learning_rate": 2.1218592964824122e-05, + "loss": 0.19911916732788085, + "step": 171900 + }, + { + "epoch": 57.62149258731887, + "grad_norm": 0.6019760370254517, + "learning_rate": 2.120184254606365e-05, + "loss": 0.2016813850402832, + "step": 172000 + }, + { + "epoch": 57.654996230840105, + "grad_norm": 0.6880699396133423, + "learning_rate": 2.1185092127303183e-05, + "loss": 0.19929651260375977, + "step": 172100 + }, + { + "epoch": 57.688499874361334, + "grad_norm": 0.69806969165802, + "learning_rate": 2.1168341708542712e-05, + "loss": 0.2015073585510254, + "step": 172200 + }, + { + "epoch": 57.72200351788257, + "grad_norm": 0.6724705100059509, + "learning_rate": 2.1151591289782248e-05, + "loss": 0.20101812362670898, + "step": 172300 + }, + { + "epoch": 57.755507161403806, + "grad_norm": 0.8854671716690063, + "learning_rate": 2.1134840871021777e-05, + "loss": 0.20211099624633788, + "step": 172400 + }, + { + "epoch": 57.789010804925034, + "grad_norm": 0.7592790722846985, + "learning_rate": 2.111809045226131e-05, + "loss": 0.20073314666748046, + "step": 172500 + }, + { + "epoch": 57.82251444844627, + "grad_norm": 0.7253840565681458, + "learning_rate": 2.1101340033500838e-05, + "loss": 0.2017323112487793, + "step": 172600 + }, + { + "epoch": 57.8560180919675, + "grad_norm": 0.7471290230751038, + "learning_rate": 2.1084757118927977e-05, + "loss": 0.20244625091552734, + "step": 172700 + }, + { + "epoch": 57.889521735488735, + "grad_norm": 0.8345232009887695, + "learning_rate": 2.1068006700167506e-05, + "loss": 0.20169891357421876, + "step": 172800 + }, + { + "epoch": 57.923025379009964, + "grad_norm": 0.8078505396842957, + "learning_rate": 2.1051256281407038e-05, + "loss": 0.20322864532470702, + "step": 172900 + }, + { + "epoch": 57.9565290225312, + "grad_norm": 0.8274567127227783, + "learning_rate": 2.1034505862646567e-05, + "loss": 0.20089473724365234, + "step": 173000 + }, + { + "epoch": 57.990032666052436, + "grad_norm": 0.6914857029914856, + "learning_rate": 2.10177554438861e-05, + "loss": 0.20304906845092774, + "step": 173100 + }, + { + "epoch": 58.02345255046486, + "grad_norm": 0.6851274371147156, + "learning_rate": 2.1001005025125628e-05, + "loss": 0.1973126220703125, + "step": 173200 + }, + { + "epoch": 58.056956193986096, + "grad_norm": 0.5594986081123352, + "learning_rate": 2.098425460636516e-05, + "loss": 0.19482255935668946, + "step": 173300 + }, + { + "epoch": 58.09045983750733, + "grad_norm": 0.6892759203910828, + "learning_rate": 2.0967504187604692e-05, + "loss": 0.19560087203979493, + "step": 173400 + }, + { + "epoch": 58.12396348102856, + "grad_norm": 0.6023077368736267, + "learning_rate": 2.095075376884422e-05, + "loss": 0.1957664108276367, + "step": 173500 + }, + { + "epoch": 58.1574671245498, + "grad_norm": 0.6524220108985901, + "learning_rate": 2.0934003350083753e-05, + "loss": 0.19625062942504884, + "step": 173600 + }, + { + "epoch": 58.190970768071026, + "grad_norm": 0.9801384806632996, + "learning_rate": 2.0917252931323282e-05, + "loss": 0.1955522346496582, + "step": 173700 + }, + { + "epoch": 58.22447441159226, + "grad_norm": 0.8744773864746094, + "learning_rate": 2.0900502512562814e-05, + "loss": 0.19638490676879883, + "step": 173800 + }, + { + "epoch": 58.25797805511349, + "grad_norm": 0.6583356261253357, + "learning_rate": 2.0883752093802346e-05, + "loss": 0.1966208267211914, + "step": 173900 + }, + { + "epoch": 58.291481698634726, + "grad_norm": 0.6736335754394531, + "learning_rate": 2.086700167504188e-05, + "loss": 0.1969454765319824, + "step": 174000 + }, + { + "epoch": 58.32498534215596, + "grad_norm": 0.9140983819961548, + "learning_rate": 2.0850251256281408e-05, + "loss": 0.19811725616455078, + "step": 174100 + }, + { + "epoch": 58.35848898567719, + "grad_norm": 0.825357973575592, + "learning_rate": 2.083350083752094e-05, + "loss": 0.19800840377807616, + "step": 174200 + }, + { + "epoch": 58.39199262919843, + "grad_norm": 0.8800440430641174, + "learning_rate": 2.081675041876047e-05, + "loss": 0.1982166862487793, + "step": 174300 + }, + { + "epoch": 58.425496272719656, + "grad_norm": 0.7681903839111328, + "learning_rate": 2.08e-05, + "loss": 0.199152889251709, + "step": 174400 + }, + { + "epoch": 58.45899991624089, + "grad_norm": 0.7516371607780457, + "learning_rate": 2.0783249581239533e-05, + "loss": 0.1978353500366211, + "step": 174500 + }, + { + "epoch": 58.49250355976213, + "grad_norm": 0.7671756148338318, + "learning_rate": 2.0766499162479065e-05, + "loss": 0.19854022979736327, + "step": 174600 + }, + { + "epoch": 58.526007203283356, + "grad_norm": 0.6201814413070679, + "learning_rate": 2.0749916247906198e-05, + "loss": 0.19920494079589843, + "step": 174700 + }, + { + "epoch": 58.55951084680459, + "grad_norm": 0.8798500299453735, + "learning_rate": 2.073316582914573e-05, + "loss": 0.20001602172851562, + "step": 174800 + }, + { + "epoch": 58.59301449032582, + "grad_norm": 0.5957375168800354, + "learning_rate": 2.071641541038526e-05, + "loss": 0.1991959571838379, + "step": 174900 + }, + { + "epoch": 58.62651813384706, + "grad_norm": 0.84260493516922, + "learning_rate": 2.069966499162479e-05, + "loss": 0.20048974990844726, + "step": 175000 + }, + { + "epoch": 58.660021777368286, + "grad_norm": 0.6994961500167847, + "learning_rate": 2.0682914572864323e-05, + "loss": 0.19937900543212891, + "step": 175100 + }, + { + "epoch": 58.69352542088952, + "grad_norm": 0.7235148549079895, + "learning_rate": 2.0666164154103852e-05, + "loss": 0.20066232681274415, + "step": 175200 + }, + { + "epoch": 58.72702906441076, + "grad_norm": 0.7542918920516968, + "learning_rate": 2.0649413735343384e-05, + "loss": 0.20042539596557618, + "step": 175300 + }, + { + "epoch": 58.760532707931986, + "grad_norm": 0.6566546559333801, + "learning_rate": 2.0632663316582916e-05, + "loss": 0.20085683822631836, + "step": 175400 + }, + { + "epoch": 58.79403635145322, + "grad_norm": 0.7434055209159851, + "learning_rate": 2.0615912897822445e-05, + "loss": 0.20140844345092773, + "step": 175500 + }, + { + "epoch": 58.82753999497445, + "grad_norm": 0.6652776002883911, + "learning_rate": 2.0599162479061977e-05, + "loss": 0.2017723274230957, + "step": 175600 + }, + { + "epoch": 58.86104363849569, + "grad_norm": 0.7438784837722778, + "learning_rate": 2.058241206030151e-05, + "loss": 0.20224170684814452, + "step": 175700 + }, + { + "epoch": 58.894547282016916, + "grad_norm": 0.842480480670929, + "learning_rate": 2.056566164154104e-05, + "loss": 0.2010243797302246, + "step": 175800 + }, + { + "epoch": 58.92805092553815, + "grad_norm": 0.777508020401001, + "learning_rate": 2.054891122278057e-05, + "loss": 0.20120513916015625, + "step": 175900 + }, + { + "epoch": 58.96155456905939, + "grad_norm": 0.7863830327987671, + "learning_rate": 2.05321608040201e-05, + "loss": 0.20216922760009765, + "step": 176000 + }, + { + "epoch": 58.995058212580616, + "grad_norm": 0.720203161239624, + "learning_rate": 2.051541038525963e-05, + "loss": 0.20130184173583984, + "step": 176100 + }, + { + "epoch": 59.02847809699305, + "grad_norm": 0.7132588028907776, + "learning_rate": 2.0498659966499164e-05, + "loss": 0.1958163070678711, + "step": 176200 + }, + { + "epoch": 59.061981740514284, + "grad_norm": 0.6386404037475586, + "learning_rate": 2.0481909547738696e-05, + "loss": 0.19423696517944336, + "step": 176300 + }, + { + "epoch": 59.09548538403551, + "grad_norm": 0.5817972421646118, + "learning_rate": 2.0465159128978225e-05, + "loss": 0.19470659255981446, + "step": 176400 + }, + { + "epoch": 59.12898902755675, + "grad_norm": 0.5699682831764221, + "learning_rate": 2.0448408710217757e-05, + "loss": 0.19486974716186523, + "step": 176500 + }, + { + "epoch": 59.16249267107798, + "grad_norm": 0.6849201321601868, + "learning_rate": 2.0431658291457286e-05, + "loss": 0.19612747192382812, + "step": 176600 + }, + { + "epoch": 59.19599631459921, + "grad_norm": 0.7165812253952026, + "learning_rate": 2.0414907872696818e-05, + "loss": 0.19578189849853517, + "step": 176700 + }, + { + "epoch": 59.22949995812044, + "grad_norm": 0.7262609004974365, + "learning_rate": 2.0398324958123954e-05, + "loss": 0.19529666900634765, + "step": 176800 + }, + { + "epoch": 59.26300360164168, + "grad_norm": 0.7515226006507874, + "learning_rate": 2.0381574539363486e-05, + "loss": 0.1967916488647461, + "step": 176900 + }, + { + "epoch": 59.296507245162914, + "grad_norm": 0.675984799861908, + "learning_rate": 2.0364824120603015e-05, + "loss": 0.19698150634765624, + "step": 177000 + }, + { + "epoch": 59.33001088868414, + "grad_norm": 0.9520745277404785, + "learning_rate": 2.0348073701842547e-05, + "loss": 0.19764524459838867, + "step": 177100 + }, + { + "epoch": 59.36351453220538, + "grad_norm": 0.6780461072921753, + "learning_rate": 2.033132328308208e-05, + "loss": 0.19658233642578124, + "step": 177200 + }, + { + "epoch": 59.39701817572661, + "grad_norm": 0.6440721750259399, + "learning_rate": 2.031457286432161e-05, + "loss": 0.19660577774047852, + "step": 177300 + }, + { + "epoch": 59.43052181924784, + "grad_norm": 0.7188435196876526, + "learning_rate": 2.029782244556114e-05, + "loss": 0.19726680755615233, + "step": 177400 + }, + { + "epoch": 59.46402546276908, + "grad_norm": 0.680558979511261, + "learning_rate": 2.028107202680067e-05, + "loss": 0.19743047714233397, + "step": 177500 + }, + { + "epoch": 59.49752910629031, + "grad_norm": 0.7961515188217163, + "learning_rate": 2.02643216080402e-05, + "loss": 0.19772005081176758, + "step": 177600 + }, + { + "epoch": 59.531032749811544, + "grad_norm": 0.6180649995803833, + "learning_rate": 2.024757118927973e-05, + "loss": 0.1990138053894043, + "step": 177700 + }, + { + "epoch": 59.56453639333277, + "grad_norm": 0.7766602039337158, + "learning_rate": 2.0230820770519263e-05, + "loss": 0.19866539001464845, + "step": 177800 + }, + { + "epoch": 59.59804003685401, + "grad_norm": 0.7700449824333191, + "learning_rate": 2.0214070351758795e-05, + "loss": 0.198470516204834, + "step": 177900 + }, + { + "epoch": 59.63154368037524, + "grad_norm": 0.7601004838943481, + "learning_rate": 2.0197319932998327e-05, + "loss": 0.20065229415893554, + "step": 178000 + }, + { + "epoch": 59.665047323896474, + "grad_norm": 0.8511313796043396, + "learning_rate": 2.0180569514237856e-05, + "loss": 0.20094491958618163, + "step": 178100 + }, + { + "epoch": 59.69855096741771, + "grad_norm": 0.6393927931785583, + "learning_rate": 2.0163819095477388e-05, + "loss": 0.19916282653808592, + "step": 178200 + }, + { + "epoch": 59.73205461093894, + "grad_norm": 0.8600590229034424, + "learning_rate": 2.0147068676716917e-05, + "loss": 0.19939659118652345, + "step": 178300 + }, + { + "epoch": 59.765558254460174, + "grad_norm": 0.642556369304657, + "learning_rate": 2.013031825795645e-05, + "loss": 0.2003472137451172, + "step": 178400 + }, + { + "epoch": 59.7990618979814, + "grad_norm": 0.7224367260932922, + "learning_rate": 2.011356783919598e-05, + "loss": 0.19969842910766603, + "step": 178500 + }, + { + "epoch": 59.83256554150264, + "grad_norm": 0.7427322268486023, + "learning_rate": 2.0096817420435514e-05, + "loss": 0.19960586547851564, + "step": 178600 + }, + { + "epoch": 59.866069185023875, + "grad_norm": 0.7013212442398071, + "learning_rate": 2.0080067001675042e-05, + "loss": 0.2002570915222168, + "step": 178700 + }, + { + "epoch": 59.899572828545104, + "grad_norm": 0.852935791015625, + "learning_rate": 2.0063484087102178e-05, + "loss": 0.2009134292602539, + "step": 178800 + }, + { + "epoch": 59.93307647206634, + "grad_norm": 0.875970184803009, + "learning_rate": 2.004673366834171e-05, + "loss": 0.20090538024902344, + "step": 178900 + }, + { + "epoch": 59.96658011558757, + "grad_norm": 0.7883792519569397, + "learning_rate": 2.0029983249581243e-05, + "loss": 0.20025901794433593, + "step": 179000 + }, + { + "epoch": 60.0, + "grad_norm": 0.8162919878959656, + "learning_rate": 2.001323283082077e-05, + "loss": 0.2026140022277832, + "step": 179100 + }, + { + "epoch": 60.033503643521236, + "grad_norm": 0.6830130219459534, + "learning_rate": 1.9996482412060304e-05, + "loss": 0.19378650665283204, + "step": 179200 + }, + { + "epoch": 60.067007287042465, + "grad_norm": 0.6668891906738281, + "learning_rate": 1.9979731993299833e-05, + "loss": 0.19362451553344726, + "step": 179300 + }, + { + "epoch": 60.1005109305637, + "grad_norm": 0.7308112382888794, + "learning_rate": 1.9962981574539365e-05, + "loss": 0.19429069519042969, + "step": 179400 + }, + { + "epoch": 60.13401457408493, + "grad_norm": 0.7730607390403748, + "learning_rate": 1.9946231155778897e-05, + "loss": 0.19423646926879884, + "step": 179500 + }, + { + "epoch": 60.167518217606165, + "grad_norm": 0.624254047870636, + "learning_rate": 1.9929480737018426e-05, + "loss": 0.19518238067626953, + "step": 179600 + }, + { + "epoch": 60.201021861127394, + "grad_norm": 0.917464017868042, + "learning_rate": 1.9912730318257958e-05, + "loss": 0.1952109718322754, + "step": 179700 + }, + { + "epoch": 60.23452550464863, + "grad_norm": 0.7360493540763855, + "learning_rate": 1.9895979899497487e-05, + "loss": 0.19446746826171876, + "step": 179800 + }, + { + "epoch": 60.268029148169866, + "grad_norm": 0.7760195732116699, + "learning_rate": 1.987922948073702e-05, + "loss": 0.1961222457885742, + "step": 179900 + }, + { + "epoch": 60.301532791691095, + "grad_norm": 0.7055202126502991, + "learning_rate": 1.9862479061976548e-05, + "loss": 0.19603208541870118, + "step": 180000 + }, + { + "epoch": 60.33503643521233, + "grad_norm": 0.7124981880187988, + "learning_rate": 1.9845728643216083e-05, + "loss": 0.19644119262695312, + "step": 180100 + }, + { + "epoch": 60.36854007873356, + "grad_norm": 0.6831589341163635, + "learning_rate": 1.9828978224455612e-05, + "loss": 0.19591159820556642, + "step": 180200 + }, + { + "epoch": 60.402043722254795, + "grad_norm": 0.6932199001312256, + "learning_rate": 1.9812227805695144e-05, + "loss": 0.19705738067626954, + "step": 180300 + }, + { + "epoch": 60.43554736577603, + "grad_norm": 0.6487602591514587, + "learning_rate": 1.9795477386934673e-05, + "loss": 0.19764183044433595, + "step": 180400 + }, + { + "epoch": 60.46905100929726, + "grad_norm": 0.760643720626831, + "learning_rate": 1.9778726968174205e-05, + "loss": 0.19725812911987306, + "step": 180500 + }, + { + "epoch": 60.502554652818496, + "grad_norm": 0.8425685167312622, + "learning_rate": 1.9761976549413734e-05, + "loss": 0.19825616836547852, + "step": 180600 + }, + { + "epoch": 60.536058296339725, + "grad_norm": 0.7290912866592407, + "learning_rate": 1.9745226130653267e-05, + "loss": 0.19793628692626952, + "step": 180700 + }, + { + "epoch": 60.56956193986096, + "grad_norm": 0.7724213004112244, + "learning_rate": 1.9728643216080402e-05, + "loss": 0.19957996368408204, + "step": 180800 + }, + { + "epoch": 60.60306558338219, + "grad_norm": 0.8002983927726746, + "learning_rate": 1.9711892797319935e-05, + "loss": 0.19841293334960938, + "step": 180900 + }, + { + "epoch": 60.636569226903426, + "grad_norm": 0.8721250295639038, + "learning_rate": 1.9695142378559463e-05, + "loss": 0.1982705307006836, + "step": 181000 + }, + { + "epoch": 60.67007287042466, + "grad_norm": 0.9120819568634033, + "learning_rate": 1.9678391959798996e-05, + "loss": 0.19878549575805665, + "step": 181100 + }, + { + "epoch": 60.70357651394589, + "grad_norm": 0.7080308198928833, + "learning_rate": 1.9661641541038528e-05, + "loss": 0.19935232162475586, + "step": 181200 + }, + { + "epoch": 60.737080157467126, + "grad_norm": 0.7024886012077332, + "learning_rate": 1.964489112227806e-05, + "loss": 0.19872413635253905, + "step": 181300 + }, + { + "epoch": 60.770583800988355, + "grad_norm": 0.6947377324104309, + "learning_rate": 1.962814070351759e-05, + "loss": 0.19973325729370117, + "step": 181400 + }, + { + "epoch": 60.80408744450959, + "grad_norm": 0.7923586964607239, + "learning_rate": 1.961139028475712e-05, + "loss": 0.1994416046142578, + "step": 181500 + }, + { + "epoch": 60.83759108803083, + "grad_norm": 0.7876746654510498, + "learning_rate": 1.959463986599665e-05, + "loss": 0.20001832962036134, + "step": 181600 + }, + { + "epoch": 60.871094731552056, + "grad_norm": 0.6669028401374817, + "learning_rate": 1.9577889447236182e-05, + "loss": 0.19931718826293945, + "step": 181700 + }, + { + "epoch": 60.90459837507329, + "grad_norm": 0.8376245498657227, + "learning_rate": 1.9561139028475714e-05, + "loss": 0.19980306625366212, + "step": 181800 + }, + { + "epoch": 60.93810201859452, + "grad_norm": 0.8353832960128784, + "learning_rate": 1.9544388609715243e-05, + "loss": 0.19981901168823243, + "step": 181900 + }, + { + "epoch": 60.971605662115756, + "grad_norm": 0.7106568217277527, + "learning_rate": 1.9527638190954775e-05, + "loss": 0.19973602294921874, + "step": 182000 + }, + { + "epoch": 61.00502554652819, + "grad_norm": 0.6675083637237549, + "learning_rate": 1.9510887772194304e-05, + "loss": 0.20030658721923827, + "step": 182100 + }, + { + "epoch": 61.03852919004942, + "grad_norm": 0.6827961206436157, + "learning_rate": 1.9494137353433836e-05, + "loss": 0.19295509338378905, + "step": 182200 + }, + { + "epoch": 61.07203283357065, + "grad_norm": 0.8352850675582886, + "learning_rate": 1.9477386934673365e-05, + "loss": 0.19397199630737305, + "step": 182300 + }, + { + "epoch": 61.10553647709188, + "grad_norm": 0.6060226559638977, + "learning_rate": 1.94606365159129e-05, + "loss": 0.19397262573242188, + "step": 182400 + }, + { + "epoch": 61.13904012061312, + "grad_norm": 0.6782211065292358, + "learning_rate": 1.944388609715243e-05, + "loss": 0.1942317581176758, + "step": 182500 + }, + { + "epoch": 61.172543764134346, + "grad_norm": 0.6505800485610962, + "learning_rate": 1.9427135678391962e-05, + "loss": 0.19382064819335937, + "step": 182600 + }, + { + "epoch": 61.20604740765558, + "grad_norm": 0.6470309495925903, + "learning_rate": 1.941038525963149e-05, + "loss": 0.19352495193481445, + "step": 182700 + }, + { + "epoch": 61.23955105117682, + "grad_norm": 0.7394313216209412, + "learning_rate": 1.9393634840871023e-05, + "loss": 0.19527189254760743, + "step": 182800 + }, + { + "epoch": 61.27305469469805, + "grad_norm": 0.6375427842140198, + "learning_rate": 1.937705192629816e-05, + "loss": 0.19507966995239256, + "step": 182900 + }, + { + "epoch": 61.30655833821928, + "grad_norm": 0.7445289492607117, + "learning_rate": 1.936030150753769e-05, + "loss": 0.19499330520629882, + "step": 183000 + }, + { + "epoch": 61.34006198174051, + "grad_norm": 0.6758365631103516, + "learning_rate": 1.934355108877722e-05, + "loss": 0.19620643615722655, + "step": 183100 + }, + { + "epoch": 61.37356562526175, + "grad_norm": 0.682247519493103, + "learning_rate": 1.9326800670016752e-05, + "loss": 0.19641605377197266, + "step": 183200 + }, + { + "epoch": 61.40706926878298, + "grad_norm": 0.6681833267211914, + "learning_rate": 1.931005025125628e-05, + "loss": 0.1975366973876953, + "step": 183300 + }, + { + "epoch": 61.44057291230421, + "grad_norm": 0.6850043535232544, + "learning_rate": 1.9293299832495813e-05, + "loss": 0.1968943405151367, + "step": 183400 + }, + { + "epoch": 61.47407655582545, + "grad_norm": 0.769083559513092, + "learning_rate": 1.9276549413735345e-05, + "loss": 0.19727476119995116, + "step": 183500 + }, + { + "epoch": 61.50758019934668, + "grad_norm": 0.5792109370231628, + "learning_rate": 1.9259798994974878e-05, + "loss": 0.19699573516845703, + "step": 183600 + }, + { + "epoch": 61.54108384286791, + "grad_norm": 0.7564917206764221, + "learning_rate": 1.9243048576214406e-05, + "loss": 0.19748397827148437, + "step": 183700 + }, + { + "epoch": 61.57458748638914, + "grad_norm": 0.6447178721427917, + "learning_rate": 1.922629815745394e-05, + "loss": 0.1989639663696289, + "step": 183800 + }, + { + "epoch": 61.60809112991038, + "grad_norm": 0.5742529034614563, + "learning_rate": 1.9209547738693467e-05, + "loss": 0.19746633529663085, + "step": 183900 + }, + { + "epoch": 61.64159477343161, + "grad_norm": 0.7394194006919861, + "learning_rate": 1.9192797319933e-05, + "loss": 0.19821161270141602, + "step": 184000 + }, + { + "epoch": 61.67509841695284, + "grad_norm": 0.6600359678268433, + "learning_rate": 1.9176046901172532e-05, + "loss": 0.1982976722717285, + "step": 184100 + }, + { + "epoch": 61.70860206047408, + "grad_norm": 0.5898655652999878, + "learning_rate": 1.915929648241206e-05, + "loss": 0.19801706314086914, + "step": 184200 + }, + { + "epoch": 61.74210570399531, + "grad_norm": 0.7864146828651428, + "learning_rate": 1.9142546063651593e-05, + "loss": 0.19834369659423828, + "step": 184300 + }, + { + "epoch": 61.77560934751654, + "grad_norm": 0.783885657787323, + "learning_rate": 1.912579564489112e-05, + "loss": 0.19943191528320312, + "step": 184400 + }, + { + "epoch": 61.80911299103778, + "grad_norm": 0.7565669417381287, + "learning_rate": 1.9109045226130654e-05, + "loss": 0.19939350128173827, + "step": 184500 + }, + { + "epoch": 61.84261663455901, + "grad_norm": 0.663527250289917, + "learning_rate": 1.9092294807370183e-05, + "loss": 0.1986519241333008, + "step": 184600 + }, + { + "epoch": 61.87612027808024, + "grad_norm": 0.7392609715461731, + "learning_rate": 1.9075544388609718e-05, + "loss": 0.19995809555053712, + "step": 184700 + }, + { + "epoch": 61.90962392160147, + "grad_norm": 0.7164571285247803, + "learning_rate": 1.9058793969849247e-05, + "loss": 0.1989099884033203, + "step": 184800 + }, + { + "epoch": 61.94312756512271, + "grad_norm": 0.7456199526786804, + "learning_rate": 1.904204355108878e-05, + "loss": 0.19987648010253906, + "step": 184900 + }, + { + "epoch": 61.97663120864394, + "grad_norm": 0.6419495344161987, + "learning_rate": 1.9025460636515912e-05, + "loss": 0.1988045310974121, + "step": 185000 + }, + { + "epoch": 62.01005109305637, + "grad_norm": 0.6616671085357666, + "learning_rate": 1.9008710217755447e-05, + "loss": 0.19750312805175782, + "step": 185100 + }, + { + "epoch": 62.043554736577605, + "grad_norm": 0.667393147945404, + "learning_rate": 1.8991959798994976e-05, + "loss": 0.19275453567504883, + "step": 185200 + }, + { + "epoch": 62.07705838009883, + "grad_norm": 0.75070720911026, + "learning_rate": 1.897520938023451e-05, + "loss": 0.19383440017700196, + "step": 185300 + }, + { + "epoch": 62.11056202362007, + "grad_norm": 0.6957711577415466, + "learning_rate": 1.8958458961474037e-05, + "loss": 0.19298004150390624, + "step": 185400 + }, + { + "epoch": 62.1440656671413, + "grad_norm": 0.7118070721626282, + "learning_rate": 1.894170854271357e-05, + "loss": 0.19372062683105468, + "step": 185500 + }, + { + "epoch": 62.177569310662534, + "grad_norm": 0.6568797826766968, + "learning_rate": 1.8924958123953098e-05, + "loss": 0.19365182876586914, + "step": 185600 + }, + { + "epoch": 62.21107295418377, + "grad_norm": 0.6880303621292114, + "learning_rate": 1.890820770519263e-05, + "loss": 0.1950899887084961, + "step": 185700 + }, + { + "epoch": 62.244576597705, + "grad_norm": 0.6604440808296204, + "learning_rate": 1.8891457286432163e-05, + "loss": 0.19547990798950196, + "step": 185800 + }, + { + "epoch": 62.278080241226235, + "grad_norm": 0.7336467504501343, + "learning_rate": 1.887470686767169e-05, + "loss": 0.19477594375610352, + "step": 185900 + }, + { + "epoch": 62.31158388474746, + "grad_norm": 0.6443986296653748, + "learning_rate": 1.8857956448911224e-05, + "loss": 0.19533748626708985, + "step": 186000 + }, + { + "epoch": 62.3450875282687, + "grad_norm": 0.617526650428772, + "learning_rate": 1.8841206030150753e-05, + "loss": 0.19593568801879882, + "step": 186100 + }, + { + "epoch": 62.378591171789935, + "grad_norm": 0.6622116565704346, + "learning_rate": 1.8824455611390285e-05, + "loss": 0.19563573837280274, + "step": 186200 + }, + { + "epoch": 62.412094815311164, + "grad_norm": 0.6662573218345642, + "learning_rate": 1.8807705192629817e-05, + "loss": 0.19559219360351562, + "step": 186300 + }, + { + "epoch": 62.4455984588324, + "grad_norm": 0.7779511213302612, + "learning_rate": 1.879095477386935e-05, + "loss": 0.19570056915283204, + "step": 186400 + }, + { + "epoch": 62.47910210235363, + "grad_norm": 0.6488950848579407, + "learning_rate": 1.8774204355108878e-05, + "loss": 0.19671340942382812, + "step": 186500 + }, + { + "epoch": 62.512605745874865, + "grad_norm": 0.6302568316459656, + "learning_rate": 1.875745393634841e-05, + "loss": 0.19646032333374022, + "step": 186600 + }, + { + "epoch": 62.54610938939609, + "grad_norm": 0.6451594829559326, + "learning_rate": 1.874070351758794e-05, + "loss": 0.19605607986450196, + "step": 186700 + }, + { + "epoch": 62.57961303291733, + "grad_norm": 0.7226560711860657, + "learning_rate": 1.872395309882747e-05, + "loss": 0.19651512145996095, + "step": 186800 + }, + { + "epoch": 62.613116676438565, + "grad_norm": 0.7879689335823059, + "learning_rate": 1.8707202680067e-05, + "loss": 0.1969459342956543, + "step": 186900 + }, + { + "epoch": 62.646620319959794, + "grad_norm": 0.859521746635437, + "learning_rate": 1.869061976549414e-05, + "loss": 0.19710365295410157, + "step": 187000 + }, + { + "epoch": 62.68012396348103, + "grad_norm": 0.7182042002677917, + "learning_rate": 1.8673869346733668e-05, + "loss": 0.1975703239440918, + "step": 187100 + }, + { + "epoch": 62.71362760700226, + "grad_norm": 0.7117863893508911, + "learning_rate": 1.86571189279732e-05, + "loss": 0.19800674438476562, + "step": 187200 + }, + { + "epoch": 62.747131250523495, + "grad_norm": 0.8124322295188904, + "learning_rate": 1.864036850921273e-05, + "loss": 0.1976396369934082, + "step": 187300 + }, + { + "epoch": 62.78063489404473, + "grad_norm": 0.8003492951393127, + "learning_rate": 1.8623618090452265e-05, + "loss": 0.19788177490234374, + "step": 187400 + }, + { + "epoch": 62.81413853756596, + "grad_norm": 0.7933449149131775, + "learning_rate": 1.8606867671691794e-05, + "loss": 0.19794113159179688, + "step": 187500 + }, + { + "epoch": 62.847642181087195, + "grad_norm": 0.743191123008728, + "learning_rate": 1.8590117252931326e-05, + "loss": 0.19989189147949218, + "step": 187600 + }, + { + "epoch": 62.881145824608424, + "grad_norm": 0.662010669708252, + "learning_rate": 1.8573366834170855e-05, + "loss": 0.19854124069213866, + "step": 187700 + }, + { + "epoch": 62.91464946812966, + "grad_norm": 0.8278148174285889, + "learning_rate": 1.8556616415410387e-05, + "loss": 0.19968727111816406, + "step": 187800 + }, + { + "epoch": 62.94815311165089, + "grad_norm": 0.804415762424469, + "learning_rate": 1.8539865996649916e-05, + "loss": 0.19895530700683595, + "step": 187900 + }, + { + "epoch": 62.981656755172125, + "grad_norm": 0.7077623605728149, + "learning_rate": 1.8523115577889448e-05, + "loss": 0.19983070373535156, + "step": 188000 + }, + { + "epoch": 63.01507663958456, + "grad_norm": 0.5905118584632874, + "learning_rate": 1.850636515912898e-05, + "loss": 0.1953744888305664, + "step": 188100 + }, + { + "epoch": 63.048580283105785, + "grad_norm": 0.5887221693992615, + "learning_rate": 1.848961474036851e-05, + "loss": 0.19252130508422852, + "step": 188200 + }, + { + "epoch": 63.08208392662702, + "grad_norm": 0.6429964900016785, + "learning_rate": 1.847286432160804e-05, + "loss": 0.1936810302734375, + "step": 188300 + }, + { + "epoch": 63.11558757014826, + "grad_norm": 0.6943151354789734, + "learning_rate": 1.845611390284757e-05, + "loss": 0.1928156280517578, + "step": 188400 + }, + { + "epoch": 63.149091213669486, + "grad_norm": 0.7247923016548157, + "learning_rate": 1.8439363484087102e-05, + "loss": 0.19320756912231446, + "step": 188500 + }, + { + "epoch": 63.18259485719072, + "grad_norm": 0.6283583641052246, + "learning_rate": 1.842261306532663e-05, + "loss": 0.19241600036621093, + "step": 188600 + }, + { + "epoch": 63.21609850071195, + "grad_norm": 0.6737943291664124, + "learning_rate": 1.8405862646566167e-05, + "loss": 0.1937045669555664, + "step": 188700 + }, + { + "epoch": 63.24960214423319, + "grad_norm": 0.6524550914764404, + "learning_rate": 1.8389112227805695e-05, + "loss": 0.1929795265197754, + "step": 188800 + }, + { + "epoch": 63.283105787754415, + "grad_norm": 0.7188290953636169, + "learning_rate": 1.8372361809045228e-05, + "loss": 0.19419048309326173, + "step": 188900 + }, + { + "epoch": 63.31660943127565, + "grad_norm": 0.6564083099365234, + "learning_rate": 1.835577889447236e-05, + "loss": 0.1945943069458008, + "step": 189000 + }, + { + "epoch": 63.35011307479689, + "grad_norm": 0.9156805276870728, + "learning_rate": 1.8339028475711896e-05, + "loss": 0.1947199821472168, + "step": 189100 + }, + { + "epoch": 63.383616718318116, + "grad_norm": 0.6628890633583069, + "learning_rate": 1.8322278056951425e-05, + "loss": 0.19428998947143555, + "step": 189200 + }, + { + "epoch": 63.41712036183935, + "grad_norm": 0.5167578458786011, + "learning_rate": 1.8305527638190957e-05, + "loss": 0.19555074691772462, + "step": 189300 + }, + { + "epoch": 63.45062400536058, + "grad_norm": 0.8341636657714844, + "learning_rate": 1.8288777219430486e-05, + "loss": 0.1958403205871582, + "step": 189400 + }, + { + "epoch": 63.48412764888182, + "grad_norm": 0.7699781656265259, + "learning_rate": 1.8272026800670018e-05, + "loss": 0.1960818099975586, + "step": 189500 + }, + { + "epoch": 63.517631292403046, + "grad_norm": 0.7461984753608704, + "learning_rate": 1.8255276381909547e-05, + "loss": 0.1969795799255371, + "step": 189600 + }, + { + "epoch": 63.55113493592428, + "grad_norm": 0.8196810483932495, + "learning_rate": 1.8238525963149082e-05, + "loss": 0.1966191864013672, + "step": 189700 + }, + { + "epoch": 63.58463857944552, + "grad_norm": 0.7453595399856567, + "learning_rate": 1.822177554438861e-05, + "loss": 0.19745317459106446, + "step": 189800 + }, + { + "epoch": 63.618142222966746, + "grad_norm": 0.638787031173706, + "learning_rate": 1.8205025125628143e-05, + "loss": 0.19748239517211913, + "step": 189900 + }, + { + "epoch": 63.65164586648798, + "grad_norm": 0.8472653031349182, + "learning_rate": 1.8188274706867672e-05, + "loss": 0.19711460113525392, + "step": 190000 + }, + { + "epoch": 63.68514951000921, + "grad_norm": 0.6634200215339661, + "learning_rate": 1.8171524288107204e-05, + "loss": 0.19727699279785157, + "step": 190100 + }, + { + "epoch": 63.71865315353045, + "grad_norm": 0.7622882127761841, + "learning_rate": 1.8154773869346733e-05, + "loss": 0.19806449890136718, + "step": 190200 + }, + { + "epoch": 63.75215679705168, + "grad_norm": 0.6492070555686951, + "learning_rate": 1.8138023450586265e-05, + "loss": 0.19782337188720703, + "step": 190300 + }, + { + "epoch": 63.78566044057291, + "grad_norm": 0.7956305146217346, + "learning_rate": 1.8121273031825798e-05, + "loss": 0.19663129806518553, + "step": 190400 + }, + { + "epoch": 63.81916408409415, + "grad_norm": 0.5923272967338562, + "learning_rate": 1.8104522613065326e-05, + "loss": 0.19800495147705077, + "step": 190500 + }, + { + "epoch": 63.852667727615376, + "grad_norm": 0.6325972676277161, + "learning_rate": 1.808777219430486e-05, + "loss": 0.19802473068237306, + "step": 190600 + }, + { + "epoch": 63.88617137113661, + "grad_norm": 0.7037030458450317, + "learning_rate": 1.8071021775544387e-05, + "loss": 0.19737031936645508, + "step": 190700 + }, + { + "epoch": 63.91967501465784, + "grad_norm": 0.6459951996803284, + "learning_rate": 1.805427135678392e-05, + "loss": 0.19749345779418945, + "step": 190800 + }, + { + "epoch": 63.95317865817908, + "grad_norm": 0.7572121024131775, + "learning_rate": 1.8037520938023452e-05, + "loss": 0.199870548248291, + "step": 190900 + }, + { + "epoch": 63.98668230170031, + "grad_norm": 0.6550577878952026, + "learning_rate": 1.8020938023450588e-05, + "loss": 0.19845205307006836, + "step": 191000 + }, + { + "epoch": 64.02010218611274, + "grad_norm": 0.5528762340545654, + "learning_rate": 1.8004187604690117e-05, + "loss": 0.19315372467041014, + "step": 191100 + }, + { + "epoch": 64.05360582963397, + "grad_norm": 0.7415011525154114, + "learning_rate": 1.798743718592965e-05, + "loss": 0.1906199836730957, + "step": 191200 + }, + { + "epoch": 64.08710947315521, + "grad_norm": 0.5133525729179382, + "learning_rate": 1.797068676716918e-05, + "loss": 0.19169828414916992, + "step": 191300 + }, + { + "epoch": 64.12061311667644, + "grad_norm": 0.7105311155319214, + "learning_rate": 1.7953936348408713e-05, + "loss": 0.19295671463012695, + "step": 191400 + }, + { + "epoch": 64.15411676019767, + "grad_norm": 0.6510593295097351, + "learning_rate": 1.7937185929648242e-05, + "loss": 0.19301687240600585, + "step": 191500 + }, + { + "epoch": 64.18762040371891, + "grad_norm": 0.737304151058197, + "learning_rate": 1.7920435510887774e-05, + "loss": 0.19341800689697267, + "step": 191600 + }, + { + "epoch": 64.22112404724014, + "grad_norm": 0.7213296890258789, + "learning_rate": 1.7903685092127303e-05, + "loss": 0.19339723587036134, + "step": 191700 + }, + { + "epoch": 64.25462769076137, + "grad_norm": 0.6387230157852173, + "learning_rate": 1.7886934673366835e-05, + "loss": 0.19426511764526366, + "step": 191800 + }, + { + "epoch": 64.2881313342826, + "grad_norm": 0.5896677374839783, + "learning_rate": 1.7870184254606364e-05, + "loss": 0.19313657760620118, + "step": 191900 + }, + { + "epoch": 64.32163497780384, + "grad_norm": 0.6253547668457031, + "learning_rate": 1.78534338358459e-05, + "loss": 0.19436355590820312, + "step": 192000 + }, + { + "epoch": 64.35513862132507, + "grad_norm": 0.6272561550140381, + "learning_rate": 1.783668341708543e-05, + "loss": 0.1950385284423828, + "step": 192100 + }, + { + "epoch": 64.3886422648463, + "grad_norm": 0.6820735335350037, + "learning_rate": 1.781993299832496e-05, + "loss": 0.19447114944458008, + "step": 192200 + }, + { + "epoch": 64.42214590836754, + "grad_norm": 0.8564963340759277, + "learning_rate": 1.780318257956449e-05, + "loss": 0.19415367126464844, + "step": 192300 + }, + { + "epoch": 64.45564955188877, + "grad_norm": 0.6703295111656189, + "learning_rate": 1.7786432160804022e-05, + "loss": 0.19531801223754883, + "step": 192400 + }, + { + "epoch": 64.48915319541, + "grad_norm": 0.7819051146507263, + "learning_rate": 1.776968174204355e-05, + "loss": 0.19491588592529296, + "step": 192500 + }, + { + "epoch": 64.52265683893124, + "grad_norm": 0.5364665985107422, + "learning_rate": 1.7752931323283083e-05, + "loss": 0.1953544235229492, + "step": 192600 + }, + { + "epoch": 64.55616048245247, + "grad_norm": 0.5155049562454224, + "learning_rate": 1.7736180904522615e-05, + "loss": 0.19612747192382812, + "step": 192700 + }, + { + "epoch": 64.5896641259737, + "grad_norm": 0.809084951877594, + "learning_rate": 1.7719430485762144e-05, + "loss": 0.1966937255859375, + "step": 192800 + }, + { + "epoch": 64.62316776949493, + "grad_norm": 0.7905207276344299, + "learning_rate": 1.7702680067001676e-05, + "loss": 0.19525121688842773, + "step": 192900 + }, + { + "epoch": 64.65667141301617, + "grad_norm": 0.7242773771286011, + "learning_rate": 1.7686097152428812e-05, + "loss": 0.19637462615966797, + "step": 193000 + }, + { + "epoch": 64.6901750565374, + "grad_norm": 0.696966826915741, + "learning_rate": 1.7669346733668344e-05, + "loss": 0.19756622314453126, + "step": 193100 + }, + { + "epoch": 64.72367870005863, + "grad_norm": 0.6258018612861633, + "learning_rate": 1.7652596314907873e-05, + "loss": 0.19659183502197267, + "step": 193200 + }, + { + "epoch": 64.75718234357987, + "grad_norm": 0.6579128503799438, + "learning_rate": 1.7635845896147405e-05, + "loss": 0.19634262084960938, + "step": 193300 + }, + { + "epoch": 64.7906859871011, + "grad_norm": 0.6634902954101562, + "learning_rate": 1.7619095477386934e-05, + "loss": 0.19719581604003905, + "step": 193400 + }, + { + "epoch": 64.82418963062233, + "grad_norm": 0.7709892988204956, + "learning_rate": 1.7602345058626466e-05, + "loss": 0.19753650665283204, + "step": 193500 + }, + { + "epoch": 64.85769327414356, + "grad_norm": 0.7069748044013977, + "learning_rate": 1.7585594639866e-05, + "loss": 0.19717281341552734, + "step": 193600 + }, + { + "epoch": 64.8911969176648, + "grad_norm": 0.756540060043335, + "learning_rate": 1.756884422110553e-05, + "loss": 0.19797266006469727, + "step": 193700 + }, + { + "epoch": 64.92470056118603, + "grad_norm": 0.8358628749847412, + "learning_rate": 1.755209380234506e-05, + "loss": 0.19739683151245116, + "step": 193800 + }, + { + "epoch": 64.95820420470726, + "grad_norm": 0.7340553998947144, + "learning_rate": 1.753534338358459e-05, + "loss": 0.19825174331665038, + "step": 193900 + }, + { + "epoch": 64.9917078482285, + "grad_norm": 0.7182520627975464, + "learning_rate": 1.751859296482412e-05, + "loss": 0.1992794418334961, + "step": 194000 + }, + { + "epoch": 65.02512773264093, + "grad_norm": 0.7197110652923584, + "learning_rate": 1.7501842546063653e-05, + "loss": 0.19224626541137696, + "step": 194100 + }, + { + "epoch": 65.05863137616215, + "grad_norm": 0.704738199710846, + "learning_rate": 1.7485092127303185e-05, + "loss": 0.1910837173461914, + "step": 194200 + }, + { + "epoch": 65.0921350196834, + "grad_norm": 0.7330573201179504, + "learning_rate": 1.7468341708542714e-05, + "loss": 0.1925986099243164, + "step": 194300 + }, + { + "epoch": 65.12563866320463, + "grad_norm": 0.6279468536376953, + "learning_rate": 1.7451591289782246e-05, + "loss": 0.19241338729858398, + "step": 194400 + }, + { + "epoch": 65.15914230672585, + "grad_norm": 0.7558215856552124, + "learning_rate": 1.7434840871021778e-05, + "loss": 0.19235986709594727, + "step": 194500 + }, + { + "epoch": 65.19264595024708, + "grad_norm": 0.7638766765594482, + "learning_rate": 1.7418090452261307e-05, + "loss": 0.19314172744750976, + "step": 194600 + }, + { + "epoch": 65.22614959376833, + "grad_norm": 0.8271517753601074, + "learning_rate": 1.740134003350084e-05, + "loss": 0.19355636596679687, + "step": 194700 + }, + { + "epoch": 65.25965323728956, + "grad_norm": 0.6696556806564331, + "learning_rate": 1.7384589614740368e-05, + "loss": 0.19400758743286134, + "step": 194800 + }, + { + "epoch": 65.29315688081078, + "grad_norm": 0.6253610849380493, + "learning_rate": 1.73678391959799e-05, + "loss": 0.1946131706237793, + "step": 194900 + }, + { + "epoch": 65.32666052433203, + "grad_norm": 0.7860012054443359, + "learning_rate": 1.7351088777219432e-05, + "loss": 0.19406192779541015, + "step": 195000 + }, + { + "epoch": 65.36016416785326, + "grad_norm": 0.6729128360748291, + "learning_rate": 1.7334505862646565e-05, + "loss": 0.19439397811889647, + "step": 195100 + }, + { + "epoch": 65.39366781137448, + "grad_norm": 0.5755062699317932, + "learning_rate": 1.7317755443886097e-05, + "loss": 0.1932700538635254, + "step": 195200 + }, + { + "epoch": 65.42717145489571, + "grad_norm": 0.726636528968811, + "learning_rate": 1.730100502512563e-05, + "loss": 0.19444786071777342, + "step": 195300 + }, + { + "epoch": 65.46067509841696, + "grad_norm": 0.699719250202179, + "learning_rate": 1.728425460636516e-05, + "loss": 0.19458566665649413, + "step": 195400 + }, + { + "epoch": 65.49417874193819, + "grad_norm": 0.5866639614105225, + "learning_rate": 1.726750418760469e-05, + "loss": 0.19407997131347657, + "step": 195500 + }, + { + "epoch": 65.52768238545941, + "grad_norm": 0.6109085083007812, + "learning_rate": 1.7250753768844223e-05, + "loss": 0.19484548568725585, + "step": 195600 + }, + { + "epoch": 65.56118602898066, + "grad_norm": 0.6569064855575562, + "learning_rate": 1.723400335008375e-05, + "loss": 0.19527423858642579, + "step": 195700 + }, + { + "epoch": 65.59468967250189, + "grad_norm": 0.7762038707733154, + "learning_rate": 1.7217252931323284e-05, + "loss": 0.19620054244995117, + "step": 195800 + }, + { + "epoch": 65.62819331602311, + "grad_norm": 0.7439081072807312, + "learning_rate": 1.7200502512562816e-05, + "loss": 0.19575105667114256, + "step": 195900 + }, + { + "epoch": 65.66169695954434, + "grad_norm": 0.6967695951461792, + "learning_rate": 1.7183752093802348e-05, + "loss": 0.19645559310913085, + "step": 196000 + }, + { + "epoch": 65.69520060306559, + "grad_norm": 0.7349697351455688, + "learning_rate": 1.7167001675041877e-05, + "loss": 0.19642463684082032, + "step": 196100 + }, + { + "epoch": 65.72870424658682, + "grad_norm": 0.6738443970680237, + "learning_rate": 1.715025125628141e-05, + "loss": 0.19574283599853515, + "step": 196200 + }, + { + "epoch": 65.76220789010804, + "grad_norm": 0.6993250250816345, + "learning_rate": 1.7133500837520938e-05, + "loss": 0.19748226165771485, + "step": 196300 + }, + { + "epoch": 65.79571153362929, + "grad_norm": 0.7072445750236511, + "learning_rate": 1.711675041876047e-05, + "loss": 0.19640846252441407, + "step": 196400 + }, + { + "epoch": 65.82921517715052, + "grad_norm": 0.7074381709098816, + "learning_rate": 1.7100000000000002e-05, + "loss": 0.19640003204345702, + "step": 196500 + }, + { + "epoch": 65.86271882067174, + "grad_norm": 0.6643349528312683, + "learning_rate": 1.708324958123953e-05, + "loss": 0.1962619400024414, + "step": 196600 + }, + { + "epoch": 65.89622246419299, + "grad_norm": 0.6393887400627136, + "learning_rate": 1.7066499162479063e-05, + "loss": 0.19662002563476563, + "step": 196700 + }, + { + "epoch": 65.92972610771422, + "grad_norm": 0.6912117600440979, + "learning_rate": 1.7049748743718592e-05, + "loss": 0.19711755752563476, + "step": 196800 + }, + { + "epoch": 65.96322975123545, + "grad_norm": 0.6061841249465942, + "learning_rate": 1.7032998324958124e-05, + "loss": 0.19713987350463869, + "step": 196900 + }, + { + "epoch": 65.99673339475667, + "grad_norm": 0.8009989857673645, + "learning_rate": 1.7016247906197653e-05, + "loss": 0.19686588287353515, + "step": 197000 + }, + { + "epoch": 66.03015327916911, + "grad_norm": 0.5211619734764099, + "learning_rate": 1.6999497487437185e-05, + "loss": 0.19180856704711913, + "step": 197100 + }, + { + "epoch": 66.06365692269034, + "grad_norm": 0.8374447822570801, + "learning_rate": 1.698291457286432e-05, + "loss": 0.1912846565246582, + "step": 197200 + }, + { + "epoch": 66.09716056621157, + "grad_norm": 0.5720506310462952, + "learning_rate": 1.6966164154103854e-05, + "loss": 0.1917406463623047, + "step": 197300 + }, + { + "epoch": 66.13066420973281, + "grad_norm": 0.6164358258247375, + "learning_rate": 1.6949413735343382e-05, + "loss": 0.19152711868286132, + "step": 197400 + }, + { + "epoch": 66.16416785325404, + "grad_norm": 0.6611140370368958, + "learning_rate": 1.6932663316582915e-05, + "loss": 0.1916365623474121, + "step": 197500 + }, + { + "epoch": 66.19767149677527, + "grad_norm": 0.8065768480300903, + "learning_rate": 1.6915912897822447e-05, + "loss": 0.19188701629638671, + "step": 197600 + }, + { + "epoch": 66.23117514029651, + "grad_norm": 0.832007646560669, + "learning_rate": 1.689916247906198e-05, + "loss": 0.19254329681396484, + "step": 197700 + }, + { + "epoch": 66.26467878381774, + "grad_norm": 0.6256246566772461, + "learning_rate": 1.6882412060301508e-05, + "loss": 0.19245880126953124, + "step": 197800 + }, + { + "epoch": 66.29818242733897, + "grad_norm": 0.6906976103782654, + "learning_rate": 1.686566164154104e-05, + "loss": 0.19253412246704102, + "step": 197900 + }, + { + "epoch": 66.3316860708602, + "grad_norm": 0.8333529233932495, + "learning_rate": 1.684891122278057e-05, + "loss": 0.19308279037475587, + "step": 198000 + }, + { + "epoch": 66.36518971438144, + "grad_norm": 0.6668996810913086, + "learning_rate": 1.68321608040201e-05, + "loss": 0.19387590408325195, + "step": 198100 + }, + { + "epoch": 66.39869335790267, + "grad_norm": 0.6531146764755249, + "learning_rate": 1.6815410385259633e-05, + "loss": 0.19346897125244142, + "step": 198200 + }, + { + "epoch": 66.4321970014239, + "grad_norm": 0.5391746163368225, + "learning_rate": 1.6798659966499165e-05, + "loss": 0.19385696411132813, + "step": 198300 + }, + { + "epoch": 66.46570064494514, + "grad_norm": 0.7026568055152893, + "learning_rate": 1.6781909547738694e-05, + "loss": 0.19465816497802735, + "step": 198400 + }, + { + "epoch": 66.49920428846637, + "grad_norm": 0.7220622301101685, + "learning_rate": 1.6765159128978226e-05, + "loss": 0.19388059616088868, + "step": 198500 + }, + { + "epoch": 66.5327079319876, + "grad_norm": 0.6891744136810303, + "learning_rate": 1.6748408710217755e-05, + "loss": 0.1932676887512207, + "step": 198600 + }, + { + "epoch": 66.56621157550883, + "grad_norm": 0.5302000045776367, + "learning_rate": 1.6731658291457288e-05, + "loss": 0.19477445602416993, + "step": 198700 + }, + { + "epoch": 66.59971521903007, + "grad_norm": 0.7118658423423767, + "learning_rate": 1.671490787269682e-05, + "loss": 0.1960425567626953, + "step": 198800 + }, + { + "epoch": 66.6332188625513, + "grad_norm": 0.6674960255622864, + "learning_rate": 1.669815745393635e-05, + "loss": 0.19594356536865234, + "step": 198900 + }, + { + "epoch": 66.66672250607253, + "grad_norm": 0.7001693844795227, + "learning_rate": 1.668140703517588e-05, + "loss": 0.1959066581726074, + "step": 199000 + }, + { + "epoch": 66.70022614959377, + "grad_norm": 0.7504046559333801, + "learning_rate": 1.666465661641541e-05, + "loss": 0.19596036911010742, + "step": 199100 + }, + { + "epoch": 66.733729793115, + "grad_norm": 0.540820837020874, + "learning_rate": 1.6647906197654942e-05, + "loss": 0.19496715545654297, + "step": 199200 + }, + { + "epoch": 66.76723343663623, + "grad_norm": 0.659315288066864, + "learning_rate": 1.6631323283082078e-05, + "loss": 0.19592731475830077, + "step": 199300 + }, + { + "epoch": 66.80073708015746, + "grad_norm": 0.6407586336135864, + "learning_rate": 1.661457286432161e-05, + "loss": 0.1966596221923828, + "step": 199400 + }, + { + "epoch": 66.8342407236787, + "grad_norm": 0.8105034828186035, + "learning_rate": 1.659782244556114e-05, + "loss": 0.19701980590820312, + "step": 199500 + }, + { + "epoch": 66.86774436719993, + "grad_norm": 0.693172812461853, + "learning_rate": 1.658107202680067e-05, + "loss": 0.19503232955932617, + "step": 199600 + }, + { + "epoch": 66.90124801072116, + "grad_norm": 0.7639322876930237, + "learning_rate": 1.65643216080402e-05, + "loss": 0.1977808380126953, + "step": 199700 + }, + { + "epoch": 66.9347516542424, + "grad_norm": 0.7706619501113892, + "learning_rate": 1.6547571189279735e-05, + "loss": 0.19528146743774413, + "step": 199800 + }, + { + "epoch": 66.96825529776363, + "grad_norm": 0.8017984628677368, + "learning_rate": 1.6530820770519264e-05, + "loss": 0.19607614517211913, + "step": 199900 + }, + { + "epoch": 67.00167518217606, + "grad_norm": 0.6076714992523193, + "learning_rate": 1.6514070351758796e-05, + "loss": 0.196212100982666, + "step": 200000 + }, + { + "epoch": 67.0351788256973, + "grad_norm": 0.7155037522315979, + "learning_rate": 1.6497319932998325e-05, + "loss": 0.19083133697509766, + "step": 200100 + }, + { + "epoch": 67.06868246921853, + "grad_norm": 0.6289516687393188, + "learning_rate": 1.6480569514237857e-05, + "loss": 0.19047863006591798, + "step": 200200 + }, + { + "epoch": 67.10218611273976, + "grad_norm": 0.6958616375923157, + "learning_rate": 1.6463819095477386e-05, + "loss": 0.1900768280029297, + "step": 200300 + }, + { + "epoch": 67.13568975626099, + "grad_norm": 0.5616253018379211, + "learning_rate": 1.644706867671692e-05, + "loss": 0.19233095169067382, + "step": 200400 + }, + { + "epoch": 67.16919339978223, + "grad_norm": 0.6665573120117188, + "learning_rate": 1.643031825795645e-05, + "loss": 0.1919367218017578, + "step": 200500 + }, + { + "epoch": 67.20269704330346, + "grad_norm": 0.6951255798339844, + "learning_rate": 1.6413567839195983e-05, + "loss": 0.19197673797607423, + "step": 200600 + }, + { + "epoch": 67.23620068682469, + "grad_norm": 0.6771343946456909, + "learning_rate": 1.639681742043551e-05, + "loss": 0.1921021270751953, + "step": 200700 + }, + { + "epoch": 67.26970433034593, + "grad_norm": 0.6687894463539124, + "learning_rate": 1.6380067001675044e-05, + "loss": 0.19192752838134766, + "step": 200800 + }, + { + "epoch": 67.30320797386716, + "grad_norm": 0.7397539019584656, + "learning_rate": 1.6363316582914573e-05, + "loss": 0.1915091323852539, + "step": 200900 + }, + { + "epoch": 67.33671161738839, + "grad_norm": 0.6094964742660522, + "learning_rate": 1.6346566164154105e-05, + "loss": 0.1940443992614746, + "step": 201000 + }, + { + "epoch": 67.37021526090962, + "grad_norm": 0.5608842372894287, + "learning_rate": 1.6329815745393637e-05, + "loss": 0.19360294342041015, + "step": 201100 + }, + { + "epoch": 67.40371890443086, + "grad_norm": 0.6738369464874268, + "learning_rate": 1.6313065326633166e-05, + "loss": 0.19352413177490235, + "step": 201200 + }, + { + "epoch": 67.43722254795209, + "grad_norm": 0.7028993964195251, + "learning_rate": 1.6296482412060302e-05, + "loss": 0.1933650016784668, + "step": 201300 + }, + { + "epoch": 67.47072619147332, + "grad_norm": 0.5576817989349365, + "learning_rate": 1.627973199329983e-05, + "loss": 0.19390420913696288, + "step": 201400 + }, + { + "epoch": 67.50422983499456, + "grad_norm": 0.6411824226379395, + "learning_rate": 1.6262981574539366e-05, + "loss": 0.1935529899597168, + "step": 201500 + }, + { + "epoch": 67.53773347851579, + "grad_norm": 0.6373094916343689, + "learning_rate": 1.6246231155778895e-05, + "loss": 0.19391347885131835, + "step": 201600 + }, + { + "epoch": 67.57123712203702, + "grad_norm": 0.6556655168533325, + "learning_rate": 1.6229480737018427e-05, + "loss": 0.19495166778564454, + "step": 201700 + }, + { + "epoch": 67.60474076555825, + "grad_norm": 0.6322004199028015, + "learning_rate": 1.6212730318257956e-05, + "loss": 0.1953642463684082, + "step": 201800 + }, + { + "epoch": 67.63824440907949, + "grad_norm": 0.6095288395881653, + "learning_rate": 1.619597989949749e-05, + "loss": 0.19500333786010743, + "step": 201900 + }, + { + "epoch": 67.67174805260072, + "grad_norm": 0.5999951362609863, + "learning_rate": 1.6179229480737017e-05, + "loss": 0.19503114700317384, + "step": 202000 + }, + { + "epoch": 67.70525169612195, + "grad_norm": 0.7297765016555786, + "learning_rate": 1.6162479061976553e-05, + "loss": 0.19440362930297853, + "step": 202100 + }, + { + "epoch": 67.73875533964319, + "grad_norm": 0.7177837491035461, + "learning_rate": 1.614572864321608e-05, + "loss": 0.19499702453613282, + "step": 202200 + }, + { + "epoch": 67.77225898316442, + "grad_norm": 0.8244702219963074, + "learning_rate": 1.6128978224455614e-05, + "loss": 0.19555707931518554, + "step": 202300 + }, + { + "epoch": 67.80576262668565, + "grad_norm": 0.6373338103294373, + "learning_rate": 1.6112227805695143e-05, + "loss": 0.195418758392334, + "step": 202400 + }, + { + "epoch": 67.83926627020689, + "grad_norm": 0.6217545866966248, + "learning_rate": 1.6095477386934675e-05, + "loss": 0.19555667877197266, + "step": 202500 + }, + { + "epoch": 67.87276991372812, + "grad_norm": 0.6853159070014954, + "learning_rate": 1.6078726968174204e-05, + "loss": 0.19608963012695313, + "step": 202600 + }, + { + "epoch": 67.90627355724935, + "grad_norm": 0.6794860363006592, + "learning_rate": 1.6061976549413736e-05, + "loss": 0.19546913146972655, + "step": 202700 + }, + { + "epoch": 67.93977720077058, + "grad_norm": 0.6505772471427917, + "learning_rate": 1.6045226130653268e-05, + "loss": 0.19603317260742187, + "step": 202800 + }, + { + "epoch": 67.97328084429182, + "grad_norm": 0.6339512467384338, + "learning_rate": 1.60284757118928e-05, + "loss": 0.19620756149291993, + "step": 202900 + }, + { + "epoch": 68.00670072870425, + "grad_norm": 0.602581799030304, + "learning_rate": 1.601172529313233e-05, + "loss": 0.19463903427124024, + "step": 203000 + }, + { + "epoch": 68.04020437222547, + "grad_norm": 0.5730949640274048, + "learning_rate": 1.599497487437186e-05, + "loss": 0.19001585006713867, + "step": 203100 + }, + { + "epoch": 68.07370801574672, + "grad_norm": 0.5395110845565796, + "learning_rate": 1.597822445561139e-05, + "loss": 0.19011409759521483, + "step": 203200 + }, + { + "epoch": 68.10721165926795, + "grad_norm": 0.5770024657249451, + "learning_rate": 1.5961474036850922e-05, + "loss": 0.1901267433166504, + "step": 203300 + }, + { + "epoch": 68.14071530278918, + "grad_norm": 0.7738876342773438, + "learning_rate": 1.5944891122278058e-05, + "loss": 0.1905143928527832, + "step": 203400 + }, + { + "epoch": 68.17421894631042, + "grad_norm": 0.7363227605819702, + "learning_rate": 1.5928140703517587e-05, + "loss": 0.19049446105957032, + "step": 203500 + }, + { + "epoch": 68.20772258983165, + "grad_norm": 0.7116740345954895, + "learning_rate": 1.591139028475712e-05, + "loss": 0.19107500076293946, + "step": 203600 + }, + { + "epoch": 68.24122623335288, + "grad_norm": 0.715164840221405, + "learning_rate": 1.5894639865996648e-05, + "loss": 0.19192060470581054, + "step": 203700 + }, + { + "epoch": 68.2747298768741, + "grad_norm": 0.7426648736000061, + "learning_rate": 1.5877889447236184e-05, + "loss": 0.19199298858642577, + "step": 203800 + }, + { + "epoch": 68.30823352039535, + "grad_norm": 0.6598964929580688, + "learning_rate": 1.5861139028475713e-05, + "loss": 0.19214748382568358, + "step": 203900 + }, + { + "epoch": 68.34173716391658, + "grad_norm": 0.7202093601226807, + "learning_rate": 1.5844388609715245e-05, + "loss": 0.191875, + "step": 204000 + }, + { + "epoch": 68.3752408074378, + "grad_norm": 0.7151044607162476, + "learning_rate": 1.5827638190954774e-05, + "loss": 0.1921199607849121, + "step": 204100 + }, + { + "epoch": 68.40874445095905, + "grad_norm": 0.6264718174934387, + "learning_rate": 1.5810887772194306e-05, + "loss": 0.1933818244934082, + "step": 204200 + }, + { + "epoch": 68.44224809448028, + "grad_norm": 0.6225735545158386, + "learning_rate": 1.5794137353433835e-05, + "loss": 0.19361408233642577, + "step": 204300 + }, + { + "epoch": 68.4757517380015, + "grad_norm": 0.7502007484436035, + "learning_rate": 1.577738693467337e-05, + "loss": 0.1928209114074707, + "step": 204400 + }, + { + "epoch": 68.50925538152273, + "grad_norm": 0.6535805463790894, + "learning_rate": 1.57606365159129e-05, + "loss": 0.1925800323486328, + "step": 204500 + }, + { + "epoch": 68.54275902504398, + "grad_norm": 0.6184046864509583, + "learning_rate": 1.574388609715243e-05, + "loss": 0.1938844680786133, + "step": 204600 + }, + { + "epoch": 68.5762626685652, + "grad_norm": 0.642119824886322, + "learning_rate": 1.572713567839196e-05, + "loss": 0.1933103942871094, + "step": 204700 + }, + { + "epoch": 68.60976631208644, + "grad_norm": 0.6790170669555664, + "learning_rate": 1.5710385259631492e-05, + "loss": 0.1948932647705078, + "step": 204800 + }, + { + "epoch": 68.64326995560768, + "grad_norm": 0.647903323173523, + "learning_rate": 1.569363484087102e-05, + "loss": 0.1952429962158203, + "step": 204900 + }, + { + "epoch": 68.67677359912891, + "grad_norm": 0.77556312084198, + "learning_rate": 1.5676884422110553e-05, + "loss": 0.19408275604248046, + "step": 205000 + }, + { + "epoch": 68.71027724265014, + "grad_norm": 0.6710578203201294, + "learning_rate": 1.5660134003350085e-05, + "loss": 0.1949919319152832, + "step": 205100 + }, + { + "epoch": 68.74378088617136, + "grad_norm": 0.6515961289405823, + "learning_rate": 1.5643383584589614e-05, + "loss": 0.19462379455566406, + "step": 205200 + }, + { + "epoch": 68.77728452969261, + "grad_norm": 0.7134996652603149, + "learning_rate": 1.5626633165829147e-05, + "loss": 0.19480768203735352, + "step": 205300 + }, + { + "epoch": 68.81078817321384, + "grad_norm": 0.5678537487983704, + "learning_rate": 1.5610050251256282e-05, + "loss": 0.1956866455078125, + "step": 205400 + }, + { + "epoch": 68.84429181673507, + "grad_norm": 0.627916157245636, + "learning_rate": 1.5593299832495815e-05, + "loss": 0.19494726181030272, + "step": 205500 + }, + { + "epoch": 68.87779546025631, + "grad_norm": 0.5940144062042236, + "learning_rate": 1.5576549413735343e-05, + "loss": 0.19554563522338866, + "step": 205600 + }, + { + "epoch": 68.91129910377754, + "grad_norm": 0.7416447401046753, + "learning_rate": 1.5559798994974876e-05, + "loss": 0.19647571563720703, + "step": 205700 + }, + { + "epoch": 68.94480274729877, + "grad_norm": 0.6104159355163574, + "learning_rate": 1.5543048576214404e-05, + "loss": 0.19543346405029297, + "step": 205800 + }, + { + "epoch": 68.97830639082, + "grad_norm": 0.7064023613929749, + "learning_rate": 1.5526298157453937e-05, + "loss": 0.19565975189208984, + "step": 205900 + }, + { + "epoch": 69.01172627523243, + "grad_norm": 0.6279042363166809, + "learning_rate": 1.5509547738693466e-05, + "loss": 0.1939265251159668, + "step": 206000 + }, + { + "epoch": 69.04522991875366, + "grad_norm": 0.6966283917427063, + "learning_rate": 1.5492797319933e-05, + "loss": 0.18873752593994142, + "step": 206100 + }, + { + "epoch": 69.07873356227489, + "grad_norm": 0.598598062992096, + "learning_rate": 1.547604690117253e-05, + "loss": 0.19044071197509765, + "step": 206200 + }, + { + "epoch": 69.11223720579613, + "grad_norm": 0.6215249300003052, + "learning_rate": 1.5459296482412062e-05, + "loss": 0.18954809188842772, + "step": 206300 + }, + { + "epoch": 69.14574084931736, + "grad_norm": 0.6590831279754639, + "learning_rate": 1.544254606365159e-05, + "loss": 0.1906461524963379, + "step": 206400 + }, + { + "epoch": 69.17924449283859, + "grad_norm": 0.5938999056816101, + "learning_rate": 1.5425795644891123e-05, + "loss": 0.1904694175720215, + "step": 206500 + }, + { + "epoch": 69.21274813635983, + "grad_norm": 0.5933434367179871, + "learning_rate": 1.5409045226130652e-05, + "loss": 0.19135387420654296, + "step": 206600 + }, + { + "epoch": 69.24625177988106, + "grad_norm": 0.7321082353591919, + "learning_rate": 1.5392294807370188e-05, + "loss": 0.19140138626098632, + "step": 206700 + }, + { + "epoch": 69.27975542340229, + "grad_norm": 0.7632362842559814, + "learning_rate": 1.5375544388609716e-05, + "loss": 0.19026206970214843, + "step": 206800 + }, + { + "epoch": 69.31325906692352, + "grad_norm": 0.5204057097434998, + "learning_rate": 1.535879396984925e-05, + "loss": 0.19211410522460937, + "step": 206900 + }, + { + "epoch": 69.34676271044476, + "grad_norm": 0.5607998967170715, + "learning_rate": 1.5342043551088777e-05, + "loss": 0.19179800033569336, + "step": 207000 + }, + { + "epoch": 69.380266353966, + "grad_norm": 0.6838735342025757, + "learning_rate": 1.532529313232831e-05, + "loss": 0.1921243476867676, + "step": 207100 + }, + { + "epoch": 69.41376999748722, + "grad_norm": 0.7290564179420471, + "learning_rate": 1.530854271356784e-05, + "loss": 0.1927803611755371, + "step": 207200 + }, + { + "epoch": 69.44727364100847, + "grad_norm": 0.678501307964325, + "learning_rate": 1.529179229480737e-05, + "loss": 0.19337810516357423, + "step": 207300 + }, + { + "epoch": 69.4807772845297, + "grad_norm": 0.6822425723075867, + "learning_rate": 1.5275041876046903e-05, + "loss": 0.1925121307373047, + "step": 207400 + }, + { + "epoch": 69.51428092805092, + "grad_norm": 0.5909448266029358, + "learning_rate": 1.5258458961474037e-05, + "loss": 0.1932221221923828, + "step": 207500 + }, + { + "epoch": 69.54778457157215, + "grad_norm": 0.5861632823944092, + "learning_rate": 1.5241708542713568e-05, + "loss": 0.19226568222045898, + "step": 207600 + }, + { + "epoch": 69.5812882150934, + "grad_norm": 0.6072438359260559, + "learning_rate": 1.5224958123953102e-05, + "loss": 0.19327423095703125, + "step": 207700 + }, + { + "epoch": 69.61479185861462, + "grad_norm": 0.7752787470817566, + "learning_rate": 1.5208207705192632e-05, + "loss": 0.19411521911621094, + "step": 207800 + }, + { + "epoch": 69.64829550213585, + "grad_norm": 0.604340672492981, + "learning_rate": 1.5191457286432163e-05, + "loss": 0.19500984191894533, + "step": 207900 + }, + { + "epoch": 69.6817991456571, + "grad_norm": 0.5669907331466675, + "learning_rate": 1.5174706867671693e-05, + "loss": 0.19465980529785157, + "step": 208000 + }, + { + "epoch": 69.71530278917832, + "grad_norm": 0.624899685382843, + "learning_rate": 1.5157956448911224e-05, + "loss": 0.1940926742553711, + "step": 208100 + }, + { + "epoch": 69.74880643269955, + "grad_norm": 0.7137749195098877, + "learning_rate": 1.5141206030150754e-05, + "loss": 0.19328271865844726, + "step": 208200 + }, + { + "epoch": 69.7823100762208, + "grad_norm": 0.7387290000915527, + "learning_rate": 1.5124455611390285e-05, + "loss": 0.1953897285461426, + "step": 208300 + }, + { + "epoch": 69.81581371974202, + "grad_norm": 0.5705156326293945, + "learning_rate": 1.5107705192629817e-05, + "loss": 0.194132022857666, + "step": 208400 + }, + { + "epoch": 69.84931736326325, + "grad_norm": 0.6383335590362549, + "learning_rate": 1.5090954773869347e-05, + "loss": 0.1951007652282715, + "step": 208500 + }, + { + "epoch": 69.88282100678448, + "grad_norm": 0.6704970002174377, + "learning_rate": 1.5074204355108878e-05, + "loss": 0.19534845352172853, + "step": 208600 + }, + { + "epoch": 69.91632465030573, + "grad_norm": 0.5984908938407898, + "learning_rate": 1.5057453936348408e-05, + "loss": 0.19434907913208008, + "step": 208700 + }, + { + "epoch": 69.94982829382695, + "grad_norm": 0.6464018821716309, + "learning_rate": 1.5040703517587939e-05, + "loss": 0.19456119537353517, + "step": 208800 + }, + { + "epoch": 69.98333193734818, + "grad_norm": 0.7534891366958618, + "learning_rate": 1.502395309882747e-05, + "loss": 0.1956119155883789, + "step": 208900 + }, + { + "epoch": 70.01675182176062, + "grad_norm": 0.7756277918815613, + "learning_rate": 1.5007202680067003e-05, + "loss": 0.19219749450683593, + "step": 209000 + }, + { + "epoch": 70.05025546528185, + "grad_norm": 0.6661693453788757, + "learning_rate": 1.4990452261306534e-05, + "loss": 0.1881481170654297, + "step": 209100 + }, + { + "epoch": 70.08375910880308, + "grad_norm": 0.6152818202972412, + "learning_rate": 1.4973701842546064e-05, + "loss": 0.18986621856689453, + "step": 209200 + }, + { + "epoch": 70.11726275232432, + "grad_norm": 0.5430614352226257, + "learning_rate": 1.4956951423785595e-05, + "loss": 0.1886882209777832, + "step": 209300 + }, + { + "epoch": 70.15076639584555, + "grad_norm": 0.6443721652030945, + "learning_rate": 1.4940201005025125e-05, + "loss": 0.19037208557128907, + "step": 209400 + }, + { + "epoch": 70.18427003936678, + "grad_norm": 0.6034039855003357, + "learning_rate": 1.4923450586264656e-05, + "loss": 0.18961322784423829, + "step": 209500 + }, + { + "epoch": 70.21777368288801, + "grad_norm": 0.6922727227210999, + "learning_rate": 1.4906867671691794e-05, + "loss": 0.19092901229858397, + "step": 209600 + }, + { + "epoch": 70.25127732640925, + "grad_norm": 0.7775962352752686, + "learning_rate": 1.4890117252931324e-05, + "loss": 0.1911904525756836, + "step": 209700 + }, + { + "epoch": 70.28478096993048, + "grad_norm": 0.6121329665184021, + "learning_rate": 1.4873366834170855e-05, + "loss": 0.19077373504638673, + "step": 209800 + }, + { + "epoch": 70.31828461345171, + "grad_norm": 0.6311072707176208, + "learning_rate": 1.4856616415410385e-05, + "loss": 0.19276874542236327, + "step": 209900 + }, + { + "epoch": 70.35178825697295, + "grad_norm": 0.6190215349197388, + "learning_rate": 1.4839865996649919e-05, + "loss": 0.1920265007019043, + "step": 210000 + }, + { + "epoch": 70.38529190049418, + "grad_norm": 0.7317872047424316, + "learning_rate": 1.482311557788945e-05, + "loss": 0.1915855026245117, + "step": 210100 + }, + { + "epoch": 70.41879554401541, + "grad_norm": 0.5770769715309143, + "learning_rate": 1.480636515912898e-05, + "loss": 0.19160455703735352, + "step": 210200 + }, + { + "epoch": 70.45229918753664, + "grad_norm": 0.4898484945297241, + "learning_rate": 1.478961474036851e-05, + "loss": 0.19282726287841798, + "step": 210300 + }, + { + "epoch": 70.48580283105788, + "grad_norm": 0.7757408618927002, + "learning_rate": 1.4772864321608041e-05, + "loss": 0.19382453918457032, + "step": 210400 + }, + { + "epoch": 70.51930647457911, + "grad_norm": 0.7815673351287842, + "learning_rate": 1.4756113902847572e-05, + "loss": 0.19315202713012694, + "step": 210500 + }, + { + "epoch": 70.55281011810034, + "grad_norm": 0.6631892323493958, + "learning_rate": 1.4739363484087104e-05, + "loss": 0.1935376739501953, + "step": 210600 + }, + { + "epoch": 70.58631376162158, + "grad_norm": 0.6759666204452515, + "learning_rate": 1.4722613065326634e-05, + "loss": 0.19363182067871093, + "step": 210700 + }, + { + "epoch": 70.61981740514281, + "grad_norm": 0.7577219605445862, + "learning_rate": 1.4705862646566165e-05, + "loss": 0.19298139572143555, + "step": 210800 + }, + { + "epoch": 70.65332104866404, + "grad_norm": 0.5035127997398376, + "learning_rate": 1.4689112227805695e-05, + "loss": 0.19403892517089844, + "step": 210900 + }, + { + "epoch": 70.68682469218527, + "grad_norm": 0.6267746090888977, + "learning_rate": 1.4672361809045226e-05, + "loss": 0.19389795303344726, + "step": 211000 + }, + { + "epoch": 70.72032833570651, + "grad_norm": 0.7773340344429016, + "learning_rate": 1.4655611390284756e-05, + "loss": 0.19378913879394533, + "step": 211100 + }, + { + "epoch": 70.75383197922774, + "grad_norm": 0.6656227111816406, + "learning_rate": 1.4638860971524287e-05, + "loss": 0.19349145889282227, + "step": 211200 + }, + { + "epoch": 70.78733562274897, + "grad_norm": 0.5681379437446594, + "learning_rate": 1.462211055276382e-05, + "loss": 0.19408063888549804, + "step": 211300 + }, + { + "epoch": 70.82083926627021, + "grad_norm": 0.7380396127700806, + "learning_rate": 1.4605360134003351e-05, + "loss": 0.19320615768432617, + "step": 211400 + }, + { + "epoch": 70.85434290979144, + "grad_norm": 0.5551620721817017, + "learning_rate": 1.4588609715242882e-05, + "loss": 0.19429174423217774, + "step": 211500 + }, + { + "epoch": 70.88784655331267, + "grad_norm": 0.6880864500999451, + "learning_rate": 1.4572026800670016e-05, + "loss": 0.19458511352539062, + "step": 211600 + }, + { + "epoch": 70.9213501968339, + "grad_norm": 0.6348493099212646, + "learning_rate": 1.455527638190955e-05, + "loss": 0.19401802062988283, + "step": 211700 + }, + { + "epoch": 70.95485384035514, + "grad_norm": 0.8191368579864502, + "learning_rate": 1.453852596314908e-05, + "loss": 0.19446285247802733, + "step": 211800 + }, + { + "epoch": 70.98835748387637, + "grad_norm": 0.7762120366096497, + "learning_rate": 1.4521775544388611e-05, + "loss": 0.19511171340942382, + "step": 211900 + }, + { + "epoch": 71.0217773682888, + "grad_norm": 0.5584473609924316, + "learning_rate": 1.4505025125628141e-05, + "loss": 0.19062902450561522, + "step": 212000 + }, + { + "epoch": 71.05528101181004, + "grad_norm": 0.5374318957328796, + "learning_rate": 1.4488274706867672e-05, + "loss": 0.18799392700195314, + "step": 212100 + }, + { + "epoch": 71.08878465533127, + "grad_norm": 0.5808698534965515, + "learning_rate": 1.4471524288107202e-05, + "loss": 0.18921010971069335, + "step": 212200 + }, + { + "epoch": 71.1222882988525, + "grad_norm": 0.5353220701217651, + "learning_rate": 1.4454773869346735e-05, + "loss": 0.18873760223388672, + "step": 212300 + }, + { + "epoch": 71.15579194237374, + "grad_norm": 0.8585773706436157, + "learning_rate": 1.4438023450586265e-05, + "loss": 0.1902440071105957, + "step": 212400 + }, + { + "epoch": 71.18929558589497, + "grad_norm": 0.5950562357902527, + "learning_rate": 1.4421273031825797e-05, + "loss": 0.19001707077026367, + "step": 212500 + }, + { + "epoch": 71.2227992294162, + "grad_norm": 0.61844801902771, + "learning_rate": 1.4404522613065328e-05, + "loss": 0.1902621269226074, + "step": 212600 + }, + { + "epoch": 71.25630287293743, + "grad_norm": 0.6289156079292297, + "learning_rate": 1.4387772194304858e-05, + "loss": 0.19079328536987306, + "step": 212700 + }, + { + "epoch": 71.28980651645867, + "grad_norm": 0.5846434235572815, + "learning_rate": 1.4371021775544389e-05, + "loss": 0.19066036224365235, + "step": 212800 + }, + { + "epoch": 71.3233101599799, + "grad_norm": 0.5743843913078308, + "learning_rate": 1.4354271356783921e-05, + "loss": 0.19171554565429688, + "step": 212900 + }, + { + "epoch": 71.35681380350113, + "grad_norm": 0.7006944417953491, + "learning_rate": 1.4337520938023452e-05, + "loss": 0.19167909622192383, + "step": 213000 + }, + { + "epoch": 71.39031744702237, + "grad_norm": 0.8413968086242676, + "learning_rate": 1.4320770519262982e-05, + "loss": 0.19105392456054687, + "step": 213100 + }, + { + "epoch": 71.4238210905436, + "grad_norm": 0.5824098587036133, + "learning_rate": 1.4304020100502513e-05, + "loss": 0.1920245933532715, + "step": 213200 + }, + { + "epoch": 71.45732473406483, + "grad_norm": 0.6288939714431763, + "learning_rate": 1.4287269681742043e-05, + "loss": 0.19186897277832032, + "step": 213300 + }, + { + "epoch": 71.49082837758607, + "grad_norm": 0.691856324672699, + "learning_rate": 1.4270519262981574e-05, + "loss": 0.19312944412231445, + "step": 213400 + }, + { + "epoch": 71.5243320211073, + "grad_norm": 0.7578767538070679, + "learning_rate": 1.4253768844221108e-05, + "loss": 0.19235544204711913, + "step": 213500 + }, + { + "epoch": 71.55783566462853, + "grad_norm": 0.6085563898086548, + "learning_rate": 1.4237185929648242e-05, + "loss": 0.1931236457824707, + "step": 213600 + }, + { + "epoch": 71.59133930814976, + "grad_norm": 0.6119518876075745, + "learning_rate": 1.4220435510887772e-05, + "loss": 0.1938382339477539, + "step": 213700 + }, + { + "epoch": 71.624842951671, + "grad_norm": 0.6922339797019958, + "learning_rate": 1.4203685092127303e-05, + "loss": 0.19215814590454103, + "step": 213800 + }, + { + "epoch": 71.65834659519223, + "grad_norm": 0.7278738021850586, + "learning_rate": 1.4186934673366837e-05, + "loss": 0.19262287139892578, + "step": 213900 + }, + { + "epoch": 71.69185023871346, + "grad_norm": 0.6596753597259521, + "learning_rate": 1.4170184254606367e-05, + "loss": 0.19238534927368164, + "step": 214000 + }, + { + "epoch": 71.7253538822347, + "grad_norm": 0.6864719986915588, + "learning_rate": 1.4153433835845898e-05, + "loss": 0.1925214958190918, + "step": 214100 + }, + { + "epoch": 71.75885752575593, + "grad_norm": 0.6517135500907898, + "learning_rate": 1.4136683417085428e-05, + "loss": 0.1944540786743164, + "step": 214200 + }, + { + "epoch": 71.79236116927716, + "grad_norm": 0.7503974437713623, + "learning_rate": 1.4119932998324959e-05, + "loss": 0.1933121109008789, + "step": 214300 + }, + { + "epoch": 71.82586481279839, + "grad_norm": 0.60938960313797, + "learning_rate": 1.410318257956449e-05, + "loss": 0.19333812713623047, + "step": 214400 + }, + { + "epoch": 71.85936845631963, + "grad_norm": 0.659631073474884, + "learning_rate": 1.408643216080402e-05, + "loss": 0.19322057723999023, + "step": 214500 + }, + { + "epoch": 71.89287209984086, + "grad_norm": 0.6466450095176697, + "learning_rate": 1.4069681742043552e-05, + "loss": 0.19311923980712892, + "step": 214600 + }, + { + "epoch": 71.92637574336209, + "grad_norm": 0.6093922853469849, + "learning_rate": 1.4052931323283083e-05, + "loss": 0.19498254776000976, + "step": 214700 + }, + { + "epoch": 71.95987938688333, + "grad_norm": 0.7445212602615356, + "learning_rate": 1.4036180904522613e-05, + "loss": 0.19384960174560548, + "step": 214800 + }, + { + "epoch": 71.99338303040456, + "grad_norm": 0.5651571750640869, + "learning_rate": 1.4019430485762144e-05, + "loss": 0.193801212310791, + "step": 214900 + }, + { + "epoch": 72.02680291481698, + "grad_norm": 0.6022223234176636, + "learning_rate": 1.4002680067001674e-05, + "loss": 0.18981178283691405, + "step": 215000 + }, + { + "epoch": 72.06030655833823, + "grad_norm": 0.6050201058387756, + "learning_rate": 1.3985929648241206e-05, + "loss": 0.18904420852661133, + "step": 215100 + }, + { + "epoch": 72.09381020185945, + "grad_norm": 0.6156114935874939, + "learning_rate": 1.3969179229480739e-05, + "loss": 0.18817174911499024, + "step": 215200 + }, + { + "epoch": 72.12731384538068, + "grad_norm": 0.5546871423721313, + "learning_rate": 1.3952428810720269e-05, + "loss": 0.1889004898071289, + "step": 215300 + }, + { + "epoch": 72.16081748890191, + "grad_norm": 0.6833284497261047, + "learning_rate": 1.39356783919598e-05, + "loss": 0.18958877563476562, + "step": 215400 + }, + { + "epoch": 72.19432113242316, + "grad_norm": 0.6149327754974365, + "learning_rate": 1.391892797319933e-05, + "loss": 0.1900411605834961, + "step": 215500 + }, + { + "epoch": 72.22782477594438, + "grad_norm": 0.7087824940681458, + "learning_rate": 1.3902345058626468e-05, + "loss": 0.1900062370300293, + "step": 215600 + }, + { + "epoch": 72.26132841946561, + "grad_norm": 0.7365740537643433, + "learning_rate": 1.3885594639865998e-05, + "loss": 0.18973686218261718, + "step": 215700 + }, + { + "epoch": 72.29483206298686, + "grad_norm": 0.6139353513717651, + "learning_rate": 1.3868844221105529e-05, + "loss": 0.19053438186645508, + "step": 215800 + }, + { + "epoch": 72.32833570650808, + "grad_norm": 0.5968282222747803, + "learning_rate": 1.385209380234506e-05, + "loss": 0.19114097595214843, + "step": 215900 + }, + { + "epoch": 72.36183935002931, + "grad_norm": 0.6676009893417358, + "learning_rate": 1.383534338358459e-05, + "loss": 0.1919625473022461, + "step": 216000 + }, + { + "epoch": 72.39534299355054, + "grad_norm": 0.7123656272888184, + "learning_rate": 1.381859296482412e-05, + "loss": 0.19244312286376952, + "step": 216100 + }, + { + "epoch": 72.42884663707179, + "grad_norm": 0.6703692078590393, + "learning_rate": 1.3801842546063654e-05, + "loss": 0.1909078025817871, + "step": 216200 + }, + { + "epoch": 72.46235028059301, + "grad_norm": 0.7729817032814026, + "learning_rate": 1.3785092127303185e-05, + "loss": 0.192000789642334, + "step": 216300 + }, + { + "epoch": 72.49585392411424, + "grad_norm": 0.7377496361732483, + "learning_rate": 1.3768341708542715e-05, + "loss": 0.19194664001464845, + "step": 216400 + }, + { + "epoch": 72.52935756763549, + "grad_norm": 0.7420958876609802, + "learning_rate": 1.3751591289782246e-05, + "loss": 0.19183109283447267, + "step": 216500 + }, + { + "epoch": 72.56286121115672, + "grad_norm": 0.5992802381515503, + "learning_rate": 1.3734840871021776e-05, + "loss": 0.19208011627197266, + "step": 216600 + }, + { + "epoch": 72.59636485467794, + "grad_norm": 0.7813421487808228, + "learning_rate": 1.3718090452261307e-05, + "loss": 0.19179468154907225, + "step": 216700 + }, + { + "epoch": 72.62986849819917, + "grad_norm": 0.6775956153869629, + "learning_rate": 1.3701340033500837e-05, + "loss": 0.19274057388305665, + "step": 216800 + }, + { + "epoch": 72.66337214172042, + "grad_norm": 0.7122693657875061, + "learning_rate": 1.368458961474037e-05, + "loss": 0.1917710304260254, + "step": 216900 + }, + { + "epoch": 72.69687578524164, + "grad_norm": 0.7028974890708923, + "learning_rate": 1.36678391959799e-05, + "loss": 0.1918616485595703, + "step": 217000 + }, + { + "epoch": 72.73037942876287, + "grad_norm": 0.6234395503997803, + "learning_rate": 1.365108877721943e-05, + "loss": 0.192793025970459, + "step": 217100 + }, + { + "epoch": 72.76388307228412, + "grad_norm": 0.7795095443725586, + "learning_rate": 1.3634338358458961e-05, + "loss": 0.19276504516601561, + "step": 217200 + }, + { + "epoch": 72.79738671580535, + "grad_norm": 0.5714548230171204, + "learning_rate": 1.3617587939698492e-05, + "loss": 0.19352224349975586, + "step": 217300 + }, + { + "epoch": 72.83089035932657, + "grad_norm": 0.6443431973457336, + "learning_rate": 1.3600837520938022e-05, + "loss": 0.19274961471557617, + "step": 217400 + }, + { + "epoch": 72.8643940028478, + "grad_norm": 0.732292890548706, + "learning_rate": 1.3584087102177556e-05, + "loss": 0.19329883575439452, + "step": 217500 + }, + { + "epoch": 72.89789764636905, + "grad_norm": 0.6586911082267761, + "learning_rate": 1.3567336683417087e-05, + "loss": 0.19275350570678712, + "step": 217600 + }, + { + "epoch": 72.93140128989027, + "grad_norm": 0.4131799638271332, + "learning_rate": 1.355075376884422e-05, + "loss": 0.19394960403442382, + "step": 217700 + }, + { + "epoch": 72.9649049334115, + "grad_norm": 0.720600426197052, + "learning_rate": 1.3534003350083751e-05, + "loss": 0.19370002746582032, + "step": 217800 + }, + { + "epoch": 72.99840857693275, + "grad_norm": 0.7249190211296082, + "learning_rate": 1.3517252931323285e-05, + "loss": 0.19390350341796875, + "step": 217900 + }, + { + "epoch": 73.03182846134517, + "grad_norm": 0.7347325086593628, + "learning_rate": 1.3500502512562816e-05, + "loss": 0.18822053909301759, + "step": 218000 + }, + { + "epoch": 73.0653321048664, + "grad_norm": 0.6100323796272278, + "learning_rate": 1.3483752093802346e-05, + "loss": 0.1878873062133789, + "step": 218100 + }, + { + "epoch": 73.09883574838764, + "grad_norm": 0.6328092217445374, + "learning_rate": 1.3467001675041877e-05, + "loss": 0.18838220596313476, + "step": 218200 + }, + { + "epoch": 73.13233939190887, + "grad_norm": 0.6140354871749878, + "learning_rate": 1.3450251256281407e-05, + "loss": 0.18931222915649415, + "step": 218300 + }, + { + "epoch": 73.1658430354301, + "grad_norm": 0.6713184118270874, + "learning_rate": 1.3433500837520938e-05, + "loss": 0.18979503631591796, + "step": 218400 + }, + { + "epoch": 73.19934667895133, + "grad_norm": 0.5946479439735413, + "learning_rate": 1.3416750418760472e-05, + "loss": 0.19020790100097656, + "step": 218500 + }, + { + "epoch": 73.23285032247257, + "grad_norm": 0.635026216506958, + "learning_rate": 1.3400000000000002e-05, + "loss": 0.19073740005493164, + "step": 218600 + }, + { + "epoch": 73.2663539659938, + "grad_norm": 0.8429803252220154, + "learning_rate": 1.3383249581239533e-05, + "loss": 0.19040184020996093, + "step": 218700 + }, + { + "epoch": 73.29985760951503, + "grad_norm": 0.6116558909416199, + "learning_rate": 1.3366499162479063e-05, + "loss": 0.1910529327392578, + "step": 218800 + }, + { + "epoch": 73.33336125303627, + "grad_norm": 0.6104078888893127, + "learning_rate": 1.3349748743718594e-05, + "loss": 0.19013742446899415, + "step": 218900 + }, + { + "epoch": 73.3668648965575, + "grad_norm": 0.6935064196586609, + "learning_rate": 1.3332998324958124e-05, + "loss": 0.19089607238769532, + "step": 219000 + }, + { + "epoch": 73.40036854007873, + "grad_norm": 0.6205075979232788, + "learning_rate": 1.3316247906197656e-05, + "loss": 0.18985008239746093, + "step": 219100 + }, + { + "epoch": 73.43387218359997, + "grad_norm": 0.6838747262954712, + "learning_rate": 1.3299497487437187e-05, + "loss": 0.19136251449584962, + "step": 219200 + }, + { + "epoch": 73.4673758271212, + "grad_norm": 0.5892935395240784, + "learning_rate": 1.3282747068676717e-05, + "loss": 0.19115791320800782, + "step": 219300 + }, + { + "epoch": 73.50087947064243, + "grad_norm": 0.6625847220420837, + "learning_rate": 1.3265996649916248e-05, + "loss": 0.1914684295654297, + "step": 219400 + }, + { + "epoch": 73.53438311416366, + "grad_norm": 0.5886939764022827, + "learning_rate": 1.3249246231155778e-05, + "loss": 0.19140581130981446, + "step": 219500 + }, + { + "epoch": 73.5678867576849, + "grad_norm": 0.6432992219924927, + "learning_rate": 1.3232495812395309e-05, + "loss": 0.19217498779296874, + "step": 219600 + }, + { + "epoch": 73.60139040120613, + "grad_norm": 0.537247896194458, + "learning_rate": 1.3215912897822447e-05, + "loss": 0.1916472816467285, + "step": 219700 + }, + { + "epoch": 73.63489404472736, + "grad_norm": 0.7746627330780029, + "learning_rate": 1.3199162479061977e-05, + "loss": 0.1921250343322754, + "step": 219800 + }, + { + "epoch": 73.6683976882486, + "grad_norm": 0.6342955827713013, + "learning_rate": 1.3182412060301508e-05, + "loss": 0.19181474685668945, + "step": 219900 + }, + { + "epoch": 73.70190133176983, + "grad_norm": 0.6556417346000671, + "learning_rate": 1.3165661641541038e-05, + "loss": 0.1932265853881836, + "step": 220000 + }, + { + "epoch": 73.73540497529106, + "grad_norm": 0.627204179763794, + "learning_rate": 1.3148911222780569e-05, + "loss": 0.19127828598022462, + "step": 220100 + }, + { + "epoch": 73.76890861881229, + "grad_norm": 0.5481722950935364, + "learning_rate": 1.3132160804020103e-05, + "loss": 0.19317052841186524, + "step": 220200 + }, + { + "epoch": 73.80241226233353, + "grad_norm": 0.6881102323532104, + "learning_rate": 1.3115410385259633e-05, + "loss": 0.1921912384033203, + "step": 220300 + }, + { + "epoch": 73.83591590585476, + "grad_norm": 0.5679818987846375, + "learning_rate": 1.3098659966499164e-05, + "loss": 0.19210420608520506, + "step": 220400 + }, + { + "epoch": 73.86941954937599, + "grad_norm": 0.6412058472633362, + "learning_rate": 1.3081909547738694e-05, + "loss": 0.19206573486328124, + "step": 220500 + }, + { + "epoch": 73.90292319289723, + "grad_norm": 0.586617648601532, + "learning_rate": 1.3065159128978225e-05, + "loss": 0.19283601760864258, + "step": 220600 + }, + { + "epoch": 73.93642683641846, + "grad_norm": 0.6339001655578613, + "learning_rate": 1.3048408710217755e-05, + "loss": 0.19282327651977538, + "step": 220700 + }, + { + "epoch": 73.96993047993969, + "grad_norm": 0.5810698866844177, + "learning_rate": 1.3031658291457289e-05, + "loss": 0.19248931884765624, + "step": 220800 + }, + { + "epoch": 74.00335036435213, + "grad_norm": 0.5315734148025513, + "learning_rate": 1.301490787269682e-05, + "loss": 0.19272197723388673, + "step": 220900 + }, + { + "epoch": 74.03685400787336, + "grad_norm": 0.5988895893096924, + "learning_rate": 1.299815745393635e-05, + "loss": 0.18879865646362304, + "step": 221000 + }, + { + "epoch": 74.07035765139459, + "grad_norm": 0.6475368142127991, + "learning_rate": 1.298140703517588e-05, + "loss": 0.18721097946166992, + "step": 221100 + }, + { + "epoch": 74.10386129491582, + "grad_norm": 0.5875990986824036, + "learning_rate": 1.2964656616415411e-05, + "loss": 0.18884235382080078, + "step": 221200 + }, + { + "epoch": 74.13736493843706, + "grad_norm": 0.7056507468223572, + "learning_rate": 1.2947906197654942e-05, + "loss": 0.1880255889892578, + "step": 221300 + }, + { + "epoch": 74.17086858195829, + "grad_norm": 0.7191376090049744, + "learning_rate": 1.2931155778894474e-05, + "loss": 0.18832271575927734, + "step": 221400 + }, + { + "epoch": 74.20437222547952, + "grad_norm": 0.6161214113235474, + "learning_rate": 1.2914405360134004e-05, + "loss": 0.1886260414123535, + "step": 221500 + }, + { + "epoch": 74.23787586900076, + "grad_norm": 0.6850497126579285, + "learning_rate": 1.2897654941373535e-05, + "loss": 0.18944147109985351, + "step": 221600 + }, + { + "epoch": 74.27137951252199, + "grad_norm": 0.7031293511390686, + "learning_rate": 1.2880904522613065e-05, + "loss": 0.18980978012084962, + "step": 221700 + }, + { + "epoch": 74.30488315604322, + "grad_norm": 0.7116613388061523, + "learning_rate": 1.2864321608040203e-05, + "loss": 0.19084714889526366, + "step": 221800 + }, + { + "epoch": 74.33838679956445, + "grad_norm": 0.6668044328689575, + "learning_rate": 1.2847571189279734e-05, + "loss": 0.1889169120788574, + "step": 221900 + }, + { + "epoch": 74.37189044308569, + "grad_norm": 0.7630614638328552, + "learning_rate": 1.2830820770519264e-05, + "loss": 0.1901887321472168, + "step": 222000 + }, + { + "epoch": 74.40539408660692, + "grad_norm": 0.6210822463035583, + "learning_rate": 1.2814070351758795e-05, + "loss": 0.18958797454833984, + "step": 222100 + }, + { + "epoch": 74.43889773012815, + "grad_norm": 0.674400806427002, + "learning_rate": 1.2797319932998325e-05, + "loss": 0.19211307525634766, + "step": 222200 + }, + { + "epoch": 74.47240137364939, + "grad_norm": 0.5624780058860779, + "learning_rate": 1.2780569514237856e-05, + "loss": 0.19077470779418945, + "step": 222300 + }, + { + "epoch": 74.50590501717062, + "grad_norm": 0.6902910470962524, + "learning_rate": 1.2763819095477386e-05, + "loss": 0.19062641143798828, + "step": 222400 + }, + { + "epoch": 74.53940866069185, + "grad_norm": 0.6203210353851318, + "learning_rate": 1.274706867671692e-05, + "loss": 0.19215831756591797, + "step": 222500 + }, + { + "epoch": 74.57291230421308, + "grad_norm": 0.6973204016685486, + "learning_rate": 1.273031825795645e-05, + "loss": 0.19094465255737306, + "step": 222600 + }, + { + "epoch": 74.60641594773432, + "grad_norm": 0.5848397016525269, + "learning_rate": 1.2713567839195981e-05, + "loss": 0.1918341827392578, + "step": 222700 + }, + { + "epoch": 74.63991959125555, + "grad_norm": 0.5930863618850708, + "learning_rate": 1.2696817420435512e-05, + "loss": 0.19197944641113282, + "step": 222800 + }, + { + "epoch": 74.67342323477678, + "grad_norm": 0.6419515609741211, + "learning_rate": 1.2680067001675042e-05, + "loss": 0.19171865463256835, + "step": 222900 + }, + { + "epoch": 74.70692687829802, + "grad_norm": 0.6278107762336731, + "learning_rate": 1.2663316582914573e-05, + "loss": 0.19249353408813477, + "step": 223000 + }, + { + "epoch": 74.74043052181925, + "grad_norm": 0.5512995719909668, + "learning_rate": 1.2646566164154105e-05, + "loss": 0.19145532608032226, + "step": 223100 + }, + { + "epoch": 74.77393416534048, + "grad_norm": 0.6217749714851379, + "learning_rate": 1.2629815745393635e-05, + "loss": 0.19141609191894532, + "step": 223200 + }, + { + "epoch": 74.8074378088617, + "grad_norm": 0.672197699546814, + "learning_rate": 1.2613065326633166e-05, + "loss": 0.19206232070922852, + "step": 223300 + }, + { + "epoch": 74.84094145238295, + "grad_norm": 0.6256102919578552, + "learning_rate": 1.2596314907872698e-05, + "loss": 0.19332118988037109, + "step": 223400 + }, + { + "epoch": 74.87444509590418, + "grad_norm": 0.5120044350624084, + "learning_rate": 1.2579564489112229e-05, + "loss": 0.19207197189331054, + "step": 223500 + }, + { + "epoch": 74.90794873942541, + "grad_norm": 0.6199808120727539, + "learning_rate": 1.2562814070351759e-05, + "loss": 0.19157859802246094, + "step": 223600 + }, + { + "epoch": 74.94145238294665, + "grad_norm": 0.7454675436019897, + "learning_rate": 1.2546063651591291e-05, + "loss": 0.19300016403198242, + "step": 223700 + }, + { + "epoch": 74.97495602646788, + "grad_norm": 0.5340383052825928, + "learning_rate": 1.2529313232830822e-05, + "loss": 0.1914585304260254, + "step": 223800 + }, + { + "epoch": 75.0083759108803, + "grad_norm": 0.529868483543396, + "learning_rate": 1.2512730318257956e-05, + "loss": 0.19096315383911133, + "step": 223900 + }, + { + "epoch": 75.04187955440155, + "grad_norm": 0.5163419246673584, + "learning_rate": 1.2495979899497488e-05, + "loss": 0.18681686401367187, + "step": 224000 + }, + { + "epoch": 75.07538319792278, + "grad_norm": 0.6350462436676025, + "learning_rate": 1.2479229480737019e-05, + "loss": 0.1882038688659668, + "step": 224100 + }, + { + "epoch": 75.108886841444, + "grad_norm": 0.5319573283195496, + "learning_rate": 1.246247906197655e-05, + "loss": 0.18803632736206055, + "step": 224200 + }, + { + "epoch": 75.14239048496523, + "grad_norm": 0.5288993120193481, + "learning_rate": 1.2445728643216081e-05, + "loss": 0.18808624267578125, + "step": 224300 + }, + { + "epoch": 75.17589412848648, + "grad_norm": 0.6789448261260986, + "learning_rate": 1.2428978224455612e-05, + "loss": 0.18842166900634766, + "step": 224400 + }, + { + "epoch": 75.2093977720077, + "grad_norm": 0.661927342414856, + "learning_rate": 1.2412227805695142e-05, + "loss": 0.18897750854492187, + "step": 224500 + }, + { + "epoch": 75.24290141552893, + "grad_norm": 0.5049561262130737, + "learning_rate": 1.2395477386934675e-05, + "loss": 0.18828922271728515, + "step": 224600 + }, + { + "epoch": 75.27640505905018, + "grad_norm": 0.5841866135597229, + "learning_rate": 1.2378726968174205e-05, + "loss": 0.18943553924560547, + "step": 224700 + }, + { + "epoch": 75.3099087025714, + "grad_norm": 0.6885756254196167, + "learning_rate": 1.2361976549413736e-05, + "loss": 0.18894081115722655, + "step": 224800 + }, + { + "epoch": 75.34341234609263, + "grad_norm": 0.7039951086044312, + "learning_rate": 1.2345226130653268e-05, + "loss": 0.18984657287597656, + "step": 224900 + }, + { + "epoch": 75.37691598961388, + "grad_norm": 0.6714735627174377, + "learning_rate": 1.2328475711892798e-05, + "loss": 0.19007621765136717, + "step": 225000 + }, + { + "epoch": 75.4104196331351, + "grad_norm": 0.637840986251831, + "learning_rate": 1.2311725293132329e-05, + "loss": 0.18986061096191406, + "step": 225100 + }, + { + "epoch": 75.44392327665634, + "grad_norm": 0.5885179042816162, + "learning_rate": 1.2294974874371861e-05, + "loss": 0.18973173141479494, + "step": 225200 + }, + { + "epoch": 75.47742692017756, + "grad_norm": 0.6655402779579163, + "learning_rate": 1.2278224455611392e-05, + "loss": 0.19028383255004883, + "step": 225300 + }, + { + "epoch": 75.5109305636988, + "grad_norm": 0.6711523532867432, + "learning_rate": 1.2261474036850922e-05, + "loss": 0.19036417007446288, + "step": 225400 + }, + { + "epoch": 75.54443420722004, + "grad_norm": 0.7367367744445801, + "learning_rate": 1.2244723618090453e-05, + "loss": 0.1918941307067871, + "step": 225500 + }, + { + "epoch": 75.57793785074126, + "grad_norm": 0.8443908095359802, + "learning_rate": 1.2227973199329983e-05, + "loss": 0.19089139938354494, + "step": 225600 + }, + { + "epoch": 75.61144149426251, + "grad_norm": 0.5808036923408508, + "learning_rate": 1.2211222780569514e-05, + "loss": 0.19058563232421874, + "step": 225700 + }, + { + "epoch": 75.64494513778374, + "grad_norm": 0.5212644934654236, + "learning_rate": 1.2194472361809046e-05, + "loss": 0.19121980667114258, + "step": 225800 + }, + { + "epoch": 75.67844878130497, + "grad_norm": 0.7097404599189758, + "learning_rate": 1.2177889447236182e-05, + "loss": 0.1912353515625, + "step": 225900 + }, + { + "epoch": 75.7119524248262, + "grad_norm": 0.6513300538063049, + "learning_rate": 1.2161139028475712e-05, + "loss": 0.19171392440795898, + "step": 226000 + }, + { + "epoch": 75.74545606834744, + "grad_norm": 0.6188165545463562, + "learning_rate": 1.2144388609715243e-05, + "loss": 0.19226541519165039, + "step": 226100 + }, + { + "epoch": 75.77895971186867, + "grad_norm": 0.6310757994651794, + "learning_rate": 1.2127638190954775e-05, + "loss": 0.1912686538696289, + "step": 226200 + }, + { + "epoch": 75.8124633553899, + "grad_norm": 0.6972214579582214, + "learning_rate": 1.2110887772194306e-05, + "loss": 0.19245899200439454, + "step": 226300 + }, + { + "epoch": 75.84596699891114, + "grad_norm": 0.6156506538391113, + "learning_rate": 1.2094137353433836e-05, + "loss": 0.1912640380859375, + "step": 226400 + }, + { + "epoch": 75.87947064243237, + "grad_norm": 0.627688467502594, + "learning_rate": 1.2077386934673367e-05, + "loss": 0.19346479415893555, + "step": 226500 + }, + { + "epoch": 75.9129742859536, + "grad_norm": 0.620262622833252, + "learning_rate": 1.2060636515912899e-05, + "loss": 0.19184036254882814, + "step": 226600 + }, + { + "epoch": 75.94647792947482, + "grad_norm": 0.6578592658042908, + "learning_rate": 1.204388609715243e-05, + "loss": 0.1920124626159668, + "step": 226700 + }, + { + "epoch": 75.97998157299607, + "grad_norm": 0.4712987542152405, + "learning_rate": 1.202713567839196e-05, + "loss": 0.19146875381469727, + "step": 226800 + }, + { + "epoch": 76.01340145740849, + "grad_norm": 0.5716565251350403, + "learning_rate": 1.2010385259631492e-05, + "loss": 0.19078388214111328, + "step": 226900 + }, + { + "epoch": 76.04690510092972, + "grad_norm": 0.7094972133636475, + "learning_rate": 1.1993634840871023e-05, + "loss": 0.18728803634643554, + "step": 227000 + }, + { + "epoch": 76.08040874445096, + "grad_norm": 0.6303561329841614, + "learning_rate": 1.1976884422110553e-05, + "loss": 0.18724044799804687, + "step": 227100 + }, + { + "epoch": 76.11391238797219, + "grad_norm": 0.7359886765480042, + "learning_rate": 1.1960134003350085e-05, + "loss": 0.1879755973815918, + "step": 227200 + }, + { + "epoch": 76.14741603149342, + "grad_norm": 0.857787013053894, + "learning_rate": 1.1943383584589616e-05, + "loss": 0.18758907318115234, + "step": 227300 + }, + { + "epoch": 76.18091967501466, + "grad_norm": 0.607428252696991, + "learning_rate": 1.1926633165829146e-05, + "loss": 0.18798053741455079, + "step": 227400 + }, + { + "epoch": 76.21442331853589, + "grad_norm": 0.8037320375442505, + "learning_rate": 1.1909882747068679e-05, + "loss": 0.1890050506591797, + "step": 227500 + }, + { + "epoch": 76.24792696205712, + "grad_norm": 0.6359191536903381, + "learning_rate": 1.1893132328308209e-05, + "loss": 0.18898937225341797, + "step": 227600 + }, + { + "epoch": 76.28143060557835, + "grad_norm": 0.6721845269203186, + "learning_rate": 1.187638190954774e-05, + "loss": 0.1883324432373047, + "step": 227700 + }, + { + "epoch": 76.3149342490996, + "grad_norm": 0.6467797756195068, + "learning_rate": 1.185963149078727e-05, + "loss": 0.1888943099975586, + "step": 227800 + }, + { + "epoch": 76.34843789262082, + "grad_norm": 0.7214395999908447, + "learning_rate": 1.1843048576214406e-05, + "loss": 0.1892184829711914, + "step": 227900 + }, + { + "epoch": 76.38194153614205, + "grad_norm": 0.6020253896713257, + "learning_rate": 1.1826298157453937e-05, + "loss": 0.1896377372741699, + "step": 228000 + }, + { + "epoch": 76.4154451796633, + "grad_norm": 0.6029198169708252, + "learning_rate": 1.1809547738693467e-05, + "loss": 0.18889514923095704, + "step": 228100 + }, + { + "epoch": 76.44894882318452, + "grad_norm": 0.7419018745422363, + "learning_rate": 1.1792797319933e-05, + "loss": 0.18998069763183595, + "step": 228200 + }, + { + "epoch": 76.48245246670575, + "grad_norm": 0.6079985499382019, + "learning_rate": 1.177604690117253e-05, + "loss": 0.19057266235351564, + "step": 228300 + }, + { + "epoch": 76.51595611022698, + "grad_norm": 0.6738330125808716, + "learning_rate": 1.175929648241206e-05, + "loss": 0.19021852493286132, + "step": 228400 + }, + { + "epoch": 76.54945975374822, + "grad_norm": 0.6184301376342773, + "learning_rate": 1.1742546063651593e-05, + "loss": 0.19030994415283203, + "step": 228500 + }, + { + "epoch": 76.58296339726945, + "grad_norm": 0.6210246682167053, + "learning_rate": 1.1725795644891123e-05, + "loss": 0.18975492477416991, + "step": 228600 + }, + { + "epoch": 76.61646704079068, + "grad_norm": 0.6398160457611084, + "learning_rate": 1.1709045226130654e-05, + "loss": 0.19056596755981445, + "step": 228700 + }, + { + "epoch": 76.64997068431192, + "grad_norm": 0.5791774392127991, + "learning_rate": 1.1692294807370186e-05, + "loss": 0.19000568389892578, + "step": 228800 + }, + { + "epoch": 76.68347432783315, + "grad_norm": 0.6452813744544983, + "learning_rate": 1.1675544388609716e-05, + "loss": 0.19119565963745117, + "step": 228900 + }, + { + "epoch": 76.71697797135438, + "grad_norm": 0.5637299418449402, + "learning_rate": 1.1658793969849247e-05, + "loss": 0.1906993293762207, + "step": 229000 + }, + { + "epoch": 76.75048161487561, + "grad_norm": 0.6561068892478943, + "learning_rate": 1.1642043551088777e-05, + "loss": 0.1915520668029785, + "step": 229100 + }, + { + "epoch": 76.78398525839685, + "grad_norm": 0.6777018904685974, + "learning_rate": 1.162529313232831e-05, + "loss": 0.19029684066772462, + "step": 229200 + }, + { + "epoch": 76.81748890191808, + "grad_norm": 0.4779558479785919, + "learning_rate": 1.160854271356784e-05, + "loss": 0.19119384765625, + "step": 229300 + }, + { + "epoch": 76.85099254543931, + "grad_norm": 0.5411806106567383, + "learning_rate": 1.159179229480737e-05, + "loss": 0.19078275680541992, + "step": 229400 + }, + { + "epoch": 76.88449618896055, + "grad_norm": 0.623041033744812, + "learning_rate": 1.1575041876046903e-05, + "loss": 0.19250349044799805, + "step": 229500 + }, + { + "epoch": 76.91799983248178, + "grad_norm": 0.5169858336448669, + "learning_rate": 1.1558291457286433e-05, + "loss": 0.19133710861206055, + "step": 229600 + }, + { + "epoch": 76.95150347600301, + "grad_norm": 0.5985132455825806, + "learning_rate": 1.1541541038525964e-05, + "loss": 0.19112289428710938, + "step": 229700 + }, + { + "epoch": 76.98500711952425, + "grad_norm": 0.6158753633499146, + "learning_rate": 1.1524790619765494e-05, + "loss": 0.1921292495727539, + "step": 229800 + }, + { + "epoch": 77.01842700393668, + "grad_norm": 0.5963013172149658, + "learning_rate": 1.1508040201005025e-05, + "loss": 0.18872583389282227, + "step": 229900 + }, + { + "epoch": 77.05193064745791, + "grad_norm": 0.5578435659408569, + "learning_rate": 1.149145728643216e-05, + "loss": 0.1861967658996582, + "step": 230000 + }, + { + "epoch": 77.08543429097914, + "grad_norm": 0.5361016988754272, + "learning_rate": 1.1474706867671691e-05, + "loss": 0.18753931045532227, + "step": 230100 + }, + { + "epoch": 77.11893793450038, + "grad_norm": 0.7023466229438782, + "learning_rate": 1.1457956448911223e-05, + "loss": 0.18739143371582032, + "step": 230200 + }, + { + "epoch": 77.15244157802161, + "grad_norm": 0.5231741666793823, + "learning_rate": 1.1441206030150754e-05, + "loss": 0.1882183074951172, + "step": 230300 + }, + { + "epoch": 77.18594522154284, + "grad_norm": 0.7267812490463257, + "learning_rate": 1.1424455611390284e-05, + "loss": 0.18830036163330077, + "step": 230400 + }, + { + "epoch": 77.21944886506408, + "grad_norm": 0.5698330998420715, + "learning_rate": 1.1407705192629817e-05, + "loss": 0.18730653762817384, + "step": 230500 + }, + { + "epoch": 77.25295250858531, + "grad_norm": 0.6907638907432556, + "learning_rate": 1.1390954773869347e-05, + "loss": 0.18742834091186522, + "step": 230600 + }, + { + "epoch": 77.28645615210654, + "grad_norm": 0.5616415739059448, + "learning_rate": 1.1374204355108878e-05, + "loss": 0.1885102844238281, + "step": 230700 + }, + { + "epoch": 77.31995979562778, + "grad_norm": 0.6362226009368896, + "learning_rate": 1.135745393634841e-05, + "loss": 0.18842847824096678, + "step": 230800 + }, + { + "epoch": 77.35346343914901, + "grad_norm": 0.5648617744445801, + "learning_rate": 1.134070351758794e-05, + "loss": 0.18916454315185546, + "step": 230900 + }, + { + "epoch": 77.38696708267024, + "grad_norm": 0.7212550044059753, + "learning_rate": 1.1323953098827471e-05, + "loss": 0.1888494873046875, + "step": 231000 + }, + { + "epoch": 77.42047072619147, + "grad_norm": 0.8556243777275085, + "learning_rate": 1.1307202680067003e-05, + "loss": 0.18897062301635742, + "step": 231100 + }, + { + "epoch": 77.45397436971271, + "grad_norm": 0.8663336634635925, + "learning_rate": 1.1290452261306534e-05, + "loss": 0.18911514282226563, + "step": 231200 + }, + { + "epoch": 77.48747801323394, + "grad_norm": 0.555095911026001, + "learning_rate": 1.1273701842546064e-05, + "loss": 0.19008974075317384, + "step": 231300 + }, + { + "epoch": 77.52098165675517, + "grad_norm": 0.5795916318893433, + "learning_rate": 1.1256951423785596e-05, + "loss": 0.19058879852294922, + "step": 231400 + }, + { + "epoch": 77.55448530027641, + "grad_norm": 0.6374692916870117, + "learning_rate": 1.1240201005025127e-05, + "loss": 0.19093334197998046, + "step": 231500 + }, + { + "epoch": 77.58798894379764, + "grad_norm": 0.5286735892295837, + "learning_rate": 1.1223450586264657e-05, + "loss": 0.18953340530395507, + "step": 231600 + }, + { + "epoch": 77.62149258731887, + "grad_norm": 0.7152593731880188, + "learning_rate": 1.120670016750419e-05, + "loss": 0.18968648910522462, + "step": 231700 + }, + { + "epoch": 77.6549962308401, + "grad_norm": 0.6775063276290894, + "learning_rate": 1.118994974874372e-05, + "loss": 0.19057016372680663, + "step": 231800 + }, + { + "epoch": 77.68849987436134, + "grad_norm": 0.5843816995620728, + "learning_rate": 1.117319932998325e-05, + "loss": 0.18996496200561525, + "step": 231900 + }, + { + "epoch": 77.72200351788257, + "grad_norm": 0.6201971769332886, + "learning_rate": 1.1156616415410385e-05, + "loss": 0.1909531021118164, + "step": 232000 + }, + { + "epoch": 77.7555071614038, + "grad_norm": 0.6630064249038696, + "learning_rate": 1.1139865996649915e-05, + "loss": 0.18996026992797851, + "step": 232100 + }, + { + "epoch": 77.78901080492504, + "grad_norm": 0.6778659224510193, + "learning_rate": 1.1123115577889448e-05, + "loss": 0.19063941955566407, + "step": 232200 + }, + { + "epoch": 77.82251444844627, + "grad_norm": 0.6163811087608337, + "learning_rate": 1.1106365159128978e-05, + "loss": 0.19099504470825196, + "step": 232300 + }, + { + "epoch": 77.8560180919675, + "grad_norm": 0.5668363571166992, + "learning_rate": 1.1089614740368509e-05, + "loss": 0.1901922607421875, + "step": 232400 + }, + { + "epoch": 77.88952173548873, + "grad_norm": 0.5424449443817139, + "learning_rate": 1.1072864321608041e-05, + "loss": 0.19019113540649413, + "step": 232500 + }, + { + "epoch": 77.92302537900997, + "grad_norm": 0.5976355671882629, + "learning_rate": 1.1056113902847571e-05, + "loss": 0.19223594665527344, + "step": 232600 + }, + { + "epoch": 77.9565290225312, + "grad_norm": 0.586529016494751, + "learning_rate": 1.1039363484087102e-05, + "loss": 0.19147846221923828, + "step": 232700 + }, + { + "epoch": 77.99003266605243, + "grad_norm": 0.478441447019577, + "learning_rate": 1.1022613065326634e-05, + "loss": 0.19069934844970704, + "step": 232800 + }, + { + "epoch": 78.02345255046487, + "grad_norm": 0.595913290977478, + "learning_rate": 1.1005862646566165e-05, + "loss": 0.188853759765625, + "step": 232900 + }, + { + "epoch": 78.0569561939861, + "grad_norm": 0.7776252031326294, + "learning_rate": 1.0989112227805695e-05, + "loss": 0.18635259628295897, + "step": 233000 + }, + { + "epoch": 78.09045983750732, + "grad_norm": 0.5748878717422485, + "learning_rate": 1.0972361809045227e-05, + "loss": 0.18685552597045899, + "step": 233100 + }, + { + "epoch": 78.12396348102857, + "grad_norm": 0.5180676579475403, + "learning_rate": 1.0955611390284758e-05, + "loss": 0.1877056121826172, + "step": 233200 + }, + { + "epoch": 78.1574671245498, + "grad_norm": 0.673117458820343, + "learning_rate": 1.0938860971524288e-05, + "loss": 0.18688018798828124, + "step": 233300 + }, + { + "epoch": 78.19097076807103, + "grad_norm": 0.6519831418991089, + "learning_rate": 1.092211055276382e-05, + "loss": 0.18750722885131835, + "step": 233400 + }, + { + "epoch": 78.22447441159225, + "grad_norm": 0.5309635400772095, + "learning_rate": 1.0905360134003351e-05, + "loss": 0.18738748550415038, + "step": 233500 + }, + { + "epoch": 78.2579780551135, + "grad_norm": 0.6039297580718994, + "learning_rate": 1.0888609715242882e-05, + "loss": 0.18785961151123046, + "step": 233600 + }, + { + "epoch": 78.29148169863473, + "grad_norm": 0.4987012445926666, + "learning_rate": 1.0871859296482414e-05, + "loss": 0.18820880889892577, + "step": 233700 + }, + { + "epoch": 78.32498534215595, + "grad_norm": 0.6190744638442993, + "learning_rate": 1.0855108877721944e-05, + "loss": 0.18877883911132812, + "step": 233800 + }, + { + "epoch": 78.3584889856772, + "grad_norm": 0.6907918453216553, + "learning_rate": 1.0838358458961475e-05, + "loss": 0.18849582672119142, + "step": 233900 + }, + { + "epoch": 78.39199262919843, + "grad_norm": 0.5600749850273132, + "learning_rate": 1.0821608040201005e-05, + "loss": 0.18884668350219727, + "step": 234000 + }, + { + "epoch": 78.42549627271966, + "grad_norm": 0.6390280723571777, + "learning_rate": 1.0805025125628141e-05, + "loss": 0.1880735397338867, + "step": 234100 + }, + { + "epoch": 78.45899991624088, + "grad_norm": 0.6333056688308716, + "learning_rate": 1.0788274706867672e-05, + "loss": 0.18834163665771483, + "step": 234200 + }, + { + "epoch": 78.49250355976213, + "grad_norm": 0.5011644959449768, + "learning_rate": 1.0771524288107202e-05, + "loss": 0.18952463150024415, + "step": 234300 + }, + { + "epoch": 78.52600720328336, + "grad_norm": 0.7219404578208923, + "learning_rate": 1.0754773869346735e-05, + "loss": 0.18985385894775392, + "step": 234400 + }, + { + "epoch": 78.55951084680459, + "grad_norm": 0.6397419571876526, + "learning_rate": 1.0738023450586265e-05, + "loss": 0.18919252395629882, + "step": 234500 + }, + { + "epoch": 78.59301449032583, + "grad_norm": 0.6841224431991577, + "learning_rate": 1.0721273031825796e-05, + "loss": 0.18944778442382812, + "step": 234600 + }, + { + "epoch": 78.62651813384706, + "grad_norm": 0.7453842163085938, + "learning_rate": 1.0704522613065328e-05, + "loss": 0.19007984161376953, + "step": 234700 + }, + { + "epoch": 78.66002177736829, + "grad_norm": 0.5905109643936157, + "learning_rate": 1.0687772194304858e-05, + "loss": 0.18957454681396485, + "step": 234800 + }, + { + "epoch": 78.69352542088953, + "grad_norm": 0.6769446134567261, + "learning_rate": 1.0671021775544389e-05, + "loss": 0.19039548873901369, + "step": 234900 + }, + { + "epoch": 78.72702906441076, + "grad_norm": 0.5825620293617249, + "learning_rate": 1.065427135678392e-05, + "loss": 0.1897379684448242, + "step": 235000 + }, + { + "epoch": 78.76053270793199, + "grad_norm": 0.6064398288726807, + "learning_rate": 1.0637520938023452e-05, + "loss": 0.18956695556640624, + "step": 235100 + }, + { + "epoch": 78.79403635145322, + "grad_norm": 0.5826224088668823, + "learning_rate": 1.0620770519262982e-05, + "loss": 0.19094810485839844, + "step": 235200 + }, + { + "epoch": 78.82753999497446, + "grad_norm": 0.6187439560890198, + "learning_rate": 1.0604020100502513e-05, + "loss": 0.190173397064209, + "step": 235300 + }, + { + "epoch": 78.86104363849569, + "grad_norm": 0.7878564596176147, + "learning_rate": 1.0587269681742045e-05, + "loss": 0.19098638534545898, + "step": 235400 + }, + { + "epoch": 78.89454728201692, + "grad_norm": 0.7218932509422302, + "learning_rate": 1.0570519262981575e-05, + "loss": 0.19098539352416993, + "step": 235500 + }, + { + "epoch": 78.92805092553816, + "grad_norm": 0.5134685635566711, + "learning_rate": 1.0553768844221106e-05, + "loss": 0.19038022994995119, + "step": 235600 + }, + { + "epoch": 78.96155456905939, + "grad_norm": 0.641615092754364, + "learning_rate": 1.0537018425460638e-05, + "loss": 0.1914260482788086, + "step": 235700 + }, + { + "epoch": 78.99505821258062, + "grad_norm": 0.6211548447608948, + "learning_rate": 1.0520268006700169e-05, + "loss": 0.1908476448059082, + "step": 235800 + }, + { + "epoch": 79.02847809699304, + "grad_norm": 0.5376355648040771, + "learning_rate": 1.0503517587939699e-05, + "loss": 0.18590696334838866, + "step": 235900 + }, + { + "epoch": 79.06198174051428, + "grad_norm": 0.5554808974266052, + "learning_rate": 1.0486767169179231e-05, + "loss": 0.18621206283569336, + "step": 236000 + }, + { + "epoch": 79.09548538403551, + "grad_norm": 0.6652063727378845, + "learning_rate": 1.0470184254606365e-05, + "loss": 0.18646297454833985, + "step": 236100 + }, + { + "epoch": 79.12898902755674, + "grad_norm": 0.6671931147575378, + "learning_rate": 1.0453433835845896e-05, + "loss": 0.18682302474975587, + "step": 236200 + }, + { + "epoch": 79.16249267107798, + "grad_norm": 0.6100969910621643, + "learning_rate": 1.0436683417085426e-05, + "loss": 0.18717609405517577, + "step": 236300 + }, + { + "epoch": 79.19599631459921, + "grad_norm": 0.7126432061195374, + "learning_rate": 1.0419932998324959e-05, + "loss": 0.18632455825805663, + "step": 236400 + }, + { + "epoch": 79.22949995812044, + "grad_norm": 0.5226724147796631, + "learning_rate": 1.040318257956449e-05, + "loss": 0.18794141769409178, + "step": 236500 + }, + { + "epoch": 79.26300360164169, + "grad_norm": 0.5243064165115356, + "learning_rate": 1.038643216080402e-05, + "loss": 0.18816068649291992, + "step": 236600 + }, + { + "epoch": 79.29650724516291, + "grad_norm": 0.607912003993988, + "learning_rate": 1.0369681742043552e-05, + "loss": 0.18687108993530274, + "step": 236700 + }, + { + "epoch": 79.33001088868414, + "grad_norm": 0.5773678421974182, + "learning_rate": 1.0352931323283082e-05, + "loss": 0.18846334457397462, + "step": 236800 + }, + { + "epoch": 79.36351453220537, + "grad_norm": 0.6360297203063965, + "learning_rate": 1.0336180904522613e-05, + "loss": 0.18933845520019532, + "step": 236900 + }, + { + "epoch": 79.39701817572661, + "grad_norm": 0.6809837222099304, + "learning_rate": 1.0319430485762145e-05, + "loss": 0.18878520965576173, + "step": 237000 + }, + { + "epoch": 79.43052181924784, + "grad_norm": 0.6212404370307922, + "learning_rate": 1.0302680067001676e-05, + "loss": 0.18835649490356446, + "step": 237100 + }, + { + "epoch": 79.46402546276907, + "grad_norm": 0.5026853680610657, + "learning_rate": 1.0285929648241206e-05, + "loss": 0.18797584533691405, + "step": 237200 + }, + { + "epoch": 79.49752910629032, + "grad_norm": 0.5610924959182739, + "learning_rate": 1.0269179229480738e-05, + "loss": 0.18864788055419923, + "step": 237300 + }, + { + "epoch": 79.53103274981154, + "grad_norm": 0.5812443494796753, + "learning_rate": 1.0252428810720269e-05, + "loss": 0.18857982635498047, + "step": 237400 + }, + { + "epoch": 79.56453639333277, + "grad_norm": 0.5942834615707397, + "learning_rate": 1.02356783919598e-05, + "loss": 0.18995513916015624, + "step": 237500 + }, + { + "epoch": 79.598040036854, + "grad_norm": 0.780934751033783, + "learning_rate": 1.021892797319933e-05, + "loss": 0.1898634147644043, + "step": 237600 + }, + { + "epoch": 79.63154368037524, + "grad_norm": 0.6805693507194519, + "learning_rate": 1.0202177554438862e-05, + "loss": 0.18985597610473634, + "step": 237700 + }, + { + "epoch": 79.66504732389647, + "grad_norm": 0.6133860349655151, + "learning_rate": 1.0185427135678393e-05, + "loss": 0.18866056442260742, + "step": 237800 + }, + { + "epoch": 79.6985509674177, + "grad_norm": 0.509017825126648, + "learning_rate": 1.0168676716917923e-05, + "loss": 0.1894827651977539, + "step": 237900 + }, + { + "epoch": 79.73205461093895, + "grad_norm": 0.7108103036880493, + "learning_rate": 1.0151926298157455e-05, + "loss": 0.18957220077514647, + "step": 238000 + }, + { + "epoch": 79.76555825446017, + "grad_norm": 0.5843678712844849, + "learning_rate": 1.013534338358459e-05, + "loss": 0.1894863700866699, + "step": 238100 + }, + { + "epoch": 79.7990618979814, + "grad_norm": 0.5689200758934021, + "learning_rate": 1.011859296482412e-05, + "loss": 0.189605712890625, + "step": 238200 + }, + { + "epoch": 79.83256554150263, + "grad_norm": 0.5582265257835388, + "learning_rate": 1.010184254606365e-05, + "loss": 0.1899770736694336, + "step": 238300 + }, + { + "epoch": 79.86606918502387, + "grad_norm": 0.7666222453117371, + "learning_rate": 1.0085092127303183e-05, + "loss": 0.19003982543945314, + "step": 238400 + }, + { + "epoch": 79.8995728285451, + "grad_norm": 0.5454803109169006, + "learning_rate": 1.0068341708542713e-05, + "loss": 0.1902810287475586, + "step": 238500 + }, + { + "epoch": 79.93307647206633, + "grad_norm": 0.7217103838920593, + "learning_rate": 1.0051591289782244e-05, + "loss": 0.19129709243774415, + "step": 238600 + }, + { + "epoch": 79.96658011558758, + "grad_norm": 0.5859233140945435, + "learning_rate": 1.0034840871021776e-05, + "loss": 0.19089550018310547, + "step": 238700 + }, + { + "epoch": 80.0, + "grad_norm": 0.7871226072311401, + "learning_rate": 1.0018090452261307e-05, + "loss": 0.19010568618774415, + "step": 238800 + }, + { + "epoch": 80.03350364352123, + "grad_norm": 0.6410444974899292, + "learning_rate": 1.0001340033500837e-05, + "loss": 0.18579286575317383, + "step": 238900 + }, + { + "epoch": 80.06700728704247, + "grad_norm": 0.49249953031539917, + "learning_rate": 9.98458961474037e-06, + "loss": 0.18595710754394532, + "step": 239000 + }, + { + "epoch": 80.1005109305637, + "grad_norm": 0.4707689583301544, + "learning_rate": 9.9678391959799e-06, + "loss": 0.1854451370239258, + "step": 239100 + }, + { + "epoch": 80.13401457408493, + "grad_norm": 0.6049455404281616, + "learning_rate": 9.95108877721943e-06, + "loss": 0.18605972290039063, + "step": 239200 + }, + { + "epoch": 80.16751821760616, + "grad_norm": 0.5813843011856079, + "learning_rate": 9.934338358458963e-06, + "loss": 0.18595891952514648, + "step": 239300 + }, + { + "epoch": 80.2010218611274, + "grad_norm": 0.6518586277961731, + "learning_rate": 9.917587939698493e-06, + "loss": 0.18725431442260743, + "step": 239400 + }, + { + "epoch": 80.23452550464863, + "grad_norm": 0.7379871010780334, + "learning_rate": 9.900837520938024e-06, + "loss": 0.18730653762817384, + "step": 239500 + }, + { + "epoch": 80.26802914816986, + "grad_norm": 0.7457312941551208, + "learning_rate": 9.884087102177556e-06, + "loss": 0.18689844131469727, + "step": 239600 + }, + { + "epoch": 80.3015327916911, + "grad_norm": 0.8484863638877869, + "learning_rate": 9.867336683417086e-06, + "loss": 0.18761758804321288, + "step": 239700 + }, + { + "epoch": 80.33503643521233, + "grad_norm": 0.6102080941200256, + "learning_rate": 9.850586264656617e-06, + "loss": 0.18688488006591797, + "step": 239800 + }, + { + "epoch": 80.36854007873356, + "grad_norm": 0.6622928380966187, + "learning_rate": 9.833835845896149e-06, + "loss": 0.18741252899169922, + "step": 239900 + }, + { + "epoch": 80.40204372225479, + "grad_norm": 0.5935907959938049, + "learning_rate": 9.81708542713568e-06, + "loss": 0.1878078269958496, + "step": 240000 + }, + { + "epoch": 80.43554736577603, + "grad_norm": 0.6074280142784119, + "learning_rate": 9.800502512562816e-06, + "loss": 0.18737226486206054, + "step": 240100 + }, + { + "epoch": 80.46905100929726, + "grad_norm": 0.6889368295669556, + "learning_rate": 9.783752093802346e-06, + "loss": 0.18822650909423827, + "step": 240200 + }, + { + "epoch": 80.50255465281849, + "grad_norm": 0.5317627787590027, + "learning_rate": 9.767001675041877e-06, + "loss": 0.1878480339050293, + "step": 240300 + }, + { + "epoch": 80.53605829633973, + "grad_norm": 0.5207783579826355, + "learning_rate": 9.750251256281407e-06, + "loss": 0.1882781219482422, + "step": 240400 + }, + { + "epoch": 80.56956193986096, + "grad_norm": 0.6113369464874268, + "learning_rate": 9.733500837520938e-06, + "loss": 0.1896601676940918, + "step": 240500 + }, + { + "epoch": 80.60306558338219, + "grad_norm": 0.6112746000289917, + "learning_rate": 9.716750418760468e-06, + "loss": 0.18931255340576172, + "step": 240600 + }, + { + "epoch": 80.63656922690343, + "grad_norm": 0.5978585481643677, + "learning_rate": 9.7e-06, + "loss": 0.18961137771606446, + "step": 240700 + }, + { + "epoch": 80.67007287042466, + "grad_norm": 0.5999939441680908, + "learning_rate": 9.68324958123953e-06, + "loss": 0.1893038558959961, + "step": 240800 + }, + { + "epoch": 80.70357651394589, + "grad_norm": 0.7477551698684692, + "learning_rate": 9.666499162479061e-06, + "loss": 0.19065048217773437, + "step": 240900 + }, + { + "epoch": 80.73708015746712, + "grad_norm": 0.49969878792762756, + "learning_rate": 9.649748743718594e-06, + "loss": 0.18887239456176758, + "step": 241000 + }, + { + "epoch": 80.77058380098836, + "grad_norm": 0.6229384541511536, + "learning_rate": 9.632998324958124e-06, + "loss": 0.18931352615356445, + "step": 241100 + }, + { + "epoch": 80.80408744450959, + "grad_norm": 0.5331135988235474, + "learning_rate": 9.616247906197655e-06, + "loss": 0.18917076110839845, + "step": 241200 + }, + { + "epoch": 80.83759108803082, + "grad_norm": 0.5475077629089355, + "learning_rate": 9.599497487437187e-06, + "loss": 0.18999635696411132, + "step": 241300 + }, + { + "epoch": 80.87109473155206, + "grad_norm": 0.6110318303108215, + "learning_rate": 9.582747068676717e-06, + "loss": 0.18988681793212892, + "step": 241400 + }, + { + "epoch": 80.90459837507329, + "grad_norm": 0.6834789514541626, + "learning_rate": 9.565996649916248e-06, + "loss": 0.18972234725952147, + "step": 241500 + }, + { + "epoch": 80.93810201859452, + "grad_norm": 0.5601489543914795, + "learning_rate": 9.54924623115578e-06, + "loss": 0.1901242446899414, + "step": 241600 + }, + { + "epoch": 80.97160566211575, + "grad_norm": 0.5707966685295105, + "learning_rate": 9.53249581239531e-06, + "loss": 0.19092308044433592, + "step": 241700 + }, + { + "epoch": 81.00502554652819, + "grad_norm": 0.6027684211730957, + "learning_rate": 9.515745393634841e-06, + "loss": 0.18986186981201172, + "step": 241800 + }, + { + "epoch": 81.03852919004942, + "grad_norm": 0.43851712346076965, + "learning_rate": 9.498994974874373e-06, + "loss": 0.1864785385131836, + "step": 241900 + }, + { + "epoch": 81.07203283357065, + "grad_norm": 0.5600922107696533, + "learning_rate": 9.482244556113904e-06, + "loss": 0.18667762756347656, + "step": 242000 + }, + { + "epoch": 81.10553647709189, + "grad_norm": 0.639335036277771, + "learning_rate": 9.46566164154104e-06, + "loss": 0.18642004013061522, + "step": 242100 + }, + { + "epoch": 81.13904012061312, + "grad_norm": 0.6750245690345764, + "learning_rate": 9.44891122278057e-06, + "loss": 0.18629102706909179, + "step": 242200 + }, + { + "epoch": 81.17254376413435, + "grad_norm": 0.5700585842132568, + "learning_rate": 9.4321608040201e-06, + "loss": 0.18613723754882813, + "step": 242300 + }, + { + "epoch": 81.20604740765559, + "grad_norm": 0.6852511167526245, + "learning_rate": 9.415410385259631e-06, + "loss": 0.18597820281982422, + "step": 242400 + }, + { + "epoch": 81.23955105117682, + "grad_norm": 0.5194628834724426, + "learning_rate": 9.398659966499162e-06, + "loss": 0.18753597259521484, + "step": 242500 + }, + { + "epoch": 81.27305469469805, + "grad_norm": 0.6448808312416077, + "learning_rate": 9.381909547738694e-06, + "loss": 0.18645841598510743, + "step": 242600 + }, + { + "epoch": 81.30655833821928, + "grad_norm": 0.4830906391143799, + "learning_rate": 9.365159128978224e-06, + "loss": 0.18598066329956053, + "step": 242700 + }, + { + "epoch": 81.34006198174052, + "grad_norm": 0.5368765592575073, + "learning_rate": 9.348408710217755e-06, + "loss": 0.18756242752075195, + "step": 242800 + }, + { + "epoch": 81.37356562526175, + "grad_norm": 0.7084921598434448, + "learning_rate": 9.331658291457287e-06, + "loss": 0.18713598251342772, + "step": 242900 + }, + { + "epoch": 81.40706926878298, + "grad_norm": 0.5406467318534851, + "learning_rate": 9.314907872696818e-06, + "loss": 0.18767911911010743, + "step": 243000 + }, + { + "epoch": 81.44057291230422, + "grad_norm": 0.6811279654502869, + "learning_rate": 9.298157453936348e-06, + "loss": 0.18792261123657228, + "step": 243100 + }, + { + "epoch": 81.47407655582545, + "grad_norm": 0.6793702244758606, + "learning_rate": 9.281407035175879e-06, + "loss": 0.18808685302734374, + "step": 243200 + }, + { + "epoch": 81.50758019934668, + "grad_norm": 0.5923267006874084, + "learning_rate": 9.264656616415411e-06, + "loss": 0.1878205108642578, + "step": 243300 + }, + { + "epoch": 81.5410838428679, + "grad_norm": 0.5069772005081177, + "learning_rate": 9.247906197654941e-06, + "loss": 0.18798334121704102, + "step": 243400 + }, + { + "epoch": 81.57458748638915, + "grad_norm": 0.6971927881240845, + "learning_rate": 9.231155778894472e-06, + "loss": 0.18779460906982423, + "step": 243500 + }, + { + "epoch": 81.60809112991038, + "grad_norm": 0.4844462275505066, + "learning_rate": 9.214405360134004e-06, + "loss": 0.1885888671875, + "step": 243600 + }, + { + "epoch": 81.6415947734316, + "grad_norm": 0.6287949085235596, + "learning_rate": 9.197654941373535e-06, + "loss": 0.18853179931640626, + "step": 243700 + }, + { + "epoch": 81.67509841695285, + "grad_norm": 0.5208948254585266, + "learning_rate": 9.180904522613065e-06, + "loss": 0.18876758575439453, + "step": 243800 + }, + { + "epoch": 81.70860206047408, + "grad_norm": 0.559596598148346, + "learning_rate": 9.164154103852597e-06, + "loss": 0.18983572006225585, + "step": 243900 + }, + { + "epoch": 81.7421057039953, + "grad_norm": 0.6286110877990723, + "learning_rate": 9.147403685092128e-06, + "loss": 0.18990949630737305, + "step": 244000 + }, + { + "epoch": 81.77560934751654, + "grad_norm": 0.6826990246772766, + "learning_rate": 9.130820770519264e-06, + "loss": 0.18897735595703125, + "step": 244100 + }, + { + "epoch": 81.80911299103778, + "grad_norm": 0.6137732267379761, + "learning_rate": 9.114070351758794e-06, + "loss": 0.1890528106689453, + "step": 244200 + }, + { + "epoch": 81.84261663455901, + "grad_norm": 0.6284852027893066, + "learning_rate": 9.097319932998327e-06, + "loss": 0.18912405014038086, + "step": 244300 + }, + { + "epoch": 81.87612027808024, + "grad_norm": 0.5774878859519958, + "learning_rate": 9.080569514237857e-06, + "loss": 0.18894084930419922, + "step": 244400 + }, + { + "epoch": 81.90962392160148, + "grad_norm": 0.6259322166442871, + "learning_rate": 9.063819095477388e-06, + "loss": 0.1898725700378418, + "step": 244500 + }, + { + "epoch": 81.94312756512271, + "grad_norm": 0.5645041465759277, + "learning_rate": 9.047068676716918e-06, + "loss": 0.18911539077758788, + "step": 244600 + }, + { + "epoch": 81.97663120864394, + "grad_norm": 0.5545311570167542, + "learning_rate": 9.030318257956449e-06, + "loss": 0.18874195098876953, + "step": 244700 + }, + { + "epoch": 82.01005109305638, + "grad_norm": 0.5122572779655457, + "learning_rate": 9.01356783919598e-06, + "loss": 0.1884039306640625, + "step": 244800 + }, + { + "epoch": 82.0435547365776, + "grad_norm": 0.5515125393867493, + "learning_rate": 8.996817420435511e-06, + "loss": 0.18567270278930664, + "step": 244900 + }, + { + "epoch": 82.07705838009883, + "grad_norm": 0.6537274122238159, + "learning_rate": 8.980067001675042e-06, + "loss": 0.18508878707885743, + "step": 245000 + }, + { + "epoch": 82.11056202362006, + "grad_norm": 0.5276825428009033, + "learning_rate": 8.963316582914572e-06, + "loss": 0.18604862213134765, + "step": 245100 + }, + { + "epoch": 82.1440656671413, + "grad_norm": 0.5946404933929443, + "learning_rate": 8.946566164154105e-06, + "loss": 0.18516014099121095, + "step": 245200 + }, + { + "epoch": 82.17756931066253, + "grad_norm": 0.5449401140213013, + "learning_rate": 8.929815745393635e-06, + "loss": 0.18614362716674804, + "step": 245300 + }, + { + "epoch": 82.21107295418376, + "grad_norm": 0.5503102540969849, + "learning_rate": 8.913065326633166e-06, + "loss": 0.18611763000488282, + "step": 245400 + }, + { + "epoch": 82.244576597705, + "grad_norm": 0.6990886330604553, + "learning_rate": 8.896314907872698e-06, + "loss": 0.1872243881225586, + "step": 245500 + }, + { + "epoch": 82.27808024122623, + "grad_norm": 0.5072383880615234, + "learning_rate": 8.879564489112228e-06, + "loss": 0.1860810661315918, + "step": 245600 + }, + { + "epoch": 82.31158388474746, + "grad_norm": 0.5636463165283203, + "learning_rate": 8.862814070351759e-06, + "loss": 0.18700706481933593, + "step": 245700 + }, + { + "epoch": 82.34508752826869, + "grad_norm": 0.5329198837280273, + "learning_rate": 8.84606365159129e-06, + "loss": 0.18637537002563476, + "step": 245800 + }, + { + "epoch": 82.37859117178994, + "grad_norm": 0.7562859654426575, + "learning_rate": 8.829313232830822e-06, + "loss": 0.1869906997680664, + "step": 245900 + }, + { + "epoch": 82.41209481531116, + "grad_norm": 0.642741322517395, + "learning_rate": 8.812562814070352e-06, + "loss": 0.18656137466430664, + "step": 246000 + }, + { + "epoch": 82.4455984588324, + "grad_norm": 0.62885582447052, + "learning_rate": 8.795979899497488e-06, + "loss": 0.18802295684814452, + "step": 246100 + }, + { + "epoch": 82.47910210235364, + "grad_norm": 0.5594859719276428, + "learning_rate": 8.779229480737019e-06, + "loss": 0.18712615966796875, + "step": 246200 + }, + { + "epoch": 82.51260574587486, + "grad_norm": 0.6333134174346924, + "learning_rate": 8.76247906197655e-06, + "loss": 0.18846635818481444, + "step": 246300 + }, + { + "epoch": 82.5461093893961, + "grad_norm": 0.6623076796531677, + "learning_rate": 8.745728643216081e-06, + "loss": 0.1880592155456543, + "step": 246400 + }, + { + "epoch": 82.57961303291734, + "grad_norm": 0.5541040301322937, + "learning_rate": 8.728978224455612e-06, + "loss": 0.1872352409362793, + "step": 246500 + }, + { + "epoch": 82.61311667643857, + "grad_norm": 0.5087713599205017, + "learning_rate": 8.712227805695142e-06, + "loss": 0.1888579559326172, + "step": 246600 + }, + { + "epoch": 82.6466203199598, + "grad_norm": 0.5055890679359436, + "learning_rate": 8.695477386934673e-06, + "loss": 0.18866750717163086, + "step": 246700 + }, + { + "epoch": 82.68012396348102, + "grad_norm": 0.4937209188938141, + "learning_rate": 8.678726968174205e-06, + "loss": 0.18850959777832033, + "step": 246800 + }, + { + "epoch": 82.71362760700227, + "grad_norm": 0.6762095093727112, + "learning_rate": 8.661976549413736e-06, + "loss": 0.1879727554321289, + "step": 246900 + }, + { + "epoch": 82.7471312505235, + "grad_norm": 0.6171196699142456, + "learning_rate": 8.645226130653266e-06, + "loss": 0.18954423904418946, + "step": 247000 + }, + { + "epoch": 82.78063489404472, + "grad_norm": 0.6400672197341919, + "learning_rate": 8.628475711892797e-06, + "loss": 0.18838544845581054, + "step": 247100 + }, + { + "epoch": 82.81413853756597, + "grad_norm": 0.5874627828598022, + "learning_rate": 8.611725293132329e-06, + "loss": 0.18863496780395508, + "step": 247200 + }, + { + "epoch": 82.8476421810872, + "grad_norm": 0.6051297187805176, + "learning_rate": 8.59497487437186e-06, + "loss": 0.1890684509277344, + "step": 247300 + }, + { + "epoch": 82.88114582460842, + "grad_norm": 0.6647644639015198, + "learning_rate": 8.57822445561139e-06, + "loss": 0.18968358993530274, + "step": 247400 + }, + { + "epoch": 82.91464946812965, + "grad_norm": 0.6016401648521423, + "learning_rate": 8.561474036850922e-06, + "loss": 0.18822206497192384, + "step": 247500 + }, + { + "epoch": 82.9481531116509, + "grad_norm": 0.5627951622009277, + "learning_rate": 8.544723618090453e-06, + "loss": 0.18971824645996094, + "step": 247600 + }, + { + "epoch": 82.98165675517212, + "grad_norm": 0.6368587613105774, + "learning_rate": 8.527973199329983e-06, + "loss": 0.18886089324951172, + "step": 247700 + }, + { + "epoch": 83.01507663958455, + "grad_norm": 0.5568286180496216, + "learning_rate": 8.511222780569515e-06, + "loss": 0.18792394638061524, + "step": 247800 + }, + { + "epoch": 83.04858028310579, + "grad_norm": 0.750466525554657, + "learning_rate": 8.494472361809046e-06, + "loss": 0.18552347183227538, + "step": 247900 + }, + { + "epoch": 83.08208392662702, + "grad_norm": 0.5758387446403503, + "learning_rate": 8.477721943048576e-06, + "loss": 0.18548595428466796, + "step": 248000 + }, + { + "epoch": 83.11558757014825, + "grad_norm": 0.6715633273124695, + "learning_rate": 8.461139028475712e-06, + "loss": 0.1856230354309082, + "step": 248100 + }, + { + "epoch": 83.1490912136695, + "grad_norm": 0.6111332178115845, + "learning_rate": 8.444388609715244e-06, + "loss": 0.1855340576171875, + "step": 248200 + }, + { + "epoch": 83.18259485719072, + "grad_norm": 0.5966615676879883, + "learning_rate": 8.427638190954775e-06, + "loss": 0.18604198455810547, + "step": 248300 + }, + { + "epoch": 83.21609850071195, + "grad_norm": 0.612937331199646, + "learning_rate": 8.410887772194305e-06, + "loss": 0.18526275634765624, + "step": 248400 + }, + { + "epoch": 83.24960214423318, + "grad_norm": 0.6167147159576416, + "learning_rate": 8.394137353433838e-06, + "loss": 0.18677328109741212, + "step": 248500 + }, + { + "epoch": 83.28310578775442, + "grad_norm": 0.5629482865333557, + "learning_rate": 8.377386934673368e-06, + "loss": 0.18594594955444335, + "step": 248600 + }, + { + "epoch": 83.31660943127565, + "grad_norm": 0.5856372714042664, + "learning_rate": 8.360636515912899e-06, + "loss": 0.18747835159301757, + "step": 248700 + }, + { + "epoch": 83.35011307479688, + "grad_norm": 0.6533538103103638, + "learning_rate": 8.34388609715243e-06, + "loss": 0.18700716018676758, + "step": 248800 + }, + { + "epoch": 83.38361671831812, + "grad_norm": 0.5694628953933716, + "learning_rate": 8.32713567839196e-06, + "loss": 0.1867087936401367, + "step": 248900 + }, + { + "epoch": 83.41712036183935, + "grad_norm": 0.7100234031677246, + "learning_rate": 8.31038525963149e-06, + "loss": 0.18678861618041992, + "step": 249000 + }, + { + "epoch": 83.45062400536058, + "grad_norm": 0.528014063835144, + "learning_rate": 8.29363484087102e-06, + "loss": 0.18693504333496094, + "step": 249100 + }, + { + "epoch": 83.48412764888181, + "grad_norm": 0.6683924198150635, + "learning_rate": 8.276884422110553e-06, + "loss": 0.18630191802978516, + "step": 249200 + }, + { + "epoch": 83.51763129240305, + "grad_norm": 0.6140015125274658, + "learning_rate": 8.260134003350083e-06, + "loss": 0.18822259902954103, + "step": 249300 + }, + { + "epoch": 83.55113493592428, + "grad_norm": 0.6404419541358948, + "learning_rate": 8.243383584589614e-06, + "loss": 0.18734935760498048, + "step": 249400 + }, + { + "epoch": 83.58463857944551, + "grad_norm": 0.5253821611404419, + "learning_rate": 8.226633165829146e-06, + "loss": 0.18713035583496093, + "step": 249500 + }, + { + "epoch": 83.61814222296675, + "grad_norm": 0.592951774597168, + "learning_rate": 8.209882747068677e-06, + "loss": 0.1879220962524414, + "step": 249600 + }, + { + "epoch": 83.65164586648798, + "grad_norm": 0.6963580846786499, + "learning_rate": 8.193132328308207e-06, + "loss": 0.18711292266845703, + "step": 249700 + }, + { + "epoch": 83.68514951000921, + "grad_norm": 0.5152623653411865, + "learning_rate": 8.17638190954774e-06, + "loss": 0.18781234741210937, + "step": 249800 + }, + { + "epoch": 83.71865315353044, + "grad_norm": 0.6002013087272644, + "learning_rate": 8.15963149078727e-06, + "loss": 0.18788719177246094, + "step": 249900 + }, + { + "epoch": 83.75215679705168, + "grad_norm": 0.7012782692909241, + "learning_rate": 8.1428810720268e-06, + "loss": 0.1878870391845703, + "step": 250000 + }, + { + "epoch": 83.78566044057291, + "grad_norm": 0.5836089849472046, + "learning_rate": 8.126130653266333e-06, + "loss": 0.18869754791259766, + "step": 250100 + }, + { + "epoch": 83.81916408409414, + "grad_norm": 0.5142480134963989, + "learning_rate": 8.109547738693469e-06, + "loss": 0.18811010360717773, + "step": 250200 + }, + { + "epoch": 83.85266772761538, + "grad_norm": 0.5308085083961487, + "learning_rate": 8.092797319932999e-06, + "loss": 0.18894163131713868, + "step": 250300 + }, + { + "epoch": 83.88617137113661, + "grad_norm": 0.5777791142463684, + "learning_rate": 8.07604690117253e-06, + "loss": 0.18823001861572267, + "step": 250400 + }, + { + "epoch": 83.91967501465784, + "grad_norm": 0.5273643732070923, + "learning_rate": 8.059296482412062e-06, + "loss": 0.18896015167236327, + "step": 250500 + }, + { + "epoch": 83.95317865817908, + "grad_norm": 0.5124455094337463, + "learning_rate": 8.042546063651592e-06, + "loss": 0.18926893234252928, + "step": 250600 + }, + { + "epoch": 83.98668230170031, + "grad_norm": 0.6289759278297424, + "learning_rate": 8.025795644891123e-06, + "loss": 0.18870933532714843, + "step": 250700 + }, + { + "epoch": 84.02010218611274, + "grad_norm": 0.6009929776191711, + "learning_rate": 8.009045226130653e-06, + "loss": 0.1856600570678711, + "step": 250800 + }, + { + "epoch": 84.05360582963397, + "grad_norm": 0.6856387257575989, + "learning_rate": 7.992294807370186e-06, + "loss": 0.18487995147705077, + "step": 250900 + }, + { + "epoch": 84.08710947315521, + "grad_norm": 0.5233118534088135, + "learning_rate": 7.975544388609716e-06, + "loss": 0.18613203048706053, + "step": 251000 + }, + { + "epoch": 84.12061311667644, + "grad_norm": 0.6100374460220337, + "learning_rate": 7.958793969849247e-06, + "loss": 0.18532003402709962, + "step": 251100 + }, + { + "epoch": 84.15411676019767, + "grad_norm": 0.5868030786514282, + "learning_rate": 7.942043551088777e-06, + "loss": 0.18455961227416992, + "step": 251200 + }, + { + "epoch": 84.18762040371891, + "grad_norm": 0.6049501299858093, + "learning_rate": 7.925293132328308e-06, + "loss": 0.1862618064880371, + "step": 251300 + }, + { + "epoch": 84.22112404724014, + "grad_norm": 0.6399788856506348, + "learning_rate": 7.90854271356784e-06, + "loss": 0.18547624588012696, + "step": 251400 + }, + { + "epoch": 84.25462769076137, + "grad_norm": 0.6293793320655823, + "learning_rate": 7.89179229480737e-06, + "loss": 0.18608217239379882, + "step": 251500 + }, + { + "epoch": 84.2881313342826, + "grad_norm": 0.5287208557128906, + "learning_rate": 7.875041876046901e-06, + "loss": 0.18579626083374023, + "step": 251600 + }, + { + "epoch": 84.32163497780384, + "grad_norm": 0.5985024571418762, + "learning_rate": 7.858291457286431e-06, + "loss": 0.18519624710083007, + "step": 251700 + }, + { + "epoch": 84.35513862132507, + "grad_norm": 0.594869077205658, + "learning_rate": 7.841541038525964e-06, + "loss": 0.18641794204711915, + "step": 251800 + }, + { + "epoch": 84.3886422648463, + "grad_norm": 0.6310123801231384, + "learning_rate": 7.824790619765494e-06, + "loss": 0.18554765701293946, + "step": 251900 + }, + { + "epoch": 84.42214590836754, + "grad_norm": 0.6834468841552734, + "learning_rate": 7.808040201005025e-06, + "loss": 0.18662025451660155, + "step": 252000 + }, + { + "epoch": 84.45564955188877, + "grad_norm": 0.5541797280311584, + "learning_rate": 7.791289782244557e-06, + "loss": 0.18684375762939454, + "step": 252100 + }, + { + "epoch": 84.48915319541, + "grad_norm": 0.6487085223197937, + "learning_rate": 7.774706867671693e-06, + "loss": 0.18705474853515625, + "step": 252200 + }, + { + "epoch": 84.52265683893124, + "grad_norm": 0.4895366430282593, + "learning_rate": 7.757956448911223e-06, + "loss": 0.18700340270996094, + "step": 252300 + }, + { + "epoch": 84.55616048245247, + "grad_norm": 0.5531443357467651, + "learning_rate": 7.741206030150754e-06, + "loss": 0.18807411193847656, + "step": 252400 + }, + { + "epoch": 84.5896641259737, + "grad_norm": 0.5510408878326416, + "learning_rate": 7.724455611390286e-06, + "loss": 0.18698272705078126, + "step": 252500 + }, + { + "epoch": 84.62316776949493, + "grad_norm": 0.6708593964576721, + "learning_rate": 7.707705192629817e-06, + "loss": 0.1877949905395508, + "step": 252600 + }, + { + "epoch": 84.65667141301617, + "grad_norm": 0.5115278363227844, + "learning_rate": 7.690954773869347e-06, + "loss": 0.1879779052734375, + "step": 252700 + }, + { + "epoch": 84.6901750565374, + "grad_norm": 0.6127870082855225, + "learning_rate": 7.67420435510888e-06, + "loss": 0.18695253372192383, + "step": 252800 + }, + { + "epoch": 84.72367870005863, + "grad_norm": 0.7335399389266968, + "learning_rate": 7.65745393634841e-06, + "loss": 0.18774644851684572, + "step": 252900 + }, + { + "epoch": 84.75718234357987, + "grad_norm": 0.5237014293670654, + "learning_rate": 7.64070351758794e-06, + "loss": 0.1880354881286621, + "step": 253000 + }, + { + "epoch": 84.7906859871011, + "grad_norm": 0.5270113348960876, + "learning_rate": 7.623953098827472e-06, + "loss": 0.18749366760253905, + "step": 253100 + }, + { + "epoch": 84.82418963062233, + "grad_norm": 0.6281821727752686, + "learning_rate": 7.607202680067002e-06, + "loss": 0.1876792335510254, + "step": 253200 + }, + { + "epoch": 84.85769327414356, + "grad_norm": 0.5125153064727783, + "learning_rate": 7.590452261306533e-06, + "loss": 0.18819995880126952, + "step": 253300 + }, + { + "epoch": 84.8911969176648, + "grad_norm": 0.5630070567131042, + "learning_rate": 7.573701842546065e-06, + "loss": 0.18900468826293945, + "step": 253400 + }, + { + "epoch": 84.92470056118603, + "grad_norm": 0.551005482673645, + "learning_rate": 7.556951423785595e-06, + "loss": 0.188682861328125, + "step": 253500 + }, + { + "epoch": 84.95820420470726, + "grad_norm": 0.5519696474075317, + "learning_rate": 7.540201005025126e-06, + "loss": 0.18850210189819336, + "step": 253600 + }, + { + "epoch": 84.9917078482285, + "grad_norm": 0.64322829246521, + "learning_rate": 7.523450586264657e-06, + "loss": 0.18925397872924804, + "step": 253700 + }, + { + "epoch": 85.02512773264093, + "grad_norm": 0.569341778755188, + "learning_rate": 7.506700167504188e-06, + "loss": 0.18594614028930664, + "step": 253800 + }, + { + "epoch": 85.05863137616215, + "grad_norm": 0.5993043184280396, + "learning_rate": 7.489949748743718e-06, + "loss": 0.18460994720458984, + "step": 253900 + }, + { + "epoch": 85.0921350196834, + "grad_norm": 0.4627517759799957, + "learning_rate": 7.4731993299832505e-06, + "loss": 0.18417888641357422, + "step": 254000 + }, + { + "epoch": 85.12563866320463, + "grad_norm": 0.5186675190925598, + "learning_rate": 7.456448911222781e-06, + "loss": 0.18561904907226562, + "step": 254100 + }, + { + "epoch": 85.15914230672585, + "grad_norm": 0.6953118443489075, + "learning_rate": 7.439865996649917e-06, + "loss": 0.18514400482177734, + "step": 254200 + }, + { + "epoch": 85.19264595024708, + "grad_norm": 0.507422685623169, + "learning_rate": 7.4231155778894475e-06, + "loss": 0.18599794387817384, + "step": 254300 + }, + { + "epoch": 85.22614959376833, + "grad_norm": 0.5243151783943176, + "learning_rate": 7.40636515912898e-06, + "loss": 0.18585119247436524, + "step": 254400 + }, + { + "epoch": 85.25965323728956, + "grad_norm": 0.5282275676727295, + "learning_rate": 7.38961474036851e-06, + "loss": 0.18537141799926757, + "step": 254500 + }, + { + "epoch": 85.29315688081078, + "grad_norm": 0.8133143782615662, + "learning_rate": 7.372864321608041e-06, + "loss": 0.18567739486694335, + "step": 254600 + }, + { + "epoch": 85.32666052433203, + "grad_norm": 0.5648775100708008, + "learning_rate": 7.356113902847571e-06, + "loss": 0.1864516830444336, + "step": 254700 + }, + { + "epoch": 85.36016416785326, + "grad_norm": 0.6094685792922974, + "learning_rate": 7.339363484087103e-06, + "loss": 0.1870036506652832, + "step": 254800 + }, + { + "epoch": 85.39366781137448, + "grad_norm": 0.5950913429260254, + "learning_rate": 7.322613065326633e-06, + "loss": 0.18513656616210938, + "step": 254900 + }, + { + "epoch": 85.42717145489571, + "grad_norm": 0.5510959029197693, + "learning_rate": 7.305862646566164e-06, + "loss": 0.18647272109985352, + "step": 255000 + }, + { + "epoch": 85.46067509841696, + "grad_norm": 0.7267409563064575, + "learning_rate": 7.289112227805696e-06, + "loss": 0.1857898712158203, + "step": 255100 + }, + { + "epoch": 85.49417874193819, + "grad_norm": 0.45163479447364807, + "learning_rate": 7.272361809045226e-06, + "loss": 0.18607278823852538, + "step": 255200 + }, + { + "epoch": 85.52768238545941, + "grad_norm": 0.4602172374725342, + "learning_rate": 7.255611390284757e-06, + "loss": 0.18727361679077148, + "step": 255300 + }, + { + "epoch": 85.56118602898066, + "grad_norm": 0.635420024394989, + "learning_rate": 7.238860971524289e-06, + "loss": 0.18634784698486329, + "step": 255400 + }, + { + "epoch": 85.59468967250189, + "grad_norm": 0.7202033996582031, + "learning_rate": 7.22211055276382e-06, + "loss": 0.18726907730102538, + "step": 255500 + }, + { + "epoch": 85.62819331602311, + "grad_norm": 0.5407751798629761, + "learning_rate": 7.20536013400335e-06, + "loss": 0.18667268753051758, + "step": 255600 + }, + { + "epoch": 85.66169695954434, + "grad_norm": 0.5636637806892395, + "learning_rate": 7.188609715242882e-06, + "loss": 0.18750267028808593, + "step": 255700 + }, + { + "epoch": 85.69520060306559, + "grad_norm": 0.4898567199707031, + "learning_rate": 7.171859296482413e-06, + "loss": 0.1871859359741211, + "step": 255800 + }, + { + "epoch": 85.72870424658682, + "grad_norm": 0.5712749361991882, + "learning_rate": 7.155108877721943e-06, + "loss": 0.18638862609863283, + "step": 255900 + }, + { + "epoch": 85.76220789010804, + "grad_norm": 0.46651607751846313, + "learning_rate": 7.138358458961475e-06, + "loss": 0.18812761306762696, + "step": 256000 + }, + { + "epoch": 85.79571153362929, + "grad_norm": 0.5160844326019287, + "learning_rate": 7.121608040201005e-06, + "loss": 0.18870893478393555, + "step": 256100 + }, + { + "epoch": 85.82921517715052, + "grad_norm": 0.5459625124931335, + "learning_rate": 7.105025125628141e-06, + "loss": 0.18762758255004883, + "step": 256200 + }, + { + "epoch": 85.86271882067174, + "grad_norm": 0.5653469562530518, + "learning_rate": 7.088274706867672e-06, + "loss": 0.18779273986816405, + "step": 256300 + }, + { + "epoch": 85.89622246419299, + "grad_norm": 0.6370869278907776, + "learning_rate": 7.071524288107204e-06, + "loss": 0.18751178741455077, + "step": 256400 + }, + { + "epoch": 85.92972610771422, + "grad_norm": 0.5533131957054138, + "learning_rate": 7.054773869346734e-06, + "loss": 0.1884653663635254, + "step": 256500 + }, + { + "epoch": 85.96322975123545, + "grad_norm": 0.6711784601211548, + "learning_rate": 7.038023450586265e-06, + "loss": 0.18683214187622071, + "step": 256600 + }, + { + "epoch": 85.99673339475667, + "grad_norm": 0.5515606999397278, + "learning_rate": 7.021273031825796e-06, + "loss": 0.1888846969604492, + "step": 256700 + }, + { + "epoch": 86.03015327916911, + "grad_norm": 0.5068252086639404, + "learning_rate": 7.004522613065327e-06, + "loss": 0.18496566772460937, + "step": 256800 + }, + { + "epoch": 86.06365692269034, + "grad_norm": 0.47771593928337097, + "learning_rate": 6.987772194304857e-06, + "loss": 0.184095401763916, + "step": 256900 + }, + { + "epoch": 86.09716056621157, + "grad_norm": 0.47911855578422546, + "learning_rate": 6.9710217755443895e-06, + "loss": 0.18482202529907227, + "step": 257000 + }, + { + "epoch": 86.13066420973281, + "grad_norm": 0.5584221482276917, + "learning_rate": 6.95427135678392e-06, + "loss": 0.18487674713134766, + "step": 257100 + }, + { + "epoch": 86.16416785325404, + "grad_norm": 0.47040486335754395, + "learning_rate": 6.9375209380234505e-06, + "loss": 0.18475263595581054, + "step": 257200 + }, + { + "epoch": 86.19767149677527, + "grad_norm": 0.6007068753242493, + "learning_rate": 6.920770519262981e-06, + "loss": 0.18603864669799805, + "step": 257300 + }, + { + "epoch": 86.23117514029651, + "grad_norm": 0.6026456356048584, + "learning_rate": 6.904020100502513e-06, + "loss": 0.18502817153930665, + "step": 257400 + }, + { + "epoch": 86.26467878381774, + "grad_norm": 0.4999913275241852, + "learning_rate": 6.887269681742044e-06, + "loss": 0.1868625259399414, + "step": 257500 + }, + { + "epoch": 86.29818242733897, + "grad_norm": 0.5064532160758972, + "learning_rate": 6.870519262981574e-06, + "loss": 0.18557401657104491, + "step": 257600 + }, + { + "epoch": 86.3316860708602, + "grad_norm": 0.47061556577682495, + "learning_rate": 6.8537688442211065e-06, + "loss": 0.1852064323425293, + "step": 257700 + }, + { + "epoch": 86.36518971438144, + "grad_norm": 0.5401563048362732, + "learning_rate": 6.837018425460637e-06, + "loss": 0.18540374755859376, + "step": 257800 + }, + { + "epoch": 86.39869335790267, + "grad_norm": 0.46041640639305115, + "learning_rate": 6.8202680067001675e-06, + "loss": 0.18596946716308593, + "step": 257900 + }, + { + "epoch": 86.4321970014239, + "grad_norm": 0.597866415977478, + "learning_rate": 6.803517587939699e-06, + "loss": 0.18595813751220702, + "step": 258000 + }, + { + "epoch": 86.46570064494514, + "grad_norm": 0.6081616878509521, + "learning_rate": 6.786767169179229e-06, + "loss": 0.18565729141235351, + "step": 258100 + }, + { + "epoch": 86.49920428846637, + "grad_norm": 0.5523788332939148, + "learning_rate": 6.770184254606365e-06, + "loss": 0.187158260345459, + "step": 258200 + }, + { + "epoch": 86.5327079319876, + "grad_norm": 0.5216212272644043, + "learning_rate": 6.753433835845896e-06, + "loss": 0.1858182144165039, + "step": 258300 + }, + { + "epoch": 86.56621157550883, + "grad_norm": 0.5936647057533264, + "learning_rate": 6.736683417085428e-06, + "loss": 0.1869313621520996, + "step": 258400 + }, + { + "epoch": 86.59971521903007, + "grad_norm": 0.6182869672775269, + "learning_rate": 6.7199329983249586e-06, + "loss": 0.18541063308715822, + "step": 258500 + }, + { + "epoch": 86.6332188625513, + "grad_norm": 0.5022922158241272, + "learning_rate": 6.703182579564489e-06, + "loss": 0.18641475677490235, + "step": 258600 + }, + { + "epoch": 86.66672250607253, + "grad_norm": 0.5892537832260132, + "learning_rate": 6.686432160804021e-06, + "loss": 0.1863780975341797, + "step": 258700 + }, + { + "epoch": 86.70022614959377, + "grad_norm": 0.6023449301719666, + "learning_rate": 6.669681742043552e-06, + "loss": 0.18697059631347657, + "step": 258800 + }, + { + "epoch": 86.733729793115, + "grad_norm": 0.4677959680557251, + "learning_rate": 6.652931323283082e-06, + "loss": 0.1872576904296875, + "step": 258900 + }, + { + "epoch": 86.76723343663623, + "grad_norm": 0.5693555474281311, + "learning_rate": 6.636180904522614e-06, + "loss": 0.18713676452636718, + "step": 259000 + }, + { + "epoch": 86.80073708015746, + "grad_norm": 0.6497491598129272, + "learning_rate": 6.619430485762144e-06, + "loss": 0.1870942497253418, + "step": 259100 + }, + { + "epoch": 86.8342407236787, + "grad_norm": 0.548832356929779, + "learning_rate": 6.602680067001675e-06, + "loss": 0.18688385009765626, + "step": 259200 + }, + { + "epoch": 86.86774436719993, + "grad_norm": 0.596001923084259, + "learning_rate": 6.585929648241207e-06, + "loss": 0.1876131248474121, + "step": 259300 + }, + { + "epoch": 86.90124801072116, + "grad_norm": 0.4879089891910553, + "learning_rate": 6.5691792294807374e-06, + "loss": 0.18763301849365235, + "step": 259400 + }, + { + "epoch": 86.9347516542424, + "grad_norm": 0.637677013874054, + "learning_rate": 6.552428810720268e-06, + "loss": 0.18786365509033204, + "step": 259500 + }, + { + "epoch": 86.96825529776363, + "grad_norm": 0.6771053671836853, + "learning_rate": 6.5356783919598e-06, + "loss": 0.18699560165405274, + "step": 259600 + }, + { + "epoch": 87.00167518217606, + "grad_norm": 0.4932768940925598, + "learning_rate": 6.518927973199331e-06, + "loss": 0.18727890014648438, + "step": 259700 + }, + { + "epoch": 87.0351788256973, + "grad_norm": 0.5554237961769104, + "learning_rate": 6.502177554438861e-06, + "loss": 0.18363922119140624, + "step": 259800 + }, + { + "epoch": 87.06868246921853, + "grad_norm": 0.49361878633499146, + "learning_rate": 6.485427135678392e-06, + "loss": 0.18403356552124023, + "step": 259900 + }, + { + "epoch": 87.10218611273976, + "grad_norm": 0.5164247155189514, + "learning_rate": 6.468676716917924e-06, + "loss": 0.1847250556945801, + "step": 260000 + }, + { + "epoch": 87.13568975626099, + "grad_norm": 0.6231299638748169, + "learning_rate": 6.4519262981574544e-06, + "loss": 0.18410905838012695, + "step": 260100 + }, + { + "epoch": 87.16919339978223, + "grad_norm": 0.510552167892456, + "learning_rate": 6.4353433835845895e-06, + "loss": 0.18483367919921875, + "step": 260200 + }, + { + "epoch": 87.20269704330346, + "grad_norm": 0.5737383961677551, + "learning_rate": 6.41859296482412e-06, + "loss": 0.18470308303833008, + "step": 260300 + }, + { + "epoch": 87.23620068682469, + "grad_norm": 0.5129623413085938, + "learning_rate": 6.401842546063652e-06, + "loss": 0.18547887802124025, + "step": 260400 + }, + { + "epoch": 87.26970433034593, + "grad_norm": 0.6173266172409058, + "learning_rate": 6.385092127303183e-06, + "loss": 0.18598060607910155, + "step": 260500 + }, + { + "epoch": 87.30320797386716, + "grad_norm": 0.544044554233551, + "learning_rate": 6.368341708542713e-06, + "loss": 0.18537967681884765, + "step": 260600 + }, + { + "epoch": 87.33671161738839, + "grad_norm": 0.5292858481407166, + "learning_rate": 6.3515912897822455e-06, + "loss": 0.18521123886108398, + "step": 260700 + }, + { + "epoch": 87.37021526090962, + "grad_norm": 0.594588041305542, + "learning_rate": 6.334840871021776e-06, + "loss": 0.18591339111328126, + "step": 260800 + }, + { + "epoch": 87.40371890443086, + "grad_norm": 0.5692018270492554, + "learning_rate": 6.3180904522613065e-06, + "loss": 0.1846309471130371, + "step": 260900 + }, + { + "epoch": 87.43722254795209, + "grad_norm": 0.6212311387062073, + "learning_rate": 6.301340033500838e-06, + "loss": 0.18584171295166016, + "step": 261000 + }, + { + "epoch": 87.47072619147332, + "grad_norm": 0.6049195528030396, + "learning_rate": 6.284589614740368e-06, + "loss": 0.1861904716491699, + "step": 261100 + }, + { + "epoch": 87.50422983499456, + "grad_norm": 0.5650988221168518, + "learning_rate": 6.2678391959799e-06, + "loss": 0.18642744064331054, + "step": 261200 + }, + { + "epoch": 87.53773347851579, + "grad_norm": 0.6198245286941528, + "learning_rate": 6.251088777219431e-06, + "loss": 0.1867201805114746, + "step": 261300 + }, + { + "epoch": 87.57123712203702, + "grad_norm": 0.6500935554504395, + "learning_rate": 6.234338358458962e-06, + "loss": 0.1860578727722168, + "step": 261400 + }, + { + "epoch": 87.60474076555825, + "grad_norm": 0.5311732888221741, + "learning_rate": 6.217587939698493e-06, + "loss": 0.18565948486328124, + "step": 261500 + }, + { + "epoch": 87.63824440907949, + "grad_norm": 0.736834704875946, + "learning_rate": 6.2008375209380235e-06, + "loss": 0.18650445938110352, + "step": 261600 + }, + { + "epoch": 87.67174805260072, + "grad_norm": 0.567558228969574, + "learning_rate": 6.184087102177555e-06, + "loss": 0.18658845901489257, + "step": 261700 + }, + { + "epoch": 87.70525169612195, + "grad_norm": 0.4581720232963562, + "learning_rate": 6.167336683417086e-06, + "loss": 0.18680118560791015, + "step": 261800 + }, + { + "epoch": 87.73875533964319, + "grad_norm": 0.6665058135986328, + "learning_rate": 6.150586264656617e-06, + "loss": 0.18713037490844728, + "step": 261900 + }, + { + "epoch": 87.77225898316442, + "grad_norm": 0.5811572670936584, + "learning_rate": 6.133835845896148e-06, + "loss": 0.1872100830078125, + "step": 262000 + }, + { + "epoch": 87.80576262668565, + "grad_norm": 0.5392748117446899, + "learning_rate": 6.117085427135679e-06, + "loss": 0.18684432983398438, + "step": 262100 + }, + { + "epoch": 87.83926627020689, + "grad_norm": 0.5572375655174255, + "learning_rate": 6.100502512562814e-06, + "loss": 0.18601211547851562, + "step": 262200 + }, + { + "epoch": 87.87276991372812, + "grad_norm": 0.6901904940605164, + "learning_rate": 6.083752093802345e-06, + "loss": 0.18694435119628905, + "step": 262300 + }, + { + "epoch": 87.90627355724935, + "grad_norm": 0.5973819494247437, + "learning_rate": 6.067001675041876e-06, + "loss": 0.18795061111450195, + "step": 262400 + }, + { + "epoch": 87.93977720077058, + "grad_norm": 0.5847058296203613, + "learning_rate": 6.050251256281407e-06, + "loss": 0.1869793701171875, + "step": 262500 + }, + { + "epoch": 87.97328084429182, + "grad_norm": 0.5993967056274414, + "learning_rate": 6.033500837520938e-06, + "loss": 0.1878180694580078, + "step": 262600 + }, + { + "epoch": 88.00670072870425, + "grad_norm": 0.532988429069519, + "learning_rate": 6.01675041876047e-06, + "loss": 0.18654600143432618, + "step": 262700 + }, + { + "epoch": 88.04020437222547, + "grad_norm": 0.5655828714370728, + "learning_rate": 6e-06, + "loss": 0.18439163208007814, + "step": 262800 + }, + { + "epoch": 88.07370801574672, + "grad_norm": 0.5616503357887268, + "learning_rate": 5.9832495812395315e-06, + "loss": 0.1837614631652832, + "step": 262900 + }, + { + "epoch": 88.10721165926795, + "grad_norm": 0.4429595470428467, + "learning_rate": 5.966499162479063e-06, + "loss": 0.18412097930908203, + "step": 263000 + }, + { + "epoch": 88.14071530278918, + "grad_norm": 0.4846174120903015, + "learning_rate": 5.949748743718593e-06, + "loss": 0.18443714141845702, + "step": 263100 + }, + { + "epoch": 88.17421894631042, + "grad_norm": 0.5053496956825256, + "learning_rate": 5.932998324958124e-06, + "loss": 0.1849221420288086, + "step": 263200 + }, + { + "epoch": 88.20772258983165, + "grad_norm": 0.5732136368751526, + "learning_rate": 5.916247906197655e-06, + "loss": 0.18445537567138673, + "step": 263300 + }, + { + "epoch": 88.24122623335288, + "grad_norm": 0.671688437461853, + "learning_rate": 5.899497487437186e-06, + "loss": 0.18499351501464845, + "step": 263400 + }, + { + "epoch": 88.2747298768741, + "grad_norm": 0.5794471502304077, + "learning_rate": 5.882747068676717e-06, + "loss": 0.18498233795166016, + "step": 263500 + }, + { + "epoch": 88.30823352039535, + "grad_norm": 0.5552869439125061, + "learning_rate": 5.865996649916248e-06, + "loss": 0.18548328399658204, + "step": 263600 + }, + { + "epoch": 88.34173716391658, + "grad_norm": 0.5315948724746704, + "learning_rate": 5.849246231155779e-06, + "loss": 0.18444686889648437, + "step": 263700 + }, + { + "epoch": 88.3752408074378, + "grad_norm": 0.6291096210479736, + "learning_rate": 5.83249581239531e-06, + "loss": 0.18497331619262694, + "step": 263800 + }, + { + "epoch": 88.40874445095905, + "grad_norm": 0.6358299851417542, + "learning_rate": 5.815745393634841e-06, + "loss": 0.1851169967651367, + "step": 263900 + }, + { + "epoch": 88.44224809448028, + "grad_norm": 0.5641636848449707, + "learning_rate": 5.798994974874372e-06, + "loss": 0.18581708908081054, + "step": 264000 + }, + { + "epoch": 88.4757517380015, + "grad_norm": 0.646516740322113, + "learning_rate": 5.782244556113904e-06, + "loss": 0.18616880416870119, + "step": 264100 + }, + { + "epoch": 88.50925538152273, + "grad_norm": 0.5487529635429382, + "learning_rate": 5.765494137353434e-06, + "loss": 0.18532644271850585, + "step": 264200 + }, + { + "epoch": 88.54275902504398, + "grad_norm": 0.5325868129730225, + "learning_rate": 5.748911222780569e-06, + "loss": 0.1863404655456543, + "step": 264300 + }, + { + "epoch": 88.5762626685652, + "grad_norm": 0.5119947195053101, + "learning_rate": 5.7321608040201006e-06, + "loss": 0.1858821678161621, + "step": 264400 + }, + { + "epoch": 88.60976631208644, + "grad_norm": 0.5027479529380798, + "learning_rate": 5.715410385259632e-06, + "loss": 0.18715795516967773, + "step": 264500 + }, + { + "epoch": 88.64326995560768, + "grad_norm": 0.6127695441246033, + "learning_rate": 5.6986599664991625e-06, + "loss": 0.1849302864074707, + "step": 264600 + }, + { + "epoch": 88.67677359912891, + "grad_norm": 0.5115147233009338, + "learning_rate": 5.681909547738694e-06, + "loss": 0.18587541580200195, + "step": 264700 + }, + { + "epoch": 88.71027724265014, + "grad_norm": 0.5533451437950134, + "learning_rate": 5.665159128978225e-06, + "loss": 0.1865237045288086, + "step": 264800 + }, + { + "epoch": 88.74378088617136, + "grad_norm": 0.7907216548919678, + "learning_rate": 5.648408710217756e-06, + "loss": 0.18539291381835937, + "step": 264900 + }, + { + "epoch": 88.77728452969261, + "grad_norm": 0.6062288284301758, + "learning_rate": 5.631658291457287e-06, + "loss": 0.18620302200317382, + "step": 265000 + }, + { + "epoch": 88.81078817321384, + "grad_norm": 0.5403768420219421, + "learning_rate": 5.6149078726968176e-06, + "loss": 0.18627490997314453, + "step": 265100 + }, + { + "epoch": 88.84429181673507, + "grad_norm": 0.47379136085510254, + "learning_rate": 5.598157453936349e-06, + "loss": 0.18624238967895507, + "step": 265200 + }, + { + "epoch": 88.87779546025631, + "grad_norm": 0.6376839280128479, + "learning_rate": 5.5814070351758794e-06, + "loss": 0.18673583984375, + "step": 265300 + }, + { + "epoch": 88.91129910377754, + "grad_norm": 0.5186110138893127, + "learning_rate": 5.564656616415411e-06, + "loss": 0.18633831024169922, + "step": 265400 + }, + { + "epoch": 88.94480274729877, + "grad_norm": 0.5298460721969604, + "learning_rate": 5.547906197654941e-06, + "loss": 0.18666128158569337, + "step": 265500 + }, + { + "epoch": 88.97830639082, + "grad_norm": 0.6699676513671875, + "learning_rate": 5.531155778894473e-06, + "loss": 0.18743110656738282, + "step": 265600 + }, + { + "epoch": 89.01172627523243, + "grad_norm": 0.7564083933830261, + "learning_rate": 5.514405360134003e-06, + "loss": 0.18580760955810546, + "step": 265700 + }, + { + "epoch": 89.04522991875366, + "grad_norm": 0.4524352252483368, + "learning_rate": 5.4976549413735346e-06, + "loss": 0.18369712829589843, + "step": 265800 + }, + { + "epoch": 89.07873356227489, + "grad_norm": 0.5215601325035095, + "learning_rate": 5.480904522613066e-06, + "loss": 0.18392160415649414, + "step": 265900 + }, + { + "epoch": 89.11223720579613, + "grad_norm": 0.5558773875236511, + "learning_rate": 5.4641541038525964e-06, + "loss": 0.18470701217651367, + "step": 266000 + }, + { + "epoch": 89.14574084931736, + "grad_norm": 0.5827058553695679, + "learning_rate": 5.447403685092128e-06, + "loss": 0.18471426010131836, + "step": 266100 + }, + { + "epoch": 89.17924449283859, + "grad_norm": 0.6175124645233154, + "learning_rate": 5.430653266331658e-06, + "loss": 0.18419244766235351, + "step": 266200 + }, + { + "epoch": 89.21274813635983, + "grad_norm": 0.5262554883956909, + "learning_rate": 5.41390284757119e-06, + "loss": 0.18310293197631836, + "step": 266300 + }, + { + "epoch": 89.24625177988106, + "grad_norm": 0.5767905712127686, + "learning_rate": 5.397319932998325e-06, + "loss": 0.1847786521911621, + "step": 266400 + }, + { + "epoch": 89.27975542340229, + "grad_norm": 0.45258834958076477, + "learning_rate": 5.380569514237856e-06, + "loss": 0.18412622451782226, + "step": 266500 + }, + { + "epoch": 89.31325906692352, + "grad_norm": 0.546626091003418, + "learning_rate": 5.363819095477387e-06, + "loss": 0.1842401695251465, + "step": 266600 + }, + { + "epoch": 89.34676271044476, + "grad_norm": 0.48357829451560974, + "learning_rate": 5.347068676716918e-06, + "loss": 0.18534393310546876, + "step": 266700 + }, + { + "epoch": 89.380266353966, + "grad_norm": 0.5069622993469238, + "learning_rate": 5.330318257956449e-06, + "loss": 0.18502262115478516, + "step": 266800 + }, + { + "epoch": 89.41376999748722, + "grad_norm": 0.6336747407913208, + "learning_rate": 5.31356783919598e-06, + "loss": 0.18472951889038086, + "step": 266900 + }, + { + "epoch": 89.44727364100847, + "grad_norm": 0.5919739603996277, + "learning_rate": 5.296817420435511e-06, + "loss": 0.185218505859375, + "step": 267000 + }, + { + "epoch": 89.4807772845297, + "grad_norm": 0.48863354325294495, + "learning_rate": 5.280067001675043e-06, + "loss": 0.18563102722167968, + "step": 267100 + }, + { + "epoch": 89.51428092805092, + "grad_norm": 0.6356630921363831, + "learning_rate": 5.263316582914573e-06, + "loss": 0.18483596801757812, + "step": 267200 + }, + { + "epoch": 89.54778457157215, + "grad_norm": 0.6572123765945435, + "learning_rate": 5.2465661641541045e-06, + "loss": 0.18614835739135743, + "step": 267300 + }, + { + "epoch": 89.5812882150934, + "grad_norm": 0.4905427396297455, + "learning_rate": 5.229815745393636e-06, + "loss": 0.18502700805664063, + "step": 267400 + }, + { + "epoch": 89.61479185861462, + "grad_norm": 0.53782057762146, + "learning_rate": 5.213065326633166e-06, + "loss": 0.1857935905456543, + "step": 267500 + }, + { + "epoch": 89.64829550213585, + "grad_norm": 0.6450851559638977, + "learning_rate": 5.196314907872697e-06, + "loss": 0.18643198013305665, + "step": 267600 + }, + { + "epoch": 89.6817991456571, + "grad_norm": 0.6173422336578369, + "learning_rate": 5.179564489112227e-06, + "loss": 0.1862980079650879, + "step": 267700 + }, + { + "epoch": 89.71530278917832, + "grad_norm": 0.564839243888855, + "learning_rate": 5.162814070351759e-06, + "loss": 0.1857726287841797, + "step": 267800 + }, + { + "epoch": 89.74880643269955, + "grad_norm": 0.5647773742675781, + "learning_rate": 5.14606365159129e-06, + "loss": 0.18673162460327147, + "step": 267900 + }, + { + "epoch": 89.7823100762208, + "grad_norm": 0.5144478678703308, + "learning_rate": 5.129313232830821e-06, + "loss": 0.18588918685913086, + "step": 268000 + }, + { + "epoch": 89.81581371974202, + "grad_norm": 0.47654643654823303, + "learning_rate": 5.112562814070352e-06, + "loss": 0.1857970428466797, + "step": 268100 + }, + { + "epoch": 89.84931736326325, + "grad_norm": 0.6091083288192749, + "learning_rate": 5.095812395309883e-06, + "loss": 0.18509552001953125, + "step": 268200 + }, + { + "epoch": 89.88282100678448, + "grad_norm": 0.5405870676040649, + "learning_rate": 5.079061976549414e-06, + "loss": 0.18604494094848634, + "step": 268300 + }, + { + "epoch": 89.91632465030573, + "grad_norm": 0.5205516815185547, + "learning_rate": 5.06247906197655e-06, + "loss": 0.1859523582458496, + "step": 268400 + }, + { + "epoch": 89.94982829382695, + "grad_norm": 0.5739098787307739, + "learning_rate": 5.04572864321608e-06, + "loss": 0.1862436866760254, + "step": 268500 + }, + { + "epoch": 89.98333193734818, + "grad_norm": 0.6661388278007507, + "learning_rate": 5.028978224455612e-06, + "loss": 0.18580772399902343, + "step": 268600 + }, + { + "epoch": 90.01675182176062, + "grad_norm": 0.5268995761871338, + "learning_rate": 5.012227805695142e-06, + "loss": 0.18514154434204103, + "step": 268700 + }, + { + "epoch": 90.05025546528185, + "grad_norm": 0.752692461013794, + "learning_rate": 4.9954773869346735e-06, + "loss": 0.18381275177001954, + "step": 268800 + }, + { + "epoch": 90.08375910880308, + "grad_norm": 0.6190829873085022, + "learning_rate": 4.978726968174205e-06, + "loss": 0.1839034652709961, + "step": 268900 + }, + { + "epoch": 90.11726275232432, + "grad_norm": 0.5042902827262878, + "learning_rate": 4.961976549413735e-06, + "loss": 0.18465267181396483, + "step": 269000 + }, + { + "epoch": 90.15076639584555, + "grad_norm": 0.5969473719596863, + "learning_rate": 4.945226130653267e-06, + "loss": 0.18303195953369142, + "step": 269100 + }, + { + "epoch": 90.18427003936678, + "grad_norm": 0.6725231409072876, + "learning_rate": 4.928475711892797e-06, + "loss": 0.18475696563720703, + "step": 269200 + }, + { + "epoch": 90.21777368288801, + "grad_norm": 0.456318736076355, + "learning_rate": 4.911725293132329e-06, + "loss": 0.18457313537597655, + "step": 269300 + }, + { + "epoch": 90.25127732640925, + "grad_norm": 0.5855475068092346, + "learning_rate": 4.89497487437186e-06, + "loss": 0.18437076568603517, + "step": 269400 + }, + { + "epoch": 90.28478096993048, + "grad_norm": 0.529436469078064, + "learning_rate": 4.8782244556113905e-06, + "loss": 0.18375736236572265, + "step": 269500 + }, + { + "epoch": 90.31828461345171, + "grad_norm": 0.5961082577705383, + "learning_rate": 4.861474036850922e-06, + "loss": 0.18455684661865235, + "step": 269600 + }, + { + "epoch": 90.35178825697295, + "grad_norm": 0.5185309052467346, + "learning_rate": 4.844723618090452e-06, + "loss": 0.1851878547668457, + "step": 269700 + }, + { + "epoch": 90.38529190049418, + "grad_norm": 0.40312084555625916, + "learning_rate": 4.827973199329983e-06, + "loss": 0.18382146835327148, + "step": 269800 + }, + { + "epoch": 90.41879554401541, + "grad_norm": 0.5168654322624207, + "learning_rate": 4.811222780569514e-06, + "loss": 0.18515111923217772, + "step": 269900 + }, + { + "epoch": 90.45229918753664, + "grad_norm": 0.5459558963775635, + "learning_rate": 4.794472361809046e-06, + "loss": 0.18459436416625977, + "step": 270000 + }, + { + "epoch": 90.48580283105788, + "grad_norm": 0.5190539956092834, + "learning_rate": 4.777721943048576e-06, + "loss": 0.1858159065246582, + "step": 270100 + }, + { + "epoch": 90.51930647457911, + "grad_norm": 0.4919435381889343, + "learning_rate": 4.7609715242881075e-06, + "loss": 0.18439708709716796, + "step": 270200 + }, + { + "epoch": 90.55281011810034, + "grad_norm": 0.4750555157661438, + "learning_rate": 4.744221105527638e-06, + "loss": 0.1842019462585449, + "step": 270300 + }, + { + "epoch": 90.58631376162158, + "grad_norm": 0.6852492690086365, + "learning_rate": 4.727638190954775e-06, + "loss": 0.18526426315307618, + "step": 270400 + }, + { + "epoch": 90.61981740514281, + "grad_norm": 0.6319891810417175, + "learning_rate": 4.710887772194305e-06, + "loss": 0.1851023864746094, + "step": 270500 + }, + { + "epoch": 90.65332104866404, + "grad_norm": 0.49747490882873535, + "learning_rate": 4.694137353433836e-06, + "loss": 0.18547800064086914, + "step": 270600 + }, + { + "epoch": 90.68682469218527, + "grad_norm": 0.4589165151119232, + "learning_rate": 4.677386934673366e-06, + "loss": 0.1850799560546875, + "step": 270700 + }, + { + "epoch": 90.72032833570651, + "grad_norm": 0.647290050983429, + "learning_rate": 4.660636515912898e-06, + "loss": 0.18597793579101562, + "step": 270800 + }, + { + "epoch": 90.75383197922774, + "grad_norm": 0.6682136058807373, + "learning_rate": 4.643886097152429e-06, + "loss": 0.1855238914489746, + "step": 270900 + }, + { + "epoch": 90.78733562274897, + "grad_norm": 0.5782601237297058, + "learning_rate": 4.62713567839196e-06, + "loss": 0.18538637161254884, + "step": 271000 + }, + { + "epoch": 90.82083926627021, + "grad_norm": 0.5579448938369751, + "learning_rate": 4.610385259631491e-06, + "loss": 0.1856587600708008, + "step": 271100 + }, + { + "epoch": 90.85434290979144, + "grad_norm": 0.5620039105415344, + "learning_rate": 4.593634840871022e-06, + "loss": 0.18588842391967775, + "step": 271200 + }, + { + "epoch": 90.88784655331267, + "grad_norm": 0.6530576348304749, + "learning_rate": 4.576884422110553e-06, + "loss": 0.18567676544189454, + "step": 271300 + }, + { + "epoch": 90.9213501968339, + "grad_norm": 0.6144570708274841, + "learning_rate": 4.560134003350084e-06, + "loss": 0.18605300903320313, + "step": 271400 + }, + { + "epoch": 90.95485384035514, + "grad_norm": 0.5530267357826233, + "learning_rate": 4.5433835845896156e-06, + "loss": 0.18595090866088868, + "step": 271500 + }, + { + "epoch": 90.98835748387637, + "grad_norm": 0.5598485469818115, + "learning_rate": 4.526633165829146e-06, + "loss": 0.1865631675720215, + "step": 271600 + }, + { + "epoch": 91.0217773682888, + "grad_norm": 0.4829404652118683, + "learning_rate": 4.5098827470686774e-06, + "loss": 0.18459095001220704, + "step": 271700 + }, + { + "epoch": 91.05528101181004, + "grad_norm": 0.7115753889083862, + "learning_rate": 4.493132328308208e-06, + "loss": 0.1838077163696289, + "step": 271800 + }, + { + "epoch": 91.08878465533127, + "grad_norm": 0.557543158531189, + "learning_rate": 4.4763819095477385e-06, + "loss": 0.1847819519042969, + "step": 271900 + }, + { + "epoch": 91.1222882988525, + "grad_norm": 0.5555517077445984, + "learning_rate": 4.45963149078727e-06, + "loss": 0.18323816299438478, + "step": 272000 + }, + { + "epoch": 91.15579194237374, + "grad_norm": 0.5963297486305237, + "learning_rate": 4.4428810720268e-06, + "loss": 0.1839584732055664, + "step": 272100 + }, + { + "epoch": 91.18929558589497, + "grad_norm": 0.58128821849823, + "learning_rate": 4.426130653266332e-06, + "loss": 0.1841065788269043, + "step": 272200 + }, + { + "epoch": 91.2227992294162, + "grad_norm": 0.4545518457889557, + "learning_rate": 4.409380234505863e-06, + "loss": 0.1835637855529785, + "step": 272300 + }, + { + "epoch": 91.25630287293743, + "grad_norm": 0.5214167237281799, + "learning_rate": 4.392629815745394e-06, + "loss": 0.18443021774291993, + "step": 272400 + }, + { + "epoch": 91.28980651645867, + "grad_norm": 0.46389076113700867, + "learning_rate": 4.3760469011725295e-06, + "loss": 0.18393590927124023, + "step": 272500 + }, + { + "epoch": 91.3233101599799, + "grad_norm": 0.6274188160896301, + "learning_rate": 4.359296482412061e-06, + "loss": 0.18395915985107422, + "step": 272600 + }, + { + "epoch": 91.35681380350113, + "grad_norm": 0.5550768971443176, + "learning_rate": 4.342546063651591e-06, + "loss": 0.18435438156127928, + "step": 272700 + }, + { + "epoch": 91.39031744702237, + "grad_norm": 0.5795305967330933, + "learning_rate": 4.325795644891122e-06, + "loss": 0.18411699295043946, + "step": 272800 + }, + { + "epoch": 91.4238210905436, + "grad_norm": 0.5524510145187378, + "learning_rate": 4.309045226130653e-06, + "loss": 0.18482681274414062, + "step": 272900 + }, + { + "epoch": 91.45732473406483, + "grad_norm": 0.4713156521320343, + "learning_rate": 4.292294807370185e-06, + "loss": 0.18384735107421876, + "step": 273000 + }, + { + "epoch": 91.49082837758607, + "grad_norm": 0.5844002366065979, + "learning_rate": 4.275544388609715e-06, + "loss": 0.1849127197265625, + "step": 273100 + }, + { + "epoch": 91.5243320211073, + "grad_norm": 0.5675417184829712, + "learning_rate": 4.2587939698492465e-06, + "loss": 0.18468017578125, + "step": 273200 + }, + { + "epoch": 91.55783566462853, + "grad_norm": 0.5666652917861938, + "learning_rate": 4.242043551088777e-06, + "loss": 0.18494237899780275, + "step": 273300 + }, + { + "epoch": 91.59133930814976, + "grad_norm": 0.46655622124671936, + "learning_rate": 4.225293132328308e-06, + "loss": 0.18492658615112303, + "step": 273400 + }, + { + "epoch": 91.624842951671, + "grad_norm": 0.5972129106521606, + "learning_rate": 4.20854271356784e-06, + "loss": 0.1859132766723633, + "step": 273500 + }, + { + "epoch": 91.65834659519223, + "grad_norm": 0.5144099593162537, + "learning_rate": 4.19179229480737e-06, + "loss": 0.1850869369506836, + "step": 273600 + }, + { + "epoch": 91.69185023871346, + "grad_norm": 0.46821364760398865, + "learning_rate": 4.175041876046902e-06, + "loss": 0.1852436828613281, + "step": 273700 + }, + { + "epoch": 91.7253538822347, + "grad_norm": 0.6473614573478699, + "learning_rate": 4.158291457286433e-06, + "loss": 0.1850813102722168, + "step": 273800 + }, + { + "epoch": 91.75885752575593, + "grad_norm": 0.7392449378967285, + "learning_rate": 4.1415410385259635e-06, + "loss": 0.18418787002563478, + "step": 273900 + }, + { + "epoch": 91.79236116927716, + "grad_norm": 0.5982920527458191, + "learning_rate": 4.124790619765494e-06, + "loss": 0.18475706100463868, + "step": 274000 + }, + { + "epoch": 91.82586481279839, + "grad_norm": 0.5010756254196167, + "learning_rate": 4.108040201005025e-06, + "loss": 0.18550140380859376, + "step": 274100 + }, + { + "epoch": 91.85936845631963, + "grad_norm": 0.42886313796043396, + "learning_rate": 4.091289782244556e-06, + "loss": 0.1851121711730957, + "step": 274200 + }, + { + "epoch": 91.89287209984086, + "grad_norm": 0.6056686043739319, + "learning_rate": 4.074539363484087e-06, + "loss": 0.18567405700683592, + "step": 274300 + }, + { + "epoch": 91.92637574336209, + "grad_norm": 0.6657816171646118, + "learning_rate": 4.057788944723618e-06, + "loss": 0.185372314453125, + "step": 274400 + }, + { + "epoch": 91.95987938688333, + "grad_norm": 0.7955371737480164, + "learning_rate": 4.041038525963149e-06, + "loss": 0.18559362411499022, + "step": 274500 + }, + { + "epoch": 91.99338303040456, + "grad_norm": 0.5486671924591064, + "learning_rate": 4.024455611390285e-06, + "loss": 0.18554763793945311, + "step": 274600 + }, + { + "epoch": 92.02680291481698, + "grad_norm": 0.4851992130279541, + "learning_rate": 4.007705192629816e-06, + "loss": 0.1837984085083008, + "step": 274700 + }, + { + "epoch": 92.06030655833823, + "grad_norm": 0.6564006805419922, + "learning_rate": 3.990954773869347e-06, + "loss": 0.1828889274597168, + "step": 274800 + }, + { + "epoch": 92.09381020185945, + "grad_norm": 0.4906276762485504, + "learning_rate": 3.974204355108877e-06, + "loss": 0.18224969863891602, + "step": 274900 + }, + { + "epoch": 92.12731384538068, + "grad_norm": 0.47474029660224915, + "learning_rate": 3.957453936348409e-06, + "loss": 0.18334747314453126, + "step": 275000 + }, + { + "epoch": 92.16081748890191, + "grad_norm": 0.5322253704071045, + "learning_rate": 3.940703517587939e-06, + "loss": 0.18336933135986327, + "step": 275100 + }, + { + "epoch": 92.19432113242316, + "grad_norm": 0.6422849297523499, + "learning_rate": 3.923953098827471e-06, + "loss": 0.18472524642944335, + "step": 275200 + }, + { + "epoch": 92.22782477594438, + "grad_norm": 0.555906355381012, + "learning_rate": 3.907202680067002e-06, + "loss": 0.18407018661499022, + "step": 275300 + }, + { + "epoch": 92.26132841946561, + "grad_norm": 0.5680630207061768, + "learning_rate": 3.8904522613065325e-06, + "loss": 0.18363739013671876, + "step": 275400 + }, + { + "epoch": 92.29483206298686, + "grad_norm": 0.5128674507141113, + "learning_rate": 3.873701842546064e-06, + "loss": 0.18399686813354493, + "step": 275500 + }, + { + "epoch": 92.32833570650808, + "grad_norm": 0.6279745697975159, + "learning_rate": 3.856951423785595e-06, + "loss": 0.18378208160400392, + "step": 275600 + }, + { + "epoch": 92.36183935002931, + "grad_norm": 0.601681113243103, + "learning_rate": 3.840201005025126e-06, + "loss": 0.18319509506225587, + "step": 275700 + }, + { + "epoch": 92.39534299355054, + "grad_norm": 0.5092858672142029, + "learning_rate": 3.823450586264657e-06, + "loss": 0.18382539749145507, + "step": 275800 + }, + { + "epoch": 92.42884663707179, + "grad_norm": 0.5969312191009521, + "learning_rate": 3.8067001675041877e-06, + "loss": 0.1847224235534668, + "step": 275900 + }, + { + "epoch": 92.46235028059301, + "grad_norm": 0.49249494075775146, + "learning_rate": 3.7899497487437186e-06, + "loss": 0.18417783737182616, + "step": 276000 + }, + { + "epoch": 92.49585392411424, + "grad_norm": 0.5279737710952759, + "learning_rate": 3.77319932998325e-06, + "loss": 0.18486669540405273, + "step": 276100 + }, + { + "epoch": 92.52935756763549, + "grad_norm": 0.5199563503265381, + "learning_rate": 3.7564489112227805e-06, + "loss": 0.18549766540527343, + "step": 276200 + }, + { + "epoch": 92.56286121115672, + "grad_norm": 0.5814909934997559, + "learning_rate": 3.739698492462312e-06, + "loss": 0.18439958572387696, + "step": 276300 + }, + { + "epoch": 92.59636485467794, + "grad_norm": 0.5165287852287292, + "learning_rate": 3.7229480737018428e-06, + "loss": 0.18408321380615233, + "step": 276400 + }, + { + "epoch": 92.62986849819917, + "grad_norm": 0.47519955039024353, + "learning_rate": 3.7061976549413733e-06, + "loss": 0.18507766723632812, + "step": 276500 + }, + { + "epoch": 92.66337214172042, + "grad_norm": 0.5444027185440063, + "learning_rate": 3.6894472361809047e-06, + "loss": 0.1847231101989746, + "step": 276600 + }, + { + "epoch": 92.69687578524164, + "grad_norm": 0.46999087929725647, + "learning_rate": 3.6728643216080406e-06, + "loss": 0.18614614486694336, + "step": 276700 + }, + { + "epoch": 92.73037942876287, + "grad_norm": 0.8311703205108643, + "learning_rate": 3.6561139028475715e-06, + "loss": 0.18451465606689454, + "step": 276800 + }, + { + "epoch": 92.76388307228412, + "grad_norm": 0.5036934614181519, + "learning_rate": 3.639363484087102e-06, + "loss": 0.18498050689697265, + "step": 276900 + }, + { + "epoch": 92.79738671580535, + "grad_norm": 0.7324947714805603, + "learning_rate": 3.6226130653266334e-06, + "loss": 0.184973087310791, + "step": 277000 + }, + { + "epoch": 92.83089035932657, + "grad_norm": 0.4393749535083771, + "learning_rate": 3.6058626465661647e-06, + "loss": 0.1858364486694336, + "step": 277100 + }, + { + "epoch": 92.8643940028478, + "grad_norm": 0.6435522437095642, + "learning_rate": 3.5891122278056953e-06, + "loss": 0.18547016143798828, + "step": 277200 + }, + { + "epoch": 92.89789764636905, + "grad_norm": 0.4739900529384613, + "learning_rate": 3.572361809045226e-06, + "loss": 0.18432489395141602, + "step": 277300 + }, + { + "epoch": 92.93140128989027, + "grad_norm": 0.5389711856842041, + "learning_rate": 3.555611390284757e-06, + "loss": 0.18447877883911132, + "step": 277400 + }, + { + "epoch": 92.9649049334115, + "grad_norm": 0.5507364869117737, + "learning_rate": 3.538860971524288e-06, + "loss": 0.18475034713745117, + "step": 277500 + }, + { + "epoch": 92.99840857693275, + "grad_norm": 0.6159628629684448, + "learning_rate": 3.5221105527638194e-06, + "loss": 0.18557378768920899, + "step": 277600 + }, + { + "epoch": 93.03182846134517, + "grad_norm": 0.555902361869812, + "learning_rate": 3.50536013400335e-06, + "loss": 0.18302148818969727, + "step": 277700 + }, + { + "epoch": 93.0653321048664, + "grad_norm": 0.6510830521583557, + "learning_rate": 3.4886097152428813e-06, + "loss": 0.18316720962524413, + "step": 277800 + }, + { + "epoch": 93.09883574838764, + "grad_norm": 0.5541417598724365, + "learning_rate": 3.4718592964824123e-06, + "loss": 0.18269014358520508, + "step": 277900 + }, + { + "epoch": 93.13233939190887, + "grad_norm": 0.5546096563339233, + "learning_rate": 3.455108877721943e-06, + "loss": 0.18281387329101562, + "step": 278000 + }, + { + "epoch": 93.1658430354301, + "grad_norm": 0.5906556248664856, + "learning_rate": 3.438358458961474e-06, + "loss": 0.18238527297973633, + "step": 278100 + }, + { + "epoch": 93.19934667895133, + "grad_norm": 0.5291375517845154, + "learning_rate": 3.4216080402010055e-06, + "loss": 0.18321968078613282, + "step": 278200 + }, + { + "epoch": 93.23285032247257, + "grad_norm": 0.49932029843330383, + "learning_rate": 3.404857621440536e-06, + "loss": 0.18250431060791017, + "step": 278300 + }, + { + "epoch": 93.2663539659938, + "grad_norm": 0.5344804525375366, + "learning_rate": 3.3881072026800674e-06, + "loss": 0.18370258331298828, + "step": 278400 + }, + { + "epoch": 93.29985760951503, + "grad_norm": 0.547133207321167, + "learning_rate": 3.371356783919598e-06, + "loss": 0.18311479568481445, + "step": 278500 + }, + { + "epoch": 93.33336125303627, + "grad_norm": 0.6846116185188293, + "learning_rate": 3.354606365159129e-06, + "loss": 0.18370712280273438, + "step": 278600 + }, + { + "epoch": 93.3668648965575, + "grad_norm": 0.5736503005027771, + "learning_rate": 3.33785594639866e-06, + "loss": 0.18427995681762696, + "step": 278700 + }, + { + "epoch": 93.40036854007873, + "grad_norm": 0.5363325476646423, + "learning_rate": 3.321273031825796e-06, + "loss": 0.18477426528930663, + "step": 278800 + }, + { + "epoch": 93.43387218359997, + "grad_norm": 0.5641268491744995, + "learning_rate": 3.3045226130653266e-06, + "loss": 0.18418367385864257, + "step": 278900 + }, + { + "epoch": 93.4673758271212, + "grad_norm": 0.5597323179244995, + "learning_rate": 3.2877721943048576e-06, + "loss": 0.18357982635498046, + "step": 279000 + }, + { + "epoch": 93.50087947064243, + "grad_norm": 0.5814647078514099, + "learning_rate": 3.271021775544389e-06, + "loss": 0.18340383529663085, + "step": 279100 + }, + { + "epoch": 93.53438311416366, + "grad_norm": 0.6923455595970154, + "learning_rate": 3.2542713567839194e-06, + "loss": 0.18384368896484374, + "step": 279200 + }, + { + "epoch": 93.5678867576849, + "grad_norm": 0.5960889458656311, + "learning_rate": 3.237520938023451e-06, + "loss": 0.18405187606811524, + "step": 279300 + }, + { + "epoch": 93.60139040120613, + "grad_norm": 0.4457511305809021, + "learning_rate": 3.2207705192629817e-06, + "loss": 0.1838911247253418, + "step": 279400 + }, + { + "epoch": 93.63489404472736, + "grad_norm": 0.5525141954421997, + "learning_rate": 3.2040201005025127e-06, + "loss": 0.18411317825317383, + "step": 279500 + }, + { + "epoch": 93.6683976882486, + "grad_norm": 0.4308946430683136, + "learning_rate": 3.1872696817420436e-06, + "loss": 0.18421003341674805, + "step": 279600 + }, + { + "epoch": 93.70190133176983, + "grad_norm": 0.4606753885746002, + "learning_rate": 3.170519262981575e-06, + "loss": 0.1856534194946289, + "step": 279700 + }, + { + "epoch": 93.73540497529106, + "grad_norm": 0.5044844150543213, + "learning_rate": 3.1537688442211055e-06, + "loss": 0.1849703598022461, + "step": 279800 + }, + { + "epoch": 93.76890861881229, + "grad_norm": 0.5462206602096558, + "learning_rate": 3.137018425460637e-06, + "loss": 0.18439491271972655, + "step": 279900 + }, + { + "epoch": 93.80241226233353, + "grad_norm": 0.6235095262527466, + "learning_rate": 3.120268006700168e-06, + "loss": 0.18433120727539062, + "step": 280000 + }, + { + "epoch": 93.83591590585476, + "grad_norm": 0.49713248014450073, + "learning_rate": 3.1035175879396987e-06, + "loss": 0.18527395248413087, + "step": 280100 + }, + { + "epoch": 93.86941954937599, + "grad_norm": 0.43499988317489624, + "learning_rate": 3.0867671691792297e-06, + "loss": 0.1845208740234375, + "step": 280200 + }, + { + "epoch": 93.90292319289723, + "grad_norm": 0.5285036563873291, + "learning_rate": 3.0700167504187606e-06, + "loss": 0.1845704460144043, + "step": 280300 + }, + { + "epoch": 93.93642683641846, + "grad_norm": 0.7002624869346619, + "learning_rate": 3.0532663316582916e-06, + "loss": 0.18544256210327148, + "step": 280400 + }, + { + "epoch": 93.96993047993969, + "grad_norm": 0.5086694955825806, + "learning_rate": 3.0365159128978225e-06, + "loss": 0.18481266021728515, + "step": 280500 + }, + { + "epoch": 94.00335036435213, + "grad_norm": 0.541530966758728, + "learning_rate": 3.019765494137354e-06, + "loss": 0.18497087478637694, + "step": 280600 + }, + { + "epoch": 94.03685400787336, + "grad_norm": 0.5113808512687683, + "learning_rate": 3.0030150753768844e-06, + "loss": 0.1830722427368164, + "step": 280700 + }, + { + "epoch": 94.07035765139459, + "grad_norm": 0.578902542591095, + "learning_rate": 2.9864321608040203e-06, + "loss": 0.1829450798034668, + "step": 280800 + }, + { + "epoch": 94.10386129491582, + "grad_norm": 0.47617286443710327, + "learning_rate": 2.9696817420435512e-06, + "loss": 0.18288434982299806, + "step": 280900 + }, + { + "epoch": 94.13736493843706, + "grad_norm": 0.5248568654060364, + "learning_rate": 2.952931323283082e-06, + "loss": 0.18265800476074218, + "step": 281000 + }, + { + "epoch": 94.17086858195829, + "grad_norm": 0.5427269339561462, + "learning_rate": 2.936180904522613e-06, + "loss": 0.1820301628112793, + "step": 281100 + }, + { + "epoch": 94.20437222547952, + "grad_norm": 0.5137001276016235, + "learning_rate": 2.919430485762144e-06, + "loss": 0.18303417205810546, + "step": 281200 + }, + { + "epoch": 94.23787586900076, + "grad_norm": 0.5321929454803467, + "learning_rate": 2.902680067001675e-06, + "loss": 0.1835261344909668, + "step": 281300 + }, + { + "epoch": 94.27137951252199, + "grad_norm": 0.4833122491836548, + "learning_rate": 2.8859296482412063e-06, + "loss": 0.18361148834228516, + "step": 281400 + }, + { + "epoch": 94.30488315604322, + "grad_norm": 0.6427774429321289, + "learning_rate": 2.8691792294807373e-06, + "loss": 0.18336435317993163, + "step": 281500 + }, + { + "epoch": 94.33838679956445, + "grad_norm": 0.45124322175979614, + "learning_rate": 2.8524288107202682e-06, + "loss": 0.1830876350402832, + "step": 281600 + }, + { + "epoch": 94.37189044308569, + "grad_norm": 0.5530322194099426, + "learning_rate": 2.835678391959799e-06, + "loss": 0.18310989379882814, + "step": 281700 + }, + { + "epoch": 94.40539408660692, + "grad_norm": 0.4179496169090271, + "learning_rate": 2.81892797319933e-06, + "loss": 0.18375337600708008, + "step": 281800 + }, + { + "epoch": 94.43889773012815, + "grad_norm": 0.5519108772277832, + "learning_rate": 2.802177554438861e-06, + "loss": 0.1845833969116211, + "step": 281900 + }, + { + "epoch": 94.47240137364939, + "grad_norm": 0.5219084620475769, + "learning_rate": 2.785427135678392e-06, + "loss": 0.18406974792480468, + "step": 282000 + }, + { + "epoch": 94.50590501717062, + "grad_norm": 0.6132789850234985, + "learning_rate": 2.7686767169179233e-06, + "loss": 0.18442945480346679, + "step": 282100 + }, + { + "epoch": 94.53940866069185, + "grad_norm": 0.5181702971458435, + "learning_rate": 2.7519262981574543e-06, + "loss": 0.1834421730041504, + "step": 282200 + }, + { + "epoch": 94.57291230421308, + "grad_norm": 0.549511194229126, + "learning_rate": 2.735175879396985e-06, + "loss": 0.18456022262573243, + "step": 282300 + }, + { + "epoch": 94.60641594773432, + "grad_norm": 0.5756514072418213, + "learning_rate": 2.7184254606365157e-06, + "loss": 0.1831919479370117, + "step": 282400 + }, + { + "epoch": 94.63991959125555, + "grad_norm": 0.5692307949066162, + "learning_rate": 2.701675041876047e-06, + "loss": 0.18358297348022462, + "step": 282500 + }, + { + "epoch": 94.67342323477678, + "grad_norm": 0.6947788596153259, + "learning_rate": 2.684924623115578e-06, + "loss": 0.1838298225402832, + "step": 282600 + }, + { + "epoch": 94.70692687829802, + "grad_norm": 0.5112714767456055, + "learning_rate": 2.668174204355109e-06, + "loss": 0.18363580703735352, + "step": 282700 + }, + { + "epoch": 94.74043052181925, + "grad_norm": 0.6610069274902344, + "learning_rate": 2.6515912897822445e-06, + "loss": 0.184285888671875, + "step": 282800 + }, + { + "epoch": 94.77393416534048, + "grad_norm": 0.5555760860443115, + "learning_rate": 2.634840871021776e-06, + "loss": 0.18415529251098633, + "step": 282900 + }, + { + "epoch": 94.8074378088617, + "grad_norm": 0.6111050844192505, + "learning_rate": 2.6180904522613068e-06, + "loss": 0.18409820556640624, + "step": 283000 + }, + { + "epoch": 94.84094145238295, + "grad_norm": 0.5163633227348328, + "learning_rate": 2.6013400335008377e-06, + "loss": 0.18490222930908204, + "step": 283100 + }, + { + "epoch": 94.87444509590418, + "grad_norm": 0.5600749254226685, + "learning_rate": 2.5845896147403686e-06, + "loss": 0.18375289916992188, + "step": 283200 + }, + { + "epoch": 94.90794873942541, + "grad_norm": 0.49500954151153564, + "learning_rate": 2.5678391959798996e-06, + "loss": 0.18480894088745117, + "step": 283300 + }, + { + "epoch": 94.94145238294665, + "grad_norm": 0.5733513236045837, + "learning_rate": 2.5510887772194305e-06, + "loss": 0.1837126922607422, + "step": 283400 + }, + { + "epoch": 94.97495602646788, + "grad_norm": 0.549117386341095, + "learning_rate": 2.5343383584589615e-06, + "loss": 0.18447158813476563, + "step": 283500 + }, + { + "epoch": 95.0083759108803, + "grad_norm": 0.4763764441013336, + "learning_rate": 2.517587939698493e-06, + "loss": 0.18384462356567383, + "step": 283600 + }, + { + "epoch": 95.04187955440155, + "grad_norm": 0.5236153602600098, + "learning_rate": 2.5008375209380238e-06, + "loss": 0.18261993408203125, + "step": 283700 + }, + { + "epoch": 95.07538319792278, + "grad_norm": 0.4592667818069458, + "learning_rate": 2.4840871021775543e-06, + "loss": 0.18320878982543945, + "step": 283800 + }, + { + "epoch": 95.108886841444, + "grad_norm": 0.506898820400238, + "learning_rate": 2.4673366834170852e-06, + "loss": 0.18264638900756835, + "step": 283900 + }, + { + "epoch": 95.14239048496523, + "grad_norm": 0.619023859500885, + "learning_rate": 2.4505862646566166e-06, + "loss": 0.18314945220947265, + "step": 284000 + }, + { + "epoch": 95.17589412848648, + "grad_norm": 0.48291823267936707, + "learning_rate": 2.4338358458961475e-06, + "loss": 0.18282480239868165, + "step": 284100 + }, + { + "epoch": 95.2093977720077, + "grad_norm": 0.48036035895347595, + "learning_rate": 2.4170854271356785e-06, + "loss": 0.1841721534729004, + "step": 284200 + }, + { + "epoch": 95.24290141552893, + "grad_norm": 0.5450857877731323, + "learning_rate": 2.40033500837521e-06, + "loss": 0.18397005081176757, + "step": 284300 + }, + { + "epoch": 95.27640505905018, + "grad_norm": 0.47729921340942383, + "learning_rate": 2.3835845896147403e-06, + "loss": 0.18345026016235352, + "step": 284400 + }, + { + "epoch": 95.3099087025714, + "grad_norm": 0.6052916646003723, + "learning_rate": 2.3668341708542713e-06, + "loss": 0.1844022560119629, + "step": 284500 + }, + { + "epoch": 95.34341234609263, + "grad_norm": 0.5513006448745728, + "learning_rate": 2.3500837520938022e-06, + "loss": 0.1827683639526367, + "step": 284600 + }, + { + "epoch": 95.37691598961388, + "grad_norm": 0.48488298058509827, + "learning_rate": 2.3333333333333336e-06, + "loss": 0.1831340026855469, + "step": 284700 + }, + { + "epoch": 95.4104196331351, + "grad_norm": 0.5309977531433105, + "learning_rate": 2.316750418760469e-06, + "loss": 0.18309810638427734, + "step": 284800 + }, + { + "epoch": 95.44392327665634, + "grad_norm": 0.43957263231277466, + "learning_rate": 2.3e-06, + "loss": 0.1831692123413086, + "step": 284900 + }, + { + "epoch": 95.47742692017756, + "grad_norm": 0.5356688499450684, + "learning_rate": 2.283249581239531e-06, + "loss": 0.18342973709106444, + "step": 285000 + }, + { + "epoch": 95.5109305636988, + "grad_norm": 0.5657954812049866, + "learning_rate": 2.2664991624790623e-06, + "loss": 0.18340103149414064, + "step": 285100 + }, + { + "epoch": 95.54443420722004, + "grad_norm": 0.5092414617538452, + "learning_rate": 2.2497487437185932e-06, + "loss": 0.18338417053222655, + "step": 285200 + }, + { + "epoch": 95.57793785074126, + "grad_norm": 0.4153210520744324, + "learning_rate": 2.232998324958124e-06, + "loss": 0.1836545181274414, + "step": 285300 + }, + { + "epoch": 95.61144149426251, + "grad_norm": 0.5015280842781067, + "learning_rate": 2.2162479061976547e-06, + "loss": 0.1827981948852539, + "step": 285400 + }, + { + "epoch": 95.64494513778374, + "grad_norm": 0.7179563641548157, + "learning_rate": 2.199497487437186e-06, + "loss": 0.18311439514160155, + "step": 285500 + }, + { + "epoch": 95.67844878130497, + "grad_norm": 0.5288705825805664, + "learning_rate": 2.182747068676717e-06, + "loss": 0.18439481735229493, + "step": 285600 + }, + { + "epoch": 95.7119524248262, + "grad_norm": 0.5110313296318054, + "learning_rate": 2.165996649916248e-06, + "loss": 0.18332534790039062, + "step": 285700 + }, + { + "epoch": 95.74545606834744, + "grad_norm": 0.5360533595085144, + "learning_rate": 2.1492462311557793e-06, + "loss": 0.18395133972167968, + "step": 285800 + }, + { + "epoch": 95.77895971186867, + "grad_norm": 0.534217894077301, + "learning_rate": 2.13249581239531e-06, + "loss": 0.18385652542114259, + "step": 285900 + }, + { + "epoch": 95.8124633553899, + "grad_norm": 0.6536206007003784, + "learning_rate": 2.1157453936348408e-06, + "loss": 0.18364360809326172, + "step": 286000 + }, + { + "epoch": 95.84596699891114, + "grad_norm": 0.5675894618034363, + "learning_rate": 2.0989949748743717e-06, + "loss": 0.18334434509277345, + "step": 286100 + }, + { + "epoch": 95.87947064243237, + "grad_norm": 0.5131775736808777, + "learning_rate": 2.082244556113903e-06, + "loss": 0.18401821136474608, + "step": 286200 + }, + { + "epoch": 95.9129742859536, + "grad_norm": 0.4480537176132202, + "learning_rate": 2.065494137353434e-06, + "loss": 0.18490314483642578, + "step": 286300 + }, + { + "epoch": 95.94647792947482, + "grad_norm": 0.566072404384613, + "learning_rate": 2.048743718592965e-06, + "loss": 0.18334156036376953, + "step": 286400 + }, + { + "epoch": 95.97998157299607, + "grad_norm": 0.5423669815063477, + "learning_rate": 2.031993299832496e-06, + "loss": 0.18419130325317382, + "step": 286500 + }, + { + "epoch": 96.01340145740849, + "grad_norm": 0.5609968900680542, + "learning_rate": 2.015242881072027e-06, + "loss": 0.18358615875244141, + "step": 286600 + }, + { + "epoch": 96.04690510092972, + "grad_norm": 0.4528324604034424, + "learning_rate": 1.9984924623115578e-06, + "loss": 0.18235225677490235, + "step": 286700 + }, + { + "epoch": 96.08040874445096, + "grad_norm": 0.4424758851528168, + "learning_rate": 1.9817420435510887e-06, + "loss": 0.18314834594726562, + "step": 286800 + }, + { + "epoch": 96.11391238797219, + "grad_norm": 0.5286248922348022, + "learning_rate": 1.965159128978224e-06, + "loss": 0.18267539978027345, + "step": 286900 + }, + { + "epoch": 96.14741603149342, + "grad_norm": 0.44464874267578125, + "learning_rate": 1.9484087102177555e-06, + "loss": 0.18318920135498046, + "step": 287000 + }, + { + "epoch": 96.18091967501466, + "grad_norm": 0.5130648016929626, + "learning_rate": 1.9316582914572865e-06, + "loss": 0.18308115005493164, + "step": 287100 + }, + { + "epoch": 96.21442331853589, + "grad_norm": 0.8183990120887756, + "learning_rate": 1.9149078726968174e-06, + "loss": 0.1834044075012207, + "step": 287200 + }, + { + "epoch": 96.24792696205712, + "grad_norm": 0.5199669599533081, + "learning_rate": 1.8981574539363486e-06, + "loss": 0.18283458709716796, + "step": 287300 + }, + { + "epoch": 96.28143060557835, + "grad_norm": 0.4842471778392792, + "learning_rate": 1.8814070351758795e-06, + "loss": 0.18268014907836913, + "step": 287400 + }, + { + "epoch": 96.3149342490996, + "grad_norm": 0.6083213686943054, + "learning_rate": 1.8646566164154105e-06, + "loss": 0.18216041564941407, + "step": 287500 + }, + { + "epoch": 96.34843789262082, + "grad_norm": 0.46411433815956116, + "learning_rate": 1.8479061976549414e-06, + "loss": 0.18271490097045898, + "step": 287600 + }, + { + "epoch": 96.38194153614205, + "grad_norm": 0.5906765460968018, + "learning_rate": 1.8311557788944725e-06, + "loss": 0.18355520248413085, + "step": 287700 + }, + { + "epoch": 96.4154451796633, + "grad_norm": 0.6398022174835205, + "learning_rate": 1.8144053601340035e-06, + "loss": 0.18388975143432618, + "step": 287800 + }, + { + "epoch": 96.44894882318452, + "grad_norm": 0.5343595147132874, + "learning_rate": 1.7976549413735344e-06, + "loss": 0.1829561996459961, + "step": 287900 + }, + { + "epoch": 96.48245246670575, + "grad_norm": 0.5307978987693787, + "learning_rate": 1.7809045226130656e-06, + "loss": 0.1831664276123047, + "step": 288000 + }, + { + "epoch": 96.51595611022698, + "grad_norm": 0.42967861890792847, + "learning_rate": 1.7641541038525965e-06, + "loss": 0.18227174758911133, + "step": 288100 + }, + { + "epoch": 96.54945975374822, + "grad_norm": 0.5349688529968262, + "learning_rate": 1.7474036850921274e-06, + "loss": 0.1833807945251465, + "step": 288200 + }, + { + "epoch": 96.58296339726945, + "grad_norm": 0.5560780167579651, + "learning_rate": 1.7306532663316582e-06, + "loss": 0.1837186622619629, + "step": 288300 + }, + { + "epoch": 96.61646704079068, + "grad_norm": 0.6274934411048889, + "learning_rate": 1.7139028475711895e-06, + "loss": 0.18322343826293946, + "step": 288400 + }, + { + "epoch": 96.64997068431192, + "grad_norm": 0.4825371503829956, + "learning_rate": 1.6971524288107205e-06, + "loss": 0.18326036453247072, + "step": 288500 + }, + { + "epoch": 96.68347432783315, + "grad_norm": 0.6797924041748047, + "learning_rate": 1.6804020100502512e-06, + "loss": 0.18284734725952148, + "step": 288600 + }, + { + "epoch": 96.71697797135438, + "grad_norm": 0.5788692235946655, + "learning_rate": 1.6636515912897821e-06, + "loss": 0.1840299606323242, + "step": 288700 + }, + { + "epoch": 96.75048161487561, + "grad_norm": 0.49273577332496643, + "learning_rate": 1.6469011725293135e-06, + "loss": 0.18266069412231445, + "step": 288800 + }, + { + "epoch": 96.78398525839685, + "grad_norm": 0.5252591967582703, + "learning_rate": 1.630318257956449e-06, + "loss": 0.1839330291748047, + "step": 288900 + }, + { + "epoch": 96.81748890191808, + "grad_norm": 0.6281270980834961, + "learning_rate": 1.61356783919598e-06, + "loss": 0.18259082794189452, + "step": 289000 + }, + { + "epoch": 96.85099254543931, + "grad_norm": 0.589600682258606, + "learning_rate": 1.5968174204355109e-06, + "loss": 0.18413593292236327, + "step": 289100 + }, + { + "epoch": 96.88449618896055, + "grad_norm": 0.52843177318573, + "learning_rate": 1.580067001675042e-06, + "loss": 0.18312227249145507, + "step": 289200 + }, + { + "epoch": 96.91799983248178, + "grad_norm": 0.5499556660652161, + "learning_rate": 1.563316582914573e-06, + "loss": 0.18327688217163085, + "step": 289300 + }, + { + "epoch": 96.95150347600301, + "grad_norm": 0.5910999178886414, + "learning_rate": 1.5465661641541041e-06, + "loss": 0.18362533569335937, + "step": 289400 + }, + { + "epoch": 96.98500711952425, + "grad_norm": 0.47498592734336853, + "learning_rate": 1.5298157453936348e-06, + "loss": 0.18386016845703124, + "step": 289500 + }, + { + "epoch": 97.01842700393668, + "grad_norm": 0.5408181548118591, + "learning_rate": 1.513065326633166e-06, + "loss": 0.18346582412719725, + "step": 289600 + }, + { + "epoch": 97.05193064745791, + "grad_norm": 0.6393353939056396, + "learning_rate": 1.496314907872697e-06, + "loss": 0.18178239822387696, + "step": 289700 + }, + { + "epoch": 97.08543429097914, + "grad_norm": 0.568048894405365, + "learning_rate": 1.4795644891122279e-06, + "loss": 0.1829755973815918, + "step": 289800 + }, + { + "epoch": 97.11893793450038, + "grad_norm": 0.4984806776046753, + "learning_rate": 1.4628140703517588e-06, + "loss": 0.1820225715637207, + "step": 289900 + }, + { + "epoch": 97.15244157802161, + "grad_norm": 0.4840709865093231, + "learning_rate": 1.44606365159129e-06, + "loss": 0.18249683380126952, + "step": 290000 + }, + { + "epoch": 97.18594522154284, + "grad_norm": 0.5016071200370789, + "learning_rate": 1.4293132328308207e-06, + "loss": 0.18231712341308592, + "step": 290100 + }, + { + "epoch": 97.21944886506408, + "grad_norm": 0.6901659965515137, + "learning_rate": 1.4125628140703518e-06, + "loss": 0.18322145462036132, + "step": 290200 + }, + { + "epoch": 97.25295250858531, + "grad_norm": 0.4563469886779785, + "learning_rate": 1.3958123953098828e-06, + "loss": 0.18245380401611327, + "step": 290300 + }, + { + "epoch": 97.28645615210654, + "grad_norm": 0.6341580152511597, + "learning_rate": 1.3790619765494137e-06, + "loss": 0.18248394012451172, + "step": 290400 + }, + { + "epoch": 97.31995979562778, + "grad_norm": 0.681046187877655, + "learning_rate": 1.3623115577889449e-06, + "loss": 0.18289484024047853, + "step": 290500 + }, + { + "epoch": 97.35346343914901, + "grad_norm": 0.5641540884971619, + "learning_rate": 1.3455611390284758e-06, + "loss": 0.18241430282592774, + "step": 290600 + }, + { + "epoch": 97.38696708267024, + "grad_norm": 0.46917444467544556, + "learning_rate": 1.3288107202680067e-06, + "loss": 0.18300029754638672, + "step": 290700 + }, + { + "epoch": 97.42047072619147, + "grad_norm": 0.5886017084121704, + "learning_rate": 1.3120603015075377e-06, + "loss": 0.18347707748413086, + "step": 290800 + }, + { + "epoch": 97.45397436971271, + "grad_norm": 0.5818371772766113, + "learning_rate": 1.2954773869346736e-06, + "loss": 0.1830360221862793, + "step": 290900 + }, + { + "epoch": 97.48747801323394, + "grad_norm": 0.5439379215240479, + "learning_rate": 1.2787269681742043e-06, + "loss": 0.18396745681762694, + "step": 291000 + }, + { + "epoch": 97.52098165675517, + "grad_norm": 0.5070674419403076, + "learning_rate": 1.2619765494137355e-06, + "loss": 0.1832095718383789, + "step": 291100 + }, + { + "epoch": 97.55448530027641, + "grad_norm": 0.4415448307991028, + "learning_rate": 1.2452261306532664e-06, + "loss": 0.18289644241333008, + "step": 291200 + }, + { + "epoch": 97.58798894379764, + "grad_norm": 0.4324808418750763, + "learning_rate": 1.2284757118927973e-06, + "loss": 0.18389009475708007, + "step": 291300 + }, + { + "epoch": 97.62149258731887, + "grad_norm": 0.653737485408783, + "learning_rate": 1.2117252931323283e-06, + "loss": 0.1822391700744629, + "step": 291400 + }, + { + "epoch": 97.6549962308401, + "grad_norm": 0.5741151571273804, + "learning_rate": 1.1949748743718594e-06, + "loss": 0.18301633834838868, + "step": 291500 + }, + { + "epoch": 97.68849987436134, + "grad_norm": 0.526233971118927, + "learning_rate": 1.1782244556113904e-06, + "loss": 0.18326601028442382, + "step": 291600 + }, + { + "epoch": 97.72200351788257, + "grad_norm": 0.4789596498012543, + "learning_rate": 1.1614740368509213e-06, + "loss": 0.18228565216064452, + "step": 291700 + }, + { + "epoch": 97.7555071614038, + "grad_norm": 0.711111307144165, + "learning_rate": 1.1447236180904523e-06, + "loss": 0.18288152694702148, + "step": 291800 + }, + { + "epoch": 97.78901080492504, + "grad_norm": 0.5140437483787537, + "learning_rate": 1.1279731993299832e-06, + "loss": 0.18254825592041016, + "step": 291900 + }, + { + "epoch": 97.82251444844627, + "grad_norm": 0.47034555673599243, + "learning_rate": 1.1112227805695143e-06, + "loss": 0.18244110107421874, + "step": 292000 + }, + { + "epoch": 97.8560180919675, + "grad_norm": 0.5814681053161621, + "learning_rate": 1.0944723618090453e-06, + "loss": 0.1832912254333496, + "step": 292100 + }, + { + "epoch": 97.88952173548873, + "grad_norm": 0.5516090393066406, + "learning_rate": 1.0777219430485762e-06, + "loss": 0.18352859497070312, + "step": 292200 + }, + { + "epoch": 97.92302537900997, + "grad_norm": 0.5123777985572815, + "learning_rate": 1.0609715242881072e-06, + "loss": 0.18379606246948244, + "step": 292300 + }, + { + "epoch": 97.9565290225312, + "grad_norm": 0.6835401654243469, + "learning_rate": 1.0442211055276383e-06, + "loss": 0.18410768508911132, + "step": 292400 + }, + { + "epoch": 97.99003266605243, + "grad_norm": 0.5012428760528564, + "learning_rate": 1.0274706867671693e-06, + "loss": 0.18317014694213868, + "step": 292500 + }, + { + "epoch": 98.02345255046487, + "grad_norm": 0.4708642065525055, + "learning_rate": 1.0107202680067002e-06, + "loss": 0.18331142425537109, + "step": 292600 + }, + { + "epoch": 98.0569561939861, + "grad_norm": 0.5567511320114136, + "learning_rate": 9.939698492462311e-07, + "loss": 0.18246702194213868, + "step": 292700 + }, + { + "epoch": 98.09045983750732, + "grad_norm": 0.7058369517326355, + "learning_rate": 9.772194304857623e-07, + "loss": 0.18259771347045897, + "step": 292800 + }, + { + "epoch": 98.12396348102857, + "grad_norm": 0.6134818196296692, + "learning_rate": 9.604690117252932e-07, + "loss": 0.1822067070007324, + "step": 292900 + }, + { + "epoch": 98.1574671245498, + "grad_norm": 0.4781286418437958, + "learning_rate": 9.438860971524289e-07, + "loss": 0.18297542572021486, + "step": 293000 + }, + { + "epoch": 98.19097076807103, + "grad_norm": 0.49279746413230896, + "learning_rate": 9.271356783919598e-07, + "loss": 0.18277181625366212, + "step": 293100 + }, + { + "epoch": 98.22447441159225, + "grad_norm": 0.5490056276321411, + "learning_rate": 9.103852596314908e-07, + "loss": 0.1828497314453125, + "step": 293200 + }, + { + "epoch": 98.2579780551135, + "grad_norm": 0.6629262566566467, + "learning_rate": 8.936348408710217e-07, + "loss": 0.1831769371032715, + "step": 293300 + }, + { + "epoch": 98.29148169863473, + "grad_norm": 0.6081374883651733, + "learning_rate": 8.768844221105528e-07, + "loss": 0.18234825134277344, + "step": 293400 + }, + { + "epoch": 98.32498534215595, + "grad_norm": 0.5573914051055908, + "learning_rate": 8.601340033500838e-07, + "loss": 0.18284347534179687, + "step": 293500 + }, + { + "epoch": 98.3584889856772, + "grad_norm": 0.4881286025047302, + "learning_rate": 8.433835845896148e-07, + "loss": 0.18250568389892577, + "step": 293600 + }, + { + "epoch": 98.39199262919843, + "grad_norm": 0.5479198694229126, + "learning_rate": 8.266331658291458e-07, + "loss": 0.1822296905517578, + "step": 293700 + }, + { + "epoch": 98.42549627271966, + "grad_norm": 0.48754844069480896, + "learning_rate": 8.098827470686768e-07, + "loss": 0.1824342918395996, + "step": 293800 + }, + { + "epoch": 98.45899991624088, + "grad_norm": 0.5909836292266846, + "learning_rate": 7.931323283082078e-07, + "loss": 0.18264894485473632, + "step": 293900 + }, + { + "epoch": 98.49250355976213, + "grad_norm": 0.6499689817428589, + "learning_rate": 7.763819095477387e-07, + "loss": 0.1826353645324707, + "step": 294000 + }, + { + "epoch": 98.52600720328336, + "grad_norm": 0.5792352557182312, + "learning_rate": 7.596314907872698e-07, + "loss": 0.18250282287597655, + "step": 294100 + }, + { + "epoch": 98.55951084680459, + "grad_norm": 0.6496483087539673, + "learning_rate": 7.428810720268007e-07, + "loss": 0.18278635025024415, + "step": 294200 + }, + { + "epoch": 98.59301449032583, + "grad_norm": 0.5034297704696655, + "learning_rate": 7.261306532663317e-07, + "loss": 0.18362100601196288, + "step": 294300 + }, + { + "epoch": 98.62651813384706, + "grad_norm": 0.4216485917568207, + "learning_rate": 7.093802345058627e-07, + "loss": 0.18190402984619142, + "step": 294400 + }, + { + "epoch": 98.66002177736829, + "grad_norm": 0.4336554706096649, + "learning_rate": 6.926298157453936e-07, + "loss": 0.18188596725463868, + "step": 294500 + }, + { + "epoch": 98.69352542088953, + "grad_norm": 0.557890772819519, + "learning_rate": 6.758793969849246e-07, + "loss": 0.1827729797363281, + "step": 294600 + }, + { + "epoch": 98.72702906441076, + "grad_norm": 0.5158662796020508, + "learning_rate": 6.591289782244556e-07, + "loss": 0.18270872116088868, + "step": 294700 + }, + { + "epoch": 98.76053270793199, + "grad_norm": 0.5574226975440979, + "learning_rate": 6.423785594639867e-07, + "loss": 0.18279212951660156, + "step": 294800 + }, + { + "epoch": 98.79403635145322, + "grad_norm": 0.6103866696357727, + "learning_rate": 6.256281407035176e-07, + "loss": 0.18242774963378905, + "step": 294900 + }, + { + "epoch": 98.82753999497446, + "grad_norm": 0.6679960489273071, + "learning_rate": 6.088777219430487e-07, + "loss": 0.18265195846557616, + "step": 295000 + }, + { + "epoch": 98.86104363849569, + "grad_norm": 0.5146142244338989, + "learning_rate": 5.922948073701842e-07, + "loss": 0.1826561737060547, + "step": 295100 + }, + { + "epoch": 98.89454728201692, + "grad_norm": 0.4862828850746155, + "learning_rate": 5.755443886097152e-07, + "loss": 0.1830119514465332, + "step": 295200 + }, + { + "epoch": 98.92805092553816, + "grad_norm": 0.5384283661842346, + "learning_rate": 5.587939698492462e-07, + "loss": 0.18346889495849608, + "step": 295300 + }, + { + "epoch": 98.96155456905939, + "grad_norm": 0.5220957398414612, + "learning_rate": 5.420435510887773e-07, + "loss": 0.18368080139160156, + "step": 295400 + }, + { + "epoch": 98.99505821258062, + "grad_norm": 0.4835510849952698, + "learning_rate": 5.252931323283082e-07, + "loss": 0.1819740867614746, + "step": 295500 + }, + { + "epoch": 99.02847809699304, + "grad_norm": 0.599375307559967, + "learning_rate": 5.085427135678393e-07, + "loss": 0.18192974090576172, + "step": 295600 + }, + { + "epoch": 99.06198174051428, + "grad_norm": 0.7051849365234375, + "learning_rate": 4.917922948073702e-07, + "loss": 0.1823443603515625, + "step": 295700 + }, + { + "epoch": 99.09548538403551, + "grad_norm": 0.503696858882904, + "learning_rate": 4.750418760469012e-07, + "loss": 0.18231864929199218, + "step": 295800 + }, + { + "epoch": 99.12898902755674, + "grad_norm": 0.48068055510520935, + "learning_rate": 4.582914572864322e-07, + "loss": 0.1825026512145996, + "step": 295900 + }, + { + "epoch": 99.16249267107798, + "grad_norm": 0.5054277777671814, + "learning_rate": 4.415410385259632e-07, + "loss": 0.18171930313110352, + "step": 296000 + }, + { + "epoch": 99.19599631459921, + "grad_norm": 0.4834759831428528, + "learning_rate": 4.247906197654941e-07, + "loss": 0.18209936141967772, + "step": 296100 + }, + { + "epoch": 99.22949995812044, + "grad_norm": 0.5204523205757141, + "learning_rate": 4.080402010050251e-07, + "loss": 0.18290546417236328, + "step": 296200 + }, + { + "epoch": 99.26300360164169, + "grad_norm": 0.4851609766483307, + "learning_rate": 3.9128978224455616e-07, + "loss": 0.18262216567993164, + "step": 296300 + }, + { + "epoch": 99.29650724516291, + "grad_norm": 0.506882905960083, + "learning_rate": 3.745393634840871e-07, + "loss": 0.18311552047729493, + "step": 296400 + }, + { + "epoch": 99.33001088868414, + "grad_norm": 0.4979182183742523, + "learning_rate": 3.577889447236181e-07, + "loss": 0.18193258285522462, + "step": 296500 + }, + { + "epoch": 99.36351453220537, + "grad_norm": 0.41721171140670776, + "learning_rate": 3.4103852596314913e-07, + "loss": 0.18166379928588866, + "step": 296600 + }, + { + "epoch": 99.39701817572661, + "grad_norm": 0.5125341415405273, + "learning_rate": 3.2428810720268007e-07, + "loss": 0.1818573760986328, + "step": 296700 + }, + { + "epoch": 99.43052181924784, + "grad_norm": 0.5992101430892944, + "learning_rate": 3.0753768844221106e-07, + "loss": 0.1827593421936035, + "step": 296800 + }, + { + "epoch": 99.46402546276907, + "grad_norm": 0.551201343536377, + "learning_rate": 2.9078726968174206e-07, + "loss": 0.18226703643798828, + "step": 296900 + }, + { + "epoch": 99.49752910629032, + "grad_norm": 0.4715881645679474, + "learning_rate": 2.7403685092127305e-07, + "loss": 0.18271636962890625, + "step": 297000 + }, + { + "epoch": 99.53103274981154, + "grad_norm": 0.48507949709892273, + "learning_rate": 2.5728643216080404e-07, + "loss": 0.18286649703979493, + "step": 297100 + }, + { + "epoch": 99.56453639333277, + "grad_norm": 0.5795986652374268, + "learning_rate": 2.4070351758793973e-07, + "loss": 0.18219593048095703, + "step": 297200 + }, + { + "epoch": 99.598040036854, + "grad_norm": 0.4794217646121979, + "learning_rate": 2.239530988274707e-07, + "loss": 0.18355159759521483, + "step": 297300 + }, + { + "epoch": 99.63154368037524, + "grad_norm": 0.5386576056480408, + "learning_rate": 2.0720268006700167e-07, + "loss": 0.1827494430541992, + "step": 297400 + }, + { + "epoch": 99.66504732389647, + "grad_norm": 0.5734672546386719, + "learning_rate": 1.9045226130653268e-07, + "loss": 0.18233570098876953, + "step": 297500 + }, + { + "epoch": 99.6985509674177, + "grad_norm": 0.49709200859069824, + "learning_rate": 1.7370184254606365e-07, + "loss": 0.18292242050170898, + "step": 297600 + }, + { + "epoch": 99.73205461093895, + "grad_norm": 0.46515047550201416, + "learning_rate": 1.5695142378559464e-07, + "loss": 0.18247623443603517, + "step": 297700 + }, + { + "epoch": 99.76555825446017, + "grad_norm": 0.5647607445716858, + "learning_rate": 1.4020100502512564e-07, + "loss": 0.18333343505859376, + "step": 297800 + }, + { + "epoch": 99.7990618979814, + "grad_norm": 0.5439239144325256, + "learning_rate": 1.2345058626465663e-07, + "loss": 0.1823881721496582, + "step": 297900 + }, + { + "epoch": 99.83256554150263, + "grad_norm": 0.5171498656272888, + "learning_rate": 1.067001675041876e-07, + "loss": 0.18236944198608399, + "step": 298000 + }, + { + "epoch": 99.86606918502387, + "grad_norm": 0.5662410259246826, + "learning_rate": 8.99497487437186e-08, + "loss": 0.18176408767700195, + "step": 298100 + }, + { + "epoch": 99.8995728285451, + "grad_norm": 0.5604025721549988, + "learning_rate": 7.319932998324959e-08, + "loss": 0.18264013290405273, + "step": 298200 + }, + { + "epoch": 99.93307647206633, + "grad_norm": 0.47708413004875183, + "learning_rate": 5.644891122278057e-08, + "loss": 0.1830152130126953, + "step": 298300 + }, + { + "epoch": 99.96658011558758, + "grad_norm": 0.4832232594490051, + "learning_rate": 3.9698492462311556e-08, + "loss": 0.1830759811401367, + "step": 298400 + }, + { + "epoch": 100.0, + "grad_norm": 0.6625775098800659, + "learning_rate": 2.2948073701842548e-08, + "loss": 0.1814161491394043, + "step": 298500 + } + ], + "logging_steps": 100, + "max_steps": 298500, + "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.511066860388352e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/training_args.bin b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/rtf_checkpoints/checkpoint-298500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/runtime_result.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a3505fe329181b0d3144c0553d16f678f7a9c37c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "m12", + "model": "realtabformer", + "run_id": "rtf-m12-20260330_074847", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/rtf-m12-95512-20260418_132327.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/staged_features.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a6df78b1e7df37d82c9f69413e26d4ae848a3c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/staged_features.json @@ -0,0 +1,162 @@ +[ + { + "feature_name": "hotel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "lead_time", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_year", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "arrival_date_week_number", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_day_of_month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_weekend_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_week_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "adults", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "babies", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "meal", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "market_segment", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "distribution_channel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_repeated_guest", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_cancellations", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_bookings_not_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "reserved_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "assigned_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "booking_changes", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "deposit_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "agent", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "company", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "days_in_waiting_list", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "customer_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "adr", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "required_car_parking_spaces", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "total_of_special_requests", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "reservation_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "reservation_status_date", + "data_type": "timestamp", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/test.csv b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..30c1b4b016bf3e7de99246eb0c12090a548eb9ff --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f493029a41815df91c3b28f521a2264951567318150110e5c27fa757ebc734 +size 1694120 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/train.csv b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb7c1b15cfae80b8f1256e5ab12043201bba9e7c --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2f868c246063628371ded60d767d155528ace18d424271c7271617a8ef4643 +size 13548268 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/val.csv b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..72af4a34a232e0bcfaf78244335bd139c3d0aa2a --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce173da72624b2b531e2d913ada1d29b77c0926be15b8d83a75911a1f5e36679 +size 1694777 diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/adapter_report.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5e35d8239a4faa012cded7b32ac4090bcf6b1d05 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/adapter_transforms_applied.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/model_input_manifest.json b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1fe73a6280606614bb4b0067f121549063172dff --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,677 @@ +{ + "dataset_id": "m12", + "model": "realtabformer", + "target_column": "customer_type", + "task_type": "classification", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/realtabformer/rtf-m12-20260330_074847/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/train_20260330_074852.log b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/train_20260330_074852.log new file mode 100644 index 0000000000000000000000000000000000000000..6cd8b417c692e2b66c218a679414ddd3f777d5f8 --- /dev/null +++ b/syntheticSuccess/m12/realtabformer/rtf-m12-20260330_074847/train_20260330_074852.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f15577b5526d660b4908cab8cd29fd7956f3a3d04fd29fad1cf62415a0258d8e +size 22788552 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/_tabsyn_sample.py b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..b610c1c68620ef474e1d30276acfbf948c5cedae --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746" +dataname = "tabsyn_m12" +output_csv = "/work/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260502_045948.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 95512 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "sample", + "--method", "tabsyn", + "--gpu", "0", + "--save_path", output_csv], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print(f"[TabSyn] Saved -> {output_csv}") diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/_tabsyn_train.py b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..62ccf8f36c68e2527cc0339ba516c3a245a55937 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/_tabsyn_train.py @@ -0,0 +1,62 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746" +dataname = "tabsyn_m12" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_cat_test.npy b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..798dee3e5e16a2073d95a52d8b9bf4ce0cece016 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1240f7a7798581566a4be9ba36fde3f86bf0bc330426e89820fab6f9d4654062 +size 1528320 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_cat_train.npy b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc894b88cd77ff933cc82d88236dcde15cb20fc2 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b7640122160210d2b95311d4c6cad821a48be7937a964db44f51601134cbaf +size 13753856 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_num_test.npy b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..f24dc124646495ee63cb98fe285a8e190c3592c7 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e21b88bbfabab970b1e969be03487ca2f94aadc66ce541698d9f3877b44876 +size 716468 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_num_train.npy b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..353eb9ec72fb30540e72ff288b6f0e0a17097a2c --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68aab6cbe2e67447145e7008c4b6a645bca904fd4b4357e42736732c914b602 +size 6447188 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/info.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/info.json new file mode 100644 index 0000000000000000000000000000000000000000..effa30d4d922ba6245038702b2e71503bc199973 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/info.json @@ -0,0 +1,303 @@ +{ + "name": "tabsyn_m12", + "task_type": "multiclass", + "n_num_features": 15, + "n_cat_features": 16, + "train_size": 107451, + "num_col_idx": [ + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 21, + 23, + 24, + 25, + 27, + 29, + 31 + ], + "cat_col_idx": [ + 0, + 1, + 4, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 22, + 28, + 30 + ], + "target_col_idx": [ + 26 + ], + "column_names": [ + "hotel", + "is_canceled", + "lead_time", + "arrival_date_year", + "arrival_date_month", + "arrival_date_week_number", + "arrival_date_day_of_month", + "stays_in_weekend_nights", + "stays_in_week_nights", + "adults", + "children", + "babies", + "meal", + "country", + "market_segment", + "distribution_channel", + "is_repeated_guest", + "previous_cancellations", + "previous_bookings_not_canceled", + "reserved_room_type", + "assigned_room_type", + "booking_changes", + "deposit_type", + "agent", + "company", + "days_in_waiting_list", + "customer_type", + "adr", + "required_car_parking_spaces", + "total_of_special_requests", + "reservation_status", + "reservation_status_date" + ], + "train_num": 107451, + "test_num": 11939, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m12/train.csv", + "test_path": null, + "idx_mapping": { + "0": 15, + "1": 16, + "2": 0, + "3": 1, + "4": 17, + "5": 2, + "6": 3, + "7": 4, + "8": 5, + "9": 6, + "10": 7, + "11": 18, + "12": 19, + "13": 20, + "14": 21, + "15": 22, + "16": 23, + "17": 24, + "18": 25, + "19": 26, + "20": 27, + "21": 8, + "22": 28, + "23": 9, + "24": 10, + "25": 11, + "26": 31, + "27": 12, + "28": 29, + "29": 13, + "30": 30, + "31": 14 + }, + "inverse_idx_mapping": { + "15": 0, + "16": 1, + "0": 2, + "1": 3, + "17": 4, + "2": 5, + "3": 6, + "4": 7, + "5": 8, + "6": 9, + "7": 10, + "18": 11, + "19": 12, + "20": 13, + "21": 14, + "22": 15, + "23": 16, + "24": 17, + "25": 18, + "26": 19, + "27": 20, + "8": 21, + "28": 22, + "9": 23, + "10": 24, + "11": 25, + "31": 26, + "12": 27, + "29": 28, + "13": 29, + "30": 30, + "14": 31 + }, + "idx_name_mapping": { + "0": "hotel", + "1": "is_canceled", + "2": "lead_time", + "3": "arrival_date_year", + "4": "arrival_date_month", + "5": "arrival_date_week_number", + "6": "arrival_date_day_of_month", + "7": "stays_in_weekend_nights", + "8": "stays_in_week_nights", + "9": "adults", + "10": "children", + "11": "babies", + "12": "meal", + "13": "country", + "14": "market_segment", + "15": "distribution_channel", + "16": "is_repeated_guest", + "17": "previous_cancellations", + "18": "previous_bookings_not_canceled", + "19": "reserved_room_type", + "20": "assigned_room_type", + "21": "booking_changes", + "22": "deposit_type", + "23": "agent", + "24": "company", + "25": "days_in_waiting_list", + "26": "customer_type", + "27": "adr", + "28": "required_car_parking_spaces", + "29": "total_of_special_requests", + "30": "reservation_status", + "31": "reservation_status_date" + }, + "n_classes": 4, + "metadata": { + "columns": { + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "21": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "23": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "24": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "25": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "27": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "29": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "31": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "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" + }, + "22": { + "sdtype": "categorical" + }, + "28": { + "sdtype": "categorical" + }, + "30": { + "sdtype": "categorical" + }, + "26": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/test.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3763487381a406214fa763b694dd4ebd6dc45a64 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3cd74dc41f30e37ed66c5c6bfe86c23cc39a1aae552c739cd71a1106cf2985 +size 947378 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/train.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1f0366435687875efbce5202fb86f378f9c55c47 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ae03981bfcac6197f8d26926168768607a5ea0e14381cc1d60d222909206bc +size 8521038 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/y_test.npy b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..d1699eff044638b2785f9e26e1363859146a4286 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89470fc0646fa00d444d3b7f5752d6b84cfdeb34e09f2c0dc1ec8cb600d1572d +size 95640 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/y_train.npy b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..bee33579f33cafea4b5cfa6b8d51d041d238d86d --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/data/tabsyn_m12/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774f3f265695a890a680322b90e04e34daff83e5d1fe6754d231f8ad74b734db +size 859736 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/gen_20260421_022103.log b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/gen_20260421_022103.log new file mode 100644 index 0000000000000000000000000000000000000000..aa512063b77f8245f02d000e34f53beba2d5f90d --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/gen_20260421_022103.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16ebbf5a2a384585b680400fd9c7c0fa49ecb4579fc84f8fd269d14884950c1 +size 677 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/gen_20260502_045948.log b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/gen_20260502_045948.log new file mode 100644 index 0000000000000000000000000000000000000000..0298f43c679f6f13c6093164218ba9a169c816d7 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/gen_20260502_045948.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c47bb2c020e2005667160b0c764015a354d44ad0e8885f1c3cc0c28b799bea9 +size 942 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/input_snapshot.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e9e1710f68bd7ee7e2ff981bd1ab5d075cce2737 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m12", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "exists": true, + "size": 13165359, + "sha256": "38507849456d473e77f70bde2e03dd69c9694d3640debeb0e1dd3a99b251862e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "exists": true, + "size": 1646795, + "sha256": "7efe1eb3cfa68fbb779e8cb8490109c774b8241e5896a77d083544f04ccf6c66" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv", + "exists": true, + "size": 1646190, + "sha256": "77c539bda6d6db356a6f1eb5d8344449f25d36b5309fa660bec41d855e49cefc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_profile.json", + "exists": true, + "size": 12659, + "sha256": "d8c17ef1f421dc55e8669ecc08ba8b3d6cbb007f953b59ef6014af322c187cc3" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_contract_v1.json", + "exists": true, + "size": 15493, + "sha256": "439a5ec1e598498ffc934040b6975f626db2990104def7a6095d2100f5a974ff" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..13970fcc2a09d39cc1add97c9eb4654cee58f612 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,670 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "columns": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/public_gate_report.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3bf58f493bcfc411bffebeec97fba57674499b --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m12", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "customer_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/staged_input_manifest.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..19b5681a55816afbfcad569b4cc357d5cb06a6b7 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/staged_input_manifest.json @@ -0,0 +1,675 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/runtime_result.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..dbef17a4d94949521bf6853780813d32db006e30 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/runtime_result.json @@ -0,0 +1,26 @@ +{ + "dataset_id": "m12", + "model": "tabsyn", + "run_id": "tabsyn-m12-20260420_221746", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260502_045948.csv" + }, + "timings": { + "train": { + "started_at": null, + "ended_at": null, + "duration_sec": null + }, + "generate": { + "started_at": "2026-05-02T04:59:48", + "ended_at": "2026-05-02T05:00:08", + "duration_sec": 20.541 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/staged_features.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a6df78b1e7df37d82c9f69413e26d4ae848a3c --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/staged_features.json @@ -0,0 +1,162 @@ +[ + { + "feature_name": "hotel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "lead_time", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_year", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "arrival_date_week_number", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_day_of_month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_weekend_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_week_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "adults", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "babies", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "meal", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "market_segment", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "distribution_channel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_repeated_guest", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_cancellations", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_bookings_not_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "reserved_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "assigned_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "booking_changes", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "deposit_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "agent", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "company", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "days_in_waiting_list", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "customer_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "adr", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "required_car_parking_spaces", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "total_of_special_requests", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "reservation_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "reservation_status_date", + "data_type": "timestamp", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/test.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..30c1b4b016bf3e7de99246eb0c12090a548eb9ff --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f493029a41815df91c3b28f521a2264951567318150110e5c27fa757ebc734 +size 1694120 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/train.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb7c1b15cfae80b8f1256e5ab12043201bba9e7c --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2f868c246063628371ded60d767d155528ace18d424271c7271617a8ef4643 +size 13548268 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/val.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..72af4a34a232e0bcfaf78244335bd139c3d0aa2a --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce173da72624b2b531e2d913ada1d29b77c0926be15b8d83a75911a1f5e36679 +size 1694777 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/adapter_report.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a90f6ec2e5bccf875f471700cc186f5cc3ef1577 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/adapter_transforms_applied.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/model_input_manifest.json b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3a8b968ed69011f9d6845e0d479488b29a7d960f --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,677 @@ +{ + "dataset_id": "m12", + "model": "tabsyn", + "target_column": "customer_type", + "task_type": "classification", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tabsyn/tabsyn-m12-20260420_221746/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/synthetic/tabsyn_m12/real.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/synthetic/tabsyn_m12/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..1f0366435687875efbce5202fb86f378f9c55c47 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/synthetic/tabsyn_m12/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ae03981bfcac6197f8d26926168768607a5ea0e14381cc1d60d222909206bc +size 8521038 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/synthetic/tabsyn_m12/test.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/synthetic/tabsyn_m12/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3763487381a406214fa763b694dd4ebd6dc45a64 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/synthetic/tabsyn_m12/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3cd74dc41f30e37ed66c5c6bfe86c23cc39a1aae552c739cd71a1106cf2985 +size 947378 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260421_022103.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260421_022103.csv new file mode 100644 index 0000000000000000000000000000000000000000..23bbde6c8ea3b5f5f6b1e967d66026c339a3b9d1 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260421_022103.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63768e17492d451932a1df11a172d62e861a8ea3d526b2d630927475a8b1bcba +size 12708334 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260502_045948.csv b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260502_045948.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e39e6d1a71e3c9e52fd6ffd621430d7874cb1b9 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/tabsyn-m12-95512-20260502_045948.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903fbcaead8b5a467b85820c5abbfc26dc55bfc0a56cb3e0137d7ea198cd8b0b +size 12707635 diff --git a/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/train_20260420_221757.log b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/train_20260420_221757.log new file mode 100644 index 0000000000000000000000000000000000000000..0947f6d0e6879b37ef60c93d6be9bc49a07fc2a5 --- /dev/null +++ b/syntheticSuccess/m12/tabsyn/tabsyn-m12-20260420_221746/train_20260420_221757.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5393783a93aa2f0279d63ee45018c160aaebd3cf6a9aa2938c136770d0d3acfb +size 14163298 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/_tvae_generate.py b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ce4d10617cfc3429d442a56e864ade17b5c574c0 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/_tvae_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.tvae import TVAE +model = TVAE.load("/work/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/models_300epochs/tvae_300epochs.pt") +total = 95512 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +samples = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +samples.to_csv("/work/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/tvae-m12-95512-20260420_024729.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/tvae-m12-95512-20260420_024729.csv") diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/_tvae_train.py b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..80c0eb1952bb9b178f0486d026796e671e61fd23 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/_tvae_train.py @@ -0,0 +1,16 @@ +import json, sys +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +csv_path = "/work/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/models_300epochs/tvae_300epochs.pt" +epochs = 300 + +data, discrete_columns = read_csv(csv_path, meta_path, header=True, discrete=None) +print(f"[TVAE] Training on {len(data)} rows, {len(data.columns)} cols, epochs={epochs}") +model = TVAE(epochs=epochs, batch_size=500) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260328_105322.log b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260328_105322.log new file mode 100644 index 0000000000000000000000000000000000000000..3e2ad3e290f398bfb29294b5ea2da02f2e45071a --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260328_105322.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af52a3cefbdb4c943d5eaebe8364399190fd22914fe9fb76b4ac63ca5e1f15ca +size 1362 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260419_065613.log b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260419_065613.log new file mode 100644 index 0000000000000000000000000000000000000000..0b589d9316e5b3d8d932a972ac3951042b356153 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260419_065613.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d7007395086f40b5f28319234d349250aee098f7470d7c8adb4aa50aa69180 +size 2100 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260420_024729.log b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260420_024729.log new file mode 100644 index 0000000000000000000000000000000000000000..c1047482775ba4d2ca7a5cc80814b4b0dc1b1826 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/gen_20260420_024729.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c9384ed7ea8501dbbe8fe2f2f132d4b75121e7d15aab9df2beebce9f15d540 +size 544 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/input_snapshot.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9ced2b4bb6cd4e3620de0851e311cb1dad2f2de0 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m12", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "exists": true, + "size": 13165359, + "sha256": "38507849456d473e77f70bde2e03dd69c9694d3640debeb0e1dd3a99b251862e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "exists": true, + "size": 1646795, + "sha256": "7efe1eb3cfa68fbb779e8cb8490109c774b8241e5896a77d083544f04ccf6c66" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv", + "exists": true, + "size": 1646190, + "sha256": "77c539bda6d6db356a6f1eb5d8344449f25d36b5309fa660bec41d855e49cefc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_profile.json", + "exists": true, + "size": 12659, + "sha256": "d8c17ef1f421dc55e8669ecc08ba8b3d6cbb007f953b59ef6014af322c187cc3" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m12/m12-dataset_contract_v1.json", + "exists": true, + "size": 15493, + "sha256": "439a5ec1e598498ffc934040b6975f626db2990104def7a6095d2100f5a974ff" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/models_300epochs/train_20260328_052858.log b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/models_300epochs/train_20260328_052858.log new file mode 100644 index 0000000000000000000000000000000000000000..ed3a5399f79c9d8226bf4c14d0e8638f60706b07 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/models_300epochs/train_20260328_052858.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af71c3f5143d508bec890557b98f66afda1a699b7a4c2a34ad7188a99faab40 +size 173 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/models_300epochs/tvae_300epochs.pt b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c6166c2e9c407de5db03c816a7e76a252dc5aa3a --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6cba3162b80880c415c97b1308c153c91f1be6871cf7b6d4c549b35c1f84ca0 +size 3401900 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..13970fcc2a09d39cc1add97c9eb4654cee58f612 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,670 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "columns": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/public_gate_report.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3bf58f493bcfc411bffebeec97fba57674499b --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m12", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "customer_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m12/m12-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/staged_input_manifest.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..74fcf2e73fd43eb9db7f14acc07c3e84bffc899c --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/public_gate/staged_input_manifest.json @@ -0,0 +1,675 @@ +{ + "dataset_id": "m12", + "target_column": "customer_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/runtime_result.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3c535937cd57688e26517156d030b25e29044161 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "m12", + "model": "tvae", + "run_id": "tvae-m12-20260328_052851", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/tvae-m12-95512-20260420_024729.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/staged_features.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a6df78b1e7df37d82c9f69413e26d4ae848a3c --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/staged_features.json @@ -0,0 +1,162 @@ +[ + { + "feature_name": "hotel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "lead_time", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_year", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "arrival_date_week_number", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "arrival_date_day_of_month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_weekend_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "stays_in_week_nights", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "adults", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "babies", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "meal", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "market_segment", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "distribution_channel", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "is_repeated_guest", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_cancellations", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "previous_bookings_not_canceled", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "reserved_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "assigned_room_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "booking_changes", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "deposit_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "agent", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "company", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "days_in_waiting_list", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "customer_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "adr", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "required_car_parking_spaces", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "total_of_special_requests", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "reservation_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "reservation_status_date", + "data_type": "timestamp", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/test.csv b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..30c1b4b016bf3e7de99246eb0c12090a548eb9ff --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f493029a41815df91c3b28f521a2264951567318150110e5c27fa757ebc734 +size 1694120 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/train.csv b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb7c1b15cfae80b8f1256e5ab12043201bba9e7c --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2f868c246063628371ded60d767d155528ace18d424271c7271617a8ef4643 +size 13548268 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/val.csv b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..72af4a34a232e0bcfaf78244335bd139c3d0aa2a --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce173da72624b2b531e2d913ada1d29b77c0926be15b8d83a75911a1f5e36679 +size 1694777 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/adapter_report.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7a22af9a9ddf24ffaf14de2f179da4e91ddf530c --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/adapter_transforms_applied.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/model_input_manifest.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..464794feeebc5288a5de09a5c9d5886331721f2e --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/staged/tvae/model_input_manifest.json @@ -0,0 +1,677 @@ +{ + "dataset_id": "m12", + "model": "tvae", + "target_column": "customer_type", + "task_type": "classification", + "column_schema": [ + { + "name": "hotel", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "City Hotel", + "Resort Hotel" + ] + } + }, + { + "name": "is_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "lead_time", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 476, + "unique_ratio": 0.004984, + "example_values": [ + "53", + "1", + "152", + "23", + "7" + ] + } + }, + { + "name": "arrival_date_year", + "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": 3.1e-05, + "example_values": [ + "2016", + "2017", + "2015" + ] + } + }, + { + "name": "arrival_date_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.000126, + "example_values": [ + "October", + "November", + "May", + "July", + "December" + ] + } + }, + { + "name": "arrival_date_week_number", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 53, + "unique_ratio": 0.000555, + "example_values": [ + "42", + "46", + "18", + "29", + "43" + ] + } + }, + { + "name": "arrival_date_day_of_month", + "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.000325, + "example_values": [ + "14", + "8", + "3", + "13", + "21" + ] + } + }, + { + "name": "stays_in_weekend_nights", + "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.000178, + "example_values": [ + "0", + "2", + "1", + "4", + "3" + ] + } + }, + { + "name": "stays_in_week_nights", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 35, + "unique_ratio": 0.000366, + "example_values": [ + "1", + "3", + "4", + "2", + "0" + ] + } + }, + { + "name": "adults", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.000147, + "example_values": [ + "1", + "2", + "3", + "0", + "4" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NA" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 1e-05, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "10" + ] + } + }, + { + "name": "babies", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "0", + "1", + "2", + "10" + ] + } + }, + { + "name": "meal", + "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": 5.2e-05, + "example_values": [ + "BB", + "SC", + "HB", + "Undefined", + "FB" + ] + } + }, + { + "name": "country", + "role": "feature", + "semantic_type": "categorical", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.003958, + "unique_count": 175, + "unique_ratio": 0.00184, + "example_values": [ + "PRT", + "ESP", + "USA", + "ITA", + "POL" + ] + } + }, + { + "name": "market_segment", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 7.3e-05, + "example_values": [ + "Offline TA/TO", + "Corporate", + "Groups", + "Direct", + "Online TA" + ] + } + }, + { + "name": "distribution_channel", + "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": 5.2e-05, + "example_values": [ + "TA/TO", + "Corporate", + "Direct", + "GDS", + "Undefined" + ] + } + }, + { + "name": "is_repeated_guest", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 2.1e-05, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "previous_cancellations", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 0.000157, + "example_values": [ + "0", + "1", + "2", + "19", + "24" + ] + } + }, + { + "name": "previous_bookings_not_canceled", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.000691, + "example_values": [ + "0", + "3", + "4", + "12", + "8" + ] + } + }, + { + "name": "reserved_room_type", + "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.000105, + "example_values": [ + "A", + "D", + "E", + "H", + "B" + ] + } + }, + { + "name": "assigned_room_type", + "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.000126, + "example_values": [ + "D", + "A", + "E", + "H", + "F" + ] + } + }, + { + "name": "booking_changes", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.00022, + "example_values": [ + "0", + "1", + "5", + "2", + "3" + ] + } + }, + { + "name": "deposit_type", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "No Deposit", + "Non Refund", + "Refundable" + ] + } + }, + { + "name": "agent", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.136559, + "unique_count": 323, + "unique_ratio": 0.003917, + "example_values": [ + "77", + "286", + "7", + "34", + "170" + ] + } + }, + { + "name": "company", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "NULL" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.943578, + "unique_count": 337, + "unique_ratio": 0.062535, + "example_values": [ + "362", + "94", + "153", + "67", + "223" + ] + } + }, + { + "name": "days_in_waiting_list", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 124, + "unique_ratio": 0.001298, + "example_values": [ + "0", + "39", + "22", + "108", + "101" + ] + } + }, + { + "name": "customer_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 4.2e-05, + "example_values": [ + "Transient-Party", + "Transient", + "Contract", + "Group" + ] + } + }, + { + "name": "adr", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8008, + "unique_ratio": 0.083843, + "example_values": [ + "120", + "161.88", + "100", + "161.1", + "116.8" + ] + } + }, + { + "name": "required_car_parking_spaces", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 5.2e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "8" + ] + } + }, + { + "name": "total_of_special_requests", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 6.3e-05, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "reservation_status", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 3.1e-05, + "example_values": [ + "Check-Out", + "Canceled", + "No-Show" + ] + } + }, + { + "name": "reservation_status_date", + "role": "feature", + "semantic_type": "datetime", + "nullable": false, + "missing_tokens": [], + "parse_format": "%Y-%m-%d", + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 920, + "unique_ratio": 0.009632, + "example_values": [ + "2016-10-15", + "2016-11-09", + "2016-12-02", + "2016-06-21", + "2016-10-23" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m12/tvae/tvae-m12-20260328_052851/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/tvae-m12-95512-20260420_024729.csv b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/tvae-m12-95512-20260420_024729.csv new file mode 100644 index 0000000000000000000000000000000000000000..10054e2d1648fe9c04fafde58a9a26793779a076 --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/tvae-m12-95512-20260420_024729.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c245933d831b7a09bcee488548e88aca43a1eece7fe19c04dbe81d43e393ed72 +size 18908096 diff --git a/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/tvae_metadata.json b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..15abefec626fa7cf1da9be5c202fb549aeb78a4f --- /dev/null +++ b/syntheticSuccess/m12/tvae/tvae-m12-20260328_052851/tvae_metadata.json @@ -0,0 +1,132 @@ +{ + "columns": [ + { + "name": "hotel", + "type": "categorical" + }, + { + "name": "is_canceled", + "type": "categorical" + }, + { + "name": "lead_time", + "type": "continuous" + }, + { + "name": "arrival_date_year", + "type": "continuous" + }, + { + "name": "arrival_date_month", + "type": "categorical" + }, + { + "name": "arrival_date_week_number", + "type": "continuous" + }, + { + "name": "arrival_date_day_of_month", + "type": "continuous" + }, + { + "name": "stays_in_weekend_nights", + "type": "continuous" + }, + { + "name": "stays_in_week_nights", + "type": "continuous" + }, + { + "name": "adults", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "babies", + "type": "categorical" + }, + { + "name": "meal", + "type": "categorical" + }, + { + "name": "country", + "type": "categorical" + }, + { + "name": "market_segment", + "type": "categorical" + }, + { + "name": "distribution_channel", + "type": "categorical" + }, + { + "name": "is_repeated_guest", + "type": "categorical" + }, + { + "name": "previous_cancellations", + "type": "categorical" + }, + { + "name": "previous_bookings_not_canceled", + "type": "categorical" + }, + { + "name": "reserved_room_type", + "type": "categorical" + }, + { + "name": "assigned_room_type", + "type": "categorical" + }, + { + "name": "booking_changes", + "type": "continuous" + }, + { + "name": "deposit_type", + "type": "categorical" + }, + { + "name": "agent", + "type": "continuous" + }, + { + "name": "company", + "type": "continuous" + }, + { + "name": "days_in_waiting_list", + "type": "continuous" + }, + { + "name": "customer_type", + "type": "categorical" + }, + { + "name": "adr", + "type": "continuous" + }, + { + "name": "required_car_parking_spaces", + "type": "categorical" + }, + { + "name": "total_of_special_requests", + "type": "continuous" + }, + { + "name": "reservation_status", + "type": "categorical" + }, + { + "name": "reservation_status_date", + "type": "categorical" + } + ] +} \ No newline at end of file