diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/_arf_generate.py b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..95b0b2689a3a51322be032fe024b7fb7805d448c --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/_arf_generate.py @@ -0,0 +1,23 @@ +import pickle +import pandas as pd + +n_target = int(3680) +with open("/work/output-SpecializedModels/n1/arf/arf-n1-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/n1/arf/arf-n1-20260422_055912/arf-n1-3680-20260422_061320.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/arf-n1-3680-20260422_061320.csv") diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/_arf_train.py b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a497e310ccf5006a3db92f64572681e0eb304190 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-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/n1/arf/arf-n1-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/n1/arf/arf-n1-20260422_055912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/arf_model.pkl") diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/arf-n1-3680-20260422_061320.csv b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/arf-n1-3680-20260422_061320.csv new file mode 100644 index 0000000000000000000000000000000000000000..08425b4fa3b9d321385fa0846c3019e72b074dd3 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/arf-n1-3680-20260422_061320.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:912e4f20ac476ce74eab18fb0a4da53ed19e5876b74df5483385b6bdde862ff0 +size 2692127 diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/arf_model.pkl b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..7fbe2f84cdba823d5f253675dfa9df7de2c73d39 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02f7a2a0691c9c1374e859eb1279110c3714119df2baef75683d3cb41029b82 +size 70017137 diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/gen_20260422_061320.log b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/gen_20260422_061320.log new file mode 100644 index 0000000000000000000000000000000000000000..d5d7be5baf94baa313188c3908df699c6571877a --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/gen_20260422_061320.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9bbc194d6449ff602a1300843158a3d5162f44a8f5c9250dda06cdde5f9daab +size 455 diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/input_snapshot.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e9c59e67dfd69c05bc345a4cfed9c4e7c1d220d0 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n1", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "exists": true, + "size": 563021, + "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "exists": true, + "size": 71100, + "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv", + "exists": true, + "size": 71605, + "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json", + "exists": true, + "size": 21967, + "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json", + "exists": true, + "size": 27866, + "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea0990f267498755e921b225d08fb0704a147d4 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,1222 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/public_gate_report.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..76005f0c0dbdfe7ac411d1fdc1e546fbaa201fc6 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n1", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/staged_input_manifest.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66170709ae7f89e1dc2515299f4a56fbd0b71512 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/public_gate/staged_input_manifest.json @@ -0,0 +1,1227 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/runtime_result.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..40e61f7c7347a98c9e08bbb8611fb7075e75ff95 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n1", + "model": "arf", + "run_id": "arf-n1-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/n1/arf/arf-n1-20260422_055912/arf-n1-3680-20260422_061320.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/arf_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/adapter_report.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e3c110fdf8c3bbb06d0663b23b716581983e152f --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-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/n1/arf/arf-n1-20260422_055912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/adapter_transforms_applied.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/model_input_manifest.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..af20cb42d1e16b33c3267a9178a955aed8b2d4c3 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/arf/model_input_manifest.json @@ -0,0 +1,1229 @@ +{ + "dataset_id": "n1", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/arf/arf-n1-20260422_055912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/staged_features.json b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/staged_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/test.csv b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..628770353833f1dc63d727f5bbc3c5bf7d8180e7 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03 +size 111841 diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/train.csv b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dabe62a5dca077c9f19f338b30e0ea316947620d --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23 +size 885832 diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/val.csv b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d03fc614be3e0e5f3e8e96f7c7f84a14889d16ec --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c +size 111513 diff --git a/syntheticSuccess/n1/arf/arf-n1-20260422_055912/train_20260422_055912.log b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/train_20260422_055912.log new file mode 100644 index 0000000000000000000000000000000000000000..a323c54b1c888a7b2d9267ba1e3c2f1274b501b4 --- /dev/null +++ b/syntheticSuccess/n1/arf/arf-n1-20260422_055912/train_20260422_055912.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43c48a31852c2a5814b08b1ec564972482a92d310f14b7afd00f581b0f210e6 +size 738 diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/_bayesnet_generate.py b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c277a3b24245c31ba96ba49f59f27b8339559db8 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/_bayesnet_generate.py @@ -0,0 +1,104 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3680) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final.to_csv("/work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet-n1-3680-20260422_060304.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet-n1-3680-20260422_060304.csv") diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/_bayesnet_train.py b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6fb2f748c22ee3c45f3577b4b3de124b9137c5c7 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/_bayesnet_train.py @@ -0,0 +1,118 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 +if _n_plan > 55: + max_bins = 4 +print(f"[BayesNet] max_bins={max_bins} (cols_in_df={_n_plan}, rows={_n_samples})") + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + uniques = sorted(s.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +network.fit(enc) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl") diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet-n1-3680-20260422_060304.csv b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet-n1-3680-20260422_060304.csv new file mode 100644 index 0000000000000000000000000000000000000000..1708dae795b74c9d1f235fbdfdf0cbe862ae7194 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet-n1-3680-20260422_060304.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb0dd8853c0472ab1854588b60728fb099b431aba7ba3526b480a0297651f7b +size 3770782 diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_coltypes.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..b671a7da140bc6753b66fe1e458671fe390a4c90 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_coltypes.json @@ -0,0 +1,237 @@ +{ + "columns": [ + { + "name": "word_freq_make", + "type": "continuous" + }, + { + "name": "word_freq_address", + "type": "continuous" + }, + { + "name": "word_freq_all", + "type": "continuous" + }, + { + "name": "word_freq_3d", + "type": "categorical" + }, + { + "name": "word_freq_our", + "type": "continuous" + }, + { + "name": "word_freq_over", + "type": "continuous" + }, + { + "name": "word_freq_remove", + "type": "continuous" + }, + { + "name": "word_freq_internet", + "type": "continuous" + }, + { + "name": "word_freq_order", + "type": "continuous" + }, + { + "name": "word_freq_mail", + "type": "continuous" + }, + { + "name": "word_freq_receive", + "type": "continuous" + }, + { + "name": "word_freq_will", + "type": "continuous" + }, + { + "name": "word_freq_people", + "type": "continuous" + }, + { + "name": "word_freq_report", + "type": "continuous" + }, + { + "name": "word_freq_addresses", + "type": "continuous" + }, + { + "name": "word_freq_free", + "type": "continuous" + }, + { + "name": "word_freq_business", + "type": "continuous" + }, + { + "name": "word_freq_email", + "type": "continuous" + }, + { + "name": "word_freq_you", + "type": "continuous" + }, + { + "name": "word_freq_credit", + "type": "continuous" + }, + { + "name": "word_freq_your", + "type": "continuous" + }, + { + "name": "word_freq_font", + "type": "continuous" + }, + { + "name": "word_freq_000", + "type": "continuous" + }, + { + "name": "word_freq_money", + "type": "continuous" + }, + { + "name": "word_freq_hp", + "type": "continuous" + }, + { + "name": "word_freq_hpl", + "type": "continuous" + }, + { + "name": "word_freq_george", + "type": "continuous" + }, + { + "name": "word_freq_650", + "type": "continuous" + }, + { + "name": "word_freq_lab", + "type": "continuous" + }, + { + "name": "word_freq_labs", + "type": "continuous" + }, + { + "name": "word_freq_telnet", + "type": "continuous" + }, + { + "name": "word_freq_857", + "type": "continuous" + }, + { + "name": "word_freq_data", + "type": "continuous" + }, + { + "name": "word_freq_415", + "type": "continuous" + }, + { + "name": "word_freq_85", + "type": "continuous" + }, + { + "name": "word_freq_technology", + "type": "continuous" + }, + { + "name": "word_freq_1999", + "type": "continuous" + }, + { + "name": "word_freq_parts", + "type": "categorical" + }, + { + "name": "word_freq_pm", + "type": "continuous" + }, + { + "name": "word_freq_direct", + "type": "continuous" + }, + { + "name": "word_freq_cs", + "type": "continuous" + }, + { + "name": "word_freq_meeting", + "type": "continuous" + }, + { + "name": "word_freq_original", + "type": "continuous" + }, + { + "name": "word_freq_project", + "type": "continuous" + }, + { + "name": "word_freq_re", + "type": "continuous" + }, + { + "name": "word_freq_edu", + "type": "continuous" + }, + { + "name": "word_freq_table", + "type": "categorical" + }, + { + "name": "word_freq_conference", + "type": "continuous" + }, + { + "name": "char_freq_%3B", + "type": "continuous" + }, + { + "name": "char_freq_%28", + "type": "continuous" + }, + { + "name": "char_freq_%5B", + "type": "continuous" + }, + { + "name": "char_freq_%21", + "type": "continuous" + }, + { + "name": "char_freq_%24", + "type": "continuous" + }, + { + "name": "char_freq_%23", + "type": "continuous" + }, + { + "name": "capital_run_length_average", + "type": "continuous" + }, + { + "name": "capital_run_length_longest", + "type": "continuous" + }, + { + "name": "capital_run_length_total", + "type": "continuous" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..943582e861243d88dc39e1fb95976a29961ff629 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743550cc58f881883780d9032c968e7de48d7fcb9c799f3d15a4cf2574f78c46 +size 33326 diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/const_cols.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/gen_20260422_060304.log b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/gen_20260422_060304.log new file mode 100644 index 0000000000000000000000000000000000000000..f7f2c144479d055f8cfff0cdeb35a7f5b49502b4 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/gen_20260422_060304.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7079558742c222a3df9c7d91a4d97654eed9b5447863905c06523cee776eb9 +size 3387 diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/input_snapshot.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..49cb430a3672f5fba92e41de77ca4cf6d0394263 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n1", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "exists": true, + "size": 563021, + "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "exists": true, + "size": 71100, + "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv", + "exists": true, + "size": 71605, + "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json", + "exists": true, + "size": 21967, + "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json", + "exists": true, + "size": 27866, + "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea0990f267498755e921b225d08fb0704a147d4 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,1222 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/public_gate_report.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..76005f0c0dbdfe7ac411d1fdc1e546fbaa201fc6 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n1", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/staged_input_manifest.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cc4f7b4138c6162d00e079de13eb006d01944d94 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/staged_input_manifest.json @@ -0,0 +1,1227 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/runtime_result.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a9fad8a08620898d076f95197643a14a0922435c --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n1", + "model": "bayesnet", + "run_id": "bayesnet-n1-20260422_060152", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet-n1-3680-20260422_060304.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/adapter_report.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f96e030449bc0172b047c14b197479bdbb31039b --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/adapter_transforms_applied.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/model_input_manifest.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..796a9b1aaf0f474943bff261c2b9754e23444519 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,1229 @@ +{ + "dataset_id": "n1", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/bayesnet/bayesnet-n1-20260422_060152/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/staged_features.json b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/staged_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/test.csv b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..628770353833f1dc63d727f5bbc3c5bf7d8180e7 --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03 +size 111841 diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/train.csv b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dabe62a5dca077c9f19f338b30e0ea316947620d --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23 +size 885832 diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/val.csv b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d03fc614be3e0e5f3e8e96f7c7f84a14889d16ec --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c +size 111513 diff --git a/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/train_20260422_060153.log b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/train_20260422_060153.log new file mode 100644 index 0000000000000000000000000000000000000000..b02ea6ef7934317ec108a845d061d7582650ee5e --- /dev/null +++ b/syntheticSuccess/n1/bayesnet/bayesnet-n1-20260422_060152/train_20260422_060153.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de58556c923ed61a24bcc7ab335a3a4bac038e8b0259262cea01583af7f3c0b +size 5645 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/_ctgan_generate.py b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..1470af39e6d82af17d923d8d3eccf4864b8be803 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/_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/n1/ctgan/ctgan-n1-20260413_043449/models_1epochs/ctgan_1epochs.pt") +total = 3680 +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/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-3680-20260420_030338.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-3680-20260420_030338.csv") \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-100-20260413_043659.csv b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-100-20260413_043659.csv new file mode 100644 index 0000000000000000000000000000000000000000..169d665521d9a07799d86832c25d1fab8d06f7ba --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-100-20260413_043659.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f8bc12d9929194881b36ed4e227ad4a41d0a25aca3970481a9d9b49728b54b +size 106092 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-3680-20260420_030338.csv b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-3680-20260420_030338.csv new file mode 100644 index 0000000000000000000000000000000000000000..14697a33175a58f08a93b87553722447bf50aee8 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-3680-20260420_030338.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5677322338a73cc622e29587268b8ed65f3606c55d17924a4f5cd462c3b38e3 +size 4142786 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan_metadata.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8be15bd2f23278eb3593c251cae9e22965bd5f77 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/ctgan_metadata.json @@ -0,0 +1,236 @@ +{ + "columns": [ + { + "name": "word_freq_make", + "type": "continuous" + }, + { + "name": "word_freq_address", + "type": "continuous" + }, + { + "name": "word_freq_all", + "type": "continuous" + }, + { + "name": "word_freq_3d", + "type": "categorical" + }, + { + "name": "word_freq_our", + "type": "continuous" + }, + { + "name": "word_freq_over", + "type": "continuous" + }, + { + "name": "word_freq_remove", + "type": "continuous" + }, + { + "name": "word_freq_internet", + "type": "continuous" + }, + { + "name": "word_freq_order", + "type": "continuous" + }, + { + "name": "word_freq_mail", + "type": "continuous" + }, + { + "name": "word_freq_receive", + "type": "continuous" + }, + { + "name": "word_freq_will", + "type": "continuous" + }, + { + "name": "word_freq_people", + "type": "continuous" + }, + { + "name": "word_freq_report", + "type": "continuous" + }, + { + "name": "word_freq_addresses", + "type": "continuous" + }, + { + "name": "word_freq_free", + "type": "continuous" + }, + { + "name": "word_freq_business", + "type": "continuous" + }, + { + "name": "word_freq_email", + "type": "continuous" + }, + { + "name": "word_freq_you", + "type": "continuous" + }, + { + "name": "word_freq_credit", + "type": "continuous" + }, + { + "name": "word_freq_your", + "type": "continuous" + }, + { + "name": "word_freq_font", + "type": "continuous" + }, + { + "name": "word_freq_000", + "type": "continuous" + }, + { + "name": "word_freq_money", + "type": "continuous" + }, + { + "name": "word_freq_hp", + "type": "continuous" + }, + { + "name": "word_freq_hpl", + "type": "continuous" + }, + { + "name": "word_freq_george", + "type": "continuous" + }, + { + "name": "word_freq_650", + "type": "continuous" + }, + { + "name": "word_freq_lab", + "type": "continuous" + }, + { + "name": "word_freq_labs", + "type": "continuous" + }, + { + "name": "word_freq_telnet", + "type": "continuous" + }, + { + "name": "word_freq_857", + "type": "continuous" + }, + { + "name": "word_freq_data", + "type": "continuous" + }, + { + "name": "word_freq_415", + "type": "continuous" + }, + { + "name": "word_freq_85", + "type": "continuous" + }, + { + "name": "word_freq_technology", + "type": "continuous" + }, + { + "name": "word_freq_1999", + "type": "continuous" + }, + { + "name": "word_freq_parts", + "type": "categorical" + }, + { + "name": "word_freq_pm", + "type": "continuous" + }, + { + "name": "word_freq_direct", + "type": "continuous" + }, + { + "name": "word_freq_cs", + "type": "continuous" + }, + { + "name": "word_freq_meeting", + "type": "continuous" + }, + { + "name": "word_freq_original", + "type": "continuous" + }, + { + "name": "word_freq_project", + "type": "continuous" + }, + { + "name": "word_freq_re", + "type": "continuous" + }, + { + "name": "word_freq_edu", + "type": "continuous" + }, + { + "name": "word_freq_table", + "type": "categorical" + }, + { + "name": "word_freq_conference", + "type": "continuous" + }, + { + "name": "char_freq_%3B", + "type": "continuous" + }, + { + "name": "char_freq_%28", + "type": "continuous" + }, + { + "name": "char_freq_%5B", + "type": "continuous" + }, + { + "name": "char_freq_%21", + "type": "continuous" + }, + { + "name": "char_freq_%24", + "type": "continuous" + }, + { + "name": "char_freq_%23", + "type": "continuous" + }, + { + "name": "capital_run_length_average", + "type": "continuous" + }, + { + "name": "capital_run_length_longest", + "type": "continuous" + }, + { + "name": "capital_run_length_total", + "type": "continuous" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/gen_20260413_043659.log b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/gen_20260413_043659.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/gen_20260420_030338.log b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/gen_20260420_030338.log new file mode 100644 index 0000000000000000000000000000000000000000..628b1b721143ff11752642d69c6518c77632cce0 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/gen_20260420_030338.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70c53d76aa34e7f77eb13b72d319db7982620f34a2417cf1e7bdd8d6054b70c +size 142 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/input_snapshot.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f7daa19d27bb5bff59ff589fcf53912f8e0803d5 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n1", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "exists": true, + "size": 563021, + "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "exists": true, + "size": 71100, + "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv", + "exists": true, + "size": 71605, + "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json", + "exists": true, + "size": 21967, + "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json", + "exists": true, + "size": 27866, + "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/models_1epochs/ctgan_1epochs.pt b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/models_1epochs/ctgan_1epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..997f4c2fc8ea38e5bc5ebbc90edd4a5e5c423431 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/models_1epochs/ctgan_1epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb2b99f95ac3e52400c48b73d08beed55b4d0fbdf50dd2b66483aec708b2d638 +size 4130679 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/models_1epochs/train_20260413_043450.log b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/models_1epochs/train_20260413_043450.log new file mode 100644 index 0000000000000000000000000000000000000000..b343f3eac68191d6d6ce2797d8acf32defcf3898 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/models_1epochs/train_20260413_043450.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e4c710a02488386d345c76214d2453b7b40f61a71bd49ced839107da5ee3825 +size 372 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea0990f267498755e921b225d08fb0704a147d4 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,1222 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/public_gate_report.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..76005f0c0dbdfe7ac411d1fdc1e546fbaa201fc6 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n1", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/staged_input_manifest.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..57e216433538ea52d1cebd5261cad093735df355 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/public_gate/staged_input_manifest.json @@ -0,0 +1,1227 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/runtime_result.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b17eaff03a3f684b669a9dbcc67b52fa97c15d64 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n1", + "model": "ctgan", + "run_id": "ctgan-n1-20260413_043449", + "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/n1/ctgan/ctgan-n1-20260413_043449/ctgan-n1-3680-20260420_030338.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/adapter_report.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0b8114ffcd921b208eff30cd9a5bce9033d63732 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/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/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/adapter_transforms_applied.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/model_input_manifest.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ad97f06ba91d6f5a654b1d7cf0ae844b48403550 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/ctgan/model_input_manifest.json @@ -0,0 +1,1229 @@ +{ + "dataset_id": "n1", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/ctgan/ctgan-n1-20260413_043449/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/staged_features.json b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/staged_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/test.csv b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..628770353833f1dc63d727f5bbc3c5bf7d8180e7 --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03 +size 111841 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/train.csv b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dabe62a5dca077c9f19f338b30e0ea316947620d --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23 +size 885832 diff --git a/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/val.csv b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d03fc614be3e0e5f3e8e96f7c7f84a14889d16ec --- /dev/null +++ b/syntheticSuccess/n1/ctgan/ctgan-n1-20260413_043449/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c +size 111513 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/gen_20260413_060257.log b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/gen_20260413_060257.log new file mode 100644 index 0000000000000000000000000000000000000000..2836c6fb9ccbd7ad5a43fbd37e3d37a094d7c309 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/gen_20260413_060257.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1638529894a8e129df8219c3f890c36cd130a97273cee50a0fe5af6a75aab4ba +size 340 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/gen_20260418_140052.log b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/gen_20260418_140052.log new file mode 100644 index 0000000000000000000000000000000000000000..acfa906a8af38346e19ef5845f051c7f4e486d89 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/gen_20260418_140052.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7ca81a7ed654b755d00706083e78b2cffd9cf3899db23f21a485777ddbedff5 +size 2114 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/input_snapshot.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..14efcdd796ee5055f99b4a4f2a23c69904b41483 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n1", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "exists": true, + "size": 563021, + "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "exists": true, + "size": 71100, + "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv", + "exists": true, + "size": 71605, + "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json", + "exists": true, + "size": 21967, + "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json", + "exists": true, + "size": 27866, + "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/models_1epochs/id000017760313747005569024/rtf_config.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/models_1epochs/id000017760313747005569024/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..074746d70c78ead77f00e3b5f4ceb0c7a7726c11 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/models_1epochs/id000017760313747005569024/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 1807, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 1, "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": 1, "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": ["word_freq_make", "word_freq_address", "word_freq_all", "word_freq_3d", "word_freq_our", "word_freq_over", "word_freq_remove", "word_freq_internet", "word_freq_order", "word_freq_mail", "word_freq_receive", "word_freq_will", "word_freq_people", "word_freq_report", "word_freq_addresses", "word_freq_free", "word_freq_business", "word_freq_email", "word_freq_you", "word_freq_credit", "word_freq_your", "word_freq_font", "word_freq_000", "word_freq_money", "word_freq_hp", "word_freq_hpl", "word_freq_george", "word_freq_650", "word_freq_lab", "word_freq_labs", "word_freq_telnet", "word_freq_857", "word_freq_data", "word_freq_415", "word_freq_85", "word_freq_technology", "word_freq_1999", "word_freq_parts", "word_freq_pm", "word_freq_direct", "word_freq_cs", "word_freq_meeting", "word_freq_original", "word_freq_project", "word_freq_re", "word_freq_edu", "word_freq_table", "word_freq_conference", "char_freq_%3B", "char_freq_%28", "char_freq_%5B", "char_freq_%21", "char_freq_%24", "char_freq_%23", "capital_run_length_average", "capital_run_length_longest", "capital_run_length_total", "class"], "column_dtypes": {"word_freq_make": "float64", "word_freq_address": "float64", "word_freq_all": "float64", "word_freq_3d": "object", "word_freq_our": "float64", "word_freq_over": "float64", "word_freq_remove": "float64", "word_freq_internet": "float64", "word_freq_order": "float64", "word_freq_mail": "float64", "word_freq_receive": "float64", "word_freq_will": "float64", "word_freq_people": "float64", "word_freq_report": "float64", "word_freq_addresses": "float64", "word_freq_free": "float64", "word_freq_business": "float64", "word_freq_email": "float64", "word_freq_you": "float64", "word_freq_credit": "float64", "word_freq_your": "float64", "word_freq_font": "float64", "word_freq_000": "float64", "word_freq_money": "float64", "word_freq_hp": "float64", "word_freq_hpl": "float64", "word_freq_george": "float64", "word_freq_650": "float64", "word_freq_lab": "float64", "word_freq_labs": "float64", "word_freq_telnet": "float64", "word_freq_857": "float64", "word_freq_data": "float64", "word_freq_415": "float64", "word_freq_85": "float64", "word_freq_technology": "float64", "word_freq_1999": "float64", "word_freq_parts": "object", "word_freq_pm": "float64", "word_freq_direct": "float64", "word_freq_cs": "float64", "word_freq_meeting": "float64", "word_freq_original": "float64", "word_freq_project": "float64", "word_freq_re": "float64", "word_freq_edu": "float64", "word_freq_table": "object", "word_freq_conference": "float64", "char_freq_%3B": "float64", "char_freq_%28": "float64", "char_freq_%5B": "float64", "char_freq_%21": "float64", "char_freq_%24": "float64", "char_freq_%23": "float64", "capital_run_length_average": "float64", "capital_run_length_longest": "int64", "capital_run_length_total": "int64", "class": "object"}, "column_has_missing": {"word_freq_make": false, "word_freq_address": false, "word_freq_all": false, "word_freq_3d": false, "word_freq_our": false, "word_freq_over": false, "word_freq_remove": false, "word_freq_internet": false, "word_freq_order": false, "word_freq_mail": false, "word_freq_receive": false, "word_freq_will": false, "word_freq_people": false, "word_freq_report": false, "word_freq_addresses": false, "word_freq_free": false, "word_freq_business": false, "word_freq_email": false, "word_freq_you": false, "word_freq_credit": false, "word_freq_your": false, "word_freq_font": false, "word_freq_000": false, "word_freq_money": false, "word_freq_hp": false, "word_freq_hpl": false, "word_freq_george": false, "word_freq_650": false, "word_freq_lab": false, "word_freq_labs": false, "word_freq_telnet": false, "word_freq_857": false, "word_freq_data": false, "word_freq_415": false, "word_freq_85": false, "word_freq_technology": false, "word_freq_1999": false, "word_freq_parts": false, "word_freq_pm": false, "word_freq_direct": false, "word_freq_cs": false, "word_freq_meeting": false, "word_freq_original": false, "word_freq_project": false, "word_freq_re": false, "word_freq_edu": false, "word_freq_table": false, "word_freq_conference": false, "char_freq_%3B": false, "char_freq_%28": false, "char_freq_%5B": false, "char_freq_%21": false, "char_freq_%24": false, "char_freq_%23": false, "capital_run_length_average": false, "capital_run_length_longest": false, "capital_run_length_total": false, "class": false}, "drop_na_cols": ["word_freq_make", "word_freq_address", "word_freq_all", "word_freq_3d", "word_freq_our", "word_freq_over", "word_freq_remove", "word_freq_internet", "word_freq_order", "word_freq_mail", "word_freq_receive", "word_freq_will", "word_freq_people", "word_freq_report", "word_freq_addresses", "word_freq_free", "word_freq_business", "word_freq_email", "word_freq_you", "word_freq_credit", "word_freq_your", "word_freq_font", "word_freq_000", "word_freq_money", "word_freq_hp", "word_freq_hpl", "word_freq_george", "word_freq_650", "word_freq_lab", "word_freq_labs", "word_freq_telnet", "word_freq_857", "word_freq_data", "word_freq_415", "word_freq_85", "word_freq_technology", "word_freq_1999", "word_freq_parts", "word_freq_pm", "word_freq_direct", "word_freq_cs", "word_freq_meeting", "word_freq_original", "word_freq_project", "word_freq_re", "word_freq_edu", "word_freq_table", "word_freq_conference", "char_freq_%3B", "char_freq_%28", "char_freq_%5B", "char_freq_%21", "char_freq_%24", "char_freq_%23", "capital_run_length_average", "capital_run_length_longest", "capital_run_length_total", "class"], "processed_columns": ["00___NUMERIC___word_freq_make_00", "00___NUMERIC___word_freq_make_01", "00___NUMERIC___word_freq_make_02", "00___NUMERIC___word_freq_make_03", "01___NUMERIC___word_freq_address_00", "01___NUMERIC___word_freq_address_01", "01___NUMERIC___word_freq_address_02", "01___NUMERIC___word_freq_address_03", "01___NUMERIC___word_freq_address_04", "02___NUMERIC___word_freq_all_00", "02___NUMERIC___word_freq_all_01", "02___NUMERIC___word_freq_all_02", "02___NUMERIC___word_freq_all_03", "03___CATEGORICAL___word_freq_3d", "04___NUMERIC___word_freq_our_00", "04___NUMERIC___word_freq_our_01", "04___NUMERIC___word_freq_our_02", "04___NUMERIC___word_freq_our_03", "04___NUMERIC___word_freq_our_04", "05___NUMERIC___word_freq_over_00", "05___NUMERIC___word_freq_over_01", "05___NUMERIC___word_freq_over_02", "05___NUMERIC___word_freq_over_03", "06___NUMERIC___word_freq_remove_00", "06___NUMERIC___word_freq_remove_01", "06___NUMERIC___word_freq_remove_02", "06___NUMERIC___word_freq_remove_03", "07___NUMERIC___word_freq_internet_00", "07___NUMERIC___word_freq_internet_01", "07___NUMERIC___word_freq_internet_02", "07___NUMERIC___word_freq_internet_03", "07___NUMERIC___word_freq_internet_04", "08___NUMERIC___word_freq_order_00", "08___NUMERIC___word_freq_order_01", "08___NUMERIC___word_freq_order_02", "08___NUMERIC___word_freq_order_03", "09___NUMERIC___word_freq_mail_00", "09___NUMERIC___word_freq_mail_01", "09___NUMERIC___word_freq_mail_02", "09___NUMERIC___word_freq_mail_03", "09___NUMERIC___word_freq_mail_04", "10___NUMERIC___word_freq_receive_00", "10___NUMERIC___word_freq_receive_01", "10___NUMERIC___word_freq_receive_02", "10___NUMERIC___word_freq_receive_03", "11___NUMERIC___word_freq_will_00", "11___NUMERIC___word_freq_will_01", "11___NUMERIC___word_freq_will_02", "11___NUMERIC___word_freq_will_03", "12___NUMERIC___word_freq_people_00", "12___NUMERIC___word_freq_people_01", "12___NUMERIC___word_freq_people_02", "12___NUMERIC___word_freq_people_03", "13___NUMERIC___word_freq_report_00", "13___NUMERIC___word_freq_report_01", "13___NUMERIC___word_freq_report_02", "13___NUMERIC___word_freq_report_03", "13___NUMERIC___word_freq_report_04", "14___NUMERIC___word_freq_addresses_00", "14___NUMERIC___word_freq_addresses_01", "14___NUMERIC___word_freq_addresses_02", "14___NUMERIC___word_freq_addresses_03", "15___NUMERIC___word_freq_free_00", "15___NUMERIC___word_freq_free_01", "15___NUMERIC___word_freq_free_02", "15___NUMERIC___word_freq_free_03", "15___NUMERIC___word_freq_free_04", "16___NUMERIC___word_freq_business_00", "16___NUMERIC___word_freq_business_01", "16___NUMERIC___word_freq_business_02", "16___NUMERIC___word_freq_business_03", "17___NUMERIC___word_freq_email_00", "17___NUMERIC___word_freq_email_01", "17___NUMERIC___word_freq_email_02", "17___NUMERIC___word_freq_email_03", "18___NUMERIC___word_freq_you_00", "18___NUMERIC___word_freq_you_01", "18___NUMERIC___word_freq_you_02", "18___NUMERIC___word_freq_you_03", "18___NUMERIC___word_freq_you_04", "19___NUMERIC___word_freq_credit_00", "19___NUMERIC___word_freq_credit_01", "19___NUMERIC___word_freq_credit_02", "19___NUMERIC___word_freq_credit_03", "19___NUMERIC___word_freq_credit_04", "20___NUMERIC___word_freq_your_00", "20___NUMERIC___word_freq_your_01", "20___NUMERIC___word_freq_your_02", "20___NUMERIC___word_freq_your_03", "20___NUMERIC___word_freq_your_04", "21___NUMERIC___word_freq_font_00", "21___NUMERIC___word_freq_font_01", "21___NUMERIC___word_freq_font_02", "21___NUMERIC___word_freq_font_03", "21___NUMERIC___word_freq_font_04", "22___NUMERIC___word_freq_000_00", "22___NUMERIC___word_freq_000_01", "22___NUMERIC___word_freq_000_02", "22___NUMERIC___word_freq_000_03", "23___NUMERIC___word_freq_money_00", "23___NUMERIC___word_freq_money_01", "23___NUMERIC___word_freq_money_02", "23___NUMERIC___word_freq_money_03", "23___NUMERIC___word_freq_money_04", "24___NUMERIC___word_freq_hp_00", "24___NUMERIC___word_freq_hp_01", "24___NUMERIC___word_freq_hp_02", "24___NUMERIC___word_freq_hp_03", "24___NUMERIC___word_freq_hp_04", "25___NUMERIC___word_freq_hpl_00", "25___NUMERIC___word_freq_hpl_01", "25___NUMERIC___word_freq_hpl_02", "25___NUMERIC___word_freq_hpl_03", "25___NUMERIC___word_freq_hpl_04", "26___NUMERIC___word_freq_george_00", "26___NUMERIC___word_freq_george_01", "26___NUMERIC___word_freq_george_02", "26___NUMERIC___word_freq_george_03", "26___NUMERIC___word_freq_george_04", "27___NUMERIC___word_freq_650_00", "27___NUMERIC___word_freq_650_01", "27___NUMERIC___word_freq_650_02", "27___NUMERIC___word_freq_650_03", "28___NUMERIC___word_freq_lab_00", "28___NUMERIC___word_freq_lab_01", "28___NUMERIC___word_freq_lab_02", "28___NUMERIC___word_freq_lab_03", "28___NUMERIC___word_freq_lab_04", "29___NUMERIC___word_freq_labs_00", "29___NUMERIC___word_freq_labs_01", "29___NUMERIC___word_freq_labs_02", "29___NUMERIC___word_freq_labs_03", "30___NUMERIC___word_freq_telnet_00", "30___NUMERIC___word_freq_telnet_01", "30___NUMERIC___word_freq_telnet_02", "30___NUMERIC___word_freq_telnet_03", "30___NUMERIC___word_freq_telnet_04", "31___NUMERIC___word_freq_857_00", "31___NUMERIC___word_freq_857_01", "31___NUMERIC___word_freq_857_02", "31___NUMERIC___word_freq_857_03", "32___NUMERIC___word_freq_data_00", "32___NUMERIC___word_freq_data_01", "32___NUMERIC___word_freq_data_02", "32___NUMERIC___word_freq_data_03", "32___NUMERIC___word_freq_data_04", "33___NUMERIC___word_freq_415_00", "33___NUMERIC___word_freq_415_01", "33___NUMERIC___word_freq_415_02", "33___NUMERIC___word_freq_415_03", "34___NUMERIC___word_freq_85_00", "34___NUMERIC___word_freq_85_01", "34___NUMERIC___word_freq_85_02", "34___NUMERIC___word_freq_85_03", "34___NUMERIC___word_freq_85_04", "35___NUMERIC___word_freq_technology_00", "35___NUMERIC___word_freq_technology_01", "35___NUMERIC___word_freq_technology_02", "35___NUMERIC___word_freq_technology_03", "36___NUMERIC___word_freq_1999_00", "36___NUMERIC___word_freq_1999_01", "36___NUMERIC___word_freq_1999_02", "36___NUMERIC___word_freq_1999_03", "37___CATEGORICAL___word_freq_parts", "38___NUMERIC___word_freq_pm_00", "38___NUMERIC___word_freq_pm_01", "38___NUMERIC___word_freq_pm_02", "38___NUMERIC___word_freq_pm_03", "38___NUMERIC___word_freq_pm_04", "39___NUMERIC___word_freq_direct_00", "39___NUMERIC___word_freq_direct_01", "39___NUMERIC___word_freq_direct_02", "39___NUMERIC___word_freq_direct_03", "40___NUMERIC___word_freq_cs_00", "40___NUMERIC___word_freq_cs_01", "40___NUMERIC___word_freq_cs_02", "40___NUMERIC___word_freq_cs_03", "41___NUMERIC___word_freq_meeting_00", "41___NUMERIC___word_freq_meeting_01", "41___NUMERIC___word_freq_meeting_02", "41___NUMERIC___word_freq_meeting_03", "41___NUMERIC___word_freq_meeting_04", "42___NUMERIC___word_freq_original_00", "42___NUMERIC___word_freq_original_01", "42___NUMERIC___word_freq_original_02", "42___NUMERIC___word_freq_original_03", "43___NUMERIC___word_freq_project_00", "43___NUMERIC___word_freq_project_01", "43___NUMERIC___word_freq_project_02", "43___NUMERIC___word_freq_project_03", "43___NUMERIC___word_freq_project_04", "44___NUMERIC___word_freq_re_00", "44___NUMERIC___word_freq_re_01", "44___NUMERIC___word_freq_re_02", "44___NUMERIC___word_freq_re_03", "44___NUMERIC___word_freq_re_04", "45___NUMERIC___word_freq_edu_00", "45___NUMERIC___word_freq_edu_01", "45___NUMERIC___word_freq_edu_02", "45___NUMERIC___word_freq_edu_03", "45___NUMERIC___word_freq_edu_04", "46___CATEGORICAL___word_freq_table", "47___NUMERIC___word_freq_conference_00", "47___NUMERIC___word_freq_conference_01", "47___NUMERIC___word_freq_conference_02", "47___NUMERIC___word_freq_conference_03", "47___NUMERIC___word_freq_conference_04", "48___NUMERIC___char_freq_%3B_00", "48___NUMERIC___char_freq_%3B_01", "48___NUMERIC___char_freq_%3B_02", "48___NUMERIC___char_freq_%3B_03", "48___NUMERIC___char_freq_%3B_04", "49___NUMERIC___char_freq_%28_00", "49___NUMERIC___char_freq_%28_01", "49___NUMERIC___char_freq_%28_02", "49___NUMERIC___char_freq_%28_03", "49___NUMERIC___char_freq_%28_04", "50___NUMERIC___char_freq_%5B_00", "50___NUMERIC___char_freq_%5B_01", "50___NUMERIC___char_freq_%5B_02", "50___NUMERIC___char_freq_%5B_03", "50___NUMERIC___char_freq_%5B_04", "51___NUMERIC___char_freq_%21_00", "51___NUMERIC___char_freq_%21_01", "51___NUMERIC___char_freq_%21_02", "51___NUMERIC___char_freq_%21_03", "51___NUMERIC___char_freq_%21_04", "51___NUMERIC___char_freq_%21_05", "52___NUMERIC___char_freq_%24_00", "52___NUMERIC___char_freq_%24_01", "52___NUMERIC___char_freq_%24_02", "52___NUMERIC___char_freq_%24_03", "52___NUMERIC___char_freq_%24_04", "53___NUMERIC___char_freq_%23_00", "53___NUMERIC___char_freq_%23_01", "53___NUMERIC___char_freq_%23_02", "53___NUMERIC___char_freq_%23_03", "53___NUMERIC___char_freq_%23_04", "53___NUMERIC___char_freq_%23_05", "54___NUMERIC___capital_run_length_average_00", "54___NUMERIC___capital_run_length_average_01", "54___NUMERIC___capital_run_length_average_02", "54___NUMERIC___capital_run_length_average_03", "54___NUMERIC___capital_run_length_average_04", "54___NUMERIC___capital_run_length_average_05", "54___NUMERIC___capital_run_length_average_06", "54___NUMERIC___capital_run_length_average_07", "55___NUMERIC___capital_run_length_longest_00", "55___NUMERIC___capital_run_length_longest_01", "55___NUMERIC___capital_run_length_longest_02", "55___NUMERIC___capital_run_length_longest_03", "56___NUMERIC___capital_run_length_total_00", "56___NUMERIC___capital_run_length_total_01", "56___NUMERIC___capital_run_length_total_02", "56___NUMERIC___capital_run_length_total_03", "56___NUMERIC___capital_run_length_total_04", "57___CATEGORICAL___class"], "numeric_columns": ["word_freq_make", "word_freq_address", "word_freq_all", "word_freq_our", "word_freq_over", "word_freq_remove", "word_freq_internet", "word_freq_order", "word_freq_mail", "word_freq_receive", "word_freq_will", "word_freq_people", "word_freq_report", "word_freq_addresses", "word_freq_free", "word_freq_business", "word_freq_email", "word_freq_you", "word_freq_credit", "word_freq_your", "word_freq_font", "word_freq_000", "word_freq_money", "word_freq_hp", "word_freq_hpl", "word_freq_george", "word_freq_650", "word_freq_lab", "word_freq_labs", "word_freq_telnet", "word_freq_857", "word_freq_data", "word_freq_415", "word_freq_85", "word_freq_technology", "word_freq_1999", "word_freq_pm", "word_freq_direct", "word_freq_cs", "word_freq_meeting", "word_freq_original", "word_freq_project", "word_freq_re", "word_freq_edu", "word_freq_conference", "char_freq_%3B", "char_freq_%28", "char_freq_%5B", "char_freq_%21", "char_freq_%24", "char_freq_%23", "capital_run_length_average", "capital_run_length_longest", "capital_run_length_total"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___word_freq_make_00___0", "12": "00___NUMERIC___word_freq_make_00___1", "13": "00___NUMERIC___word_freq_make_00___2", "14": "00___NUMERIC___word_freq_make_00___3", "15": "00___NUMERIC___word_freq_make_00___4", "16": "00___NUMERIC___word_freq_make_01___.", "17": "00___NUMERIC___word_freq_make_02___0", "18": "00___NUMERIC___word_freq_make_02___1", "19": "00___NUMERIC___word_freq_make_02___2", "20": "00___NUMERIC___word_freq_make_02___3", "21": "00___NUMERIC___word_freq_make_02___4", "22": "00___NUMERIC___word_freq_make_02___5", "23": "00___NUMERIC___word_freq_make_02___6", "24": "00___NUMERIC___word_freq_make_02___7", "25": "00___NUMERIC___word_freq_make_02___8", "26": "00___NUMERIC___word_freq_make_02___9", "27": "00___NUMERIC___word_freq_make_03___0", "28": "00___NUMERIC___word_freq_make_03___1", "29": "00___NUMERIC___word_freq_make_03___2", "30": "00___NUMERIC___word_freq_make_03___3", "31": "00___NUMERIC___word_freq_make_03___4", "32": "00___NUMERIC___word_freq_make_03___5", "33": "00___NUMERIC___word_freq_make_03___6", "34": "00___NUMERIC___word_freq_make_03___7", "35": "00___NUMERIC___word_freq_make_03___8", "36": "00___NUMERIC___word_freq_make_03___9", "37": "01___NUMERIC___word_freq_address_00___0", "38": "01___NUMERIC___word_freq_address_00___1", "39": "01___NUMERIC___word_freq_address_01___0", "40": "01___NUMERIC___word_freq_address_01___1", "41": "01___NUMERIC___word_freq_address_01___2", "42": "01___NUMERIC___word_freq_address_01___3", "43": "01___NUMERIC___word_freq_address_01___4", "44": "01___NUMERIC___word_freq_address_01___6", "45": "01___NUMERIC___word_freq_address_01___9", "46": "01___NUMERIC___word_freq_address_02___.", "47": "01___NUMERIC___word_freq_address_03___0", "48": "01___NUMERIC___word_freq_address_03___1", "49": "01___NUMERIC___word_freq_address_03___2", "50": "01___NUMERIC___word_freq_address_03___3", "51": "01___NUMERIC___word_freq_address_03___4", "52": "01___NUMERIC___word_freq_address_03___5", "53": "01___NUMERIC___word_freq_address_03___6", "54": "01___NUMERIC___word_freq_address_03___7", "55": "01___NUMERIC___word_freq_address_03___8", "56": "01___NUMERIC___word_freq_address_03___9", "57": "01___NUMERIC___word_freq_address_04___0", "58": "01___NUMERIC___word_freq_address_04___1", "59": "01___NUMERIC___word_freq_address_04___2", "60": "01___NUMERIC___word_freq_address_04___3", "61": "01___NUMERIC___word_freq_address_04___4", "62": "01___NUMERIC___word_freq_address_04___5", "63": "01___NUMERIC___word_freq_address_04___6", "64": "01___NUMERIC___word_freq_address_04___7", "65": "01___NUMERIC___word_freq_address_04___8", "66": "01___NUMERIC___word_freq_address_04___9", "67": "02___NUMERIC___word_freq_all_00___0", "68": "02___NUMERIC___word_freq_all_00___1", "69": "02___NUMERIC___word_freq_all_00___2", "70": "02___NUMERIC___word_freq_all_00___3", "71": "02___NUMERIC___word_freq_all_00___4", "72": "02___NUMERIC___word_freq_all_01___.", "73": "02___NUMERIC___word_freq_all_02___0", "74": "02___NUMERIC___word_freq_all_02___1", "75": "02___NUMERIC___word_freq_all_02___2", "76": "02___NUMERIC___word_freq_all_02___3", "77": "02___NUMERIC___word_freq_all_02___4", "78": "02___NUMERIC___word_freq_all_02___5", "79": "02___NUMERIC___word_freq_all_02___6", "80": "02___NUMERIC___word_freq_all_02___7", "81": "02___NUMERIC___word_freq_all_02___8", "82": "02___NUMERIC___word_freq_all_02___9", "83": "02___NUMERIC___word_freq_all_03___0", "84": "02___NUMERIC___word_freq_all_03___1", "85": "02___NUMERIC___word_freq_all_03___2", "86": "02___NUMERIC___word_freq_all_03___3", "87": "02___NUMERIC___word_freq_all_03___4", "88": "02___NUMERIC___word_freq_all_03___5", "89": "02___NUMERIC___word_freq_all_03___6", "90": "02___NUMERIC___word_freq_all_03___7", "91": "02___NUMERIC___word_freq_all_03___8", "92": "02___NUMERIC___word_freq_all_03___9", "93": "03___CATEGORICAL___word_freq_3d___0.0", "94": "03___CATEGORICAL___word_freq_3d___0.04", "95": "03___CATEGORICAL___word_freq_3d___0.06", "96": "03___CATEGORICAL___word_freq_3d___0.1", "97": "03___CATEGORICAL___word_freq_3d___0.11", "98": "03___CATEGORICAL___word_freq_3d___0.14", "99": "03___CATEGORICAL___word_freq_3d___0.15", "100": "03___CATEGORICAL___word_freq_3d___0.16", "101": "03___CATEGORICAL___word_freq_3d___0.17", "102": "03___CATEGORICAL___word_freq_3d___0.19", "103": "03___CATEGORICAL___word_freq_3d___0.21", "104": "03___CATEGORICAL___word_freq_3d___0.42", "105": "03___CATEGORICAL___word_freq_3d___0.44", "106": "03___CATEGORICAL___word_freq_3d___0.49", "107": "03___CATEGORICAL___word_freq_3d___0.55", "108": "03___CATEGORICAL___word_freq_3d___0.57", "109": "03___CATEGORICAL___word_freq_3d___0.58", "110": "03___CATEGORICAL___word_freq_3d___0.81", "111": "03___CATEGORICAL___word_freq_3d___0.91", "112": "03___CATEGORICAL___word_freq_3d___1.16", "113": "03___CATEGORICAL___word_freq_3d___1.26", "114": "03___CATEGORICAL___word_freq_3d___1.29", "115": "03___CATEGORICAL___word_freq_3d___1.33", "116": "03___CATEGORICAL___word_freq_3d___1.35", "117": "03___CATEGORICAL___word_freq_3d___13.63", "118": "03___CATEGORICAL___word_freq_3d___19.16", "119": "03___CATEGORICAL___word_freq_3d___19.73", "120": "03___CATEGORICAL___word_freq_3d___35.46", "121": "03___CATEGORICAL___word_freq_3d___4.31", "122": "03___CATEGORICAL___word_freq_3d___40.13", "123": "03___CATEGORICAL___word_freq_3d___42.73", "124": "03___CATEGORICAL___word_freq_3d___42.81", "125": "03___CATEGORICAL___word_freq_3d___5.03", "126": "03___CATEGORICAL___word_freq_3d___7.07", "127": "04___NUMERIC___word_freq_our_00___0", "128": "04___NUMERIC___word_freq_our_00___1", "129": "04___NUMERIC___word_freq_our_01___0", "130": "04___NUMERIC___word_freq_our_01___1", "131": "04___NUMERIC___word_freq_our_01___2", "132": "04___NUMERIC___word_freq_our_01___3", "133": "04___NUMERIC___word_freq_our_01___4", "134": "04___NUMERIC___word_freq_our_01___5", "135": "04___NUMERIC___word_freq_our_01___6", "136": "04___NUMERIC___word_freq_our_01___7", "137": "04___NUMERIC___word_freq_our_01___8", "138": "04___NUMERIC___word_freq_our_01___9", "139": "04___NUMERIC___word_freq_our_02___.", "140": "04___NUMERIC___word_freq_our_03___0", "141": "04___NUMERIC___word_freq_our_03___1", "142": "04___NUMERIC___word_freq_our_03___2", "143": "04___NUMERIC___word_freq_our_03___3", "144": "04___NUMERIC___word_freq_our_03___4", "145": "04___NUMERIC___word_freq_our_03___5", "146": "04___NUMERIC___word_freq_our_03___6", "147": "04___NUMERIC___word_freq_our_03___7", "148": "04___NUMERIC___word_freq_our_03___8", "149": "04___NUMERIC___word_freq_our_03___9", "150": "04___NUMERIC___word_freq_our_04___0", "151": "04___NUMERIC___word_freq_our_04___1", "152": "04___NUMERIC___word_freq_our_04___2", "153": "04___NUMERIC___word_freq_our_04___3", "154": "04___NUMERIC___word_freq_our_04___4", "155": "04___NUMERIC___word_freq_our_04___5", "156": "04___NUMERIC___word_freq_our_04___6", "157": "04___NUMERIC___word_freq_our_04___7", "158": "04___NUMERIC___word_freq_our_04___8", "159": "04___NUMERIC___word_freq_our_04___9", "160": "05___NUMERIC___word_freq_over_00___0", "161": "05___NUMERIC___word_freq_over_00___1", "162": "05___NUMERIC___word_freq_over_00___2", "163": "05___NUMERIC___word_freq_over_00___3", "164": "05___NUMERIC___word_freq_over_00___5", "165": "05___NUMERIC___word_freq_over_01___.", "166": "05___NUMERIC___word_freq_over_02___0", "167": "05___NUMERIC___word_freq_over_02___1", "168": "05___NUMERIC___word_freq_over_02___2", "169": "05___NUMERIC___word_freq_over_02___3", "170": "05___NUMERIC___word_freq_over_02___4", "171": "05___NUMERIC___word_freq_over_02___5", "172": "05___NUMERIC___word_freq_over_02___6", "173": "05___NUMERIC___word_freq_over_02___7", "174": "05___NUMERIC___word_freq_over_02___8", "175": "05___NUMERIC___word_freq_over_02___9", "176": "05___NUMERIC___word_freq_over_03___0", "177": "05___NUMERIC___word_freq_over_03___1", "178": "05___NUMERIC___word_freq_over_03___2", "179": "05___NUMERIC___word_freq_over_03___3", "180": "05___NUMERIC___word_freq_over_03___4", "181": "05___NUMERIC___word_freq_over_03___5", "182": "05___NUMERIC___word_freq_over_03___6", "183": "05___NUMERIC___word_freq_over_03___7", "184": "05___NUMERIC___word_freq_over_03___8", "185": "05___NUMERIC___word_freq_over_03___9", "186": "06___NUMERIC___word_freq_remove_00___0", "187": "06___NUMERIC___word_freq_remove_00___1", "188": "06___NUMERIC___word_freq_remove_00___2", "189": "06___NUMERIC___word_freq_remove_00___3", "190": "06___NUMERIC___word_freq_remove_00___4", "191": "06___NUMERIC___word_freq_remove_00___5", "192": "06___NUMERIC___word_freq_remove_00___7", "193": "06___NUMERIC___word_freq_remove_01___.", "194": "06___NUMERIC___word_freq_remove_02___0", "195": "06___NUMERIC___word_freq_remove_02___1", "196": "06___NUMERIC___word_freq_remove_02___2", "197": "06___NUMERIC___word_freq_remove_02___3", "198": "06___NUMERIC___word_freq_remove_02___4", "199": "06___NUMERIC___word_freq_remove_02___5", "200": "06___NUMERIC___word_freq_remove_02___6", "201": "06___NUMERIC___word_freq_remove_02___7", "202": "06___NUMERIC___word_freq_remove_02___8", "203": "06___NUMERIC___word_freq_remove_02___9", "204": "06___NUMERIC___word_freq_remove_03___0", "205": "06___NUMERIC___word_freq_remove_03___1", "206": "06___NUMERIC___word_freq_remove_03___2", "207": "06___NUMERIC___word_freq_remove_03___3", "208": "06___NUMERIC___word_freq_remove_03___4", "209": "06___NUMERIC___word_freq_remove_03___5", "210": "06___NUMERIC___word_freq_remove_03___6", "211": "06___NUMERIC___word_freq_remove_03___7", "212": "06___NUMERIC___word_freq_remove_03___8", "213": "06___NUMERIC___word_freq_remove_03___9", "214": "07___NUMERIC___word_freq_internet_00___0", "215": "07___NUMERIC___word_freq_internet_00___1", "216": "07___NUMERIC___word_freq_internet_01___0", "217": "07___NUMERIC___word_freq_internet_01___1", "218": "07___NUMERIC___word_freq_internet_01___2", "219": "07___NUMERIC___word_freq_internet_01___3", "220": "07___NUMERIC___word_freq_internet_01___4", "221": "07___NUMERIC___word_freq_internet_01___5", "222": "07___NUMERIC___word_freq_internet_01___6", "223": "07___NUMERIC___word_freq_internet_02___.", "224": "07___NUMERIC___word_freq_internet_03___0", "225": "07___NUMERIC___word_freq_internet_03___1", "226": "07___NUMERIC___word_freq_internet_03___2", "227": "07___NUMERIC___word_freq_internet_03___3", "228": "07___NUMERIC___word_freq_internet_03___4", "229": "07___NUMERIC___word_freq_internet_03___5", "230": "07___NUMERIC___word_freq_internet_03___6", "231": "07___NUMERIC___word_freq_internet_03___7", "232": "07___NUMERIC___word_freq_internet_03___8", "233": "07___NUMERIC___word_freq_internet_03___9", "234": "07___NUMERIC___word_freq_internet_04___0", "235": "07___NUMERIC___word_freq_internet_04___1", "236": "07___NUMERIC___word_freq_internet_04___2", "237": "07___NUMERIC___word_freq_internet_04___3", "238": "07___NUMERIC___word_freq_internet_04___4", "239": "07___NUMERIC___word_freq_internet_04___5", "240": "07___NUMERIC___word_freq_internet_04___6", "241": "07___NUMERIC___word_freq_internet_04___7", "242": "07___NUMERIC___word_freq_internet_04___8", "243": "07___NUMERIC___word_freq_internet_04___9", "244": "08___NUMERIC___word_freq_order_00___0", "245": "08___NUMERIC___word_freq_order_00___1", "246": "08___NUMERIC___word_freq_order_00___2", "247": "08___NUMERIC___word_freq_order_00___5", "248": "08___NUMERIC___word_freq_order_01___.", "249": "08___NUMERIC___word_freq_order_02___0", "250": "08___NUMERIC___word_freq_order_02___1", "251": "08___NUMERIC___word_freq_order_02___2", "252": "08___NUMERIC___word_freq_order_02___3", "253": "08___NUMERIC___word_freq_order_02___4", "254": "08___NUMERIC___word_freq_order_02___5", "255": "08___NUMERIC___word_freq_order_02___6", "256": "08___NUMERIC___word_freq_order_02___7", "257": "08___NUMERIC___word_freq_order_02___8", "258": "08___NUMERIC___word_freq_order_02___9", "259": "08___NUMERIC___word_freq_order_03___0", "260": "08___NUMERIC___word_freq_order_03___1", "261": "08___NUMERIC___word_freq_order_03___2", "262": "08___NUMERIC___word_freq_order_03___3", "263": "08___NUMERIC___word_freq_order_03___4", "264": "08___NUMERIC___word_freq_order_03___5", "265": "08___NUMERIC___word_freq_order_03___6", "266": "08___NUMERIC___word_freq_order_03___7", "267": "08___NUMERIC___word_freq_order_03___8", "268": "08___NUMERIC___word_freq_order_03___9", "269": "09___NUMERIC___word_freq_mail_00___0", "270": "09___NUMERIC___word_freq_mail_00___1", "271": "09___NUMERIC___word_freq_mail_01___0", "272": "09___NUMERIC___word_freq_mail_01___1", "273": "09___NUMERIC___word_freq_mail_01___2", "274": "09___NUMERIC___word_freq_mail_01___3", "275": "09___NUMERIC___word_freq_mail_01___4", "276": "09___NUMERIC___word_freq_mail_01___5", "277": "09___NUMERIC___word_freq_mail_01___7", "278": "09___NUMERIC___word_freq_mail_01___8", "279": "09___NUMERIC___word_freq_mail_02___.", "280": "09___NUMERIC___word_freq_mail_03___0", "281": "09___NUMERIC___word_freq_mail_03___1", "282": "09___NUMERIC___word_freq_mail_03___2", "283": "09___NUMERIC___word_freq_mail_03___3", "284": "09___NUMERIC___word_freq_mail_03___4", "285": "09___NUMERIC___word_freq_mail_03___5", "286": "09___NUMERIC___word_freq_mail_03___6", "287": "09___NUMERIC___word_freq_mail_03___7", "288": "09___NUMERIC___word_freq_mail_03___8", "289": "09___NUMERIC___word_freq_mail_03___9", "290": "09___NUMERIC___word_freq_mail_04___0", "291": "09___NUMERIC___word_freq_mail_04___1", "292": "09___NUMERIC___word_freq_mail_04___2", "293": "09___NUMERIC___word_freq_mail_04___3", "294": "09___NUMERIC___word_freq_mail_04___4", "295": "09___NUMERIC___word_freq_mail_04___5", "296": "09___NUMERIC___word_freq_mail_04___6", "297": "09___NUMERIC___word_freq_mail_04___7", "298": "09___NUMERIC___word_freq_mail_04___8", "299": "09___NUMERIC___word_freq_mail_04___9", "300": "10___NUMERIC___word_freq_receive_00___0", "301": "10___NUMERIC___word_freq_receive_00___1", "302": "10___NUMERIC___word_freq_receive_00___2", "303": "10___NUMERIC___word_freq_receive_01___.", "304": "10___NUMERIC___word_freq_receive_02___0", "305": "10___NUMERIC___word_freq_receive_02___1", "306": "10___NUMERIC___word_freq_receive_02___2", "307": "10___NUMERIC___word_freq_receive_02___3", "308": "10___NUMERIC___word_freq_receive_02___4", "309": "10___NUMERIC___word_freq_receive_02___5", "310": "10___NUMERIC___word_freq_receive_02___6", "311": "10___NUMERIC___word_freq_receive_02___7", "312": "10___NUMERIC___word_freq_receive_02___8", "313": "10___NUMERIC___word_freq_receive_02___9", "314": "10___NUMERIC___word_freq_receive_03___0", "315": "10___NUMERIC___word_freq_receive_03___1", "316": "10___NUMERIC___word_freq_receive_03___2", "317": "10___NUMERIC___word_freq_receive_03___3", "318": "10___NUMERIC___word_freq_receive_03___4", "319": "10___NUMERIC___word_freq_receive_03___5", "320": "10___NUMERIC___word_freq_receive_03___6", "321": "10___NUMERIC___word_freq_receive_03___7", "322": "10___NUMERIC___word_freq_receive_03___8", "323": "10___NUMERIC___word_freq_receive_03___9", "324": "11___NUMERIC___word_freq_will_00___0", "325": "11___NUMERIC___word_freq_will_00___1", "326": "11___NUMERIC___word_freq_will_00___2", "327": "11___NUMERIC___word_freq_will_00___3", "328": "11___NUMERIC___word_freq_will_00___4", "329": "11___NUMERIC___word_freq_will_00___5", "330": "11___NUMERIC___word_freq_will_00___6", "331": "11___NUMERIC___word_freq_will_00___7", "332": "11___NUMERIC___word_freq_will_00___9", "333": "11___NUMERIC___word_freq_will_01___.", "334": "11___NUMERIC___word_freq_will_02___0", "335": "11___NUMERIC___word_freq_will_02___1", "336": "11___NUMERIC___word_freq_will_02___2", "337": "11___NUMERIC___word_freq_will_02___3", "338": "11___NUMERIC___word_freq_will_02___4", "339": "11___NUMERIC___word_freq_will_02___5", "340": "11___NUMERIC___word_freq_will_02___6", "341": "11___NUMERIC___word_freq_will_02___7", "342": "11___NUMERIC___word_freq_will_02___8", "343": "11___NUMERIC___word_freq_will_02___9", "344": "11___NUMERIC___word_freq_will_03___0", "345": "11___NUMERIC___word_freq_will_03___1", "346": "11___NUMERIC___word_freq_will_03___2", "347": "11___NUMERIC___word_freq_will_03___3", "348": "11___NUMERIC___word_freq_will_03___4", "349": "11___NUMERIC___word_freq_will_03___5", "350": "11___NUMERIC___word_freq_will_03___6", "351": "11___NUMERIC___word_freq_will_03___7", "352": "11___NUMERIC___word_freq_will_03___8", "353": "11___NUMERIC___word_freq_will_03___9", "354": "12___NUMERIC___word_freq_people_00___0", "355": "12___NUMERIC___word_freq_people_00___1", "356": "12___NUMERIC___word_freq_people_00___2", "357": "12___NUMERIC___word_freq_people_00___5", "358": "12___NUMERIC___word_freq_people_01___.", "359": "12___NUMERIC___word_freq_people_02___0", "360": "12___NUMERIC___word_freq_people_02___1", "361": "12___NUMERIC___word_freq_people_02___2", "362": "12___NUMERIC___word_freq_people_02___3", "363": "12___NUMERIC___word_freq_people_02___4", "364": "12___NUMERIC___word_freq_people_02___5", "365": "12___NUMERIC___word_freq_people_02___6", "366": "12___NUMERIC___word_freq_people_02___7", "367": "12___NUMERIC___word_freq_people_02___8", "368": "12___NUMERIC___word_freq_people_02___9", "369": "12___NUMERIC___word_freq_people_03___0", "370": "12___NUMERIC___word_freq_people_03___1", "371": "12___NUMERIC___word_freq_people_03___2", "372": "12___NUMERIC___word_freq_people_03___3", "373": "12___NUMERIC___word_freq_people_03___4", "374": "12___NUMERIC___word_freq_people_03___5", "375": "12___NUMERIC___word_freq_people_03___6", "376": "12___NUMERIC___word_freq_people_03___7", "377": "12___NUMERIC___word_freq_people_03___8", "378": "12___NUMERIC___word_freq_people_03___9", "379": "13___NUMERIC___word_freq_report_00___0", "380": "13___NUMERIC___word_freq_report_00___1", "381": "13___NUMERIC___word_freq_report_01___0", "382": "13___NUMERIC___word_freq_report_01___1", "383": "13___NUMERIC___word_freq_report_01___2", "384": "13___NUMERIC___word_freq_report_01___3", "385": "13___NUMERIC___word_freq_report_01___4", "386": "13___NUMERIC___word_freq_report_01___5", "387": "13___NUMERIC___word_freq_report_02___.", "388": "13___NUMERIC___word_freq_report_03___0", "389": "13___NUMERIC___word_freq_report_03___1", "390": "13___NUMERIC___word_freq_report_03___2", "391": "13___NUMERIC___word_freq_report_03___3", "392": "13___NUMERIC___word_freq_report_03___4", "393": "13___NUMERIC___word_freq_report_03___5", "394": "13___NUMERIC___word_freq_report_03___6", "395": "13___NUMERIC___word_freq_report_03___7", "396": "13___NUMERIC___word_freq_report_03___8", "397": "13___NUMERIC___word_freq_report_03___9", "398": "13___NUMERIC___word_freq_report_04___0", "399": "13___NUMERIC___word_freq_report_04___1", "400": "13___NUMERIC___word_freq_report_04___2", "401": "13___NUMERIC___word_freq_report_04___3", "402": "13___NUMERIC___word_freq_report_04___4", "403": "13___NUMERIC___word_freq_report_04___5", "404": "13___NUMERIC___word_freq_report_04___6", "405": "13___NUMERIC___word_freq_report_04___7", "406": "13___NUMERIC___word_freq_report_04___8", "407": "13___NUMERIC___word_freq_report_04___9", "408": "14___NUMERIC___word_freq_addresses_00___0", "409": "14___NUMERIC___word_freq_addresses_00___1", "410": "14___NUMERIC___word_freq_addresses_00___2", "411": "14___NUMERIC___word_freq_addresses_00___4", "412": "14___NUMERIC___word_freq_addresses_01___.", "413": "14___NUMERIC___word_freq_addresses_02___0", "414": "14___NUMERIC___word_freq_addresses_02___1", "415": "14___NUMERIC___word_freq_addresses_02___2", "416": "14___NUMERIC___word_freq_addresses_02___3", "417": "14___NUMERIC___word_freq_addresses_02___4", "418": "14___NUMERIC___word_freq_addresses_02___5", "419": "14___NUMERIC___word_freq_addresses_02___6", "420": "14___NUMERIC___word_freq_addresses_02___7", "421": "14___NUMERIC___word_freq_addresses_02___8", "422": "14___NUMERIC___word_freq_addresses_02___9", "423": "14___NUMERIC___word_freq_addresses_03___0", "424": "14___NUMERIC___word_freq_addresses_03___1", "425": "14___NUMERIC___word_freq_addresses_03___2", "426": "14___NUMERIC___word_freq_addresses_03___3", "427": "14___NUMERIC___word_freq_addresses_03___4", "428": "14___NUMERIC___word_freq_addresses_03___5", "429": "14___NUMERIC___word_freq_addresses_03___6", "430": "14___NUMERIC___word_freq_addresses_03___7", "431": "14___NUMERIC___word_freq_addresses_03___8", "432": "14___NUMERIC___word_freq_addresses_03___9", "433": "15___NUMERIC___word_freq_free_00___0", "434": "15___NUMERIC___word_freq_free_00___1", "435": "15___NUMERIC___word_freq_free_00___2", "436": "15___NUMERIC___word_freq_free_01___0", "437": "15___NUMERIC___word_freq_free_01___1", "438": "15___NUMERIC___word_freq_free_01___2", "439": "15___NUMERIC___word_freq_free_01___3", "440": "15___NUMERIC___word_freq_free_01___4", "441": "15___NUMERIC___word_freq_free_01___5", "442": "15___NUMERIC___word_freq_free_01___6", "443": "15___NUMERIC___word_freq_free_01___7", "444": "15___NUMERIC___word_freq_free_02___.", "445": "15___NUMERIC___word_freq_free_03___0", "446": "15___NUMERIC___word_freq_free_03___1", "447": "15___NUMERIC___word_freq_free_03___2", "448": "15___NUMERIC___word_freq_free_03___3", "449": "15___NUMERIC___word_freq_free_03___4", "450": "15___NUMERIC___word_freq_free_03___5", "451": "15___NUMERIC___word_freq_free_03___6", "452": "15___NUMERIC___word_freq_free_03___7", "453": "15___NUMERIC___word_freq_free_03___8", "454": "15___NUMERIC___word_freq_free_03___9", "455": "15___NUMERIC___word_freq_free_04___0", "456": "15___NUMERIC___word_freq_free_04___1", "457": "15___NUMERIC___word_freq_free_04___2", "458": "15___NUMERIC___word_freq_free_04___3", "459": "15___NUMERIC___word_freq_free_04___4", "460": "15___NUMERIC___word_freq_free_04___5", "461": "15___NUMERIC___word_freq_free_04___6", "462": "15___NUMERIC___word_freq_free_04___7", "463": "15___NUMERIC___word_freq_free_04___8", "464": "15___NUMERIC___word_freq_free_04___9", "465": "16___NUMERIC___word_freq_business_00___0", "466": "16___NUMERIC___word_freq_business_00___1", "467": "16___NUMERIC___word_freq_business_00___2", "468": "16___NUMERIC___word_freq_business_00___3", "469": "16___NUMERIC___word_freq_business_00___4", "470": "16___NUMERIC___word_freq_business_00___7", "471": "16___NUMERIC___word_freq_business_01___.", "472": "16___NUMERIC___word_freq_business_02___0", "473": "16___NUMERIC___word_freq_business_02___1", "474": "16___NUMERIC___word_freq_business_02___2", "475": "16___NUMERIC___word_freq_business_02___3", "476": "16___NUMERIC___word_freq_business_02___4", "477": "16___NUMERIC___word_freq_business_02___5", "478": "16___NUMERIC___word_freq_business_02___6", "479": "16___NUMERIC___word_freq_business_02___7", "480": "16___NUMERIC___word_freq_business_02___8", "481": "16___NUMERIC___word_freq_business_02___9", "482": "16___NUMERIC___word_freq_business_03___0", "483": "16___NUMERIC___word_freq_business_03___1", "484": "16___NUMERIC___word_freq_business_03___2", "485": "16___NUMERIC___word_freq_business_03___3", "486": "16___NUMERIC___word_freq_business_03___4", "487": "16___NUMERIC___word_freq_business_03___5", "488": "16___NUMERIC___word_freq_business_03___6", "489": "16___NUMERIC___word_freq_business_03___7", "490": "16___NUMERIC___word_freq_business_03___8", "491": "16___NUMERIC___word_freq_business_03___9", "492": "17___NUMERIC___word_freq_email_00___0", "493": "17___NUMERIC___word_freq_email_00___1", "494": "17___NUMERIC___word_freq_email_00___2", "495": "17___NUMERIC___word_freq_email_00___3", "496": "17___NUMERIC___word_freq_email_00___4", "497": "17___NUMERIC___word_freq_email_00___5", "498": "17___NUMERIC___word_freq_email_00___6", "499": "17___NUMERIC___word_freq_email_00___7", "500": "17___NUMERIC___word_freq_email_00___9", "501": "17___NUMERIC___word_freq_email_01___.", "502": "17___NUMERIC___word_freq_email_02___0", "503": "17___NUMERIC___word_freq_email_02___1", "504": "17___NUMERIC___word_freq_email_02___2", "505": "17___NUMERIC___word_freq_email_02___3", "506": "17___NUMERIC___word_freq_email_02___4", "507": "17___NUMERIC___word_freq_email_02___5", "508": "17___NUMERIC___word_freq_email_02___6", "509": "17___NUMERIC___word_freq_email_02___7", "510": "17___NUMERIC___word_freq_email_02___8", "511": "17___NUMERIC___word_freq_email_02___9", "512": "17___NUMERIC___word_freq_email_03___0", "513": "17___NUMERIC___word_freq_email_03___1", "514": "17___NUMERIC___word_freq_email_03___2", "515": "17___NUMERIC___word_freq_email_03___3", "516": "17___NUMERIC___word_freq_email_03___4", "517": "17___NUMERIC___word_freq_email_03___5", "518": "17___NUMERIC___word_freq_email_03___6", "519": "17___NUMERIC___word_freq_email_03___7", "520": "17___NUMERIC___word_freq_email_03___8", "521": "17___NUMERIC___word_freq_email_03___9", "522": "18___NUMERIC___word_freq_you_00___0", "523": "18___NUMERIC___word_freq_you_00___1", "524": "18___NUMERIC___word_freq_you_01___0", "525": "18___NUMERIC___word_freq_you_01___1", "526": "18___NUMERIC___word_freq_you_01___2", "527": "18___NUMERIC___word_freq_you_01___3", "528": "18___NUMERIC___word_freq_you_01___4", "529": "18___NUMERIC___word_freq_you_01___5", "530": "18___NUMERIC___word_freq_you_01___6", "531": "18___NUMERIC___word_freq_you_01___7", "532": "18___NUMERIC___word_freq_you_01___8", "533": "18___NUMERIC___word_freq_you_01___9", "534": "18___NUMERIC___word_freq_you_02___.", "535": "18___NUMERIC___word_freq_you_03___0", "536": "18___NUMERIC___word_freq_you_03___1", "537": "18___NUMERIC___word_freq_you_03___2", "538": "18___NUMERIC___word_freq_you_03___3", "539": "18___NUMERIC___word_freq_you_03___4", "540": "18___NUMERIC___word_freq_you_03___5", "541": "18___NUMERIC___word_freq_you_03___6", "542": "18___NUMERIC___word_freq_you_03___7", "543": "18___NUMERIC___word_freq_you_03___8", "544": "18___NUMERIC___word_freq_you_03___9", "545": "18___NUMERIC___word_freq_you_04___0", "546": "18___NUMERIC___word_freq_you_04___1", "547": "18___NUMERIC___word_freq_you_04___2", "548": "18___NUMERIC___word_freq_you_04___3", "549": "18___NUMERIC___word_freq_you_04___4", "550": "18___NUMERIC___word_freq_you_04___5", "551": "18___NUMERIC___word_freq_you_04___6", "552": "18___NUMERIC___word_freq_you_04___7", "553": "18___NUMERIC___word_freq_you_04___8", "554": "18___NUMERIC___word_freq_you_04___9", "555": "19___NUMERIC___word_freq_credit_00___0", "556": "19___NUMERIC___word_freq_credit_00___1", "557": "19___NUMERIC___word_freq_credit_01___0", "558": "19___NUMERIC___word_freq_credit_01___1", "559": "19___NUMERIC___word_freq_credit_01___2", "560": "19___NUMERIC___word_freq_credit_01___3", "561": "19___NUMERIC___word_freq_credit_01___4", "562": "19___NUMERIC___word_freq_credit_01___5", "563": "19___NUMERIC___word_freq_credit_01___6", "564": "19___NUMERIC___word_freq_credit_01___8", "565": "19___NUMERIC___word_freq_credit_02___.", "566": "19___NUMERIC___word_freq_credit_03___0", "567": "19___NUMERIC___word_freq_credit_03___1", "568": "19___NUMERIC___word_freq_credit_03___2", "569": "19___NUMERIC___word_freq_credit_03___3", "570": "19___NUMERIC___word_freq_credit_03___4", "571": "19___NUMERIC___word_freq_credit_03___5", "572": "19___NUMERIC___word_freq_credit_03___6", "573": "19___NUMERIC___word_freq_credit_03___7", "574": "19___NUMERIC___word_freq_credit_03___8", "575": "19___NUMERIC___word_freq_credit_03___9", "576": "19___NUMERIC___word_freq_credit_04___0", "577": "19___NUMERIC___word_freq_credit_04___1", "578": "19___NUMERIC___word_freq_credit_04___2", "579": "19___NUMERIC___word_freq_credit_04___3", "580": "19___NUMERIC___word_freq_credit_04___4", "581": "19___NUMERIC___word_freq_credit_04___5", "582": "19___NUMERIC___word_freq_credit_04___6", "583": "19___NUMERIC___word_freq_credit_04___7", "584": "19___NUMERIC___word_freq_credit_04___8", "585": "19___NUMERIC___word_freq_credit_04___9", "586": "20___NUMERIC___word_freq_your_00___0", "587": "20___NUMERIC___word_freq_your_00___1", "588": "20___NUMERIC___word_freq_your_01___0", "589": "20___NUMERIC___word_freq_your_01___1", "590": "20___NUMERIC___word_freq_your_01___2", "591": "20___NUMERIC___word_freq_your_01___3", "592": "20___NUMERIC___word_freq_your_01___4", "593": "20___NUMERIC___word_freq_your_01___5", "594": "20___NUMERIC___word_freq_your_01___6", "595": "20___NUMERIC___word_freq_your_01___7", "596": "20___NUMERIC___word_freq_your_01___8", "597": "20___NUMERIC___word_freq_your_01___9", "598": "20___NUMERIC___word_freq_your_02___.", "599": "20___NUMERIC___word_freq_your_03___0", "600": "20___NUMERIC___word_freq_your_03___1", "601": "20___NUMERIC___word_freq_your_03___2", "602": "20___NUMERIC___word_freq_your_03___3", "603": "20___NUMERIC___word_freq_your_03___4", "604": "20___NUMERIC___word_freq_your_03___5", "605": "20___NUMERIC___word_freq_your_03___6", "606": "20___NUMERIC___word_freq_your_03___7", "607": "20___NUMERIC___word_freq_your_03___8", "608": "20___NUMERIC___word_freq_your_03___9", "609": "20___NUMERIC___word_freq_your_04___0", "610": "20___NUMERIC___word_freq_your_04___1", "611": "20___NUMERIC___word_freq_your_04___2", "612": "20___NUMERIC___word_freq_your_04___3", "613": "20___NUMERIC___word_freq_your_04___4", "614": "20___NUMERIC___word_freq_your_04___5", "615": "20___NUMERIC___word_freq_your_04___6", "616": "20___NUMERIC___word_freq_your_04___7", "617": "20___NUMERIC___word_freq_your_04___8", "618": "20___NUMERIC___word_freq_your_04___9", "619": "21___NUMERIC___word_freq_font_00___0", "620": "21___NUMERIC___word_freq_font_00___1", "621": "21___NUMERIC___word_freq_font_01___0", "622": "21___NUMERIC___word_freq_font_01___1", "623": "21___NUMERIC___word_freq_font_01___2", "624": "21___NUMERIC___word_freq_font_01___3", "625": "21___NUMERIC___word_freq_font_01___4", "626": "21___NUMERIC___word_freq_font_01___5", "627": "21___NUMERIC___word_freq_font_01___6", "628": "21___NUMERIC___word_freq_font_01___7", "629": "21___NUMERIC___word_freq_font_01___8", "630": "21___NUMERIC___word_freq_font_01___9", "631": "21___NUMERIC___word_freq_font_02___.", "632": "21___NUMERIC___word_freq_font_03___0", "633": "21___NUMERIC___word_freq_font_03___1", "634": "21___NUMERIC___word_freq_font_03___2", "635": "21___NUMERIC___word_freq_font_03___3", "636": "21___NUMERIC___word_freq_font_03___4", "637": "21___NUMERIC___word_freq_font_03___5", "638": "21___NUMERIC___word_freq_font_03___6", "639": "21___NUMERIC___word_freq_font_03___7", "640": "21___NUMERIC___word_freq_font_03___8", "641": "21___NUMERIC___word_freq_font_03___9", "642": "21___NUMERIC___word_freq_font_04___0", "643": "21___NUMERIC___word_freq_font_04___1", "644": "21___NUMERIC___word_freq_font_04___2", "645": "21___NUMERIC___word_freq_font_04___3", "646": "21___NUMERIC___word_freq_font_04___4", "647": "21___NUMERIC___word_freq_font_04___5", "648": "21___NUMERIC___word_freq_font_04___6", "649": "21___NUMERIC___word_freq_font_04___7", "650": "21___NUMERIC___word_freq_font_04___8", "651": "21___NUMERIC___word_freq_font_04___9", "652": "22___NUMERIC___word_freq_000_00___0", "653": "22___NUMERIC___word_freq_000_00___1", "654": "22___NUMERIC___word_freq_000_00___2", "655": "22___NUMERIC___word_freq_000_00___3", "656": "22___NUMERIC___word_freq_000_00___4", "657": "22___NUMERIC___word_freq_000_00___5", "658": "22___NUMERIC___word_freq_000_01___.", "659": "22___NUMERIC___word_freq_000_02___0", "660": "22___NUMERIC___word_freq_000_02___1", "661": "22___NUMERIC___word_freq_000_02___2", "662": "22___NUMERIC___word_freq_000_02___3", "663": "22___NUMERIC___word_freq_000_02___4", "664": "22___NUMERIC___word_freq_000_02___5", "665": "22___NUMERIC___word_freq_000_02___6", "666": "22___NUMERIC___word_freq_000_02___7", "667": "22___NUMERIC___word_freq_000_02___8", "668": "22___NUMERIC___word_freq_000_02___9", "669": "22___NUMERIC___word_freq_000_03___0", "670": "22___NUMERIC___word_freq_000_03___1", "671": "22___NUMERIC___word_freq_000_03___2", "672": "22___NUMERIC___word_freq_000_03___3", "673": "22___NUMERIC___word_freq_000_03___4", "674": "22___NUMERIC___word_freq_000_03___5", "675": "22___NUMERIC___word_freq_000_03___6", "676": "22___NUMERIC___word_freq_000_03___7", "677": "22___NUMERIC___word_freq_000_03___8", "678": "22___NUMERIC___word_freq_000_03___9", "679": "23___NUMERIC___word_freq_money_00___0", "680": "23___NUMERIC___word_freq_money_00___1", "681": "23___NUMERIC___word_freq_money_01___0", "682": "23___NUMERIC___word_freq_money_01___1", "683": "23___NUMERIC___word_freq_money_01___2", "684": "23___NUMERIC___word_freq_money_01___3", "685": "23___NUMERIC___word_freq_money_01___4", "686": "23___NUMERIC___word_freq_money_01___5", "687": "23___NUMERIC___word_freq_money_01___6", "688": "23___NUMERIC___word_freq_money_01___9", "689": "23___NUMERIC___word_freq_money_02___.", "690": "23___NUMERIC___word_freq_money_03___0", "691": "23___NUMERIC___word_freq_money_03___1", "692": "23___NUMERIC___word_freq_money_03___2", "693": "23___NUMERIC___word_freq_money_03___3", "694": "23___NUMERIC___word_freq_money_03___4", "695": "23___NUMERIC___word_freq_money_03___5", "696": "23___NUMERIC___word_freq_money_03___6", "697": "23___NUMERIC___word_freq_money_03___7", "698": "23___NUMERIC___word_freq_money_03___8", "699": "23___NUMERIC___word_freq_money_03___9", "700": "23___NUMERIC___word_freq_money_04___0", "701": "23___NUMERIC___word_freq_money_04___1", "702": "23___NUMERIC___word_freq_money_04___2", "703": "23___NUMERIC___word_freq_money_04___3", "704": "23___NUMERIC___word_freq_money_04___4", "705": "23___NUMERIC___word_freq_money_04___5", "706": "23___NUMERIC___word_freq_money_04___6", "707": "23___NUMERIC___word_freq_money_04___7", "708": "23___NUMERIC___word_freq_money_04___8", "709": "23___NUMERIC___word_freq_money_04___9", "710": "24___NUMERIC___word_freq_hp_00___0", "711": "24___NUMERIC___word_freq_hp_00___1", "712": "24___NUMERIC___word_freq_hp_00___2", "713": "24___NUMERIC___word_freq_hp_01___0", "714": "24___NUMERIC___word_freq_hp_01___1", "715": "24___NUMERIC___word_freq_hp_01___2", "716": "24___NUMERIC___word_freq_hp_01___3", "717": "24___NUMERIC___word_freq_hp_01___4", "718": "24___NUMERIC___word_freq_hp_01___5", "719": "24___NUMERIC___word_freq_hp_01___6", "720": "24___NUMERIC___word_freq_hp_01___7", "721": "24___NUMERIC___word_freq_hp_01___8", "722": "24___NUMERIC___word_freq_hp_01___9", "723": "24___NUMERIC___word_freq_hp_02___.", "724": "24___NUMERIC___word_freq_hp_03___0", "725": "24___NUMERIC___word_freq_hp_03___1", "726": "24___NUMERIC___word_freq_hp_03___2", "727": "24___NUMERIC___word_freq_hp_03___3", "728": "24___NUMERIC___word_freq_hp_03___4", "729": "24___NUMERIC___word_freq_hp_03___5", "730": "24___NUMERIC___word_freq_hp_03___6", "731": "24___NUMERIC___word_freq_hp_03___7", "732": "24___NUMERIC___word_freq_hp_03___8", "733": "24___NUMERIC___word_freq_hp_03___9", "734": "24___NUMERIC___word_freq_hp_04___0", "735": "24___NUMERIC___word_freq_hp_04___1", "736": "24___NUMERIC___word_freq_hp_04___2", "737": "24___NUMERIC___word_freq_hp_04___3", "738": "24___NUMERIC___word_freq_hp_04___4", "739": "24___NUMERIC___word_freq_hp_04___5", "740": "24___NUMERIC___word_freq_hp_04___6", "741": "24___NUMERIC___word_freq_hp_04___7", "742": "24___NUMERIC___word_freq_hp_04___8", "743": "24___NUMERIC___word_freq_hp_04___9", "744": "25___NUMERIC___word_freq_hpl_00___0", "745": "25___NUMERIC___word_freq_hpl_00___1", "746": "25___NUMERIC___word_freq_hpl_01___0", "747": "25___NUMERIC___word_freq_hpl_01___1", "748": "25___NUMERIC___word_freq_hpl_01___2", "749": "25___NUMERIC___word_freq_hpl_01___3", "750": "25___NUMERIC___word_freq_hpl_01___4", "751": "25___NUMERIC___word_freq_hpl_01___5", "752": "25___NUMERIC___word_freq_hpl_01___6", "753": "25___NUMERIC___word_freq_hpl_01___7", "754": "25___NUMERIC___word_freq_hpl_01___8", "755": "25___NUMERIC___word_freq_hpl_01___9", "756": "25___NUMERIC___word_freq_hpl_02___.", "757": "25___NUMERIC___word_freq_hpl_03___0", "758": "25___NUMERIC___word_freq_hpl_03___1", "759": "25___NUMERIC___word_freq_hpl_03___2", "760": "25___NUMERIC___word_freq_hpl_03___3", "761": "25___NUMERIC___word_freq_hpl_03___4", "762": "25___NUMERIC___word_freq_hpl_03___5", "763": "25___NUMERIC___word_freq_hpl_03___6", "764": "25___NUMERIC___word_freq_hpl_03___7", "765": "25___NUMERIC___word_freq_hpl_03___8", "766": "25___NUMERIC___word_freq_hpl_03___9", "767": "25___NUMERIC___word_freq_hpl_04___0", "768": "25___NUMERIC___word_freq_hpl_04___1", "769": "25___NUMERIC___word_freq_hpl_04___2", "770": "25___NUMERIC___word_freq_hpl_04___3", "771": "25___NUMERIC___word_freq_hpl_04___4", "772": "25___NUMERIC___word_freq_hpl_04___5", "773": "25___NUMERIC___word_freq_hpl_04___6", "774": "25___NUMERIC___word_freq_hpl_04___7", "775": "25___NUMERIC___word_freq_hpl_04___8", "776": "25___NUMERIC___word_freq_hpl_04___9", "777": "26___NUMERIC___word_freq_george_00___0", "778": "26___NUMERIC___word_freq_george_00___1", "779": "26___NUMERIC___word_freq_george_00___2", "780": "26___NUMERIC___word_freq_george_00___3", "781": "26___NUMERIC___word_freq_george_01___0", "782": "26___NUMERIC___word_freq_george_01___1", "783": "26___NUMERIC___word_freq_george_01___2", "784": "26___NUMERIC___word_freq_george_01___3", "785": "26___NUMERIC___word_freq_george_01___4", "786": "26___NUMERIC___word_freq_george_01___5", "787": "26___NUMERIC___word_freq_george_01___6", "788": "26___NUMERIC___word_freq_george_01___7", "789": "26___NUMERIC___word_freq_george_01___8", "790": "26___NUMERIC___word_freq_george_01___9", "791": "26___NUMERIC___word_freq_george_02___.", "792": "26___NUMERIC___word_freq_george_03___0", "793": "26___NUMERIC___word_freq_george_03___1", "794": "26___NUMERIC___word_freq_george_03___2", "795": "26___NUMERIC___word_freq_george_03___3", "796": "26___NUMERIC___word_freq_george_03___4", "797": "26___NUMERIC___word_freq_george_03___5", "798": "26___NUMERIC___word_freq_george_03___6", "799": "26___NUMERIC___word_freq_george_03___7", "800": "26___NUMERIC___word_freq_george_03___8", "801": "26___NUMERIC___word_freq_george_03___9", "802": "26___NUMERIC___word_freq_george_04___0", "803": "26___NUMERIC___word_freq_george_04___1", "804": "26___NUMERIC___word_freq_george_04___2", "805": "26___NUMERIC___word_freq_george_04___3", "806": "26___NUMERIC___word_freq_george_04___4", "807": "26___NUMERIC___word_freq_george_04___5", "808": "26___NUMERIC___word_freq_george_04___6", "809": "26___NUMERIC___word_freq_george_04___7", "810": "26___NUMERIC___word_freq_george_04___8", "811": "26___NUMERIC___word_freq_george_04___9", "812": "27___NUMERIC___word_freq_650_00___0", "813": "27___NUMERIC___word_freq_650_00___1", "814": "27___NUMERIC___word_freq_650_00___2", "815": "27___NUMERIC___word_freq_650_00___3", "816": "27___NUMERIC___word_freq_650_00___4", "817": "27___NUMERIC___word_freq_650_00___5", "818": "27___NUMERIC___word_freq_650_00___8", "819": "27___NUMERIC___word_freq_650_00___9", "820": "27___NUMERIC___word_freq_650_01___.", "821": "27___NUMERIC___word_freq_650_02___0", "822": "27___NUMERIC___word_freq_650_02___1", "823": "27___NUMERIC___word_freq_650_02___2", "824": "27___NUMERIC___word_freq_650_02___3", "825": "27___NUMERIC___word_freq_650_02___4", "826": "27___NUMERIC___word_freq_650_02___5", "827": "27___NUMERIC___word_freq_650_02___6", "828": "27___NUMERIC___word_freq_650_02___7", "829": "27___NUMERIC___word_freq_650_02___8", "830": "27___NUMERIC___word_freq_650_02___9", "831": "27___NUMERIC___word_freq_650_03___0", "832": "27___NUMERIC___word_freq_650_03___1", "833": "27___NUMERIC___word_freq_650_03___2", "834": "27___NUMERIC___word_freq_650_03___3", "835": "27___NUMERIC___word_freq_650_03___4", "836": "27___NUMERIC___word_freq_650_03___5", "837": "27___NUMERIC___word_freq_650_03___6", "838": "27___NUMERIC___word_freq_650_03___7", "839": "27___NUMERIC___word_freq_650_03___8", "840": "27___NUMERIC___word_freq_650_03___9", "841": "28___NUMERIC___word_freq_lab_00___0", "842": "28___NUMERIC___word_freq_lab_00___1", "843": "28___NUMERIC___word_freq_lab_01___0", "844": "28___NUMERIC___word_freq_lab_01___1", "845": "28___NUMERIC___word_freq_lab_01___2", "846": "28___NUMERIC___word_freq_lab_01___3", "847": "28___NUMERIC___word_freq_lab_01___4", "848": "28___NUMERIC___word_freq_lab_01___5", "849": "28___NUMERIC___word_freq_lab_01___6", "850": "28___NUMERIC___word_freq_lab_01___7", "851": "28___NUMERIC___word_freq_lab_01___9", "852": "28___NUMERIC___word_freq_lab_02___.", "853": "28___NUMERIC___word_freq_lab_03___0", "854": "28___NUMERIC___word_freq_lab_03___1", "855": "28___NUMERIC___word_freq_lab_03___2", "856": "28___NUMERIC___word_freq_lab_03___3", "857": "28___NUMERIC___word_freq_lab_03___4", "858": "28___NUMERIC___word_freq_lab_03___5", "859": "28___NUMERIC___word_freq_lab_03___6", "860": "28___NUMERIC___word_freq_lab_03___7", "861": "28___NUMERIC___word_freq_lab_03___8", "862": "28___NUMERIC___word_freq_lab_03___9", "863": "28___NUMERIC___word_freq_lab_04___0", "864": "28___NUMERIC___word_freq_lab_04___1", "865": "28___NUMERIC___word_freq_lab_04___2", "866": "28___NUMERIC___word_freq_lab_04___3", "867": "28___NUMERIC___word_freq_lab_04___4", "868": "28___NUMERIC___word_freq_lab_04___5", "869": "28___NUMERIC___word_freq_lab_04___6", "870": "28___NUMERIC___word_freq_lab_04___7", "871": "28___NUMERIC___word_freq_lab_04___8", "872": "28___NUMERIC___word_freq_lab_04___9", "873": "29___NUMERIC___word_freq_labs_00___0", "874": "29___NUMERIC___word_freq_labs_00___1", "875": "29___NUMERIC___word_freq_labs_00___2", "876": "29___NUMERIC___word_freq_labs_00___3", "877": "29___NUMERIC___word_freq_labs_00___4", "878": "29___NUMERIC___word_freq_labs_00___5", "879": "29___NUMERIC___word_freq_labs_01___.", "880": "29___NUMERIC___word_freq_labs_02___0", "881": "29___NUMERIC___word_freq_labs_02___1", "882": "29___NUMERIC___word_freq_labs_02___2", "883": "29___NUMERIC___word_freq_labs_02___3", "884": "29___NUMERIC___word_freq_labs_02___4", "885": "29___NUMERIC___word_freq_labs_02___5", "886": "29___NUMERIC___word_freq_labs_02___6", "887": "29___NUMERIC___word_freq_labs_02___7", "888": "29___NUMERIC___word_freq_labs_02___8", "889": "29___NUMERIC___word_freq_labs_02___9", "890": "29___NUMERIC___word_freq_labs_03___0", "891": "29___NUMERIC___word_freq_labs_03___1", "892": "29___NUMERIC___word_freq_labs_03___2", "893": "29___NUMERIC___word_freq_labs_03___3", "894": "29___NUMERIC___word_freq_labs_03___4", "895": "29___NUMERIC___word_freq_labs_03___5", "896": "29___NUMERIC___word_freq_labs_03___6", "897": "29___NUMERIC___word_freq_labs_03___7", "898": "29___NUMERIC___word_freq_labs_03___8", "899": "29___NUMERIC___word_freq_labs_03___9", "900": "30___NUMERIC___word_freq_telnet_00___0", "901": "30___NUMERIC___word_freq_telnet_00___1", "902": "30___NUMERIC___word_freq_telnet_01___0", "903": "30___NUMERIC___word_freq_telnet_01___1", "904": "30___NUMERIC___word_freq_telnet_01___2", "905": "30___NUMERIC___word_freq_telnet_01___3", "906": "30___NUMERIC___word_freq_telnet_01___4", "907": "30___NUMERIC___word_freq_telnet_02___.", "908": "30___NUMERIC___word_freq_telnet_03___0", "909": "30___NUMERIC___word_freq_telnet_03___1", "910": "30___NUMERIC___word_freq_telnet_03___2", "911": "30___NUMERIC___word_freq_telnet_03___3", "912": "30___NUMERIC___word_freq_telnet_03___4", "913": "30___NUMERIC___word_freq_telnet_03___5", "914": "30___NUMERIC___word_freq_telnet_03___6", "915": "30___NUMERIC___word_freq_telnet_03___7", "916": "30___NUMERIC___word_freq_telnet_03___8", "917": "30___NUMERIC___word_freq_telnet_03___9", "918": "30___NUMERIC___word_freq_telnet_04___0", "919": "30___NUMERIC___word_freq_telnet_04___1", "920": "30___NUMERIC___word_freq_telnet_04___2", "921": "30___NUMERIC___word_freq_telnet_04___3", "922": "30___NUMERIC___word_freq_telnet_04___4", "923": "30___NUMERIC___word_freq_telnet_04___5", "924": "30___NUMERIC___word_freq_telnet_04___6", "925": "30___NUMERIC___word_freq_telnet_04___7", "926": "30___NUMERIC___word_freq_telnet_04___8", "927": "30___NUMERIC___word_freq_telnet_04___9", "928": "31___NUMERIC___word_freq_857_00___0", "929": "31___NUMERIC___word_freq_857_00___1", "930": "31___NUMERIC___word_freq_857_00___2", "931": "31___NUMERIC___word_freq_857_00___3", "932": "31___NUMERIC___word_freq_857_00___4", "933": "31___NUMERIC___word_freq_857_01___.", "934": "31___NUMERIC___word_freq_857_02___0", "935": "31___NUMERIC___word_freq_857_02___1", "936": "31___NUMERIC___word_freq_857_02___2", "937": "31___NUMERIC___word_freq_857_02___3", "938": "31___NUMERIC___word_freq_857_02___4", "939": "31___NUMERIC___word_freq_857_02___5", "940": "31___NUMERIC___word_freq_857_02___6", "941": "31___NUMERIC___word_freq_857_02___7", "942": "31___NUMERIC___word_freq_857_02___8", "943": "31___NUMERIC___word_freq_857_02___9", "944": "31___NUMERIC___word_freq_857_03___0", "945": "31___NUMERIC___word_freq_857_03___1", "946": "31___NUMERIC___word_freq_857_03___2", "947": "31___NUMERIC___word_freq_857_03___3", "948": "31___NUMERIC___word_freq_857_03___4", "949": "31___NUMERIC___word_freq_857_03___5", "950": "31___NUMERIC___word_freq_857_03___6", "951": "31___NUMERIC___word_freq_857_03___7", "952": "31___NUMERIC___word_freq_857_03___8", "953": "31___NUMERIC___word_freq_857_03___9", "954": "32___NUMERIC___word_freq_data_00___0", "955": "32___NUMERIC___word_freq_data_00___1", "956": "32___NUMERIC___word_freq_data_01___0", "957": "32___NUMERIC___word_freq_data_01___1", "958": "32___NUMERIC___word_freq_data_01___2", "959": "32___NUMERIC___word_freq_data_01___3", "960": "32___NUMERIC___word_freq_data_01___4", "961": "32___NUMERIC___word_freq_data_01___5", "962": "32___NUMERIC___word_freq_data_01___6", "963": "32___NUMERIC___word_freq_data_01___7", "964": "32___NUMERIC___word_freq_data_01___8", "965": "32___NUMERIC___word_freq_data_02___.", "966": "32___NUMERIC___word_freq_data_03___0", "967": "32___NUMERIC___word_freq_data_03___1", "968": "32___NUMERIC___word_freq_data_03___2", "969": "32___NUMERIC___word_freq_data_03___3", "970": "32___NUMERIC___word_freq_data_03___4", "971": "32___NUMERIC___word_freq_data_03___5", "972": "32___NUMERIC___word_freq_data_03___6", "973": "32___NUMERIC___word_freq_data_03___7", "974": "32___NUMERIC___word_freq_data_03___8", "975": "32___NUMERIC___word_freq_data_03___9", "976": "32___NUMERIC___word_freq_data_04___0", "977": "32___NUMERIC___word_freq_data_04___1", "978": "32___NUMERIC___word_freq_data_04___2", "979": "32___NUMERIC___word_freq_data_04___3", "980": "32___NUMERIC___word_freq_data_04___4", "981": "32___NUMERIC___word_freq_data_04___5", "982": "32___NUMERIC___word_freq_data_04___6", "983": "32___NUMERIC___word_freq_data_04___7", "984": "32___NUMERIC___word_freq_data_04___8", "985": "32___NUMERIC___word_freq_data_04___9", "986": "33___NUMERIC___word_freq_415_00___0", "987": "33___NUMERIC___word_freq_415_00___1", "988": "33___NUMERIC___word_freq_415_00___2", "989": "33___NUMERIC___word_freq_415_00___3", "990": "33___NUMERIC___word_freq_415_00___4", "991": "33___NUMERIC___word_freq_415_01___.", "992": "33___NUMERIC___word_freq_415_02___0", "993": "33___NUMERIC___word_freq_415_02___1", "994": "33___NUMERIC___word_freq_415_02___2", "995": "33___NUMERIC___word_freq_415_02___3", "996": "33___NUMERIC___word_freq_415_02___4", "997": "33___NUMERIC___word_freq_415_02___5", "998": "33___NUMERIC___word_freq_415_02___6", "999": "33___NUMERIC___word_freq_415_02___7", "1000": "33___NUMERIC___word_freq_415_02___8", "1001": "33___NUMERIC___word_freq_415_02___9", "1002": "33___NUMERIC___word_freq_415_03___0", "1003": "33___NUMERIC___word_freq_415_03___1", "1004": "33___NUMERIC___word_freq_415_03___2", "1005": "33___NUMERIC___word_freq_415_03___3", "1006": "33___NUMERIC___word_freq_415_03___4", "1007": "33___NUMERIC___word_freq_415_03___5", "1008": "33___NUMERIC___word_freq_415_03___6", "1009": "33___NUMERIC___word_freq_415_03___7", "1010": "33___NUMERIC___word_freq_415_03___8", "1011": "33___NUMERIC___word_freq_415_03___9", "1012": "34___NUMERIC___word_freq_85_00___0", "1013": "34___NUMERIC___word_freq_85_00___2", "1014": "34___NUMERIC___word_freq_85_01___0", "1015": "34___NUMERIC___word_freq_85_01___1", "1016": "34___NUMERIC___word_freq_85_01___2", "1017": "34___NUMERIC___word_freq_85_01___3", "1018": "34___NUMERIC___word_freq_85_01___4", "1019": "34___NUMERIC___word_freq_85_01___5", "1020": "34___NUMERIC___word_freq_85_02___.", "1021": "34___NUMERIC___word_freq_85_03___0", "1022": "34___NUMERIC___word_freq_85_03___1", "1023": "34___NUMERIC___word_freq_85_03___2", "1024": "34___NUMERIC___word_freq_85_03___3", "1025": "34___NUMERIC___word_freq_85_03___4", "1026": "34___NUMERIC___word_freq_85_03___5", "1027": "34___NUMERIC___word_freq_85_03___6", "1028": "34___NUMERIC___word_freq_85_03___7", "1029": "34___NUMERIC___word_freq_85_03___8", "1030": "34___NUMERIC___word_freq_85_03___9", "1031": "34___NUMERIC___word_freq_85_04___0", "1032": "34___NUMERIC___word_freq_85_04___1", "1033": "34___NUMERIC___word_freq_85_04___2", "1034": "34___NUMERIC___word_freq_85_04___3", "1035": "34___NUMERIC___word_freq_85_04___4", "1036": "34___NUMERIC___word_freq_85_04___5", "1037": "34___NUMERIC___word_freq_85_04___6", "1038": "34___NUMERIC___word_freq_85_04___7", "1039": "34___NUMERIC___word_freq_85_04___8", "1040": "34___NUMERIC___word_freq_85_04___9", "1041": "35___NUMERIC___word_freq_technology_00___0", "1042": "35___NUMERIC___word_freq_technology_00___1", "1043": "35___NUMERIC___word_freq_technology_00___2", "1044": "35___NUMERIC___word_freq_technology_00___3", "1045": "35___NUMERIC___word_freq_technology_00___4", "1046": "35___NUMERIC___word_freq_technology_00___7", "1047": "35___NUMERIC___word_freq_technology_01___.", "1048": "35___NUMERIC___word_freq_technology_02___0", "1049": "35___NUMERIC___word_freq_technology_02___1", "1050": "35___NUMERIC___word_freq_technology_02___2", "1051": "35___NUMERIC___word_freq_technology_02___3", "1052": "35___NUMERIC___word_freq_technology_02___4", "1053": "35___NUMERIC___word_freq_technology_02___5", "1054": "35___NUMERIC___word_freq_technology_02___6", "1055": "35___NUMERIC___word_freq_technology_02___7", "1056": "35___NUMERIC___word_freq_technology_02___8", "1057": "35___NUMERIC___word_freq_technology_02___9", "1058": "35___NUMERIC___word_freq_technology_03___0", "1059": "35___NUMERIC___word_freq_technology_03___1", "1060": "35___NUMERIC___word_freq_technology_03___2", "1061": "35___NUMERIC___word_freq_technology_03___3", "1062": "35___NUMERIC___word_freq_technology_03___4", "1063": "35___NUMERIC___word_freq_technology_03___5", "1064": "35___NUMERIC___word_freq_technology_03___6", "1065": "35___NUMERIC___word_freq_technology_03___7", "1066": "35___NUMERIC___word_freq_technology_03___8", "1067": "35___NUMERIC___word_freq_technology_03___9", "1068": "36___NUMERIC___word_freq_1999_00___0", "1069": "36___NUMERIC___word_freq_1999_00___1", "1070": "36___NUMERIC___word_freq_1999_00___2", "1071": "36___NUMERIC___word_freq_1999_00___3", "1072": "36___NUMERIC___word_freq_1999_00___4", "1073": "36___NUMERIC___word_freq_1999_00___5", "1074": "36___NUMERIC___word_freq_1999_00___6", "1075": "36___NUMERIC___word_freq_1999_01___.", "1076": "36___NUMERIC___word_freq_1999_02___0", "1077": "36___NUMERIC___word_freq_1999_02___1", "1078": "36___NUMERIC___word_freq_1999_02___2", "1079": "36___NUMERIC___word_freq_1999_02___3", "1080": "36___NUMERIC___word_freq_1999_02___4", "1081": "36___NUMERIC___word_freq_1999_02___5", "1082": "36___NUMERIC___word_freq_1999_02___6", "1083": "36___NUMERIC___word_freq_1999_02___7", "1084": "36___NUMERIC___word_freq_1999_02___8", "1085": "36___NUMERIC___word_freq_1999_02___9", "1086": "36___NUMERIC___word_freq_1999_03___0", "1087": "36___NUMERIC___word_freq_1999_03___1", "1088": "36___NUMERIC___word_freq_1999_03___2", "1089": "36___NUMERIC___word_freq_1999_03___3", "1090": "36___NUMERIC___word_freq_1999_03___4", "1091": "36___NUMERIC___word_freq_1999_03___5", "1092": "36___NUMERIC___word_freq_1999_03___6", "1093": "36___NUMERIC___word_freq_1999_03___7", "1094": "36___NUMERIC___word_freq_1999_03___8", "1095": "36___NUMERIC___word_freq_1999_03___9", "1096": "37___CATEGORICAL___word_freq_parts___0.0", "1097": "37___CATEGORICAL___word_freq_parts___0.01", "1098": "37___CATEGORICAL___word_freq_parts___0.02", "1099": "37___CATEGORICAL___word_freq_parts___0.03", "1100": "37___CATEGORICAL___word_freq_parts___0.04", "1101": "37___CATEGORICAL___word_freq_parts___0.06", "1102": "37___CATEGORICAL___word_freq_parts___0.07", "1103": "37___CATEGORICAL___word_freq_parts___0.09", "1104": "37___CATEGORICAL___word_freq_parts___0.1", "1105": "37___CATEGORICAL___word_freq_parts___0.11", "1106": "37___CATEGORICAL___word_freq_parts___0.12", "1107": "37___CATEGORICAL___word_freq_parts___0.14", "1108": "37___CATEGORICAL___word_freq_parts___0.16", "1109": "37___CATEGORICAL___word_freq_parts___0.19", "1110": "37___CATEGORICAL___word_freq_parts___0.23", "1111": "37___CATEGORICAL___word_freq_parts___0.24", "1112": "37___CATEGORICAL___word_freq_parts___0.25", "1113": "37___CATEGORICAL___word_freq_parts___0.28", "1114": "37___CATEGORICAL___word_freq_parts___0.29", "1115": "37___CATEGORICAL___word_freq_parts___0.36", "1116": "37___CATEGORICAL___word_freq_parts___0.37", "1117": "37___CATEGORICAL___word_freq_parts___0.41", "1118": "37___CATEGORICAL___word_freq_parts___0.42", "1119": "37___CATEGORICAL___word_freq_parts___0.43", "1120": "37___CATEGORICAL___word_freq_parts___0.46", "1121": "37___CATEGORICAL___word_freq_parts___0.5", "1122": "37___CATEGORICAL___word_freq_parts___0.54", "1123": "37___CATEGORICAL___word_freq_parts___0.55", "1124": "37___CATEGORICAL___word_freq_parts___0.72", "1125": "37___CATEGORICAL___word_freq_parts___0.8", "1126": "37___CATEGORICAL___word_freq_parts___0.81", "1127": "37___CATEGORICAL___word_freq_parts___0.9", "1128": "37___CATEGORICAL___word_freq_parts___0.93", "1129": "37___CATEGORICAL___word_freq_parts___0.95", "1130": "37___CATEGORICAL___word_freq_parts___1.02", "1131": "37___CATEGORICAL___word_freq_parts___1.06", "1132": "37___CATEGORICAL___word_freq_parts___1.11", "1133": "37___CATEGORICAL___word_freq_parts___1.22", "1134": "37___CATEGORICAL___word_freq_parts___1.44", "1135": "37___CATEGORICAL___word_freq_parts___1.52", "1136": "37___CATEGORICAL___word_freq_parts___1.56", "1137": "37___CATEGORICAL___word_freq_parts___1.57", "1138": "37___CATEGORICAL___word_freq_parts___2.85", "1139": "37___CATEGORICAL___word_freq_parts___3.44", "1140": "37___CATEGORICAL___word_freq_parts___4.0", "1141": "37___CATEGORICAL___word_freq_parts___6.45", "1142": "37___CATEGORICAL___word_freq_parts___7.4", "1143": "37___CATEGORICAL___word_freq_parts___8.33", "1144": "38___NUMERIC___word_freq_pm_00___0", "1145": "38___NUMERIC___word_freq_pm_00___1", "1146": "38___NUMERIC___word_freq_pm_01___0", "1147": "38___NUMERIC___word_freq_pm_01___1", "1148": "38___NUMERIC___word_freq_pm_01___2", "1149": "38___NUMERIC___word_freq_pm_01___3", "1150": "38___NUMERIC___word_freq_pm_01___4", "1151": "38___NUMERIC___word_freq_pm_01___8", "1152": "38___NUMERIC___word_freq_pm_01___9", "1153": "38___NUMERIC___word_freq_pm_02___.", "1154": "38___NUMERIC___word_freq_pm_03___0", "1155": "38___NUMERIC___word_freq_pm_03___1", "1156": "38___NUMERIC___word_freq_pm_03___2", "1157": "38___NUMERIC___word_freq_pm_03___3", "1158": "38___NUMERIC___word_freq_pm_03___4", "1159": "38___NUMERIC___word_freq_pm_03___5", "1160": "38___NUMERIC___word_freq_pm_03___6", "1161": "38___NUMERIC___word_freq_pm_03___7", "1162": "38___NUMERIC___word_freq_pm_03___8", "1163": "38___NUMERIC___word_freq_pm_03___9", "1164": "38___NUMERIC___word_freq_pm_04___0", "1165": "38___NUMERIC___word_freq_pm_04___1", "1166": "38___NUMERIC___word_freq_pm_04___2", "1167": "38___NUMERIC___word_freq_pm_04___3", "1168": "38___NUMERIC___word_freq_pm_04___4", "1169": "38___NUMERIC___word_freq_pm_04___5", "1170": "38___NUMERIC___word_freq_pm_04___6", "1171": "38___NUMERIC___word_freq_pm_04___7", "1172": "38___NUMERIC___word_freq_pm_04___8", "1173": "38___NUMERIC___word_freq_pm_04___9", "1174": "39___NUMERIC___word_freq_direct_00___0", "1175": "39___NUMERIC___word_freq_direct_00___1", "1176": "39___NUMERIC___word_freq_direct_00___2", "1177": "39___NUMERIC___word_freq_direct_00___3", "1178": "39___NUMERIC___word_freq_direct_00___4", "1179": "39___NUMERIC___word_freq_direct_01___.", "1180": "39___NUMERIC___word_freq_direct_02___0", "1181": "39___NUMERIC___word_freq_direct_02___1", "1182": "39___NUMERIC___word_freq_direct_02___2", "1183": "39___NUMERIC___word_freq_direct_02___3", "1184": "39___NUMERIC___word_freq_direct_02___4", "1185": "39___NUMERIC___word_freq_direct_02___5", "1186": "39___NUMERIC___word_freq_direct_02___6", "1187": "39___NUMERIC___word_freq_direct_02___7", "1188": "39___NUMERIC___word_freq_direct_02___8", "1189": "39___NUMERIC___word_freq_direct_02___9", "1190": "39___NUMERIC___word_freq_direct_03___0", "1191": "39___NUMERIC___word_freq_direct_03___1", "1192": "39___NUMERIC___word_freq_direct_03___2", "1193": "39___NUMERIC___word_freq_direct_03___3", "1194": "39___NUMERIC___word_freq_direct_03___4", "1195": "39___NUMERIC___word_freq_direct_03___5", "1196": "39___NUMERIC___word_freq_direct_03___6", "1197": "39___NUMERIC___word_freq_direct_03___7", "1198": "39___NUMERIC___word_freq_direct_03___8", "1199": "39___NUMERIC___word_freq_direct_03___9", "1200": "40___NUMERIC___word_freq_cs_00___0", "1201": "40___NUMERIC___word_freq_cs_00___1", "1202": "40___NUMERIC___word_freq_cs_00___2", "1203": "40___NUMERIC___word_freq_cs_00___3", "1204": "40___NUMERIC___word_freq_cs_00___4", "1205": "40___NUMERIC___word_freq_cs_00___5", "1206": "40___NUMERIC___word_freq_cs_00___7", "1207": "40___NUMERIC___word_freq_cs_01___.", "1208": "40___NUMERIC___word_freq_cs_02___0", "1209": "40___NUMERIC___word_freq_cs_02___1", "1210": "40___NUMERIC___word_freq_cs_02___2", "1211": "40___NUMERIC___word_freq_cs_02___3", "1212": "40___NUMERIC___word_freq_cs_02___4", "1213": "40___NUMERIC___word_freq_cs_02___5", "1214": "40___NUMERIC___word_freq_cs_02___6", "1215": "40___NUMERIC___word_freq_cs_02___7", "1216": "40___NUMERIC___word_freq_cs_02___8", "1217": "40___NUMERIC___word_freq_cs_02___9", "1218": "40___NUMERIC___word_freq_cs_03___0", "1219": "40___NUMERIC___word_freq_cs_03___1", "1220": "40___NUMERIC___word_freq_cs_03___2", "1221": "40___NUMERIC___word_freq_cs_03___3", "1222": "40___NUMERIC___word_freq_cs_03___4", "1223": "40___NUMERIC___word_freq_cs_03___5", "1224": "40___NUMERIC___word_freq_cs_03___6", "1225": "40___NUMERIC___word_freq_cs_03___7", "1226": "40___NUMERIC___word_freq_cs_03___8", "1227": "40___NUMERIC___word_freq_cs_03___9", "1228": "41___NUMERIC___word_freq_meeting_00___0", "1229": "41___NUMERIC___word_freq_meeting_00___1", "1230": "41___NUMERIC___word_freq_meeting_01___0", "1231": "41___NUMERIC___word_freq_meeting_01___1", "1232": "41___NUMERIC___word_freq_meeting_01___2", "1233": "41___NUMERIC___word_freq_meeting_01___3", "1234": "41___NUMERIC___word_freq_meeting_01___4", "1235": "41___NUMERIC___word_freq_meeting_01___5", "1236": "41___NUMERIC___word_freq_meeting_01___6", "1237": "41___NUMERIC___word_freq_meeting_01___7", "1238": "41___NUMERIC___word_freq_meeting_01___8", "1239": "41___NUMERIC___word_freq_meeting_01___9", "1240": "41___NUMERIC___word_freq_meeting_02___.", "1241": "41___NUMERIC___word_freq_meeting_03___0", "1242": "41___NUMERIC___word_freq_meeting_03___1", "1243": "41___NUMERIC___word_freq_meeting_03___2", "1244": "41___NUMERIC___word_freq_meeting_03___3", "1245": "41___NUMERIC___word_freq_meeting_03___4", "1246": "41___NUMERIC___word_freq_meeting_03___5", "1247": "41___NUMERIC___word_freq_meeting_03___6", "1248": "41___NUMERIC___word_freq_meeting_03___7", "1249": "41___NUMERIC___word_freq_meeting_03___8", "1250": "41___NUMERIC___word_freq_meeting_03___9", "1251": "41___NUMERIC___word_freq_meeting_04___0", "1252": "41___NUMERIC___word_freq_meeting_04___1", "1253": "41___NUMERIC___word_freq_meeting_04___2", "1254": "41___NUMERIC___word_freq_meeting_04___3", "1255": "41___NUMERIC___word_freq_meeting_04___4", "1256": "41___NUMERIC___word_freq_meeting_04___5", "1257": "41___NUMERIC___word_freq_meeting_04___6", "1258": "41___NUMERIC___word_freq_meeting_04___7", "1259": "41___NUMERIC___word_freq_meeting_04___8", "1260": "41___NUMERIC___word_freq_meeting_04___9", "1261": "42___NUMERIC___word_freq_original_00___0", "1262": "42___NUMERIC___word_freq_original_00___1", "1263": "42___NUMERIC___word_freq_original_00___2", "1264": "42___NUMERIC___word_freq_original_00___3", "1265": "42___NUMERIC___word_freq_original_01___.", "1266": "42___NUMERIC___word_freq_original_02___0", "1267": "42___NUMERIC___word_freq_original_02___1", "1268": "42___NUMERIC___word_freq_original_02___2", "1269": "42___NUMERIC___word_freq_original_02___3", "1270": "42___NUMERIC___word_freq_original_02___4", "1271": "42___NUMERIC___word_freq_original_02___5", "1272": "42___NUMERIC___word_freq_original_02___6", "1273": "42___NUMERIC___word_freq_original_02___7", "1274": "42___NUMERIC___word_freq_original_02___8", "1275": "42___NUMERIC___word_freq_original_02___9", "1276": "42___NUMERIC___word_freq_original_03___0", "1277": "42___NUMERIC___word_freq_original_03___1", "1278": "42___NUMERIC___word_freq_original_03___2", "1279": "42___NUMERIC___word_freq_original_03___3", "1280": "42___NUMERIC___word_freq_original_03___4", "1281": "42___NUMERIC___word_freq_original_03___5", "1282": "42___NUMERIC___word_freq_original_03___6", "1283": "42___NUMERIC___word_freq_original_03___7", "1284": "42___NUMERIC___word_freq_original_03___8", "1285": "42___NUMERIC___word_freq_original_03___9", "1286": "43___NUMERIC___word_freq_project_00___0", "1287": "43___NUMERIC___word_freq_project_00___1", "1288": "43___NUMERIC___word_freq_project_00___2", "1289": "43___NUMERIC___word_freq_project_01___0", "1290": "43___NUMERIC___word_freq_project_01___1", "1291": "43___NUMERIC___word_freq_project_01___2", "1292": "43___NUMERIC___word_freq_project_01___3", "1293": "43___NUMERIC___word_freq_project_01___4", "1294": "43___NUMERIC___word_freq_project_01___5", "1295": "43___NUMERIC___word_freq_project_01___6", "1296": "43___NUMERIC___word_freq_project_01___8", "1297": "43___NUMERIC___word_freq_project_02___.", "1298": "43___NUMERIC___word_freq_project_03___0", "1299": "43___NUMERIC___word_freq_project_03___1", "1300": "43___NUMERIC___word_freq_project_03___2", "1301": "43___NUMERIC___word_freq_project_03___3", "1302": "43___NUMERIC___word_freq_project_03___4", "1303": "43___NUMERIC___word_freq_project_03___5", "1304": "43___NUMERIC___word_freq_project_03___6", "1305": "43___NUMERIC___word_freq_project_03___7", "1306": "43___NUMERIC___word_freq_project_03___8", "1307": "43___NUMERIC___word_freq_project_03___9", "1308": "43___NUMERIC___word_freq_project_04___0", "1309": "43___NUMERIC___word_freq_project_04___1", "1310": "43___NUMERIC___word_freq_project_04___2", "1311": "43___NUMERIC___word_freq_project_04___3", "1312": "43___NUMERIC___word_freq_project_04___4", "1313": "43___NUMERIC___word_freq_project_04___5", "1314": "43___NUMERIC___word_freq_project_04___6", "1315": "43___NUMERIC___word_freq_project_04___7", "1316": "43___NUMERIC___word_freq_project_04___8", "1317": "43___NUMERIC___word_freq_project_04___9", "1318": "44___NUMERIC___word_freq_re_00___0", "1319": "44___NUMERIC___word_freq_re_00___1", "1320": "44___NUMERIC___word_freq_re_00___2", "1321": "44___NUMERIC___word_freq_re_01___0", "1322": "44___NUMERIC___word_freq_re_01___1", "1323": "44___NUMERIC___word_freq_re_01___2", "1324": "44___NUMERIC___word_freq_re_01___3", "1325": "44___NUMERIC___word_freq_re_01___4", "1326": "44___NUMERIC___word_freq_re_01___5", "1327": "44___NUMERIC___word_freq_re_01___6", "1328": "44___NUMERIC___word_freq_re_01___7", "1329": "44___NUMERIC___word_freq_re_01___8", "1330": "44___NUMERIC___word_freq_re_01___9", "1331": "44___NUMERIC___word_freq_re_02___.", "1332": "44___NUMERIC___word_freq_re_03___0", "1333": "44___NUMERIC___word_freq_re_03___1", "1334": "44___NUMERIC___word_freq_re_03___2", "1335": "44___NUMERIC___word_freq_re_03___3", "1336": "44___NUMERIC___word_freq_re_03___4", "1337": "44___NUMERIC___word_freq_re_03___5", "1338": "44___NUMERIC___word_freq_re_03___6", "1339": "44___NUMERIC___word_freq_re_03___7", "1340": "44___NUMERIC___word_freq_re_03___8", "1341": "44___NUMERIC___word_freq_re_03___9", "1342": "44___NUMERIC___word_freq_re_04___0", "1343": "44___NUMERIC___word_freq_re_04___1", "1344": "44___NUMERIC___word_freq_re_04___2", "1345": "44___NUMERIC___word_freq_re_04___3", "1346": "44___NUMERIC___word_freq_re_04___4", "1347": "44___NUMERIC___word_freq_re_04___5", "1348": "44___NUMERIC___word_freq_re_04___6", "1349": "44___NUMERIC___word_freq_re_04___7", "1350": "44___NUMERIC___word_freq_re_04___8", "1351": "44___NUMERIC___word_freq_re_04___9", "1352": "45___NUMERIC___word_freq_edu_00___0", "1353": "45___NUMERIC___word_freq_edu_00___1", "1354": "45___NUMERIC___word_freq_edu_00___2", "1355": "45___NUMERIC___word_freq_edu_01___0", "1356": "45___NUMERIC___word_freq_edu_01___1", "1357": "45___NUMERIC___word_freq_edu_01___2", "1358": "45___NUMERIC___word_freq_edu_01___3", "1359": "45___NUMERIC___word_freq_edu_01___4", "1360": "45___NUMERIC___word_freq_edu_01___5", "1361": "45___NUMERIC___word_freq_edu_01___6", "1362": "45___NUMERIC___word_freq_edu_01___7", "1363": "45___NUMERIC___word_freq_edu_01___8", "1364": "45___NUMERIC___word_freq_edu_01___9", "1365": "45___NUMERIC___word_freq_edu_02___.", "1366": "45___NUMERIC___word_freq_edu_03___0", "1367": "45___NUMERIC___word_freq_edu_03___1", "1368": "45___NUMERIC___word_freq_edu_03___2", "1369": "45___NUMERIC___word_freq_edu_03___3", "1370": "45___NUMERIC___word_freq_edu_03___4", "1371": "45___NUMERIC___word_freq_edu_03___5", "1372": "45___NUMERIC___word_freq_edu_03___6", "1373": "45___NUMERIC___word_freq_edu_03___7", "1374": "45___NUMERIC___word_freq_edu_03___8", "1375": "45___NUMERIC___word_freq_edu_03___9", "1376": "45___NUMERIC___word_freq_edu_04___0", "1377": "45___NUMERIC___word_freq_edu_04___1", "1378": "45___NUMERIC___word_freq_edu_04___2", "1379": "45___NUMERIC___word_freq_edu_04___3", "1380": "45___NUMERIC___word_freq_edu_04___4", "1381": "45___NUMERIC___word_freq_edu_04___5", "1382": "45___NUMERIC___word_freq_edu_04___6", "1383": "45___NUMERIC___word_freq_edu_04___7", "1384": "45___NUMERIC___word_freq_edu_04___8", "1385": "45___NUMERIC___word_freq_edu_04___9", "1386": "46___CATEGORICAL___word_freq_table___0.0", "1387": "46___CATEGORICAL___word_freq_table___0.01", "1388": "46___CATEGORICAL___word_freq_table___0.02", "1389": "46___CATEGORICAL___word_freq_table___0.03", "1390": "46___CATEGORICAL___word_freq_table___0.04", "1391": "46___CATEGORICAL___word_freq_table___0.05", "1392": "46___CATEGORICAL___word_freq_table___0.06", "1393": "46___CATEGORICAL___word_freq_table___0.09", "1394": "46___CATEGORICAL___word_freq_table___0.11", "1395": "46___CATEGORICAL___word_freq_table___0.14", "1396": "46___CATEGORICAL___word_freq_table___0.16", "1397": "46___CATEGORICAL___word_freq_table___0.19", "1398": "46___CATEGORICAL___word_freq_table___0.25", "1399": "46___CATEGORICAL___word_freq_table___0.27", "1400": "46___CATEGORICAL___word_freq_table___0.28", "1401": "46___CATEGORICAL___word_freq_table___0.34", "1402": "46___CATEGORICAL___word_freq_table___0.37", "1403": "46___CATEGORICAL___word_freq_table___0.39", "1404": "46___CATEGORICAL___word_freq_table___0.46", "1405": "46___CATEGORICAL___word_freq_table___0.51", "1406": "46___CATEGORICAL___word_freq_table___0.61", "1407": "46___CATEGORICAL___word_freq_table___0.65", "1408": "46___CATEGORICAL___word_freq_table___0.72", "1409": "46___CATEGORICAL___word_freq_table___0.73", "1410": "46___CATEGORICAL___word_freq_table___0.81", "1411": "46___CATEGORICAL___word_freq_table___0.86", "1412": "46___CATEGORICAL___word_freq_table___0.88", "1413": "46___CATEGORICAL___word_freq_table___1.02", "1414": "46___CATEGORICAL___word_freq_table___1.51", "1415": "46___CATEGORICAL___word_freq_table___1.91", "1416": "46___CATEGORICAL___word_freq_table___2.12", "1417": "47___NUMERIC___word_freq_conference_00___0", "1418": "47___NUMERIC___word_freq_conference_00___1", "1419": "47___NUMERIC___word_freq_conference_01___0", "1420": "47___NUMERIC___word_freq_conference_01___1", "1421": "47___NUMERIC___word_freq_conference_01___2", "1422": "47___NUMERIC___word_freq_conference_01___3", "1423": "47___NUMERIC___word_freq_conference_01___4", "1424": "47___NUMERIC___word_freq_conference_01___5", "1425": "47___NUMERIC___word_freq_conference_01___8", "1426": "47___NUMERIC___word_freq_conference_02___.", "1427": "47___NUMERIC___word_freq_conference_03___0", "1428": "47___NUMERIC___word_freq_conference_03___1", "1429": "47___NUMERIC___word_freq_conference_03___2", "1430": "47___NUMERIC___word_freq_conference_03___3", "1431": "47___NUMERIC___word_freq_conference_03___4", "1432": "47___NUMERIC___word_freq_conference_03___5", "1433": "47___NUMERIC___word_freq_conference_03___6", "1434": "47___NUMERIC___word_freq_conference_03___7", "1435": "47___NUMERIC___word_freq_conference_03___8", "1436": "47___NUMERIC___word_freq_conference_03___9", "1437": "47___NUMERIC___word_freq_conference_04___0", "1438": "47___NUMERIC___word_freq_conference_04___1", "1439": "47___NUMERIC___word_freq_conference_04___2", "1440": "47___NUMERIC___word_freq_conference_04___3", "1441": "47___NUMERIC___word_freq_conference_04___4", "1442": "47___NUMERIC___word_freq_conference_04___5", "1443": "47___NUMERIC___word_freq_conference_04___6", "1444": "47___NUMERIC___word_freq_conference_04___7", "1445": "47___NUMERIC___word_freq_conference_04___8", "1446": "47___NUMERIC___word_freq_conference_04___9", "1447": "48___NUMERIC___char_freq_%3B_00___0", "1448": "48___NUMERIC___char_freq_%3B_00___1", "1449": "48___NUMERIC___char_freq_%3B_00___3", "1450": "48___NUMERIC___char_freq_%3B_00___4", "1451": "48___NUMERIC___char_freq_%3B_01___.", "1452": "48___NUMERIC___char_freq_%3B_02___0", "1453": "48___NUMERIC___char_freq_%3B_02___1", "1454": "48___NUMERIC___char_freq_%3B_02___2", "1455": "48___NUMERIC___char_freq_%3B_02___3", "1456": "48___NUMERIC___char_freq_%3B_02___4", "1457": "48___NUMERIC___char_freq_%3B_02___5", "1458": "48___NUMERIC___char_freq_%3B_02___6", "1459": "48___NUMERIC___char_freq_%3B_02___7", "1460": "48___NUMERIC___char_freq_%3B_02___8", "1461": "48___NUMERIC___char_freq_%3B_02___9", "1462": "48___NUMERIC___char_freq_%3B_03___0", "1463": "48___NUMERIC___char_freq_%3B_03___1", "1464": "48___NUMERIC___char_freq_%3B_03___2", "1465": "48___NUMERIC___char_freq_%3B_03___3", "1466": "48___NUMERIC___char_freq_%3B_03___4", "1467": "48___NUMERIC___char_freq_%3B_03___5", "1468": "48___NUMERIC___char_freq_%3B_03___6", "1469": "48___NUMERIC___char_freq_%3B_03___7", "1470": "48___NUMERIC___char_freq_%3B_03___8", "1471": "48___NUMERIC___char_freq_%3B_03___9", "1472": "48___NUMERIC___char_freq_%3B_04___0", "1473": "48___NUMERIC___char_freq_%3B_04___1", "1474": "48___NUMERIC___char_freq_%3B_04___2", "1475": "48___NUMERIC___char_freq_%3B_04___3", "1476": "48___NUMERIC___char_freq_%3B_04___4", "1477": "48___NUMERIC___char_freq_%3B_04___5", "1478": "48___NUMERIC___char_freq_%3B_04___6", "1479": "48___NUMERIC___char_freq_%3B_04___7", "1480": "48___NUMERIC___char_freq_%3B_04___8", "1481": "48___NUMERIC___char_freq_%3B_04___9", "1482": "49___NUMERIC___char_freq_%28_00___0", "1483": "49___NUMERIC___char_freq_%28_00___1", "1484": "49___NUMERIC___char_freq_%28_00___2", "1485": "49___NUMERIC___char_freq_%28_00___4", "1486": "49___NUMERIC___char_freq_%28_00___5", "1487": "49___NUMERIC___char_freq_%28_00___9", "1488": "49___NUMERIC___char_freq_%28_01___.", "1489": "49___NUMERIC___char_freq_%28_02___0", "1490": "49___NUMERIC___char_freq_%28_02___1", "1491": "49___NUMERIC___char_freq_%28_02___2", "1492": "49___NUMERIC___char_freq_%28_02___3", "1493": "49___NUMERIC___char_freq_%28_02___4", "1494": "49___NUMERIC___char_freq_%28_02___5", "1495": "49___NUMERIC___char_freq_%28_02___6", "1496": "49___NUMERIC___char_freq_%28_02___7", "1497": "49___NUMERIC___char_freq_%28_02___8", "1498": "49___NUMERIC___char_freq_%28_02___9", "1499": "49___NUMERIC___char_freq_%28_03___0", "1500": "49___NUMERIC___char_freq_%28_03___1", "1501": "49___NUMERIC___char_freq_%28_03___2", "1502": "49___NUMERIC___char_freq_%28_03___3", "1503": "49___NUMERIC___char_freq_%28_03___4", "1504": "49___NUMERIC___char_freq_%28_03___5", "1505": "49___NUMERIC___char_freq_%28_03___6", "1506": "49___NUMERIC___char_freq_%28_03___7", "1507": "49___NUMERIC___char_freq_%28_03___8", "1508": "49___NUMERIC___char_freq_%28_03___9", "1509": "49___NUMERIC___char_freq_%28_04___0", "1510": "49___NUMERIC___char_freq_%28_04___1", "1511": "49___NUMERIC___char_freq_%28_04___2", "1512": "49___NUMERIC___char_freq_%28_04___3", "1513": "49___NUMERIC___char_freq_%28_04___4", "1514": "49___NUMERIC___char_freq_%28_04___5", "1515": "49___NUMERIC___char_freq_%28_04___6", "1516": "49___NUMERIC___char_freq_%28_04___7", "1517": "49___NUMERIC___char_freq_%28_04___8", "1518": "49___NUMERIC___char_freq_%28_04___9", "1519": "50___NUMERIC___char_freq_%5B_00___0", "1520": "50___NUMERIC___char_freq_%5B_00___1", "1521": "50___NUMERIC___char_freq_%5B_00___2", "1522": "50___NUMERIC___char_freq_%5B_01___.", "1523": "50___NUMERIC___char_freq_%5B_02___0", "1524": "50___NUMERIC___char_freq_%5B_02___1", "1525": "50___NUMERIC___char_freq_%5B_02___2", "1526": "50___NUMERIC___char_freq_%5B_02___3", "1527": "50___NUMERIC___char_freq_%5B_02___4", "1528": "50___NUMERIC___char_freq_%5B_02___5", "1529": "50___NUMERIC___char_freq_%5B_02___6", "1530": "50___NUMERIC___char_freq_%5B_02___7", "1531": "50___NUMERIC___char_freq_%5B_02___8", "1532": "50___NUMERIC___char_freq_%5B_03___0", "1533": "50___NUMERIC___char_freq_%5B_03___1", "1534": "50___NUMERIC___char_freq_%5B_03___2", "1535": "50___NUMERIC___char_freq_%5B_03___3", "1536": "50___NUMERIC___char_freq_%5B_03___4", "1537": "50___NUMERIC___char_freq_%5B_03___5", "1538": "50___NUMERIC___char_freq_%5B_03___6", "1539": "50___NUMERIC___char_freq_%5B_03___7", "1540": "50___NUMERIC___char_freq_%5B_03___8", "1541": "50___NUMERIC___char_freq_%5B_03___9", "1542": "50___NUMERIC___char_freq_%5B_04___0", "1543": "50___NUMERIC___char_freq_%5B_04___1", "1544": "50___NUMERIC___char_freq_%5B_04___2", "1545": "50___NUMERIC___char_freq_%5B_04___3", "1546": "50___NUMERIC___char_freq_%5B_04___4", "1547": "50___NUMERIC___char_freq_%5B_04___5", "1548": "50___NUMERIC___char_freq_%5B_04___6", "1549": "50___NUMERIC___char_freq_%5B_04___7", "1550": "50___NUMERIC___char_freq_%5B_04___8", "1551": "50___NUMERIC___char_freq_%5B_04___9", "1552": "51___NUMERIC___char_freq_%21_00___0", "1553": "51___NUMERIC___char_freq_%21_00___1", "1554": "51___NUMERIC___char_freq_%21_00___3", "1555": "51___NUMERIC___char_freq_%21_01___0", "1556": "51___NUMERIC___char_freq_%21_01___1", "1557": "51___NUMERIC___char_freq_%21_01___2", "1558": "51___NUMERIC___char_freq_%21_01___3", "1559": "51___NUMERIC___char_freq_%21_01___4", "1560": "51___NUMERIC___char_freq_%21_01___5", "1561": "51___NUMERIC___char_freq_%21_01___6", "1562": "51___NUMERIC___char_freq_%21_01___7", "1563": "51___NUMERIC___char_freq_%21_01___8", "1564": "51___NUMERIC___char_freq_%21_01___9", "1565": "51___NUMERIC___char_freq_%21_02___.", "1566": "51___NUMERIC___char_freq_%21_03___0", "1567": "51___NUMERIC___char_freq_%21_03___1", "1568": "51___NUMERIC___char_freq_%21_03___2", "1569": "51___NUMERIC___char_freq_%21_03___3", "1570": "51___NUMERIC___char_freq_%21_03___4", "1571": "51___NUMERIC___char_freq_%21_03___5", "1572": "51___NUMERIC___char_freq_%21_03___6", "1573": "51___NUMERIC___char_freq_%21_03___7", "1574": "51___NUMERIC___char_freq_%21_03___8", "1575": "51___NUMERIC___char_freq_%21_03___9", "1576": "51___NUMERIC___char_freq_%21_04___0", "1577": "51___NUMERIC___char_freq_%21_04___1", "1578": "51___NUMERIC___char_freq_%21_04___2", "1579": "51___NUMERIC___char_freq_%21_04___3", "1580": "51___NUMERIC___char_freq_%21_04___4", "1581": "51___NUMERIC___char_freq_%21_04___5", "1582": "51___NUMERIC___char_freq_%21_04___6", "1583": "51___NUMERIC___char_freq_%21_04___7", "1584": "51___NUMERIC___char_freq_%21_04___8", "1585": "51___NUMERIC___char_freq_%21_04___9", "1586": "51___NUMERIC___char_freq_%21_05___0", "1587": "51___NUMERIC___char_freq_%21_05___1", "1588": "51___NUMERIC___char_freq_%21_05___2", "1589": "51___NUMERIC___char_freq_%21_05___3", "1590": "51___NUMERIC___char_freq_%21_05___4", "1591": "51___NUMERIC___char_freq_%21_05___5", "1592": "51___NUMERIC___char_freq_%21_05___6", "1593": "51___NUMERIC___char_freq_%21_05___7", "1594": "51___NUMERIC___char_freq_%21_05___8", "1595": "51___NUMERIC___char_freq_%21_05___9", "1596": "52___NUMERIC___char_freq_%24_00___0", "1597": "52___NUMERIC___char_freq_%24_00___1", "1598": "52___NUMERIC___char_freq_%24_00___2", "1599": "52___NUMERIC___char_freq_%24_00___3", "1600": "52___NUMERIC___char_freq_%24_00___5", "1601": "52___NUMERIC___char_freq_%24_00___6", "1602": "52___NUMERIC___char_freq_%24_01___.", "1603": "52___NUMERIC___char_freq_%24_02___0", "1604": "52___NUMERIC___char_freq_%24_02___1", "1605": "52___NUMERIC___char_freq_%24_02___2", "1606": "52___NUMERIC___char_freq_%24_02___3", "1607": "52___NUMERIC___char_freq_%24_02___4", "1608": "52___NUMERIC___char_freq_%24_02___5", "1609": "52___NUMERIC___char_freq_%24_02___6", "1610": "52___NUMERIC___char_freq_%24_02___7", "1611": "52___NUMERIC___char_freq_%24_02___8", "1612": "52___NUMERIC___char_freq_%24_02___9", "1613": "52___NUMERIC___char_freq_%24_03___0", "1614": "52___NUMERIC___char_freq_%24_03___1", "1615": "52___NUMERIC___char_freq_%24_03___2", "1616": "52___NUMERIC___char_freq_%24_03___3", "1617": "52___NUMERIC___char_freq_%24_03___4", "1618": "52___NUMERIC___char_freq_%24_03___5", "1619": "52___NUMERIC___char_freq_%24_03___6", "1620": "52___NUMERIC___char_freq_%24_03___7", "1621": "52___NUMERIC___char_freq_%24_03___8", "1622": "52___NUMERIC___char_freq_%24_03___9", "1623": "52___NUMERIC___char_freq_%24_04___0", "1624": "52___NUMERIC___char_freq_%24_04___1", "1625": "52___NUMERIC___char_freq_%24_04___2", "1626": "52___NUMERIC___char_freq_%24_04___3", "1627": "52___NUMERIC___char_freq_%24_04___4", "1628": "52___NUMERIC___char_freq_%24_04___5", "1629": "52___NUMERIC___char_freq_%24_04___6", "1630": "52___NUMERIC___char_freq_%24_04___7", "1631": "52___NUMERIC___char_freq_%24_04___8", "1632": "52___NUMERIC___char_freq_%24_04___9", "1633": "53___NUMERIC___char_freq_%23_00___0", "1634": "53___NUMERIC___char_freq_%23_00___1", "1635": "53___NUMERIC___char_freq_%23_01___0", "1636": "53___NUMERIC___char_freq_%23_01___1", "1637": "53___NUMERIC___char_freq_%23_01___2", "1638": "53___NUMERIC___char_freq_%23_01___3", "1639": "53___NUMERIC___char_freq_%23_01___4", "1640": "53___NUMERIC___char_freq_%23_01___6", "1641": "53___NUMERIC___char_freq_%23_01___7", "1642": "53___NUMERIC___char_freq_%23_01___9", "1643": "53___NUMERIC___char_freq_%23_02___.", "1644": "53___NUMERIC___char_freq_%23_03___0", "1645": "53___NUMERIC___char_freq_%23_03___1", "1646": "53___NUMERIC___char_freq_%23_03___2", "1647": "53___NUMERIC___char_freq_%23_03___3", "1648": "53___NUMERIC___char_freq_%23_03___4", "1649": "53___NUMERIC___char_freq_%23_03___5", "1650": "53___NUMERIC___char_freq_%23_03___6", "1651": "53___NUMERIC___char_freq_%23_03___7", "1652": "53___NUMERIC___char_freq_%23_03___8", "1653": "53___NUMERIC___char_freq_%23_03___9", "1654": "53___NUMERIC___char_freq_%23_04___0", "1655": "53___NUMERIC___char_freq_%23_04___1", "1656": "53___NUMERIC___char_freq_%23_04___2", "1657": "53___NUMERIC___char_freq_%23_04___3", "1658": "53___NUMERIC___char_freq_%23_04___4", "1659": "53___NUMERIC___char_freq_%23_04___5", "1660": "53___NUMERIC___char_freq_%23_04___6", "1661": "53___NUMERIC___char_freq_%23_04___7", "1662": "53___NUMERIC___char_freq_%23_04___8", "1663": "53___NUMERIC___char_freq_%23_04___9", "1664": "53___NUMERIC___char_freq_%23_05___0", "1665": "53___NUMERIC___char_freq_%23_05___1", "1666": "53___NUMERIC___char_freq_%23_05___2", "1667": "53___NUMERIC___char_freq_%23_05___3", "1668": "53___NUMERIC___char_freq_%23_05___4", "1669": "53___NUMERIC___char_freq_%23_05___5", "1670": "53___NUMERIC___char_freq_%23_05___6", "1671": "53___NUMERIC___char_freq_%23_05___7", "1672": "53___NUMERIC___char_freq_%23_05___8", "1673": "53___NUMERIC___char_freq_%23_05___9", "1674": "54___NUMERIC___capital_run_length_average_00___0", "1675": "54___NUMERIC___capital_run_length_average_00___1", "1676": "54___NUMERIC___capital_run_length_average_01___0", "1677": "54___NUMERIC___capital_run_length_average_01___1", "1678": "54___NUMERIC___capital_run_length_average_01___2", "1679": "54___NUMERIC___capital_run_length_average_01___3", "1680": "54___NUMERIC___capital_run_length_average_01___6", "1681": "54___NUMERIC___capital_run_length_average_02___0", "1682": "54___NUMERIC___capital_run_length_average_02___1", "1683": "54___NUMERIC___capital_run_length_average_02___2", "1684": "54___NUMERIC___capital_run_length_average_02___3", "1685": "54___NUMERIC___capital_run_length_average_02___4", "1686": "54___NUMERIC___capital_run_length_average_02___5", "1687": "54___NUMERIC___capital_run_length_average_02___6", "1688": "54___NUMERIC___capital_run_length_average_02___7", "1689": "54___NUMERIC___capital_run_length_average_02___8", "1690": "54___NUMERIC___capital_run_length_average_02___9", "1691": "54___NUMERIC___capital_run_length_average_03___0", "1692": "54___NUMERIC___capital_run_length_average_03___1", "1693": "54___NUMERIC___capital_run_length_average_03___2", "1694": "54___NUMERIC___capital_run_length_average_03___3", "1695": "54___NUMERIC___capital_run_length_average_03___4", "1696": "54___NUMERIC___capital_run_length_average_03___5", "1697": "54___NUMERIC___capital_run_length_average_03___6", "1698": "54___NUMERIC___capital_run_length_average_03___7", "1699": "54___NUMERIC___capital_run_length_average_03___8", "1700": "54___NUMERIC___capital_run_length_average_03___9", "1701": "54___NUMERIC___capital_run_length_average_04___.", "1702": "54___NUMERIC___capital_run_length_average_05___0", "1703": "54___NUMERIC___capital_run_length_average_05___1", "1704": "54___NUMERIC___capital_run_length_average_05___2", "1705": "54___NUMERIC___capital_run_length_average_05___3", "1706": "54___NUMERIC___capital_run_length_average_05___4", "1707": "54___NUMERIC___capital_run_length_average_05___5", "1708": "54___NUMERIC___capital_run_length_average_05___6", "1709": "54___NUMERIC___capital_run_length_average_05___7", "1710": "54___NUMERIC___capital_run_length_average_05___8", "1711": "54___NUMERIC___capital_run_length_average_05___9", "1712": "54___NUMERIC___capital_run_length_average_06___0", "1713": "54___NUMERIC___capital_run_length_average_06___1", "1714": "54___NUMERIC___capital_run_length_average_06___2", "1715": "54___NUMERIC___capital_run_length_average_06___3", "1716": "54___NUMERIC___capital_run_length_average_06___4", "1717": "54___NUMERIC___capital_run_length_average_06___5", "1718": "54___NUMERIC___capital_run_length_average_06___6", "1719": "54___NUMERIC___capital_run_length_average_06___7", "1720": "54___NUMERIC___capital_run_length_average_06___8", "1721": "54___NUMERIC___capital_run_length_average_06___9", "1722": "54___NUMERIC___capital_run_length_average_07___0", "1723": "54___NUMERIC___capital_run_length_average_07___1", "1724": "54___NUMERIC___capital_run_length_average_07___2", "1725": "54___NUMERIC___capital_run_length_average_07___3", "1726": "54___NUMERIC___capital_run_length_average_07___4", "1727": "54___NUMERIC___capital_run_length_average_07___5", "1728": "54___NUMERIC___capital_run_length_average_07___6", "1729": "54___NUMERIC___capital_run_length_average_07___7", "1730": "54___NUMERIC___capital_run_length_average_07___8", "1731": "54___NUMERIC___capital_run_length_average_07___9", "1732": "55___NUMERIC___capital_run_length_longest_00___0", "1733": "55___NUMERIC___capital_run_length_longest_00___1", "1734": "55___NUMERIC___capital_run_length_longest_00___2", "1735": "55___NUMERIC___capital_run_length_longest_00___9", "1736": "55___NUMERIC___capital_run_length_longest_01___0", "1737": "55___NUMERIC___capital_run_length_longest_01___1", "1738": "55___NUMERIC___capital_run_length_longest_01___2", "1739": "55___NUMERIC___capital_run_length_longest_01___3", "1740": "55___NUMERIC___capital_run_length_longest_01___4", "1741": "55___NUMERIC___capital_run_length_longest_01___5", "1742": "55___NUMERIC___capital_run_length_longest_01___6", "1743": "55___NUMERIC___capital_run_length_longest_01___7", "1744": "55___NUMERIC___capital_run_length_longest_01___8", "1745": "55___NUMERIC___capital_run_length_longest_01___9", "1746": "55___NUMERIC___capital_run_length_longest_02___0", "1747": "55___NUMERIC___capital_run_length_longest_02___1", "1748": "55___NUMERIC___capital_run_length_longest_02___2", "1749": "55___NUMERIC___capital_run_length_longest_02___3", "1750": "55___NUMERIC___capital_run_length_longest_02___4", "1751": "55___NUMERIC___capital_run_length_longest_02___5", "1752": "55___NUMERIC___capital_run_length_longest_02___6", "1753": "55___NUMERIC___capital_run_length_longest_02___7", "1754": "55___NUMERIC___capital_run_length_longest_02___8", "1755": "55___NUMERIC___capital_run_length_longest_02___9", "1756": "55___NUMERIC___capital_run_length_longest_03___0", "1757": "55___NUMERIC___capital_run_length_longest_03___1", "1758": "55___NUMERIC___capital_run_length_longest_03___2", "1759": "55___NUMERIC___capital_run_length_longest_03___3", "1760": "55___NUMERIC___capital_run_length_longest_03___4", "1761": "55___NUMERIC___capital_run_length_longest_03___5", "1762": "55___NUMERIC___capital_run_length_longest_03___6", "1763": "55___NUMERIC___capital_run_length_longest_03___7", "1764": "55___NUMERIC___capital_run_length_longest_03___8", "1765": "55___NUMERIC___capital_run_length_longest_03___9", "1766": "56___NUMERIC___capital_run_length_total_00___0", "1767": "56___NUMERIC___capital_run_length_total_00___1", "1768": "56___NUMERIC___capital_run_length_total_01___0", "1769": "56___NUMERIC___capital_run_length_total_01___1", "1770": "56___NUMERIC___capital_run_length_total_01___2", "1771": "56___NUMERIC___capital_run_length_total_01___3", "1772": "56___NUMERIC___capital_run_length_total_01___4", "1773": "56___NUMERIC___capital_run_length_total_01___5", "1774": "56___NUMERIC___capital_run_length_total_01___9", "1775": "56___NUMERIC___capital_run_length_total_02___0", "1776": "56___NUMERIC___capital_run_length_total_02___1", "1777": "56___NUMERIC___capital_run_length_total_02___2", "1778": "56___NUMERIC___capital_run_length_total_02___3", "1779": "56___NUMERIC___capital_run_length_total_02___4", "1780": "56___NUMERIC___capital_run_length_total_02___5", "1781": "56___NUMERIC___capital_run_length_total_02___6", "1782": "56___NUMERIC___capital_run_length_total_02___7", "1783": "56___NUMERIC___capital_run_length_total_02___8", "1784": "56___NUMERIC___capital_run_length_total_02___9", "1785": "56___NUMERIC___capital_run_length_total_03___0", "1786": "56___NUMERIC___capital_run_length_total_03___1", "1787": "56___NUMERIC___capital_run_length_total_03___2", "1788": "56___NUMERIC___capital_run_length_total_03___3", "1789": "56___NUMERIC___capital_run_length_total_03___4", "1790": "56___NUMERIC___capital_run_length_total_03___5", "1791": "56___NUMERIC___capital_run_length_total_03___6", "1792": "56___NUMERIC___capital_run_length_total_03___7", "1793": "56___NUMERIC___capital_run_length_total_03___8", "1794": "56___NUMERIC___capital_run_length_total_03___9", "1795": "56___NUMERIC___capital_run_length_total_04___0", "1796": "56___NUMERIC___capital_run_length_total_04___1", "1797": "56___NUMERIC___capital_run_length_total_04___2", "1798": "56___NUMERIC___capital_run_length_total_04___3", "1799": "56___NUMERIC___capital_run_length_total_04___4", "1800": "56___NUMERIC___capital_run_length_total_04___5", "1801": "56___NUMERIC___capital_run_length_total_04___6", "1802": "56___NUMERIC___capital_run_length_total_04___7", "1803": "56___NUMERIC___capital_run_length_total_04___8", "1804": "56___NUMERIC___capital_run_length_total_04___9", "1805": "57___CATEGORICAL___class___0", "1806": "57___CATEGORICAL___class___1"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___word_freq_make_00___0": 11, "00___NUMERIC___word_freq_make_00___1": 12, "00___NUMERIC___word_freq_make_00___2": 13, "00___NUMERIC___word_freq_make_00___3": 14, "00___NUMERIC___word_freq_make_00___4": 15, "00___NUMERIC___word_freq_make_01___.": 16, "00___NUMERIC___word_freq_make_02___0": 17, "00___NUMERIC___word_freq_make_02___1": 18, "00___NUMERIC___word_freq_make_02___2": 19, "00___NUMERIC___word_freq_make_02___3": 20, "00___NUMERIC___word_freq_make_02___4": 21, "00___NUMERIC___word_freq_make_02___5": 22, "00___NUMERIC___word_freq_make_02___6": 23, "00___NUMERIC___word_freq_make_02___7": 24, "00___NUMERIC___word_freq_make_02___8": 25, "00___NUMERIC___word_freq_make_02___9": 26, "00___NUMERIC___word_freq_make_03___0": 27, "00___NUMERIC___word_freq_make_03___1": 28, "00___NUMERIC___word_freq_make_03___2": 29, "00___NUMERIC___word_freq_make_03___3": 30, "00___NUMERIC___word_freq_make_03___4": 31, "00___NUMERIC___word_freq_make_03___5": 32, "00___NUMERIC___word_freq_make_03___6": 33, "00___NUMERIC___word_freq_make_03___7": 34, "00___NUMERIC___word_freq_make_03___8": 35, "00___NUMERIC___word_freq_make_03___9": 36, "01___NUMERIC___word_freq_address_00___0": 37, "01___NUMERIC___word_freq_address_00___1": 38, "01___NUMERIC___word_freq_address_01___0": 39, "01___NUMERIC___word_freq_address_01___1": 40, "01___NUMERIC___word_freq_address_01___2": 41, "01___NUMERIC___word_freq_address_01___3": 42, "01___NUMERIC___word_freq_address_01___4": 43, "01___NUMERIC___word_freq_address_01___6": 44, "01___NUMERIC___word_freq_address_01___9": 45, "01___NUMERIC___word_freq_address_02___.": 46, "01___NUMERIC___word_freq_address_03___0": 47, "01___NUMERIC___word_freq_address_03___1": 48, "01___NUMERIC___word_freq_address_03___2": 49, "01___NUMERIC___word_freq_address_03___3": 50, "01___NUMERIC___word_freq_address_03___4": 51, "01___NUMERIC___word_freq_address_03___5": 52, "01___NUMERIC___word_freq_address_03___6": 53, "01___NUMERIC___word_freq_address_03___7": 54, "01___NUMERIC___word_freq_address_03___8": 55, "01___NUMERIC___word_freq_address_03___9": 56, "01___NUMERIC___word_freq_address_04___0": 57, "01___NUMERIC___word_freq_address_04___1": 58, "01___NUMERIC___word_freq_address_04___2": 59, "01___NUMERIC___word_freq_address_04___3": 60, "01___NUMERIC___word_freq_address_04___4": 61, "01___NUMERIC___word_freq_address_04___5": 62, "01___NUMERIC___word_freq_address_04___6": 63, "01___NUMERIC___word_freq_address_04___7": 64, "01___NUMERIC___word_freq_address_04___8": 65, "01___NUMERIC___word_freq_address_04___9": 66, "02___NUMERIC___word_freq_all_00___0": 67, "02___NUMERIC___word_freq_all_00___1": 68, "02___NUMERIC___word_freq_all_00___2": 69, "02___NUMERIC___word_freq_all_00___3": 70, "02___NUMERIC___word_freq_all_00___4": 71, "02___NUMERIC___word_freq_all_01___.": 72, "02___NUMERIC___word_freq_all_02___0": 73, "02___NUMERIC___word_freq_all_02___1": 74, "02___NUMERIC___word_freq_all_02___2": 75, "02___NUMERIC___word_freq_all_02___3": 76, "02___NUMERIC___word_freq_all_02___4": 77, "02___NUMERIC___word_freq_all_02___5": 78, "02___NUMERIC___word_freq_all_02___6": 79, "02___NUMERIC___word_freq_all_02___7": 80, "02___NUMERIC___word_freq_all_02___8": 81, "02___NUMERIC___word_freq_all_02___9": 82, "02___NUMERIC___word_freq_all_03___0": 83, "02___NUMERIC___word_freq_all_03___1": 84, "02___NUMERIC___word_freq_all_03___2": 85, "02___NUMERIC___word_freq_all_03___3": 86, "02___NUMERIC___word_freq_all_03___4": 87, "02___NUMERIC___word_freq_all_03___5": 88, "02___NUMERIC___word_freq_all_03___6": 89, "02___NUMERIC___word_freq_all_03___7": 90, "02___NUMERIC___word_freq_all_03___8": 91, "02___NUMERIC___word_freq_all_03___9": 92, "03___CATEGORICAL___word_freq_3d___0.0": 93, "03___CATEGORICAL___word_freq_3d___0.04": 94, "03___CATEGORICAL___word_freq_3d___0.06": 95, "03___CATEGORICAL___word_freq_3d___0.1": 96, "03___CATEGORICAL___word_freq_3d___0.11": 97, "03___CATEGORICAL___word_freq_3d___0.14": 98, "03___CATEGORICAL___word_freq_3d___0.15": 99, "03___CATEGORICAL___word_freq_3d___0.16": 100, "03___CATEGORICAL___word_freq_3d___0.17": 101, "03___CATEGORICAL___word_freq_3d___0.19": 102, "03___CATEGORICAL___word_freq_3d___0.21": 103, "03___CATEGORICAL___word_freq_3d___0.42": 104, "03___CATEGORICAL___word_freq_3d___0.44": 105, "03___CATEGORICAL___word_freq_3d___0.49": 106, "03___CATEGORICAL___word_freq_3d___0.55": 107, "03___CATEGORICAL___word_freq_3d___0.57": 108, "03___CATEGORICAL___word_freq_3d___0.58": 109, "03___CATEGORICAL___word_freq_3d___0.81": 110, "03___CATEGORICAL___word_freq_3d___0.91": 111, "03___CATEGORICAL___word_freq_3d___1.16": 112, "03___CATEGORICAL___word_freq_3d___1.26": 113, "03___CATEGORICAL___word_freq_3d___1.29": 114, "03___CATEGORICAL___word_freq_3d___1.33": 115, "03___CATEGORICAL___word_freq_3d___1.35": 116, "03___CATEGORICAL___word_freq_3d___13.63": 117, "03___CATEGORICAL___word_freq_3d___19.16": 118, "03___CATEGORICAL___word_freq_3d___19.73": 119, "03___CATEGORICAL___word_freq_3d___35.46": 120, "03___CATEGORICAL___word_freq_3d___4.31": 121, "03___CATEGORICAL___word_freq_3d___40.13": 122, "03___CATEGORICAL___word_freq_3d___42.73": 123, "03___CATEGORICAL___word_freq_3d___42.81": 124, "03___CATEGORICAL___word_freq_3d___5.03": 125, "03___CATEGORICAL___word_freq_3d___7.07": 126, "04___NUMERIC___word_freq_our_00___0": 127, "04___NUMERIC___word_freq_our_00___1": 128, "04___NUMERIC___word_freq_our_01___0": 129, "04___NUMERIC___word_freq_our_01___1": 130, "04___NUMERIC___word_freq_our_01___2": 131, "04___NUMERIC___word_freq_our_01___3": 132, "04___NUMERIC___word_freq_our_01___4": 133, "04___NUMERIC___word_freq_our_01___5": 134, "04___NUMERIC___word_freq_our_01___6": 135, "04___NUMERIC___word_freq_our_01___7": 136, "04___NUMERIC___word_freq_our_01___8": 137, "04___NUMERIC___word_freq_our_01___9": 138, "04___NUMERIC___word_freq_our_02___.": 139, "04___NUMERIC___word_freq_our_03___0": 140, "04___NUMERIC___word_freq_our_03___1": 141, "04___NUMERIC___word_freq_our_03___2": 142, "04___NUMERIC___word_freq_our_03___3": 143, "04___NUMERIC___word_freq_our_03___4": 144, "04___NUMERIC___word_freq_our_03___5": 145, "04___NUMERIC___word_freq_our_03___6": 146, "04___NUMERIC___word_freq_our_03___7": 147, "04___NUMERIC___word_freq_our_03___8": 148, "04___NUMERIC___word_freq_our_03___9": 149, "04___NUMERIC___word_freq_our_04___0": 150, "04___NUMERIC___word_freq_our_04___1": 151, "04___NUMERIC___word_freq_our_04___2": 152, "04___NUMERIC___word_freq_our_04___3": 153, "04___NUMERIC___word_freq_our_04___4": 154, "04___NUMERIC___word_freq_our_04___5": 155, "04___NUMERIC___word_freq_our_04___6": 156, "04___NUMERIC___word_freq_our_04___7": 157, "04___NUMERIC___word_freq_our_04___8": 158, "04___NUMERIC___word_freq_our_04___9": 159, "05___NUMERIC___word_freq_over_00___0": 160, "05___NUMERIC___word_freq_over_00___1": 161, "05___NUMERIC___word_freq_over_00___2": 162, "05___NUMERIC___word_freq_over_00___3": 163, "05___NUMERIC___word_freq_over_00___5": 164, "05___NUMERIC___word_freq_over_01___.": 165, "05___NUMERIC___word_freq_over_02___0": 166, "05___NUMERIC___word_freq_over_02___1": 167, "05___NUMERIC___word_freq_over_02___2": 168, "05___NUMERIC___word_freq_over_02___3": 169, "05___NUMERIC___word_freq_over_02___4": 170, "05___NUMERIC___word_freq_over_02___5": 171, "05___NUMERIC___word_freq_over_02___6": 172, "05___NUMERIC___word_freq_over_02___7": 173, "05___NUMERIC___word_freq_over_02___8": 174, "05___NUMERIC___word_freq_over_02___9": 175, "05___NUMERIC___word_freq_over_03___0": 176, "05___NUMERIC___word_freq_over_03___1": 177, "05___NUMERIC___word_freq_over_03___2": 178, "05___NUMERIC___word_freq_over_03___3": 179, "05___NUMERIC___word_freq_over_03___4": 180, "05___NUMERIC___word_freq_over_03___5": 181, "05___NUMERIC___word_freq_over_03___6": 182, "05___NUMERIC___word_freq_over_03___7": 183, "05___NUMERIC___word_freq_over_03___8": 184, "05___NUMERIC___word_freq_over_03___9": 185, "06___NUMERIC___word_freq_remove_00___0": 186, "06___NUMERIC___word_freq_remove_00___1": 187, "06___NUMERIC___word_freq_remove_00___2": 188, "06___NUMERIC___word_freq_remove_00___3": 189, "06___NUMERIC___word_freq_remove_00___4": 190, "06___NUMERIC___word_freq_remove_00___5": 191, "06___NUMERIC___word_freq_remove_00___7": 192, "06___NUMERIC___word_freq_remove_01___.": 193, "06___NUMERIC___word_freq_remove_02___0": 194, "06___NUMERIC___word_freq_remove_02___1": 195, "06___NUMERIC___word_freq_remove_02___2": 196, "06___NUMERIC___word_freq_remove_02___3": 197, "06___NUMERIC___word_freq_remove_02___4": 198, "06___NUMERIC___word_freq_remove_02___5": 199, "06___NUMERIC___word_freq_remove_02___6": 200, "06___NUMERIC___word_freq_remove_02___7": 201, "06___NUMERIC___word_freq_remove_02___8": 202, "06___NUMERIC___word_freq_remove_02___9": 203, "06___NUMERIC___word_freq_remove_03___0": 204, "06___NUMERIC___word_freq_remove_03___1": 205, "06___NUMERIC___word_freq_remove_03___2": 206, "06___NUMERIC___word_freq_remove_03___3": 207, "06___NUMERIC___word_freq_remove_03___4": 208, "06___NUMERIC___word_freq_remove_03___5": 209, "06___NUMERIC___word_freq_remove_03___6": 210, "06___NUMERIC___word_freq_remove_03___7": 211, "06___NUMERIC___word_freq_remove_03___8": 212, "06___NUMERIC___word_freq_remove_03___9": 213, "07___NUMERIC___word_freq_internet_00___0": 214, "07___NUMERIC___word_freq_internet_00___1": 215, "07___NUMERIC___word_freq_internet_01___0": 216, "07___NUMERIC___word_freq_internet_01___1": 217, "07___NUMERIC___word_freq_internet_01___2": 218, "07___NUMERIC___word_freq_internet_01___3": 219, "07___NUMERIC___word_freq_internet_01___4": 220, "07___NUMERIC___word_freq_internet_01___5": 221, "07___NUMERIC___word_freq_internet_01___6": 222, "07___NUMERIC___word_freq_internet_02___.": 223, "07___NUMERIC___word_freq_internet_03___0": 224, "07___NUMERIC___word_freq_internet_03___1": 225, "07___NUMERIC___word_freq_internet_03___2": 226, "07___NUMERIC___word_freq_internet_03___3": 227, "07___NUMERIC___word_freq_internet_03___4": 228, "07___NUMERIC___word_freq_internet_03___5": 229, "07___NUMERIC___word_freq_internet_03___6": 230, "07___NUMERIC___word_freq_internet_03___7": 231, "07___NUMERIC___word_freq_internet_03___8": 232, "07___NUMERIC___word_freq_internet_03___9": 233, "07___NUMERIC___word_freq_internet_04___0": 234, "07___NUMERIC___word_freq_internet_04___1": 235, "07___NUMERIC___word_freq_internet_04___2": 236, "07___NUMERIC___word_freq_internet_04___3": 237, "07___NUMERIC___word_freq_internet_04___4": 238, "07___NUMERIC___word_freq_internet_04___5": 239, "07___NUMERIC___word_freq_internet_04___6": 240, "07___NUMERIC___word_freq_internet_04___7": 241, "07___NUMERIC___word_freq_internet_04___8": 242, "07___NUMERIC___word_freq_internet_04___9": 243, "08___NUMERIC___word_freq_order_00___0": 244, "08___NUMERIC___word_freq_order_00___1": 245, "08___NUMERIC___word_freq_order_00___2": 246, "08___NUMERIC___word_freq_order_00___5": 247, "08___NUMERIC___word_freq_order_01___.": 248, "08___NUMERIC___word_freq_order_02___0": 249, "08___NUMERIC___word_freq_order_02___1": 250, "08___NUMERIC___word_freq_order_02___2": 251, "08___NUMERIC___word_freq_order_02___3": 252, "08___NUMERIC___word_freq_order_02___4": 253, "08___NUMERIC___word_freq_order_02___5": 254, "08___NUMERIC___word_freq_order_02___6": 255, "08___NUMERIC___word_freq_order_02___7": 256, "08___NUMERIC___word_freq_order_02___8": 257, "08___NUMERIC___word_freq_order_02___9": 258, "08___NUMERIC___word_freq_order_03___0": 259, "08___NUMERIC___word_freq_order_03___1": 260, "08___NUMERIC___word_freq_order_03___2": 261, "08___NUMERIC___word_freq_order_03___3": 262, "08___NUMERIC___word_freq_order_03___4": 263, "08___NUMERIC___word_freq_order_03___5": 264, "08___NUMERIC___word_freq_order_03___6": 265, "08___NUMERIC___word_freq_order_03___7": 266, "08___NUMERIC___word_freq_order_03___8": 267, "08___NUMERIC___word_freq_order_03___9": 268, "09___NUMERIC___word_freq_mail_00___0": 269, "09___NUMERIC___word_freq_mail_00___1": 270, "09___NUMERIC___word_freq_mail_01___0": 271, "09___NUMERIC___word_freq_mail_01___1": 272, "09___NUMERIC___word_freq_mail_01___2": 273, "09___NUMERIC___word_freq_mail_01___3": 274, "09___NUMERIC___word_freq_mail_01___4": 275, "09___NUMERIC___word_freq_mail_01___5": 276, "09___NUMERIC___word_freq_mail_01___7": 277, "09___NUMERIC___word_freq_mail_01___8": 278, "09___NUMERIC___word_freq_mail_02___.": 279, "09___NUMERIC___word_freq_mail_03___0": 280, "09___NUMERIC___word_freq_mail_03___1": 281, "09___NUMERIC___word_freq_mail_03___2": 282, "09___NUMERIC___word_freq_mail_03___3": 283, "09___NUMERIC___word_freq_mail_03___4": 284, "09___NUMERIC___word_freq_mail_03___5": 285, "09___NUMERIC___word_freq_mail_03___6": 286, "09___NUMERIC___word_freq_mail_03___7": 287, "09___NUMERIC___word_freq_mail_03___8": 288, "09___NUMERIC___word_freq_mail_03___9": 289, "09___NUMERIC___word_freq_mail_04___0": 290, "09___NUMERIC___word_freq_mail_04___1": 291, "09___NUMERIC___word_freq_mail_04___2": 292, "09___NUMERIC___word_freq_mail_04___3": 293, "09___NUMERIC___word_freq_mail_04___4": 294, "09___NUMERIC___word_freq_mail_04___5": 295, "09___NUMERIC___word_freq_mail_04___6": 296, "09___NUMERIC___word_freq_mail_04___7": 297, "09___NUMERIC___word_freq_mail_04___8": 298, "09___NUMERIC___word_freq_mail_04___9": 299, "10___NUMERIC___word_freq_receive_00___0": 300, "10___NUMERIC___word_freq_receive_00___1": 301, "10___NUMERIC___word_freq_receive_00___2": 302, "10___NUMERIC___word_freq_receive_01___.": 303, "10___NUMERIC___word_freq_receive_02___0": 304, "10___NUMERIC___word_freq_receive_02___1": 305, "10___NUMERIC___word_freq_receive_02___2": 306, "10___NUMERIC___word_freq_receive_02___3": 307, "10___NUMERIC___word_freq_receive_02___4": 308, "10___NUMERIC___word_freq_receive_02___5": 309, "10___NUMERIC___word_freq_receive_02___6": 310, "10___NUMERIC___word_freq_receive_02___7": 311, "10___NUMERIC___word_freq_receive_02___8": 312, "10___NUMERIC___word_freq_receive_02___9": 313, "10___NUMERIC___word_freq_receive_03___0": 314, "10___NUMERIC___word_freq_receive_03___1": 315, "10___NUMERIC___word_freq_receive_03___2": 316, "10___NUMERIC___word_freq_receive_03___3": 317, "10___NUMERIC___word_freq_receive_03___4": 318, "10___NUMERIC___word_freq_receive_03___5": 319, "10___NUMERIC___word_freq_receive_03___6": 320, "10___NUMERIC___word_freq_receive_03___7": 321, "10___NUMERIC___word_freq_receive_03___8": 322, "10___NUMERIC___word_freq_receive_03___9": 323, "11___NUMERIC___word_freq_will_00___0": 324, "11___NUMERIC___word_freq_will_00___1": 325, "11___NUMERIC___word_freq_will_00___2": 326, "11___NUMERIC___word_freq_will_00___3": 327, "11___NUMERIC___word_freq_will_00___4": 328, "11___NUMERIC___word_freq_will_00___5": 329, "11___NUMERIC___word_freq_will_00___6": 330, "11___NUMERIC___word_freq_will_00___7": 331, "11___NUMERIC___word_freq_will_00___9": 332, "11___NUMERIC___word_freq_will_01___.": 333, "11___NUMERIC___word_freq_will_02___0": 334, "11___NUMERIC___word_freq_will_02___1": 335, "11___NUMERIC___word_freq_will_02___2": 336, "11___NUMERIC___word_freq_will_02___3": 337, "11___NUMERIC___word_freq_will_02___4": 338, "11___NUMERIC___word_freq_will_02___5": 339, "11___NUMERIC___word_freq_will_02___6": 340, "11___NUMERIC___word_freq_will_02___7": 341, "11___NUMERIC___word_freq_will_02___8": 342, "11___NUMERIC___word_freq_will_02___9": 343, "11___NUMERIC___word_freq_will_03___0": 344, "11___NUMERIC___word_freq_will_03___1": 345, "11___NUMERIC___word_freq_will_03___2": 346, "11___NUMERIC___word_freq_will_03___3": 347, "11___NUMERIC___word_freq_will_03___4": 348, "11___NUMERIC___word_freq_will_03___5": 349, "11___NUMERIC___word_freq_will_03___6": 350, "11___NUMERIC___word_freq_will_03___7": 351, "11___NUMERIC___word_freq_will_03___8": 352, "11___NUMERIC___word_freq_will_03___9": 353, "12___NUMERIC___word_freq_people_00___0": 354, "12___NUMERIC___word_freq_people_00___1": 355, "12___NUMERIC___word_freq_people_00___2": 356, "12___NUMERIC___word_freq_people_00___5": 357, "12___NUMERIC___word_freq_people_01___.": 358, "12___NUMERIC___word_freq_people_02___0": 359, "12___NUMERIC___word_freq_people_02___1": 360, "12___NUMERIC___word_freq_people_02___2": 361, "12___NUMERIC___word_freq_people_02___3": 362, "12___NUMERIC___word_freq_people_02___4": 363, "12___NUMERIC___word_freq_people_02___5": 364, "12___NUMERIC___word_freq_people_02___6": 365, "12___NUMERIC___word_freq_people_02___7": 366, "12___NUMERIC___word_freq_people_02___8": 367, "12___NUMERIC___word_freq_people_02___9": 368, "12___NUMERIC___word_freq_people_03___0": 369, "12___NUMERIC___word_freq_people_03___1": 370, "12___NUMERIC___word_freq_people_03___2": 371, "12___NUMERIC___word_freq_people_03___3": 372, "12___NUMERIC___word_freq_people_03___4": 373, "12___NUMERIC___word_freq_people_03___5": 374, "12___NUMERIC___word_freq_people_03___6": 375, "12___NUMERIC___word_freq_people_03___7": 376, "12___NUMERIC___word_freq_people_03___8": 377, "12___NUMERIC___word_freq_people_03___9": 378, "13___NUMERIC___word_freq_report_00___0": 379, "13___NUMERIC___word_freq_report_00___1": 380, "13___NUMERIC___word_freq_report_01___0": 381, "13___NUMERIC___word_freq_report_01___1": 382, "13___NUMERIC___word_freq_report_01___2": 383, "13___NUMERIC___word_freq_report_01___3": 384, "13___NUMERIC___word_freq_report_01___4": 385, "13___NUMERIC___word_freq_report_01___5": 386, "13___NUMERIC___word_freq_report_02___.": 387, "13___NUMERIC___word_freq_report_03___0": 388, "13___NUMERIC___word_freq_report_03___1": 389, "13___NUMERIC___word_freq_report_03___2": 390, "13___NUMERIC___word_freq_report_03___3": 391, "13___NUMERIC___word_freq_report_03___4": 392, "13___NUMERIC___word_freq_report_03___5": 393, "13___NUMERIC___word_freq_report_03___6": 394, "13___NUMERIC___word_freq_report_03___7": 395, "13___NUMERIC___word_freq_report_03___8": 396, "13___NUMERIC___word_freq_report_03___9": 397, "13___NUMERIC___word_freq_report_04___0": 398, "13___NUMERIC___word_freq_report_04___1": 399, "13___NUMERIC___word_freq_report_04___2": 400, "13___NUMERIC___word_freq_report_04___3": 401, "13___NUMERIC___word_freq_report_04___4": 402, "13___NUMERIC___word_freq_report_04___5": 403, "13___NUMERIC___word_freq_report_04___6": 404, "13___NUMERIC___word_freq_report_04___7": 405, "13___NUMERIC___word_freq_report_04___8": 406, "13___NUMERIC___word_freq_report_04___9": 407, "14___NUMERIC___word_freq_addresses_00___0": 408, "14___NUMERIC___word_freq_addresses_00___1": 409, "14___NUMERIC___word_freq_addresses_00___2": 410, "14___NUMERIC___word_freq_addresses_00___4": 411, "14___NUMERIC___word_freq_addresses_01___.": 412, "14___NUMERIC___word_freq_addresses_02___0": 413, "14___NUMERIC___word_freq_addresses_02___1": 414, "14___NUMERIC___word_freq_addresses_02___2": 415, "14___NUMERIC___word_freq_addresses_02___3": 416, "14___NUMERIC___word_freq_addresses_02___4": 417, "14___NUMERIC___word_freq_addresses_02___5": 418, "14___NUMERIC___word_freq_addresses_02___6": 419, "14___NUMERIC___word_freq_addresses_02___7": 420, "14___NUMERIC___word_freq_addresses_02___8": 421, "14___NUMERIC___word_freq_addresses_02___9": 422, "14___NUMERIC___word_freq_addresses_03___0": 423, "14___NUMERIC___word_freq_addresses_03___1": 424, "14___NUMERIC___word_freq_addresses_03___2": 425, "14___NUMERIC___word_freq_addresses_03___3": 426, "14___NUMERIC___word_freq_addresses_03___4": 427, "14___NUMERIC___word_freq_addresses_03___5": 428, "14___NUMERIC___word_freq_addresses_03___6": 429, "14___NUMERIC___word_freq_addresses_03___7": 430, "14___NUMERIC___word_freq_addresses_03___8": 431, "14___NUMERIC___word_freq_addresses_03___9": 432, "15___NUMERIC___word_freq_free_00___0": 433, "15___NUMERIC___word_freq_free_00___1": 434, "15___NUMERIC___word_freq_free_00___2": 435, "15___NUMERIC___word_freq_free_01___0": 436, "15___NUMERIC___word_freq_free_01___1": 437, "15___NUMERIC___word_freq_free_01___2": 438, "15___NUMERIC___word_freq_free_01___3": 439, "15___NUMERIC___word_freq_free_01___4": 440, "15___NUMERIC___word_freq_free_01___5": 441, "15___NUMERIC___word_freq_free_01___6": 442, "15___NUMERIC___word_freq_free_01___7": 443, "15___NUMERIC___word_freq_free_02___.": 444, "15___NUMERIC___word_freq_free_03___0": 445, "15___NUMERIC___word_freq_free_03___1": 446, "15___NUMERIC___word_freq_free_03___2": 447, "15___NUMERIC___word_freq_free_03___3": 448, "15___NUMERIC___word_freq_free_03___4": 449, "15___NUMERIC___word_freq_free_03___5": 450, "15___NUMERIC___word_freq_free_03___6": 451, "15___NUMERIC___word_freq_free_03___7": 452, "15___NUMERIC___word_freq_free_03___8": 453, "15___NUMERIC___word_freq_free_03___9": 454, "15___NUMERIC___word_freq_free_04___0": 455, "15___NUMERIC___word_freq_free_04___1": 456, "15___NUMERIC___word_freq_free_04___2": 457, "15___NUMERIC___word_freq_free_04___3": 458, "15___NUMERIC___word_freq_free_04___4": 459, "15___NUMERIC___word_freq_free_04___5": 460, "15___NUMERIC___word_freq_free_04___6": 461, "15___NUMERIC___word_freq_free_04___7": 462, "15___NUMERIC___word_freq_free_04___8": 463, "15___NUMERIC___word_freq_free_04___9": 464, "16___NUMERIC___word_freq_business_00___0": 465, "16___NUMERIC___word_freq_business_00___1": 466, "16___NUMERIC___word_freq_business_00___2": 467, "16___NUMERIC___word_freq_business_00___3": 468, "16___NUMERIC___word_freq_business_00___4": 469, "16___NUMERIC___word_freq_business_00___7": 470, "16___NUMERIC___word_freq_business_01___.": 471, "16___NUMERIC___word_freq_business_02___0": 472, "16___NUMERIC___word_freq_business_02___1": 473, "16___NUMERIC___word_freq_business_02___2": 474, "16___NUMERIC___word_freq_business_02___3": 475, "16___NUMERIC___word_freq_business_02___4": 476, "16___NUMERIC___word_freq_business_02___5": 477, "16___NUMERIC___word_freq_business_02___6": 478, "16___NUMERIC___word_freq_business_02___7": 479, "16___NUMERIC___word_freq_business_02___8": 480, "16___NUMERIC___word_freq_business_02___9": 481, "16___NUMERIC___word_freq_business_03___0": 482, "16___NUMERIC___word_freq_business_03___1": 483, "16___NUMERIC___word_freq_business_03___2": 484, "16___NUMERIC___word_freq_business_03___3": 485, "16___NUMERIC___word_freq_business_03___4": 486, "16___NUMERIC___word_freq_business_03___5": 487, "16___NUMERIC___word_freq_business_03___6": 488, "16___NUMERIC___word_freq_business_03___7": 489, "16___NUMERIC___word_freq_business_03___8": 490, "16___NUMERIC___word_freq_business_03___9": 491, "17___NUMERIC___word_freq_email_00___0": 492, "17___NUMERIC___word_freq_email_00___1": 493, "17___NUMERIC___word_freq_email_00___2": 494, "17___NUMERIC___word_freq_email_00___3": 495, "17___NUMERIC___word_freq_email_00___4": 496, "17___NUMERIC___word_freq_email_00___5": 497, "17___NUMERIC___word_freq_email_00___6": 498, "17___NUMERIC___word_freq_email_00___7": 499, "17___NUMERIC___word_freq_email_00___9": 500, "17___NUMERIC___word_freq_email_01___.": 501, "17___NUMERIC___word_freq_email_02___0": 502, "17___NUMERIC___word_freq_email_02___1": 503, "17___NUMERIC___word_freq_email_02___2": 504, "17___NUMERIC___word_freq_email_02___3": 505, "17___NUMERIC___word_freq_email_02___4": 506, "17___NUMERIC___word_freq_email_02___5": 507, "17___NUMERIC___word_freq_email_02___6": 508, "17___NUMERIC___word_freq_email_02___7": 509, "17___NUMERIC___word_freq_email_02___8": 510, "17___NUMERIC___word_freq_email_02___9": 511, "17___NUMERIC___word_freq_email_03___0": 512, "17___NUMERIC___word_freq_email_03___1": 513, "17___NUMERIC___word_freq_email_03___2": 514, "17___NUMERIC___word_freq_email_03___3": 515, "17___NUMERIC___word_freq_email_03___4": 516, "17___NUMERIC___word_freq_email_03___5": 517, "17___NUMERIC___word_freq_email_03___6": 518, "17___NUMERIC___word_freq_email_03___7": 519, "17___NUMERIC___word_freq_email_03___8": 520, "17___NUMERIC___word_freq_email_03___9": 521, "18___NUMERIC___word_freq_you_00___0": 522, "18___NUMERIC___word_freq_you_00___1": 523, "18___NUMERIC___word_freq_you_01___0": 524, "18___NUMERIC___word_freq_you_01___1": 525, "18___NUMERIC___word_freq_you_01___2": 526, "18___NUMERIC___word_freq_you_01___3": 527, "18___NUMERIC___word_freq_you_01___4": 528, "18___NUMERIC___word_freq_you_01___5": 529, "18___NUMERIC___word_freq_you_01___6": 530, "18___NUMERIC___word_freq_you_01___7": 531, "18___NUMERIC___word_freq_you_01___8": 532, "18___NUMERIC___word_freq_you_01___9": 533, "18___NUMERIC___word_freq_you_02___.": 534, "18___NUMERIC___word_freq_you_03___0": 535, "18___NUMERIC___word_freq_you_03___1": 536, "18___NUMERIC___word_freq_you_03___2": 537, "18___NUMERIC___word_freq_you_03___3": 538, "18___NUMERIC___word_freq_you_03___4": 539, "18___NUMERIC___word_freq_you_03___5": 540, "18___NUMERIC___word_freq_you_03___6": 541, "18___NUMERIC___word_freq_you_03___7": 542, "18___NUMERIC___word_freq_you_03___8": 543, "18___NUMERIC___word_freq_you_03___9": 544, "18___NUMERIC___word_freq_you_04___0": 545, "18___NUMERIC___word_freq_you_04___1": 546, "18___NUMERIC___word_freq_you_04___2": 547, "18___NUMERIC___word_freq_you_04___3": 548, "18___NUMERIC___word_freq_you_04___4": 549, "18___NUMERIC___word_freq_you_04___5": 550, "18___NUMERIC___word_freq_you_04___6": 551, "18___NUMERIC___word_freq_you_04___7": 552, "18___NUMERIC___word_freq_you_04___8": 553, "18___NUMERIC___word_freq_you_04___9": 554, "19___NUMERIC___word_freq_credit_00___0": 555, "19___NUMERIC___word_freq_credit_00___1": 556, "19___NUMERIC___word_freq_credit_01___0": 557, "19___NUMERIC___word_freq_credit_01___1": 558, "19___NUMERIC___word_freq_credit_01___2": 559, "19___NUMERIC___word_freq_credit_01___3": 560, "19___NUMERIC___word_freq_credit_01___4": 561, "19___NUMERIC___word_freq_credit_01___5": 562, "19___NUMERIC___word_freq_credit_01___6": 563, "19___NUMERIC___word_freq_credit_01___8": 564, "19___NUMERIC___word_freq_credit_02___.": 565, "19___NUMERIC___word_freq_credit_03___0": 566, "19___NUMERIC___word_freq_credit_03___1": 567, "19___NUMERIC___word_freq_credit_03___2": 568, "19___NUMERIC___word_freq_credit_03___3": 569, "19___NUMERIC___word_freq_credit_03___4": 570, "19___NUMERIC___word_freq_credit_03___5": 571, "19___NUMERIC___word_freq_credit_03___6": 572, "19___NUMERIC___word_freq_credit_03___7": 573, "19___NUMERIC___word_freq_credit_03___8": 574, "19___NUMERIC___word_freq_credit_03___9": 575, "19___NUMERIC___word_freq_credit_04___0": 576, "19___NUMERIC___word_freq_credit_04___1": 577, "19___NUMERIC___word_freq_credit_04___2": 578, "19___NUMERIC___word_freq_credit_04___3": 579, "19___NUMERIC___word_freq_credit_04___4": 580, "19___NUMERIC___word_freq_credit_04___5": 581, "19___NUMERIC___word_freq_credit_04___6": 582, "19___NUMERIC___word_freq_credit_04___7": 583, "19___NUMERIC___word_freq_credit_04___8": 584, "19___NUMERIC___word_freq_credit_04___9": 585, "20___NUMERIC___word_freq_your_00___0": 586, "20___NUMERIC___word_freq_your_00___1": 587, "20___NUMERIC___word_freq_your_01___0": 588, "20___NUMERIC___word_freq_your_01___1": 589, "20___NUMERIC___word_freq_your_01___2": 590, "20___NUMERIC___word_freq_your_01___3": 591, "20___NUMERIC___word_freq_your_01___4": 592, "20___NUMERIC___word_freq_your_01___5": 593, "20___NUMERIC___word_freq_your_01___6": 594, "20___NUMERIC___word_freq_your_01___7": 595, "20___NUMERIC___word_freq_your_01___8": 596, "20___NUMERIC___word_freq_your_01___9": 597, "20___NUMERIC___word_freq_your_02___.": 598, "20___NUMERIC___word_freq_your_03___0": 599, "20___NUMERIC___word_freq_your_03___1": 600, "20___NUMERIC___word_freq_your_03___2": 601, "20___NUMERIC___word_freq_your_03___3": 602, "20___NUMERIC___word_freq_your_03___4": 603, "20___NUMERIC___word_freq_your_03___5": 604, "20___NUMERIC___word_freq_your_03___6": 605, "20___NUMERIC___word_freq_your_03___7": 606, "20___NUMERIC___word_freq_your_03___8": 607, "20___NUMERIC___word_freq_your_03___9": 608, "20___NUMERIC___word_freq_your_04___0": 609, "20___NUMERIC___word_freq_your_04___1": 610, "20___NUMERIC___word_freq_your_04___2": 611, "20___NUMERIC___word_freq_your_04___3": 612, "20___NUMERIC___word_freq_your_04___4": 613, "20___NUMERIC___word_freq_your_04___5": 614, "20___NUMERIC___word_freq_your_04___6": 615, "20___NUMERIC___word_freq_your_04___7": 616, "20___NUMERIC___word_freq_your_04___8": 617, "20___NUMERIC___word_freq_your_04___9": 618, "21___NUMERIC___word_freq_font_00___0": 619, "21___NUMERIC___word_freq_font_00___1": 620, "21___NUMERIC___word_freq_font_01___0": 621, "21___NUMERIC___word_freq_font_01___1": 622, "21___NUMERIC___word_freq_font_01___2": 623, "21___NUMERIC___word_freq_font_01___3": 624, "21___NUMERIC___word_freq_font_01___4": 625, "21___NUMERIC___word_freq_font_01___5": 626, "21___NUMERIC___word_freq_font_01___6": 627, "21___NUMERIC___word_freq_font_01___7": 628, "21___NUMERIC___word_freq_font_01___8": 629, "21___NUMERIC___word_freq_font_01___9": 630, "21___NUMERIC___word_freq_font_02___.": 631, "21___NUMERIC___word_freq_font_03___0": 632, "21___NUMERIC___word_freq_font_03___1": 633, "21___NUMERIC___word_freq_font_03___2": 634, "21___NUMERIC___word_freq_font_03___3": 635, "21___NUMERIC___word_freq_font_03___4": 636, "21___NUMERIC___word_freq_font_03___5": 637, "21___NUMERIC___word_freq_font_03___6": 638, "21___NUMERIC___word_freq_font_03___7": 639, "21___NUMERIC___word_freq_font_03___8": 640, "21___NUMERIC___word_freq_font_03___9": 641, "21___NUMERIC___word_freq_font_04___0": 642, "21___NUMERIC___word_freq_font_04___1": 643, "21___NUMERIC___word_freq_font_04___2": 644, "21___NUMERIC___word_freq_font_04___3": 645, "21___NUMERIC___word_freq_font_04___4": 646, "21___NUMERIC___word_freq_font_04___5": 647, "21___NUMERIC___word_freq_font_04___6": 648, "21___NUMERIC___word_freq_font_04___7": 649, "21___NUMERIC___word_freq_font_04___8": 650, "21___NUMERIC___word_freq_font_04___9": 651, "22___NUMERIC___word_freq_000_00___0": 652, "22___NUMERIC___word_freq_000_00___1": 653, "22___NUMERIC___word_freq_000_00___2": 654, "22___NUMERIC___word_freq_000_00___3": 655, "22___NUMERIC___word_freq_000_00___4": 656, "22___NUMERIC___word_freq_000_00___5": 657, "22___NUMERIC___word_freq_000_01___.": 658, "22___NUMERIC___word_freq_000_02___0": 659, "22___NUMERIC___word_freq_000_02___1": 660, "22___NUMERIC___word_freq_000_02___2": 661, "22___NUMERIC___word_freq_000_02___3": 662, "22___NUMERIC___word_freq_000_02___4": 663, "22___NUMERIC___word_freq_000_02___5": 664, "22___NUMERIC___word_freq_000_02___6": 665, "22___NUMERIC___word_freq_000_02___7": 666, "22___NUMERIC___word_freq_000_02___8": 667, "22___NUMERIC___word_freq_000_02___9": 668, "22___NUMERIC___word_freq_000_03___0": 669, "22___NUMERIC___word_freq_000_03___1": 670, "22___NUMERIC___word_freq_000_03___2": 671, "22___NUMERIC___word_freq_000_03___3": 672, "22___NUMERIC___word_freq_000_03___4": 673, "22___NUMERIC___word_freq_000_03___5": 674, "22___NUMERIC___word_freq_000_03___6": 675, "22___NUMERIC___word_freq_000_03___7": 676, "22___NUMERIC___word_freq_000_03___8": 677, "22___NUMERIC___word_freq_000_03___9": 678, "23___NUMERIC___word_freq_money_00___0": 679, "23___NUMERIC___word_freq_money_00___1": 680, "23___NUMERIC___word_freq_money_01___0": 681, "23___NUMERIC___word_freq_money_01___1": 682, "23___NUMERIC___word_freq_money_01___2": 683, "23___NUMERIC___word_freq_money_01___3": 684, "23___NUMERIC___word_freq_money_01___4": 685, "23___NUMERIC___word_freq_money_01___5": 686, "23___NUMERIC___word_freq_money_01___6": 687, "23___NUMERIC___word_freq_money_01___9": 688, "23___NUMERIC___word_freq_money_02___.": 689, "23___NUMERIC___word_freq_money_03___0": 690, "23___NUMERIC___word_freq_money_03___1": 691, "23___NUMERIC___word_freq_money_03___2": 692, "23___NUMERIC___word_freq_money_03___3": 693, "23___NUMERIC___word_freq_money_03___4": 694, "23___NUMERIC___word_freq_money_03___5": 695, "23___NUMERIC___word_freq_money_03___6": 696, "23___NUMERIC___word_freq_money_03___7": 697, "23___NUMERIC___word_freq_money_03___8": 698, "23___NUMERIC___word_freq_money_03___9": 699, "23___NUMERIC___word_freq_money_04___0": 700, "23___NUMERIC___word_freq_money_04___1": 701, "23___NUMERIC___word_freq_money_04___2": 702, "23___NUMERIC___word_freq_money_04___3": 703, "23___NUMERIC___word_freq_money_04___4": 704, "23___NUMERIC___word_freq_money_04___5": 705, "23___NUMERIC___word_freq_money_04___6": 706, "23___NUMERIC___word_freq_money_04___7": 707, "23___NUMERIC___word_freq_money_04___8": 708, "23___NUMERIC___word_freq_money_04___9": 709, "24___NUMERIC___word_freq_hp_00___0": 710, "24___NUMERIC___word_freq_hp_00___1": 711, "24___NUMERIC___word_freq_hp_00___2": 712, "24___NUMERIC___word_freq_hp_01___0": 713, "24___NUMERIC___word_freq_hp_01___1": 714, "24___NUMERIC___word_freq_hp_01___2": 715, "24___NUMERIC___word_freq_hp_01___3": 716, "24___NUMERIC___word_freq_hp_01___4": 717, "24___NUMERIC___word_freq_hp_01___5": 718, "24___NUMERIC___word_freq_hp_01___6": 719, "24___NUMERIC___word_freq_hp_01___7": 720, "24___NUMERIC___word_freq_hp_01___8": 721, "24___NUMERIC___word_freq_hp_01___9": 722, "24___NUMERIC___word_freq_hp_02___.": 723, "24___NUMERIC___word_freq_hp_03___0": 724, "24___NUMERIC___word_freq_hp_03___1": 725, "24___NUMERIC___word_freq_hp_03___2": 726, "24___NUMERIC___word_freq_hp_03___3": 727, "24___NUMERIC___word_freq_hp_03___4": 728, "24___NUMERIC___word_freq_hp_03___5": 729, "24___NUMERIC___word_freq_hp_03___6": 730, "24___NUMERIC___word_freq_hp_03___7": 731, "24___NUMERIC___word_freq_hp_03___8": 732, "24___NUMERIC___word_freq_hp_03___9": 733, "24___NUMERIC___word_freq_hp_04___0": 734, "24___NUMERIC___word_freq_hp_04___1": 735, "24___NUMERIC___word_freq_hp_04___2": 736, "24___NUMERIC___word_freq_hp_04___3": 737, "24___NUMERIC___word_freq_hp_04___4": 738, "24___NUMERIC___word_freq_hp_04___5": 739, "24___NUMERIC___word_freq_hp_04___6": 740, "24___NUMERIC___word_freq_hp_04___7": 741, "24___NUMERIC___word_freq_hp_04___8": 742, "24___NUMERIC___word_freq_hp_04___9": 743, "25___NUMERIC___word_freq_hpl_00___0": 744, "25___NUMERIC___word_freq_hpl_00___1": 745, "25___NUMERIC___word_freq_hpl_01___0": 746, "25___NUMERIC___word_freq_hpl_01___1": 747, "25___NUMERIC___word_freq_hpl_01___2": 748, "25___NUMERIC___word_freq_hpl_01___3": 749, "25___NUMERIC___word_freq_hpl_01___4": 750, "25___NUMERIC___word_freq_hpl_01___5": 751, "25___NUMERIC___word_freq_hpl_01___6": 752, "25___NUMERIC___word_freq_hpl_01___7": 753, "25___NUMERIC___word_freq_hpl_01___8": 754, "25___NUMERIC___word_freq_hpl_01___9": 755, "25___NUMERIC___word_freq_hpl_02___.": 756, "25___NUMERIC___word_freq_hpl_03___0": 757, "25___NUMERIC___word_freq_hpl_03___1": 758, "25___NUMERIC___word_freq_hpl_03___2": 759, "25___NUMERIC___word_freq_hpl_03___3": 760, "25___NUMERIC___word_freq_hpl_03___4": 761, "25___NUMERIC___word_freq_hpl_03___5": 762, "25___NUMERIC___word_freq_hpl_03___6": 763, "25___NUMERIC___word_freq_hpl_03___7": 764, "25___NUMERIC___word_freq_hpl_03___8": 765, "25___NUMERIC___word_freq_hpl_03___9": 766, "25___NUMERIC___word_freq_hpl_04___0": 767, "25___NUMERIC___word_freq_hpl_04___1": 768, "25___NUMERIC___word_freq_hpl_04___2": 769, "25___NUMERIC___word_freq_hpl_04___3": 770, "25___NUMERIC___word_freq_hpl_04___4": 771, "25___NUMERIC___word_freq_hpl_04___5": 772, "25___NUMERIC___word_freq_hpl_04___6": 773, "25___NUMERIC___word_freq_hpl_04___7": 774, "25___NUMERIC___word_freq_hpl_04___8": 775, "25___NUMERIC___word_freq_hpl_04___9": 776, "26___NUMERIC___word_freq_george_00___0": 777, "26___NUMERIC___word_freq_george_00___1": 778, "26___NUMERIC___word_freq_george_00___2": 779, "26___NUMERIC___word_freq_george_00___3": 780, "26___NUMERIC___word_freq_george_01___0": 781, "26___NUMERIC___word_freq_george_01___1": 782, "26___NUMERIC___word_freq_george_01___2": 783, "26___NUMERIC___word_freq_george_01___3": 784, "26___NUMERIC___word_freq_george_01___4": 785, "26___NUMERIC___word_freq_george_01___5": 786, "26___NUMERIC___word_freq_george_01___6": 787, "26___NUMERIC___word_freq_george_01___7": 788, "26___NUMERIC___word_freq_george_01___8": 789, "26___NUMERIC___word_freq_george_01___9": 790, "26___NUMERIC___word_freq_george_02___.": 791, "26___NUMERIC___word_freq_george_03___0": 792, "26___NUMERIC___word_freq_george_03___1": 793, "26___NUMERIC___word_freq_george_03___2": 794, "26___NUMERIC___word_freq_george_03___3": 795, "26___NUMERIC___word_freq_george_03___4": 796, "26___NUMERIC___word_freq_george_03___5": 797, "26___NUMERIC___word_freq_george_03___6": 798, "26___NUMERIC___word_freq_george_03___7": 799, "26___NUMERIC___word_freq_george_03___8": 800, "26___NUMERIC___word_freq_george_03___9": 801, "26___NUMERIC___word_freq_george_04___0": 802, "26___NUMERIC___word_freq_george_04___1": 803, "26___NUMERIC___word_freq_george_04___2": 804, "26___NUMERIC___word_freq_george_04___3": 805, "26___NUMERIC___word_freq_george_04___4": 806, "26___NUMERIC___word_freq_george_04___5": 807, "26___NUMERIC___word_freq_george_04___6": 808, "26___NUMERIC___word_freq_george_04___7": 809, "26___NUMERIC___word_freq_george_04___8": 810, "26___NUMERIC___word_freq_george_04___9": 811, "27___NUMERIC___word_freq_650_00___0": 812, "27___NUMERIC___word_freq_650_00___1": 813, "27___NUMERIC___word_freq_650_00___2": 814, "27___NUMERIC___word_freq_650_00___3": 815, "27___NUMERIC___word_freq_650_00___4": 816, "27___NUMERIC___word_freq_650_00___5": 817, "27___NUMERIC___word_freq_650_00___8": 818, "27___NUMERIC___word_freq_650_00___9": 819, "27___NUMERIC___word_freq_650_01___.": 820, "27___NUMERIC___word_freq_650_02___0": 821, "27___NUMERIC___word_freq_650_02___1": 822, "27___NUMERIC___word_freq_650_02___2": 823, "27___NUMERIC___word_freq_650_02___3": 824, "27___NUMERIC___word_freq_650_02___4": 825, "27___NUMERIC___word_freq_650_02___5": 826, "27___NUMERIC___word_freq_650_02___6": 827, "27___NUMERIC___word_freq_650_02___7": 828, "27___NUMERIC___word_freq_650_02___8": 829, "27___NUMERIC___word_freq_650_02___9": 830, "27___NUMERIC___word_freq_650_03___0": 831, "27___NUMERIC___word_freq_650_03___1": 832, "27___NUMERIC___word_freq_650_03___2": 833, "27___NUMERIC___word_freq_650_03___3": 834, "27___NUMERIC___word_freq_650_03___4": 835, "27___NUMERIC___word_freq_650_03___5": 836, "27___NUMERIC___word_freq_650_03___6": 837, "27___NUMERIC___word_freq_650_03___7": 838, "27___NUMERIC___word_freq_650_03___8": 839, "27___NUMERIC___word_freq_650_03___9": 840, "28___NUMERIC___word_freq_lab_00___0": 841, "28___NUMERIC___word_freq_lab_00___1": 842, "28___NUMERIC___word_freq_lab_01___0": 843, "28___NUMERIC___word_freq_lab_01___1": 844, "28___NUMERIC___word_freq_lab_01___2": 845, "28___NUMERIC___word_freq_lab_01___3": 846, "28___NUMERIC___word_freq_lab_01___4": 847, "28___NUMERIC___word_freq_lab_01___5": 848, "28___NUMERIC___word_freq_lab_01___6": 849, "28___NUMERIC___word_freq_lab_01___7": 850, "28___NUMERIC___word_freq_lab_01___9": 851, "28___NUMERIC___word_freq_lab_02___.": 852, "28___NUMERIC___word_freq_lab_03___0": 853, "28___NUMERIC___word_freq_lab_03___1": 854, "28___NUMERIC___word_freq_lab_03___2": 855, "28___NUMERIC___word_freq_lab_03___3": 856, "28___NUMERIC___word_freq_lab_03___4": 857, "28___NUMERIC___word_freq_lab_03___5": 858, "28___NUMERIC___word_freq_lab_03___6": 859, "28___NUMERIC___word_freq_lab_03___7": 860, "28___NUMERIC___word_freq_lab_03___8": 861, "28___NUMERIC___word_freq_lab_03___9": 862, "28___NUMERIC___word_freq_lab_04___0": 863, "28___NUMERIC___word_freq_lab_04___1": 864, "28___NUMERIC___word_freq_lab_04___2": 865, "28___NUMERIC___word_freq_lab_04___3": 866, "28___NUMERIC___word_freq_lab_04___4": 867, "28___NUMERIC___word_freq_lab_04___5": 868, "28___NUMERIC___word_freq_lab_04___6": 869, "28___NUMERIC___word_freq_lab_04___7": 870, "28___NUMERIC___word_freq_lab_04___8": 871, "28___NUMERIC___word_freq_lab_04___9": 872, "29___NUMERIC___word_freq_labs_00___0": 873, "29___NUMERIC___word_freq_labs_00___1": 874, "29___NUMERIC___word_freq_labs_00___2": 875, "29___NUMERIC___word_freq_labs_00___3": 876, "29___NUMERIC___word_freq_labs_00___4": 877, "29___NUMERIC___word_freq_labs_00___5": 878, "29___NUMERIC___word_freq_labs_01___.": 879, "29___NUMERIC___word_freq_labs_02___0": 880, "29___NUMERIC___word_freq_labs_02___1": 881, "29___NUMERIC___word_freq_labs_02___2": 882, "29___NUMERIC___word_freq_labs_02___3": 883, "29___NUMERIC___word_freq_labs_02___4": 884, "29___NUMERIC___word_freq_labs_02___5": 885, "29___NUMERIC___word_freq_labs_02___6": 886, "29___NUMERIC___word_freq_labs_02___7": 887, "29___NUMERIC___word_freq_labs_02___8": 888, "29___NUMERIC___word_freq_labs_02___9": 889, "29___NUMERIC___word_freq_labs_03___0": 890, "29___NUMERIC___word_freq_labs_03___1": 891, "29___NUMERIC___word_freq_labs_03___2": 892, "29___NUMERIC___word_freq_labs_03___3": 893, "29___NUMERIC___word_freq_labs_03___4": 894, "29___NUMERIC___word_freq_labs_03___5": 895, "29___NUMERIC___word_freq_labs_03___6": 896, "29___NUMERIC___word_freq_labs_03___7": 897, "29___NUMERIC___word_freq_labs_03___8": 898, "29___NUMERIC___word_freq_labs_03___9": 899, "30___NUMERIC___word_freq_telnet_00___0": 900, "30___NUMERIC___word_freq_telnet_00___1": 901, "30___NUMERIC___word_freq_telnet_01___0": 902, "30___NUMERIC___word_freq_telnet_01___1": 903, "30___NUMERIC___word_freq_telnet_01___2": 904, "30___NUMERIC___word_freq_telnet_01___3": 905, "30___NUMERIC___word_freq_telnet_01___4": 906, "30___NUMERIC___word_freq_telnet_02___.": 907, "30___NUMERIC___word_freq_telnet_03___0": 908, "30___NUMERIC___word_freq_telnet_03___1": 909, "30___NUMERIC___word_freq_telnet_03___2": 910, "30___NUMERIC___word_freq_telnet_03___3": 911, "30___NUMERIC___word_freq_telnet_03___4": 912, "30___NUMERIC___word_freq_telnet_03___5": 913, "30___NUMERIC___word_freq_telnet_03___6": 914, "30___NUMERIC___word_freq_telnet_03___7": 915, "30___NUMERIC___word_freq_telnet_03___8": 916, "30___NUMERIC___word_freq_telnet_03___9": 917, "30___NUMERIC___word_freq_telnet_04___0": 918, "30___NUMERIC___word_freq_telnet_04___1": 919, "30___NUMERIC___word_freq_telnet_04___2": 920, "30___NUMERIC___word_freq_telnet_04___3": 921, "30___NUMERIC___word_freq_telnet_04___4": 922, "30___NUMERIC___word_freq_telnet_04___5": 923, "30___NUMERIC___word_freq_telnet_04___6": 924, "30___NUMERIC___word_freq_telnet_04___7": 925, "30___NUMERIC___word_freq_telnet_04___8": 926, "30___NUMERIC___word_freq_telnet_04___9": 927, "31___NUMERIC___word_freq_857_00___0": 928, "31___NUMERIC___word_freq_857_00___1": 929, "31___NUMERIC___word_freq_857_00___2": 930, "31___NUMERIC___word_freq_857_00___3": 931, "31___NUMERIC___word_freq_857_00___4": 932, "31___NUMERIC___word_freq_857_01___.": 933, "31___NUMERIC___word_freq_857_02___0": 934, "31___NUMERIC___word_freq_857_02___1": 935, "31___NUMERIC___word_freq_857_02___2": 936, "31___NUMERIC___word_freq_857_02___3": 937, "31___NUMERIC___word_freq_857_02___4": 938, "31___NUMERIC___word_freq_857_02___5": 939, "31___NUMERIC___word_freq_857_02___6": 940, "31___NUMERIC___word_freq_857_02___7": 941, "31___NUMERIC___word_freq_857_02___8": 942, "31___NUMERIC___word_freq_857_02___9": 943, "31___NUMERIC___word_freq_857_03___0": 944, "31___NUMERIC___word_freq_857_03___1": 945, "31___NUMERIC___word_freq_857_03___2": 946, "31___NUMERIC___word_freq_857_03___3": 947, "31___NUMERIC___word_freq_857_03___4": 948, "31___NUMERIC___word_freq_857_03___5": 949, "31___NUMERIC___word_freq_857_03___6": 950, "31___NUMERIC___word_freq_857_03___7": 951, "31___NUMERIC___word_freq_857_03___8": 952, "31___NUMERIC___word_freq_857_03___9": 953, "32___NUMERIC___word_freq_data_00___0": 954, "32___NUMERIC___word_freq_data_00___1": 955, "32___NUMERIC___word_freq_data_01___0": 956, "32___NUMERIC___word_freq_data_01___1": 957, "32___NUMERIC___word_freq_data_01___2": 958, "32___NUMERIC___word_freq_data_01___3": 959, "32___NUMERIC___word_freq_data_01___4": 960, "32___NUMERIC___word_freq_data_01___5": 961, "32___NUMERIC___word_freq_data_01___6": 962, "32___NUMERIC___word_freq_data_01___7": 963, "32___NUMERIC___word_freq_data_01___8": 964, "32___NUMERIC___word_freq_data_02___.": 965, "32___NUMERIC___word_freq_data_03___0": 966, "32___NUMERIC___word_freq_data_03___1": 967, "32___NUMERIC___word_freq_data_03___2": 968, "32___NUMERIC___word_freq_data_03___3": 969, "32___NUMERIC___word_freq_data_03___4": 970, "32___NUMERIC___word_freq_data_03___5": 971, "32___NUMERIC___word_freq_data_03___6": 972, "32___NUMERIC___word_freq_data_03___7": 973, "32___NUMERIC___word_freq_data_03___8": 974, "32___NUMERIC___word_freq_data_03___9": 975, "32___NUMERIC___word_freq_data_04___0": 976, "32___NUMERIC___word_freq_data_04___1": 977, "32___NUMERIC___word_freq_data_04___2": 978, "32___NUMERIC___word_freq_data_04___3": 979, "32___NUMERIC___word_freq_data_04___4": 980, "32___NUMERIC___word_freq_data_04___5": 981, "32___NUMERIC___word_freq_data_04___6": 982, "32___NUMERIC___word_freq_data_04___7": 983, "32___NUMERIC___word_freq_data_04___8": 984, "32___NUMERIC___word_freq_data_04___9": 985, "33___NUMERIC___word_freq_415_00___0": 986, "33___NUMERIC___word_freq_415_00___1": 987, "33___NUMERIC___word_freq_415_00___2": 988, "33___NUMERIC___word_freq_415_00___3": 989, "33___NUMERIC___word_freq_415_00___4": 990, "33___NUMERIC___word_freq_415_01___.": 991, "33___NUMERIC___word_freq_415_02___0": 992, "33___NUMERIC___word_freq_415_02___1": 993, "33___NUMERIC___word_freq_415_02___2": 994, "33___NUMERIC___word_freq_415_02___3": 995, "33___NUMERIC___word_freq_415_02___4": 996, "33___NUMERIC___word_freq_415_02___5": 997, "33___NUMERIC___word_freq_415_02___6": 998, "33___NUMERIC___word_freq_415_02___7": 999, "33___NUMERIC___word_freq_415_02___8": 1000, "33___NUMERIC___word_freq_415_02___9": 1001, "33___NUMERIC___word_freq_415_03___0": 1002, "33___NUMERIC___word_freq_415_03___1": 1003, "33___NUMERIC___word_freq_415_03___2": 1004, "33___NUMERIC___word_freq_415_03___3": 1005, "33___NUMERIC___word_freq_415_03___4": 1006, "33___NUMERIC___word_freq_415_03___5": 1007, "33___NUMERIC___word_freq_415_03___6": 1008, "33___NUMERIC___word_freq_415_03___7": 1009, "33___NUMERIC___word_freq_415_03___8": 1010, "33___NUMERIC___word_freq_415_03___9": 1011, "34___NUMERIC___word_freq_85_00___0": 1012, "34___NUMERIC___word_freq_85_00___2": 1013, "34___NUMERIC___word_freq_85_01___0": 1014, "34___NUMERIC___word_freq_85_01___1": 1015, "34___NUMERIC___word_freq_85_01___2": 1016, "34___NUMERIC___word_freq_85_01___3": 1017, "34___NUMERIC___word_freq_85_01___4": 1018, "34___NUMERIC___word_freq_85_01___5": 1019, "34___NUMERIC___word_freq_85_02___.": 1020, "34___NUMERIC___word_freq_85_03___0": 1021, "34___NUMERIC___word_freq_85_03___1": 1022, "34___NUMERIC___word_freq_85_03___2": 1023, "34___NUMERIC___word_freq_85_03___3": 1024, "34___NUMERIC___word_freq_85_03___4": 1025, "34___NUMERIC___word_freq_85_03___5": 1026, "34___NUMERIC___word_freq_85_03___6": 1027, "34___NUMERIC___word_freq_85_03___7": 1028, "34___NUMERIC___word_freq_85_03___8": 1029, "34___NUMERIC___word_freq_85_03___9": 1030, "34___NUMERIC___word_freq_85_04___0": 1031, "34___NUMERIC___word_freq_85_04___1": 1032, "34___NUMERIC___word_freq_85_04___2": 1033, "34___NUMERIC___word_freq_85_04___3": 1034, "34___NUMERIC___word_freq_85_04___4": 1035, "34___NUMERIC___word_freq_85_04___5": 1036, "34___NUMERIC___word_freq_85_04___6": 1037, "34___NUMERIC___word_freq_85_04___7": 1038, "34___NUMERIC___word_freq_85_04___8": 1039, "34___NUMERIC___word_freq_85_04___9": 1040, "35___NUMERIC___word_freq_technology_00___0": 1041, "35___NUMERIC___word_freq_technology_00___1": 1042, "35___NUMERIC___word_freq_technology_00___2": 1043, "35___NUMERIC___word_freq_technology_00___3": 1044, "35___NUMERIC___word_freq_technology_00___4": 1045, "35___NUMERIC___word_freq_technology_00___7": 1046, "35___NUMERIC___word_freq_technology_01___.": 1047, "35___NUMERIC___word_freq_technology_02___0": 1048, "35___NUMERIC___word_freq_technology_02___1": 1049, "35___NUMERIC___word_freq_technology_02___2": 1050, "35___NUMERIC___word_freq_technology_02___3": 1051, "35___NUMERIC___word_freq_technology_02___4": 1052, "35___NUMERIC___word_freq_technology_02___5": 1053, "35___NUMERIC___word_freq_technology_02___6": 1054, "35___NUMERIC___word_freq_technology_02___7": 1055, "35___NUMERIC___word_freq_technology_02___8": 1056, "35___NUMERIC___word_freq_technology_02___9": 1057, "35___NUMERIC___word_freq_technology_03___0": 1058, "35___NUMERIC___word_freq_technology_03___1": 1059, "35___NUMERIC___word_freq_technology_03___2": 1060, "35___NUMERIC___word_freq_technology_03___3": 1061, "35___NUMERIC___word_freq_technology_03___4": 1062, "35___NUMERIC___word_freq_technology_03___5": 1063, "35___NUMERIC___word_freq_technology_03___6": 1064, "35___NUMERIC___word_freq_technology_03___7": 1065, "35___NUMERIC___word_freq_technology_03___8": 1066, "35___NUMERIC___word_freq_technology_03___9": 1067, "36___NUMERIC___word_freq_1999_00___0": 1068, "36___NUMERIC___word_freq_1999_00___1": 1069, "36___NUMERIC___word_freq_1999_00___2": 1070, "36___NUMERIC___word_freq_1999_00___3": 1071, "36___NUMERIC___word_freq_1999_00___4": 1072, "36___NUMERIC___word_freq_1999_00___5": 1073, "36___NUMERIC___word_freq_1999_00___6": 1074, "36___NUMERIC___word_freq_1999_01___.": 1075, "36___NUMERIC___word_freq_1999_02___0": 1076, "36___NUMERIC___word_freq_1999_02___1": 1077, "36___NUMERIC___word_freq_1999_02___2": 1078, "36___NUMERIC___word_freq_1999_02___3": 1079, "36___NUMERIC___word_freq_1999_02___4": 1080, "36___NUMERIC___word_freq_1999_02___5": 1081, "36___NUMERIC___word_freq_1999_02___6": 1082, "36___NUMERIC___word_freq_1999_02___7": 1083, "36___NUMERIC___word_freq_1999_02___8": 1084, "36___NUMERIC___word_freq_1999_02___9": 1085, "36___NUMERIC___word_freq_1999_03___0": 1086, "36___NUMERIC___word_freq_1999_03___1": 1087, "36___NUMERIC___word_freq_1999_03___2": 1088, "36___NUMERIC___word_freq_1999_03___3": 1089, "36___NUMERIC___word_freq_1999_03___4": 1090, "36___NUMERIC___word_freq_1999_03___5": 1091, "36___NUMERIC___word_freq_1999_03___6": 1092, "36___NUMERIC___word_freq_1999_03___7": 1093, "36___NUMERIC___word_freq_1999_03___8": 1094, "36___NUMERIC___word_freq_1999_03___9": 1095, "37___CATEGORICAL___word_freq_parts___0.0": 1096, "37___CATEGORICAL___word_freq_parts___0.01": 1097, "37___CATEGORICAL___word_freq_parts___0.02": 1098, "37___CATEGORICAL___word_freq_parts___0.03": 1099, "37___CATEGORICAL___word_freq_parts___0.04": 1100, "37___CATEGORICAL___word_freq_parts___0.06": 1101, "37___CATEGORICAL___word_freq_parts___0.07": 1102, "37___CATEGORICAL___word_freq_parts___0.09": 1103, "37___CATEGORICAL___word_freq_parts___0.1": 1104, "37___CATEGORICAL___word_freq_parts___0.11": 1105, "37___CATEGORICAL___word_freq_parts___0.12": 1106, "37___CATEGORICAL___word_freq_parts___0.14": 1107, "37___CATEGORICAL___word_freq_parts___0.16": 1108, "37___CATEGORICAL___word_freq_parts___0.19": 1109, "37___CATEGORICAL___word_freq_parts___0.23": 1110, "37___CATEGORICAL___word_freq_parts___0.24": 1111, "37___CATEGORICAL___word_freq_parts___0.25": 1112, "37___CATEGORICAL___word_freq_parts___0.28": 1113, "37___CATEGORICAL___word_freq_parts___0.29": 1114, "37___CATEGORICAL___word_freq_parts___0.36": 1115, "37___CATEGORICAL___word_freq_parts___0.37": 1116, "37___CATEGORICAL___word_freq_parts___0.41": 1117, "37___CATEGORICAL___word_freq_parts___0.42": 1118, "37___CATEGORICAL___word_freq_parts___0.43": 1119, "37___CATEGORICAL___word_freq_parts___0.46": 1120, "37___CATEGORICAL___word_freq_parts___0.5": 1121, "37___CATEGORICAL___word_freq_parts___0.54": 1122, "37___CATEGORICAL___word_freq_parts___0.55": 1123, "37___CATEGORICAL___word_freq_parts___0.72": 1124, "37___CATEGORICAL___word_freq_parts___0.8": 1125, "37___CATEGORICAL___word_freq_parts___0.81": 1126, "37___CATEGORICAL___word_freq_parts___0.9": 1127, "37___CATEGORICAL___word_freq_parts___0.93": 1128, "37___CATEGORICAL___word_freq_parts___0.95": 1129, "37___CATEGORICAL___word_freq_parts___1.02": 1130, "37___CATEGORICAL___word_freq_parts___1.06": 1131, "37___CATEGORICAL___word_freq_parts___1.11": 1132, "37___CATEGORICAL___word_freq_parts___1.22": 1133, "37___CATEGORICAL___word_freq_parts___1.44": 1134, "37___CATEGORICAL___word_freq_parts___1.52": 1135, "37___CATEGORICAL___word_freq_parts___1.56": 1136, "37___CATEGORICAL___word_freq_parts___1.57": 1137, "37___CATEGORICAL___word_freq_parts___2.85": 1138, "37___CATEGORICAL___word_freq_parts___3.44": 1139, "37___CATEGORICAL___word_freq_parts___4.0": 1140, "37___CATEGORICAL___word_freq_parts___6.45": 1141, "37___CATEGORICAL___word_freq_parts___7.4": 1142, "37___CATEGORICAL___word_freq_parts___8.33": 1143, "38___NUMERIC___word_freq_pm_00___0": 1144, "38___NUMERIC___word_freq_pm_00___1": 1145, "38___NUMERIC___word_freq_pm_01___0": 1146, "38___NUMERIC___word_freq_pm_01___1": 1147, "38___NUMERIC___word_freq_pm_01___2": 1148, "38___NUMERIC___word_freq_pm_01___3": 1149, "38___NUMERIC___word_freq_pm_01___4": 1150, "38___NUMERIC___word_freq_pm_01___8": 1151, "38___NUMERIC___word_freq_pm_01___9": 1152, "38___NUMERIC___word_freq_pm_02___.": 1153, "38___NUMERIC___word_freq_pm_03___0": 1154, "38___NUMERIC___word_freq_pm_03___1": 1155, "38___NUMERIC___word_freq_pm_03___2": 1156, "38___NUMERIC___word_freq_pm_03___3": 1157, "38___NUMERIC___word_freq_pm_03___4": 1158, "38___NUMERIC___word_freq_pm_03___5": 1159, "38___NUMERIC___word_freq_pm_03___6": 1160, "38___NUMERIC___word_freq_pm_03___7": 1161, "38___NUMERIC___word_freq_pm_03___8": 1162, "38___NUMERIC___word_freq_pm_03___9": 1163, "38___NUMERIC___word_freq_pm_04___0": 1164, "38___NUMERIC___word_freq_pm_04___1": 1165, "38___NUMERIC___word_freq_pm_04___2": 1166, "38___NUMERIC___word_freq_pm_04___3": 1167, "38___NUMERIC___word_freq_pm_04___4": 1168, "38___NUMERIC___word_freq_pm_04___5": 1169, "38___NUMERIC___word_freq_pm_04___6": 1170, "38___NUMERIC___word_freq_pm_04___7": 1171, "38___NUMERIC___word_freq_pm_04___8": 1172, "38___NUMERIC___word_freq_pm_04___9": 1173, "39___NUMERIC___word_freq_direct_00___0": 1174, "39___NUMERIC___word_freq_direct_00___1": 1175, "39___NUMERIC___word_freq_direct_00___2": 1176, "39___NUMERIC___word_freq_direct_00___3": 1177, "39___NUMERIC___word_freq_direct_00___4": 1178, "39___NUMERIC___word_freq_direct_01___.": 1179, "39___NUMERIC___word_freq_direct_02___0": 1180, "39___NUMERIC___word_freq_direct_02___1": 1181, "39___NUMERIC___word_freq_direct_02___2": 1182, "39___NUMERIC___word_freq_direct_02___3": 1183, "39___NUMERIC___word_freq_direct_02___4": 1184, "39___NUMERIC___word_freq_direct_02___5": 1185, "39___NUMERIC___word_freq_direct_02___6": 1186, "39___NUMERIC___word_freq_direct_02___7": 1187, "39___NUMERIC___word_freq_direct_02___8": 1188, "39___NUMERIC___word_freq_direct_02___9": 1189, "39___NUMERIC___word_freq_direct_03___0": 1190, "39___NUMERIC___word_freq_direct_03___1": 1191, "39___NUMERIC___word_freq_direct_03___2": 1192, "39___NUMERIC___word_freq_direct_03___3": 1193, "39___NUMERIC___word_freq_direct_03___4": 1194, "39___NUMERIC___word_freq_direct_03___5": 1195, "39___NUMERIC___word_freq_direct_03___6": 1196, "39___NUMERIC___word_freq_direct_03___7": 1197, "39___NUMERIC___word_freq_direct_03___8": 1198, "39___NUMERIC___word_freq_direct_03___9": 1199, "40___NUMERIC___word_freq_cs_00___0": 1200, "40___NUMERIC___word_freq_cs_00___1": 1201, "40___NUMERIC___word_freq_cs_00___2": 1202, "40___NUMERIC___word_freq_cs_00___3": 1203, "40___NUMERIC___word_freq_cs_00___4": 1204, "40___NUMERIC___word_freq_cs_00___5": 1205, "40___NUMERIC___word_freq_cs_00___7": 1206, "40___NUMERIC___word_freq_cs_01___.": 1207, "40___NUMERIC___word_freq_cs_02___0": 1208, "40___NUMERIC___word_freq_cs_02___1": 1209, "40___NUMERIC___word_freq_cs_02___2": 1210, "40___NUMERIC___word_freq_cs_02___3": 1211, "40___NUMERIC___word_freq_cs_02___4": 1212, "40___NUMERIC___word_freq_cs_02___5": 1213, "40___NUMERIC___word_freq_cs_02___6": 1214, "40___NUMERIC___word_freq_cs_02___7": 1215, "40___NUMERIC___word_freq_cs_02___8": 1216, "40___NUMERIC___word_freq_cs_02___9": 1217, "40___NUMERIC___word_freq_cs_03___0": 1218, "40___NUMERIC___word_freq_cs_03___1": 1219, "40___NUMERIC___word_freq_cs_03___2": 1220, "40___NUMERIC___word_freq_cs_03___3": 1221, "40___NUMERIC___word_freq_cs_03___4": 1222, "40___NUMERIC___word_freq_cs_03___5": 1223, "40___NUMERIC___word_freq_cs_03___6": 1224, "40___NUMERIC___word_freq_cs_03___7": 1225, "40___NUMERIC___word_freq_cs_03___8": 1226, "40___NUMERIC___word_freq_cs_03___9": 1227, "41___NUMERIC___word_freq_meeting_00___0": 1228, "41___NUMERIC___word_freq_meeting_00___1": 1229, "41___NUMERIC___word_freq_meeting_01___0": 1230, "41___NUMERIC___word_freq_meeting_01___1": 1231, "41___NUMERIC___word_freq_meeting_01___2": 1232, "41___NUMERIC___word_freq_meeting_01___3": 1233, "41___NUMERIC___word_freq_meeting_01___4": 1234, "41___NUMERIC___word_freq_meeting_01___5": 1235, "41___NUMERIC___word_freq_meeting_01___6": 1236, "41___NUMERIC___word_freq_meeting_01___7": 1237, "41___NUMERIC___word_freq_meeting_01___8": 1238, "41___NUMERIC___word_freq_meeting_01___9": 1239, "41___NUMERIC___word_freq_meeting_02___.": 1240, "41___NUMERIC___word_freq_meeting_03___0": 1241, "41___NUMERIC___word_freq_meeting_03___1": 1242, "41___NUMERIC___word_freq_meeting_03___2": 1243, "41___NUMERIC___word_freq_meeting_03___3": 1244, "41___NUMERIC___word_freq_meeting_03___4": 1245, "41___NUMERIC___word_freq_meeting_03___5": 1246, "41___NUMERIC___word_freq_meeting_03___6": 1247, "41___NUMERIC___word_freq_meeting_03___7": 1248, "41___NUMERIC___word_freq_meeting_03___8": 1249, "41___NUMERIC___word_freq_meeting_03___9": 1250, "41___NUMERIC___word_freq_meeting_04___0": 1251, "41___NUMERIC___word_freq_meeting_04___1": 1252, "41___NUMERIC___word_freq_meeting_04___2": 1253, "41___NUMERIC___word_freq_meeting_04___3": 1254, "41___NUMERIC___word_freq_meeting_04___4": 1255, "41___NUMERIC___word_freq_meeting_04___5": 1256, "41___NUMERIC___word_freq_meeting_04___6": 1257, "41___NUMERIC___word_freq_meeting_04___7": 1258, "41___NUMERIC___word_freq_meeting_04___8": 1259, "41___NUMERIC___word_freq_meeting_04___9": 1260, "42___NUMERIC___word_freq_original_00___0": 1261, "42___NUMERIC___word_freq_original_00___1": 1262, "42___NUMERIC___word_freq_original_00___2": 1263, "42___NUMERIC___word_freq_original_00___3": 1264, "42___NUMERIC___word_freq_original_01___.": 1265, "42___NUMERIC___word_freq_original_02___0": 1266, "42___NUMERIC___word_freq_original_02___1": 1267, "42___NUMERIC___word_freq_original_02___2": 1268, "42___NUMERIC___word_freq_original_02___3": 1269, "42___NUMERIC___word_freq_original_02___4": 1270, "42___NUMERIC___word_freq_original_02___5": 1271, "42___NUMERIC___word_freq_original_02___6": 1272, "42___NUMERIC___word_freq_original_02___7": 1273, "42___NUMERIC___word_freq_original_02___8": 1274, "42___NUMERIC___word_freq_original_02___9": 1275, "42___NUMERIC___word_freq_original_03___0": 1276, "42___NUMERIC___word_freq_original_03___1": 1277, "42___NUMERIC___word_freq_original_03___2": 1278, "42___NUMERIC___word_freq_original_03___3": 1279, "42___NUMERIC___word_freq_original_03___4": 1280, "42___NUMERIC___word_freq_original_03___5": 1281, "42___NUMERIC___word_freq_original_03___6": 1282, "42___NUMERIC___word_freq_original_03___7": 1283, "42___NUMERIC___word_freq_original_03___8": 1284, "42___NUMERIC___word_freq_original_03___9": 1285, "43___NUMERIC___word_freq_project_00___0": 1286, "43___NUMERIC___word_freq_project_00___1": 1287, "43___NUMERIC___word_freq_project_00___2": 1288, "43___NUMERIC___word_freq_project_01___0": 1289, "43___NUMERIC___word_freq_project_01___1": 1290, "43___NUMERIC___word_freq_project_01___2": 1291, "43___NUMERIC___word_freq_project_01___3": 1292, "43___NUMERIC___word_freq_project_01___4": 1293, "43___NUMERIC___word_freq_project_01___5": 1294, "43___NUMERIC___word_freq_project_01___6": 1295, "43___NUMERIC___word_freq_project_01___8": 1296, "43___NUMERIC___word_freq_project_02___.": 1297, "43___NUMERIC___word_freq_project_03___0": 1298, "43___NUMERIC___word_freq_project_03___1": 1299, "43___NUMERIC___word_freq_project_03___2": 1300, "43___NUMERIC___word_freq_project_03___3": 1301, "43___NUMERIC___word_freq_project_03___4": 1302, "43___NUMERIC___word_freq_project_03___5": 1303, "43___NUMERIC___word_freq_project_03___6": 1304, "43___NUMERIC___word_freq_project_03___7": 1305, "43___NUMERIC___word_freq_project_03___8": 1306, "43___NUMERIC___word_freq_project_03___9": 1307, "43___NUMERIC___word_freq_project_04___0": 1308, "43___NUMERIC___word_freq_project_04___1": 1309, "43___NUMERIC___word_freq_project_04___2": 1310, "43___NUMERIC___word_freq_project_04___3": 1311, "43___NUMERIC___word_freq_project_04___4": 1312, "43___NUMERIC___word_freq_project_04___5": 1313, "43___NUMERIC___word_freq_project_04___6": 1314, "43___NUMERIC___word_freq_project_04___7": 1315, "43___NUMERIC___word_freq_project_04___8": 1316, "43___NUMERIC___word_freq_project_04___9": 1317, "44___NUMERIC___word_freq_re_00___0": 1318, "44___NUMERIC___word_freq_re_00___1": 1319, "44___NUMERIC___word_freq_re_00___2": 1320, "44___NUMERIC___word_freq_re_01___0": 1321, "44___NUMERIC___word_freq_re_01___1": 1322, "44___NUMERIC___word_freq_re_01___2": 1323, "44___NUMERIC___word_freq_re_01___3": 1324, "44___NUMERIC___word_freq_re_01___4": 1325, "44___NUMERIC___word_freq_re_01___5": 1326, "44___NUMERIC___word_freq_re_01___6": 1327, "44___NUMERIC___word_freq_re_01___7": 1328, "44___NUMERIC___word_freq_re_01___8": 1329, "44___NUMERIC___word_freq_re_01___9": 1330, "44___NUMERIC___word_freq_re_02___.": 1331, "44___NUMERIC___word_freq_re_03___0": 1332, "44___NUMERIC___word_freq_re_03___1": 1333, "44___NUMERIC___word_freq_re_03___2": 1334, "44___NUMERIC___word_freq_re_03___3": 1335, "44___NUMERIC___word_freq_re_03___4": 1336, "44___NUMERIC___word_freq_re_03___5": 1337, "44___NUMERIC___word_freq_re_03___6": 1338, "44___NUMERIC___word_freq_re_03___7": 1339, "44___NUMERIC___word_freq_re_03___8": 1340, "44___NUMERIC___word_freq_re_03___9": 1341, "44___NUMERIC___word_freq_re_04___0": 1342, "44___NUMERIC___word_freq_re_04___1": 1343, "44___NUMERIC___word_freq_re_04___2": 1344, "44___NUMERIC___word_freq_re_04___3": 1345, "44___NUMERIC___word_freq_re_04___4": 1346, "44___NUMERIC___word_freq_re_04___5": 1347, "44___NUMERIC___word_freq_re_04___6": 1348, "44___NUMERIC___word_freq_re_04___7": 1349, "44___NUMERIC___word_freq_re_04___8": 1350, "44___NUMERIC___word_freq_re_04___9": 1351, "45___NUMERIC___word_freq_edu_00___0": 1352, "45___NUMERIC___word_freq_edu_00___1": 1353, "45___NUMERIC___word_freq_edu_00___2": 1354, "45___NUMERIC___word_freq_edu_01___0": 1355, "45___NUMERIC___word_freq_edu_01___1": 1356, "45___NUMERIC___word_freq_edu_01___2": 1357, "45___NUMERIC___word_freq_edu_01___3": 1358, "45___NUMERIC___word_freq_edu_01___4": 1359, "45___NUMERIC___word_freq_edu_01___5": 1360, "45___NUMERIC___word_freq_edu_01___6": 1361, "45___NUMERIC___word_freq_edu_01___7": 1362, "45___NUMERIC___word_freq_edu_01___8": 1363, "45___NUMERIC___word_freq_edu_01___9": 1364, "45___NUMERIC___word_freq_edu_02___.": 1365, "45___NUMERIC___word_freq_edu_03___0": 1366, "45___NUMERIC___word_freq_edu_03___1": 1367, "45___NUMERIC___word_freq_edu_03___2": 1368, "45___NUMERIC___word_freq_edu_03___3": 1369, "45___NUMERIC___word_freq_edu_03___4": 1370, "45___NUMERIC___word_freq_edu_03___5": 1371, "45___NUMERIC___word_freq_edu_03___6": 1372, "45___NUMERIC___word_freq_edu_03___7": 1373, "45___NUMERIC___word_freq_edu_03___8": 1374, "45___NUMERIC___word_freq_edu_03___9": 1375, "45___NUMERIC___word_freq_edu_04___0": 1376, "45___NUMERIC___word_freq_edu_04___1": 1377, "45___NUMERIC___word_freq_edu_04___2": 1378, "45___NUMERIC___word_freq_edu_04___3": 1379, "45___NUMERIC___word_freq_edu_04___4": 1380, "45___NUMERIC___word_freq_edu_04___5": 1381, "45___NUMERIC___word_freq_edu_04___6": 1382, "45___NUMERIC___word_freq_edu_04___7": 1383, "45___NUMERIC___word_freq_edu_04___8": 1384, "45___NUMERIC___word_freq_edu_04___9": 1385, "46___CATEGORICAL___word_freq_table___0.0": 1386, "46___CATEGORICAL___word_freq_table___0.01": 1387, "46___CATEGORICAL___word_freq_table___0.02": 1388, "46___CATEGORICAL___word_freq_table___0.03": 1389, "46___CATEGORICAL___word_freq_table___0.04": 1390, "46___CATEGORICAL___word_freq_table___0.05": 1391, "46___CATEGORICAL___word_freq_table___0.06": 1392, "46___CATEGORICAL___word_freq_table___0.09": 1393, "46___CATEGORICAL___word_freq_table___0.11": 1394, "46___CATEGORICAL___word_freq_table___0.14": 1395, "46___CATEGORICAL___word_freq_table___0.16": 1396, "46___CATEGORICAL___word_freq_table___0.19": 1397, "46___CATEGORICAL___word_freq_table___0.25": 1398, "46___CATEGORICAL___word_freq_table___0.27": 1399, "46___CATEGORICAL___word_freq_table___0.28": 1400, "46___CATEGORICAL___word_freq_table___0.34": 1401, "46___CATEGORICAL___word_freq_table___0.37": 1402, "46___CATEGORICAL___word_freq_table___0.39": 1403, "46___CATEGORICAL___word_freq_table___0.46": 1404, "46___CATEGORICAL___word_freq_table___0.51": 1405, "46___CATEGORICAL___word_freq_table___0.61": 1406, "46___CATEGORICAL___word_freq_table___0.65": 1407, "46___CATEGORICAL___word_freq_table___0.72": 1408, "46___CATEGORICAL___word_freq_table___0.73": 1409, "46___CATEGORICAL___word_freq_table___0.81": 1410, "46___CATEGORICAL___word_freq_table___0.86": 1411, "46___CATEGORICAL___word_freq_table___0.88": 1412, "46___CATEGORICAL___word_freq_table___1.02": 1413, "46___CATEGORICAL___word_freq_table___1.51": 1414, "46___CATEGORICAL___word_freq_table___1.91": 1415, "46___CATEGORICAL___word_freq_table___2.12": 1416, "47___NUMERIC___word_freq_conference_00___0": 1417, "47___NUMERIC___word_freq_conference_00___1": 1418, "47___NUMERIC___word_freq_conference_01___0": 1419, "47___NUMERIC___word_freq_conference_01___1": 1420, "47___NUMERIC___word_freq_conference_01___2": 1421, "47___NUMERIC___word_freq_conference_01___3": 1422, "47___NUMERIC___word_freq_conference_01___4": 1423, "47___NUMERIC___word_freq_conference_01___5": 1424, "47___NUMERIC___word_freq_conference_01___8": 1425, "47___NUMERIC___word_freq_conference_02___.": 1426, "47___NUMERIC___word_freq_conference_03___0": 1427, "47___NUMERIC___word_freq_conference_03___1": 1428, "47___NUMERIC___word_freq_conference_03___2": 1429, "47___NUMERIC___word_freq_conference_03___3": 1430, "47___NUMERIC___word_freq_conference_03___4": 1431, "47___NUMERIC___word_freq_conference_03___5": 1432, "47___NUMERIC___word_freq_conference_03___6": 1433, "47___NUMERIC___word_freq_conference_03___7": 1434, "47___NUMERIC___word_freq_conference_03___8": 1435, "47___NUMERIC___word_freq_conference_03___9": 1436, "47___NUMERIC___word_freq_conference_04___0": 1437, "47___NUMERIC___word_freq_conference_04___1": 1438, "47___NUMERIC___word_freq_conference_04___2": 1439, "47___NUMERIC___word_freq_conference_04___3": 1440, "47___NUMERIC___word_freq_conference_04___4": 1441, "47___NUMERIC___word_freq_conference_04___5": 1442, "47___NUMERIC___word_freq_conference_04___6": 1443, "47___NUMERIC___word_freq_conference_04___7": 1444, "47___NUMERIC___word_freq_conference_04___8": 1445, "47___NUMERIC___word_freq_conference_04___9": 1446, "48___NUMERIC___char_freq_%3B_00___0": 1447, "48___NUMERIC___char_freq_%3B_00___1": 1448, "48___NUMERIC___char_freq_%3B_00___3": 1449, "48___NUMERIC___char_freq_%3B_00___4": 1450, "48___NUMERIC___char_freq_%3B_01___.": 1451, "48___NUMERIC___char_freq_%3B_02___0": 1452, "48___NUMERIC___char_freq_%3B_02___1": 1453, "48___NUMERIC___char_freq_%3B_02___2": 1454, "48___NUMERIC___char_freq_%3B_02___3": 1455, "48___NUMERIC___char_freq_%3B_02___4": 1456, "48___NUMERIC___char_freq_%3B_02___5": 1457, "48___NUMERIC___char_freq_%3B_02___6": 1458, "48___NUMERIC___char_freq_%3B_02___7": 1459, "48___NUMERIC___char_freq_%3B_02___8": 1460, "48___NUMERIC___char_freq_%3B_02___9": 1461, "48___NUMERIC___char_freq_%3B_03___0": 1462, "48___NUMERIC___char_freq_%3B_03___1": 1463, "48___NUMERIC___char_freq_%3B_03___2": 1464, "48___NUMERIC___char_freq_%3B_03___3": 1465, "48___NUMERIC___char_freq_%3B_03___4": 1466, "48___NUMERIC___char_freq_%3B_03___5": 1467, "48___NUMERIC___char_freq_%3B_03___6": 1468, "48___NUMERIC___char_freq_%3B_03___7": 1469, "48___NUMERIC___char_freq_%3B_03___8": 1470, "48___NUMERIC___char_freq_%3B_03___9": 1471, "48___NUMERIC___char_freq_%3B_04___0": 1472, "48___NUMERIC___char_freq_%3B_04___1": 1473, "48___NUMERIC___char_freq_%3B_04___2": 1474, "48___NUMERIC___char_freq_%3B_04___3": 1475, "48___NUMERIC___char_freq_%3B_04___4": 1476, "48___NUMERIC___char_freq_%3B_04___5": 1477, "48___NUMERIC___char_freq_%3B_04___6": 1478, "48___NUMERIC___char_freq_%3B_04___7": 1479, "48___NUMERIC___char_freq_%3B_04___8": 1480, "48___NUMERIC___char_freq_%3B_04___9": 1481, "49___NUMERIC___char_freq_%28_00___0": 1482, "49___NUMERIC___char_freq_%28_00___1": 1483, "49___NUMERIC___char_freq_%28_00___2": 1484, "49___NUMERIC___char_freq_%28_00___4": 1485, "49___NUMERIC___char_freq_%28_00___5": 1486, "49___NUMERIC___char_freq_%28_00___9": 1487, "49___NUMERIC___char_freq_%28_01___.": 1488, "49___NUMERIC___char_freq_%28_02___0": 1489, "49___NUMERIC___char_freq_%28_02___1": 1490, "49___NUMERIC___char_freq_%28_02___2": 1491, "49___NUMERIC___char_freq_%28_02___3": 1492, "49___NUMERIC___char_freq_%28_02___4": 1493, "49___NUMERIC___char_freq_%28_02___5": 1494, "49___NUMERIC___char_freq_%28_02___6": 1495, "49___NUMERIC___char_freq_%28_02___7": 1496, "49___NUMERIC___char_freq_%28_02___8": 1497, "49___NUMERIC___char_freq_%28_02___9": 1498, "49___NUMERIC___char_freq_%28_03___0": 1499, "49___NUMERIC___char_freq_%28_03___1": 1500, "49___NUMERIC___char_freq_%28_03___2": 1501, "49___NUMERIC___char_freq_%28_03___3": 1502, "49___NUMERIC___char_freq_%28_03___4": 1503, "49___NUMERIC___char_freq_%28_03___5": 1504, "49___NUMERIC___char_freq_%28_03___6": 1505, "49___NUMERIC___char_freq_%28_03___7": 1506, "49___NUMERIC___char_freq_%28_03___8": 1507, "49___NUMERIC___char_freq_%28_03___9": 1508, "49___NUMERIC___char_freq_%28_04___0": 1509, "49___NUMERIC___char_freq_%28_04___1": 1510, "49___NUMERIC___char_freq_%28_04___2": 1511, "49___NUMERIC___char_freq_%28_04___3": 1512, "49___NUMERIC___char_freq_%28_04___4": 1513, "49___NUMERIC___char_freq_%28_04___5": 1514, "49___NUMERIC___char_freq_%28_04___6": 1515, "49___NUMERIC___char_freq_%28_04___7": 1516, "49___NUMERIC___char_freq_%28_04___8": 1517, "49___NUMERIC___char_freq_%28_04___9": 1518, "50___NUMERIC___char_freq_%5B_00___0": 1519, "50___NUMERIC___char_freq_%5B_00___1": 1520, "50___NUMERIC___char_freq_%5B_00___2": 1521, "50___NUMERIC___char_freq_%5B_01___.": 1522, "50___NUMERIC___char_freq_%5B_02___0": 1523, "50___NUMERIC___char_freq_%5B_02___1": 1524, "50___NUMERIC___char_freq_%5B_02___2": 1525, "50___NUMERIC___char_freq_%5B_02___3": 1526, "50___NUMERIC___char_freq_%5B_02___4": 1527, "50___NUMERIC___char_freq_%5B_02___5": 1528, "50___NUMERIC___char_freq_%5B_02___6": 1529, "50___NUMERIC___char_freq_%5B_02___7": 1530, "50___NUMERIC___char_freq_%5B_02___8": 1531, "50___NUMERIC___char_freq_%5B_03___0": 1532, "50___NUMERIC___char_freq_%5B_03___1": 1533, "50___NUMERIC___char_freq_%5B_03___2": 1534, "50___NUMERIC___char_freq_%5B_03___3": 1535, "50___NUMERIC___char_freq_%5B_03___4": 1536, "50___NUMERIC___char_freq_%5B_03___5": 1537, "50___NUMERIC___char_freq_%5B_03___6": 1538, "50___NUMERIC___char_freq_%5B_03___7": 1539, "50___NUMERIC___char_freq_%5B_03___8": 1540, "50___NUMERIC___char_freq_%5B_03___9": 1541, "50___NUMERIC___char_freq_%5B_04___0": 1542, "50___NUMERIC___char_freq_%5B_04___1": 1543, "50___NUMERIC___char_freq_%5B_04___2": 1544, "50___NUMERIC___char_freq_%5B_04___3": 1545, "50___NUMERIC___char_freq_%5B_04___4": 1546, "50___NUMERIC___char_freq_%5B_04___5": 1547, "50___NUMERIC___char_freq_%5B_04___6": 1548, "50___NUMERIC___char_freq_%5B_04___7": 1549, "50___NUMERIC___char_freq_%5B_04___8": 1550, "50___NUMERIC___char_freq_%5B_04___9": 1551, "51___NUMERIC___char_freq_%21_00___0": 1552, "51___NUMERIC___char_freq_%21_00___1": 1553, "51___NUMERIC___char_freq_%21_00___3": 1554, "51___NUMERIC___char_freq_%21_01___0": 1555, "51___NUMERIC___char_freq_%21_01___1": 1556, "51___NUMERIC___char_freq_%21_01___2": 1557, "51___NUMERIC___char_freq_%21_01___3": 1558, "51___NUMERIC___char_freq_%21_01___4": 1559, "51___NUMERIC___char_freq_%21_01___5": 1560, "51___NUMERIC___char_freq_%21_01___6": 1561, "51___NUMERIC___char_freq_%21_01___7": 1562, "51___NUMERIC___char_freq_%21_01___8": 1563, "51___NUMERIC___char_freq_%21_01___9": 1564, "51___NUMERIC___char_freq_%21_02___.": 1565, "51___NUMERIC___char_freq_%21_03___0": 1566, "51___NUMERIC___char_freq_%21_03___1": 1567, "51___NUMERIC___char_freq_%21_03___2": 1568, "51___NUMERIC___char_freq_%21_03___3": 1569, "51___NUMERIC___char_freq_%21_03___4": 1570, "51___NUMERIC___char_freq_%21_03___5": 1571, "51___NUMERIC___char_freq_%21_03___6": 1572, "51___NUMERIC___char_freq_%21_03___7": 1573, "51___NUMERIC___char_freq_%21_03___8": 1574, "51___NUMERIC___char_freq_%21_03___9": 1575, "51___NUMERIC___char_freq_%21_04___0": 1576, "51___NUMERIC___char_freq_%21_04___1": 1577, "51___NUMERIC___char_freq_%21_04___2": 1578, "51___NUMERIC___char_freq_%21_04___3": 1579, "51___NUMERIC___char_freq_%21_04___4": 1580, "51___NUMERIC___char_freq_%21_04___5": 1581, "51___NUMERIC___char_freq_%21_04___6": 1582, "51___NUMERIC___char_freq_%21_04___7": 1583, "51___NUMERIC___char_freq_%21_04___8": 1584, "51___NUMERIC___char_freq_%21_04___9": 1585, "51___NUMERIC___char_freq_%21_05___0": 1586, "51___NUMERIC___char_freq_%21_05___1": 1587, "51___NUMERIC___char_freq_%21_05___2": 1588, "51___NUMERIC___char_freq_%21_05___3": 1589, "51___NUMERIC___char_freq_%21_05___4": 1590, "51___NUMERIC___char_freq_%21_05___5": 1591, "51___NUMERIC___char_freq_%21_05___6": 1592, "51___NUMERIC___char_freq_%21_05___7": 1593, "51___NUMERIC___char_freq_%21_05___8": 1594, "51___NUMERIC___char_freq_%21_05___9": 1595, "52___NUMERIC___char_freq_%24_00___0": 1596, "52___NUMERIC___char_freq_%24_00___1": 1597, "52___NUMERIC___char_freq_%24_00___2": 1598, "52___NUMERIC___char_freq_%24_00___3": 1599, "52___NUMERIC___char_freq_%24_00___5": 1600, "52___NUMERIC___char_freq_%24_00___6": 1601, "52___NUMERIC___char_freq_%24_01___.": 1602, "52___NUMERIC___char_freq_%24_02___0": 1603, "52___NUMERIC___char_freq_%24_02___1": 1604, "52___NUMERIC___char_freq_%24_02___2": 1605, "52___NUMERIC___char_freq_%24_02___3": 1606, "52___NUMERIC___char_freq_%24_02___4": 1607, "52___NUMERIC___char_freq_%24_02___5": 1608, "52___NUMERIC___char_freq_%24_02___6": 1609, "52___NUMERIC___char_freq_%24_02___7": 1610, "52___NUMERIC___char_freq_%24_02___8": 1611, "52___NUMERIC___char_freq_%24_02___9": 1612, "52___NUMERIC___char_freq_%24_03___0": 1613, "52___NUMERIC___char_freq_%24_03___1": 1614, "52___NUMERIC___char_freq_%24_03___2": 1615, "52___NUMERIC___char_freq_%24_03___3": 1616, "52___NUMERIC___char_freq_%24_03___4": 1617, "52___NUMERIC___char_freq_%24_03___5": 1618, "52___NUMERIC___char_freq_%24_03___6": 1619, "52___NUMERIC___char_freq_%24_03___7": 1620, "52___NUMERIC___char_freq_%24_03___8": 1621, "52___NUMERIC___char_freq_%24_03___9": 1622, "52___NUMERIC___char_freq_%24_04___0": 1623, "52___NUMERIC___char_freq_%24_04___1": 1624, "52___NUMERIC___char_freq_%24_04___2": 1625, "52___NUMERIC___char_freq_%24_04___3": 1626, "52___NUMERIC___char_freq_%24_04___4": 1627, "52___NUMERIC___char_freq_%24_04___5": 1628, "52___NUMERIC___char_freq_%24_04___6": 1629, "52___NUMERIC___char_freq_%24_04___7": 1630, "52___NUMERIC___char_freq_%24_04___8": 1631, "52___NUMERIC___char_freq_%24_04___9": 1632, "53___NUMERIC___char_freq_%23_00___0": 1633, "53___NUMERIC___char_freq_%23_00___1": 1634, "53___NUMERIC___char_freq_%23_01___0": 1635, "53___NUMERIC___char_freq_%23_01___1": 1636, "53___NUMERIC___char_freq_%23_01___2": 1637, "53___NUMERIC___char_freq_%23_01___3": 1638, "53___NUMERIC___char_freq_%23_01___4": 1639, "53___NUMERIC___char_freq_%23_01___6": 1640, "53___NUMERIC___char_freq_%23_01___7": 1641, "53___NUMERIC___char_freq_%23_01___9": 1642, "53___NUMERIC___char_freq_%23_02___.": 1643, "53___NUMERIC___char_freq_%23_03___0": 1644, "53___NUMERIC___char_freq_%23_03___1": 1645, "53___NUMERIC___char_freq_%23_03___2": 1646, "53___NUMERIC___char_freq_%23_03___3": 1647, "53___NUMERIC___char_freq_%23_03___4": 1648, "53___NUMERIC___char_freq_%23_03___5": 1649, "53___NUMERIC___char_freq_%23_03___6": 1650, "53___NUMERIC___char_freq_%23_03___7": 1651, "53___NUMERIC___char_freq_%23_03___8": 1652, "53___NUMERIC___char_freq_%23_03___9": 1653, "53___NUMERIC___char_freq_%23_04___0": 1654, "53___NUMERIC___char_freq_%23_04___1": 1655, "53___NUMERIC___char_freq_%23_04___2": 1656, "53___NUMERIC___char_freq_%23_04___3": 1657, "53___NUMERIC___char_freq_%23_04___4": 1658, "53___NUMERIC___char_freq_%23_04___5": 1659, "53___NUMERIC___char_freq_%23_04___6": 1660, "53___NUMERIC___char_freq_%23_04___7": 1661, "53___NUMERIC___char_freq_%23_04___8": 1662, "53___NUMERIC___char_freq_%23_04___9": 1663, "53___NUMERIC___char_freq_%23_05___0": 1664, "53___NUMERIC___char_freq_%23_05___1": 1665, "53___NUMERIC___char_freq_%23_05___2": 1666, "53___NUMERIC___char_freq_%23_05___3": 1667, "53___NUMERIC___char_freq_%23_05___4": 1668, "53___NUMERIC___char_freq_%23_05___5": 1669, "53___NUMERIC___char_freq_%23_05___6": 1670, "53___NUMERIC___char_freq_%23_05___7": 1671, "53___NUMERIC___char_freq_%23_05___8": 1672, "53___NUMERIC___char_freq_%23_05___9": 1673, "54___NUMERIC___capital_run_length_average_00___0": 1674, "54___NUMERIC___capital_run_length_average_00___1": 1675, "54___NUMERIC___capital_run_length_average_01___0": 1676, "54___NUMERIC___capital_run_length_average_01___1": 1677, "54___NUMERIC___capital_run_length_average_01___2": 1678, "54___NUMERIC___capital_run_length_average_01___3": 1679, "54___NUMERIC___capital_run_length_average_01___6": 1680, "54___NUMERIC___capital_run_length_average_02___0": 1681, "54___NUMERIC___capital_run_length_average_02___1": 1682, "54___NUMERIC___capital_run_length_average_02___2": 1683, "54___NUMERIC___capital_run_length_average_02___3": 1684, "54___NUMERIC___capital_run_length_average_02___4": 1685, "54___NUMERIC___capital_run_length_average_02___5": 1686, "54___NUMERIC___capital_run_length_average_02___6": 1687, "54___NUMERIC___capital_run_length_average_02___7": 1688, "54___NUMERIC___capital_run_length_average_02___8": 1689, "54___NUMERIC___capital_run_length_average_02___9": 1690, "54___NUMERIC___capital_run_length_average_03___0": 1691, "54___NUMERIC___capital_run_length_average_03___1": 1692, "54___NUMERIC___capital_run_length_average_03___2": 1693, "54___NUMERIC___capital_run_length_average_03___3": 1694, "54___NUMERIC___capital_run_length_average_03___4": 1695, "54___NUMERIC___capital_run_length_average_03___5": 1696, "54___NUMERIC___capital_run_length_average_03___6": 1697, "54___NUMERIC___capital_run_length_average_03___7": 1698, "54___NUMERIC___capital_run_length_average_03___8": 1699, "54___NUMERIC___capital_run_length_average_03___9": 1700, "54___NUMERIC___capital_run_length_average_04___.": 1701, "54___NUMERIC___capital_run_length_average_05___0": 1702, "54___NUMERIC___capital_run_length_average_05___1": 1703, "54___NUMERIC___capital_run_length_average_05___2": 1704, "54___NUMERIC___capital_run_length_average_05___3": 1705, "54___NUMERIC___capital_run_length_average_05___4": 1706, "54___NUMERIC___capital_run_length_average_05___5": 1707, "54___NUMERIC___capital_run_length_average_05___6": 1708, "54___NUMERIC___capital_run_length_average_05___7": 1709, "54___NUMERIC___capital_run_length_average_05___8": 1710, "54___NUMERIC___capital_run_length_average_05___9": 1711, "54___NUMERIC___capital_run_length_average_06___0": 1712, "54___NUMERIC___capital_run_length_average_06___1": 1713, "54___NUMERIC___capital_run_length_average_06___2": 1714, "54___NUMERIC___capital_run_length_average_06___3": 1715, "54___NUMERIC___capital_run_length_average_06___4": 1716, "54___NUMERIC___capital_run_length_average_06___5": 1717, "54___NUMERIC___capital_run_length_average_06___6": 1718, "54___NUMERIC___capital_run_length_average_06___7": 1719, "54___NUMERIC___capital_run_length_average_06___8": 1720, "54___NUMERIC___capital_run_length_average_06___9": 1721, "54___NUMERIC___capital_run_length_average_07___0": 1722, "54___NUMERIC___capital_run_length_average_07___1": 1723, "54___NUMERIC___capital_run_length_average_07___2": 1724, "54___NUMERIC___capital_run_length_average_07___3": 1725, "54___NUMERIC___capital_run_length_average_07___4": 1726, "54___NUMERIC___capital_run_length_average_07___5": 1727, "54___NUMERIC___capital_run_length_average_07___6": 1728, "54___NUMERIC___capital_run_length_average_07___7": 1729, "54___NUMERIC___capital_run_length_average_07___8": 1730, "54___NUMERIC___capital_run_length_average_07___9": 1731, "55___NUMERIC___capital_run_length_longest_00___0": 1732, "55___NUMERIC___capital_run_length_longest_00___1": 1733, "55___NUMERIC___capital_run_length_longest_00___2": 1734, "55___NUMERIC___capital_run_length_longest_00___9": 1735, "55___NUMERIC___capital_run_length_longest_01___0": 1736, "55___NUMERIC___capital_run_length_longest_01___1": 1737, "55___NUMERIC___capital_run_length_longest_01___2": 1738, "55___NUMERIC___capital_run_length_longest_01___3": 1739, "55___NUMERIC___capital_run_length_longest_01___4": 1740, "55___NUMERIC___capital_run_length_longest_01___5": 1741, "55___NUMERIC___capital_run_length_longest_01___6": 1742, "55___NUMERIC___capital_run_length_longest_01___7": 1743, "55___NUMERIC___capital_run_length_longest_01___8": 1744, "55___NUMERIC___capital_run_length_longest_01___9": 1745, "55___NUMERIC___capital_run_length_longest_02___0": 1746, "55___NUMERIC___capital_run_length_longest_02___1": 1747, "55___NUMERIC___capital_run_length_longest_02___2": 1748, "55___NUMERIC___capital_run_length_longest_02___3": 1749, "55___NUMERIC___capital_run_length_longest_02___4": 1750, "55___NUMERIC___capital_run_length_longest_02___5": 1751, "55___NUMERIC___capital_run_length_longest_02___6": 1752, "55___NUMERIC___capital_run_length_longest_02___7": 1753, "55___NUMERIC___capital_run_length_longest_02___8": 1754, "55___NUMERIC___capital_run_length_longest_02___9": 1755, "55___NUMERIC___capital_run_length_longest_03___0": 1756, "55___NUMERIC___capital_run_length_longest_03___1": 1757, "55___NUMERIC___capital_run_length_longest_03___2": 1758, "55___NUMERIC___capital_run_length_longest_03___3": 1759, "55___NUMERIC___capital_run_length_longest_03___4": 1760, "55___NUMERIC___capital_run_length_longest_03___5": 1761, "55___NUMERIC___capital_run_length_longest_03___6": 1762, "55___NUMERIC___capital_run_length_longest_03___7": 1763, "55___NUMERIC___capital_run_length_longest_03___8": 1764, "55___NUMERIC___capital_run_length_longest_03___9": 1765, "56___NUMERIC___capital_run_length_total_00___0": 1766, "56___NUMERIC___capital_run_length_total_00___1": 1767, "56___NUMERIC___capital_run_length_total_01___0": 1768, "56___NUMERIC___capital_run_length_total_01___1": 1769, "56___NUMERIC___capital_run_length_total_01___2": 1770, "56___NUMERIC___capital_run_length_total_01___3": 1771, "56___NUMERIC___capital_run_length_total_01___4": 1772, "56___NUMERIC___capital_run_length_total_01___5": 1773, "56___NUMERIC___capital_run_length_total_01___9": 1774, "56___NUMERIC___capital_run_length_total_02___0": 1775, "56___NUMERIC___capital_run_length_total_02___1": 1776, "56___NUMERIC___capital_run_length_total_02___2": 1777, "56___NUMERIC___capital_run_length_total_02___3": 1778, "56___NUMERIC___capital_run_length_total_02___4": 1779, "56___NUMERIC___capital_run_length_total_02___5": 1780, "56___NUMERIC___capital_run_length_total_02___6": 1781, "56___NUMERIC___capital_run_length_total_02___7": 1782, "56___NUMERIC___capital_run_length_total_02___8": 1783, "56___NUMERIC___capital_run_length_total_02___9": 1784, "56___NUMERIC___capital_run_length_total_03___0": 1785, "56___NUMERIC___capital_run_length_total_03___1": 1786, "56___NUMERIC___capital_run_length_total_03___2": 1787, "56___NUMERIC___capital_run_length_total_03___3": 1788, "56___NUMERIC___capital_run_length_total_03___4": 1789, "56___NUMERIC___capital_run_length_total_03___5": 1790, "56___NUMERIC___capital_run_length_total_03___6": 1791, "56___NUMERIC___capital_run_length_total_03___7": 1792, "56___NUMERIC___capital_run_length_total_03___8": 1793, "56___NUMERIC___capital_run_length_total_03___9": 1794, "56___NUMERIC___capital_run_length_total_04___0": 1795, "56___NUMERIC___capital_run_length_total_04___1": 1796, "56___NUMERIC___capital_run_length_total_04___2": 1797, "56___NUMERIC___capital_run_length_total_04___3": 1798, "56___NUMERIC___capital_run_length_total_04___4": 1799, "56___NUMERIC___capital_run_length_total_04___5": 1800, "56___NUMERIC___capital_run_length_total_04___6": 1801, "56___NUMERIC___capital_run_length_total_04___7": 1802, "56___NUMERIC___capital_run_length_total_04___8": 1803, "56___NUMERIC___capital_run_length_total_04___9": 1804, "57___CATEGORICAL___class___0": 1805, "57___CATEGORICAL___class___1": 1806}, "column_token_ids": {"00___NUMERIC___word_freq_make_00": [11, 12, 13, 14, 15], "00___NUMERIC___word_freq_make_01": [16], "00___NUMERIC___word_freq_make_02": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "00___NUMERIC___word_freq_make_03": [27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "01___NUMERIC___word_freq_address_00": [37, 38], "01___NUMERIC___word_freq_address_01": [39, 40, 41, 42, 43, 44, 45], "01___NUMERIC___word_freq_address_02": [46], "01___NUMERIC___word_freq_address_03": [47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "01___NUMERIC___word_freq_address_04": [57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "02___NUMERIC___word_freq_all_00": [67, 68, 69, 70, 71], "02___NUMERIC___word_freq_all_01": [72], "02___NUMERIC___word_freq_all_02": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "02___NUMERIC___word_freq_all_03": [83, 84, 85, 86, 87, 88, 89, 90, 91, 92], "03___CATEGORICAL___word_freq_3d": [93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___word_freq_our_00": [127, 128], "04___NUMERIC___word_freq_our_01": [129, 130, 131, 132, 133, 134, 135, 136, 137, 138], "04___NUMERIC___word_freq_our_02": [139], "04___NUMERIC___word_freq_our_03": [140, 141, 142, 143, 144, 145, 146, 147, 148, 149], "04___NUMERIC___word_freq_our_04": [150, 151, 152, 153, 154, 155, 156, 157, 158, 159], "05___NUMERIC___word_freq_over_00": [160, 161, 162, 163, 164], "05___NUMERIC___word_freq_over_01": [165], "05___NUMERIC___word_freq_over_02": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "05___NUMERIC___word_freq_over_03": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___word_freq_remove_00": [186, 187, 188, 189, 190, 191, 192], "06___NUMERIC___word_freq_remove_01": [193], "06___NUMERIC___word_freq_remove_02": [194, 195, 196, 197, 198, 199, 200, 201, 202, 203], "06___NUMERIC___word_freq_remove_03": [204, 205, 206, 207, 208, 209, 210, 211, 212, 213], "07___NUMERIC___word_freq_internet_00": [214, 215], "07___NUMERIC___word_freq_internet_01": [216, 217, 218, 219, 220, 221, 222], "07___NUMERIC___word_freq_internet_02": [223], "07___NUMERIC___word_freq_internet_03": [224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "07___NUMERIC___word_freq_internet_04": [234, 235, 236, 237, 238, 239, 240, 241, 242, 243], "08___NUMERIC___word_freq_order_00": [244, 245, 246, 247], "08___NUMERIC___word_freq_order_01": [248], "08___NUMERIC___word_freq_order_02": [249, 250, 251, 252, 253, 254, 255, 256, 257, 258], "08___NUMERIC___word_freq_order_03": [259, 260, 261, 262, 263, 264, 265, 266, 267, 268], "09___NUMERIC___word_freq_mail_00": [269, 270], "09___NUMERIC___word_freq_mail_01": [271, 272, 273, 274, 275, 276, 277, 278], "09___NUMERIC___word_freq_mail_02": [279], "09___NUMERIC___word_freq_mail_03": [280, 281, 282, 283, 284, 285, 286, 287, 288, 289], "09___NUMERIC___word_freq_mail_04": [290, 291, 292, 293, 294, 295, 296, 297, 298, 299], "10___NUMERIC___word_freq_receive_00": [300, 301, 302], "10___NUMERIC___word_freq_receive_01": [303], "10___NUMERIC___word_freq_receive_02": [304, 305, 306, 307, 308, 309, 310, 311, 312, 313], "10___NUMERIC___word_freq_receive_03": [314, 315, 316, 317, 318, 319, 320, 321, 322, 323], "11___NUMERIC___word_freq_will_00": [324, 325, 326, 327, 328, 329, 330, 331, 332], "11___NUMERIC___word_freq_will_01": [333], "11___NUMERIC___word_freq_will_02": [334, 335, 336, 337, 338, 339, 340, 341, 342, 343], "11___NUMERIC___word_freq_will_03": [344, 345, 346, 347, 348, 349, 350, 351, 352, 353], "12___NUMERIC___word_freq_people_00": [354, 355, 356, 357], "12___NUMERIC___word_freq_people_01": [358], "12___NUMERIC___word_freq_people_02": [359, 360, 361, 362, 363, 364, 365, 366, 367, 368], "12___NUMERIC___word_freq_people_03": [369, 370, 371, 372, 373, 374, 375, 376, 377, 378], "13___NUMERIC___word_freq_report_00": [379, 380], "13___NUMERIC___word_freq_report_01": [381, 382, 383, 384, 385, 386], "13___NUMERIC___word_freq_report_02": [387], "13___NUMERIC___word_freq_report_03": [388, 389, 390, 391, 392, 393, 394, 395, 396, 397], "13___NUMERIC___word_freq_report_04": [398, 399, 400, 401, 402, 403, 404, 405, 406, 407], "14___NUMERIC___word_freq_addresses_00": [408, 409, 410, 411], "14___NUMERIC___word_freq_addresses_01": [412], "14___NUMERIC___word_freq_addresses_02": [413, 414, 415, 416, 417, 418, 419, 420, 421, 422], "14___NUMERIC___word_freq_addresses_03": [423, 424, 425, 426, 427, 428, 429, 430, 431, 432], "15___NUMERIC___word_freq_free_00": [433, 434, 435], "15___NUMERIC___word_freq_free_01": [436, 437, 438, 439, 440, 441, 442, 443], "15___NUMERIC___word_freq_free_02": [444], "15___NUMERIC___word_freq_free_03": [445, 446, 447, 448, 449, 450, 451, 452, 453, 454], "15___NUMERIC___word_freq_free_04": [455, 456, 457, 458, 459, 460, 461, 462, 463, 464], "16___NUMERIC___word_freq_business_00": [465, 466, 467, 468, 469, 470], "16___NUMERIC___word_freq_business_01": [471], "16___NUMERIC___word_freq_business_02": [472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "16___NUMERIC___word_freq_business_03": [482, 483, 484, 485, 486, 487, 488, 489, 490, 491], "17___NUMERIC___word_freq_email_00": [492, 493, 494, 495, 496, 497, 498, 499, 500], "17___NUMERIC___word_freq_email_01": [501], "17___NUMERIC___word_freq_email_02": [502, 503, 504, 505, 506, 507, 508, 509, 510, 511], "17___NUMERIC___word_freq_email_03": [512, 513, 514, 515, 516, 517, 518, 519, 520, 521], "18___NUMERIC___word_freq_you_00": [522, 523], "18___NUMERIC___word_freq_you_01": [524, 525, 526, 527, 528, 529, 530, 531, 532, 533], "18___NUMERIC___word_freq_you_02": [534], "18___NUMERIC___word_freq_you_03": [535, 536, 537, 538, 539, 540, 541, 542, 543, 544], "18___NUMERIC___word_freq_you_04": [545, 546, 547, 548, 549, 550, 551, 552, 553, 554], "19___NUMERIC___word_freq_credit_00": [555, 556], "19___NUMERIC___word_freq_credit_01": [557, 558, 559, 560, 561, 562, 563, 564], "19___NUMERIC___word_freq_credit_02": [565], "19___NUMERIC___word_freq_credit_03": [566, 567, 568, 569, 570, 571, 572, 573, 574, 575], "19___NUMERIC___word_freq_credit_04": [576, 577, 578, 579, 580, 581, 582, 583, 584, 585], "20___NUMERIC___word_freq_your_00": [586, 587], "20___NUMERIC___word_freq_your_01": [588, 589, 590, 591, 592, 593, 594, 595, 596, 597], "20___NUMERIC___word_freq_your_02": [598], "20___NUMERIC___word_freq_your_03": [599, 600, 601, 602, 603, 604, 605, 606, 607, 608], "20___NUMERIC___word_freq_your_04": [609, 610, 611, 612, 613, 614, 615, 616, 617, 618], "21___NUMERIC___word_freq_font_00": [619, 620], "21___NUMERIC___word_freq_font_01": [621, 622, 623, 624, 625, 626, 627, 628, 629, 630], "21___NUMERIC___word_freq_font_02": [631], "21___NUMERIC___word_freq_font_03": [632, 633, 634, 635, 636, 637, 638, 639, 640, 641], "21___NUMERIC___word_freq_font_04": [642, 643, 644, 645, 646, 647, 648, 649, 650, 651], "22___NUMERIC___word_freq_000_00": [652, 653, 654, 655, 656, 657], "22___NUMERIC___word_freq_000_01": [658], "22___NUMERIC___word_freq_000_02": [659, 660, 661, 662, 663, 664, 665, 666, 667, 668], "22___NUMERIC___word_freq_000_03": [669, 670, 671, 672, 673, 674, 675, 676, 677, 678], "23___NUMERIC___word_freq_money_00": [679, 680], "23___NUMERIC___word_freq_money_01": [681, 682, 683, 684, 685, 686, 687, 688], "23___NUMERIC___word_freq_money_02": [689], "23___NUMERIC___word_freq_money_03": [690, 691, 692, 693, 694, 695, 696, 697, 698, 699], "23___NUMERIC___word_freq_money_04": [700, 701, 702, 703, 704, 705, 706, 707, 708, 709], "24___NUMERIC___word_freq_hp_00": [710, 711, 712], "24___NUMERIC___word_freq_hp_01": [713, 714, 715, 716, 717, 718, 719, 720, 721, 722], "24___NUMERIC___word_freq_hp_02": [723], "24___NUMERIC___word_freq_hp_03": [724, 725, 726, 727, 728, 729, 730, 731, 732, 733], "24___NUMERIC___word_freq_hp_04": [734, 735, 736, 737, 738, 739, 740, 741, 742, 743], "25___NUMERIC___word_freq_hpl_00": [744, 745], "25___NUMERIC___word_freq_hpl_01": [746, 747, 748, 749, 750, 751, 752, 753, 754, 755], "25___NUMERIC___word_freq_hpl_02": [756], "25___NUMERIC___word_freq_hpl_03": [757, 758, 759, 760, 761, 762, 763, 764, 765, 766], "25___NUMERIC___word_freq_hpl_04": [767, 768, 769, 770, 771, 772, 773, 774, 775, 776], "26___NUMERIC___word_freq_george_00": [777, 778, 779, 780], "26___NUMERIC___word_freq_george_01": [781, 782, 783, 784, 785, 786, 787, 788, 789, 790], "26___NUMERIC___word_freq_george_02": [791], "26___NUMERIC___word_freq_george_03": [792, 793, 794, 795, 796, 797, 798, 799, 800, 801], "26___NUMERIC___word_freq_george_04": [802, 803, 804, 805, 806, 807, 808, 809, 810, 811], "27___NUMERIC___word_freq_650_00": [812, 813, 814, 815, 816, 817, 818, 819], "27___NUMERIC___word_freq_650_01": [820], "27___NUMERIC___word_freq_650_02": [821, 822, 823, 824, 825, 826, 827, 828, 829, 830], "27___NUMERIC___word_freq_650_03": [831, 832, 833, 834, 835, 836, 837, 838, 839, 840], "28___NUMERIC___word_freq_lab_00": [841, 842], "28___NUMERIC___word_freq_lab_01": [843, 844, 845, 846, 847, 848, 849, 850, 851], "28___NUMERIC___word_freq_lab_02": [852], "28___NUMERIC___word_freq_lab_03": [853, 854, 855, 856, 857, 858, 859, 860, 861, 862], "28___NUMERIC___word_freq_lab_04": [863, 864, 865, 866, 867, 868, 869, 870, 871, 872], "29___NUMERIC___word_freq_labs_00": [873, 874, 875, 876, 877, 878], "29___NUMERIC___word_freq_labs_01": [879], "29___NUMERIC___word_freq_labs_02": [880, 881, 882, 883, 884, 885, 886, 887, 888, 889], "29___NUMERIC___word_freq_labs_03": [890, 891, 892, 893, 894, 895, 896, 897, 898, 899], "30___NUMERIC___word_freq_telnet_00": [900, 901], "30___NUMERIC___word_freq_telnet_01": [902, 903, 904, 905, 906], "30___NUMERIC___word_freq_telnet_02": [907], "30___NUMERIC___word_freq_telnet_03": [908, 909, 910, 911, 912, 913, 914, 915, 916, 917], "30___NUMERIC___word_freq_telnet_04": [918, 919, 920, 921, 922, 923, 924, 925, 926, 927], "31___NUMERIC___word_freq_857_00": [928, 929, 930, 931, 932], "31___NUMERIC___word_freq_857_01": [933], "31___NUMERIC___word_freq_857_02": [934, 935, 936, 937, 938, 939, 940, 941, 942, 943], "31___NUMERIC___word_freq_857_03": [944, 945, 946, 947, 948, 949, 950, 951, 952, 953], "32___NUMERIC___word_freq_data_00": [954, 955], "32___NUMERIC___word_freq_data_01": [956, 957, 958, 959, 960, 961, 962, 963, 964], "32___NUMERIC___word_freq_data_02": [965], "32___NUMERIC___word_freq_data_03": [966, 967, 968, 969, 970, 971, 972, 973, 974, 975], "32___NUMERIC___word_freq_data_04": [976, 977, 978, 979, 980, 981, 982, 983, 984, 985], "33___NUMERIC___word_freq_415_00": [986, 987, 988, 989, 990], "33___NUMERIC___word_freq_415_01": [991], "33___NUMERIC___word_freq_415_02": [992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001], "33___NUMERIC___word_freq_415_03": [1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011], "34___NUMERIC___word_freq_85_00": [1012, 1013], "34___NUMERIC___word_freq_85_01": [1014, 1015, 1016, 1017, 1018, 1019], "34___NUMERIC___word_freq_85_02": [1020], "34___NUMERIC___word_freq_85_03": [1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030], "34___NUMERIC___word_freq_85_04": [1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040], "35___NUMERIC___word_freq_technology_00": [1041, 1042, 1043, 1044, 1045, 1046], "35___NUMERIC___word_freq_technology_01": [1047], "35___NUMERIC___word_freq_technology_02": [1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057], "35___NUMERIC___word_freq_technology_03": [1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067], "36___NUMERIC___word_freq_1999_00": [1068, 1069, 1070, 1071, 1072, 1073, 1074], "36___NUMERIC___word_freq_1999_01": [1075], "36___NUMERIC___word_freq_1999_02": [1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085], "36___NUMERIC___word_freq_1999_03": [1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095], "37___CATEGORICAL___word_freq_parts": [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], "38___NUMERIC___word_freq_pm_00": [1144, 1145], "38___NUMERIC___word_freq_pm_01": [1146, 1147, 1148, 1149, 1150, 1151, 1152], "38___NUMERIC___word_freq_pm_02": [1153], "38___NUMERIC___word_freq_pm_03": [1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163], "38___NUMERIC___word_freq_pm_04": [1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173], "39___NUMERIC___word_freq_direct_00": [1174, 1175, 1176, 1177, 1178], "39___NUMERIC___word_freq_direct_01": [1179], "39___NUMERIC___word_freq_direct_02": [1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189], "39___NUMERIC___word_freq_direct_03": [1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199], "40___NUMERIC___word_freq_cs_00": [1200, 1201, 1202, 1203, 1204, 1205, 1206], "40___NUMERIC___word_freq_cs_01": [1207], "40___NUMERIC___word_freq_cs_02": [1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217], "40___NUMERIC___word_freq_cs_03": [1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227], "41___NUMERIC___word_freq_meeting_00": [1228, 1229], "41___NUMERIC___word_freq_meeting_01": [1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239], "41___NUMERIC___word_freq_meeting_02": [1240], "41___NUMERIC___word_freq_meeting_03": [1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250], "41___NUMERIC___word_freq_meeting_04": [1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260], "42___NUMERIC___word_freq_original_00": [1261, 1262, 1263, 1264], "42___NUMERIC___word_freq_original_01": [1265], "42___NUMERIC___word_freq_original_02": [1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275], "42___NUMERIC___word_freq_original_03": [1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285], "43___NUMERIC___word_freq_project_00": [1286, 1287, 1288], "43___NUMERIC___word_freq_project_01": [1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296], "43___NUMERIC___word_freq_project_02": [1297], "43___NUMERIC___word_freq_project_03": [1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307], "43___NUMERIC___word_freq_project_04": [1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317], "44___NUMERIC___word_freq_re_00": [1318, 1319, 1320], "44___NUMERIC___word_freq_re_01": [1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330], "44___NUMERIC___word_freq_re_02": [1331], "44___NUMERIC___word_freq_re_03": [1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341], "44___NUMERIC___word_freq_re_04": [1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351], "45___NUMERIC___word_freq_edu_00": [1352, 1353, 1354], "45___NUMERIC___word_freq_edu_01": [1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364], "45___NUMERIC___word_freq_edu_02": [1365], "45___NUMERIC___word_freq_edu_03": [1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375], "45___NUMERIC___word_freq_edu_04": [1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385], "46___CATEGORICAL___word_freq_table": [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], "47___NUMERIC___word_freq_conference_00": [1417, 1418], "47___NUMERIC___word_freq_conference_01": [1419, 1420, 1421, 1422, 1423, 1424, 1425], "47___NUMERIC___word_freq_conference_02": [1426], "47___NUMERIC___word_freq_conference_03": [1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436], "47___NUMERIC___word_freq_conference_04": [1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446], "48___NUMERIC___char_freq_%3B_00": [1447, 1448, 1449, 1450], "48___NUMERIC___char_freq_%3B_01": [1451], "48___NUMERIC___char_freq_%3B_02": [1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461], "48___NUMERIC___char_freq_%3B_03": [1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471], "48___NUMERIC___char_freq_%3B_04": [1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481], "49___NUMERIC___char_freq_%28_00": [1482, 1483, 1484, 1485, 1486, 1487], "49___NUMERIC___char_freq_%28_01": [1488], "49___NUMERIC___char_freq_%28_02": [1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498], "49___NUMERIC___char_freq_%28_03": [1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508], "49___NUMERIC___char_freq_%28_04": [1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518], "50___NUMERIC___char_freq_%5B_00": [1519, 1520, 1521], "50___NUMERIC___char_freq_%5B_01": [1522], "50___NUMERIC___char_freq_%5B_02": [1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531], "50___NUMERIC___char_freq_%5B_03": [1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541], "50___NUMERIC___char_freq_%5B_04": [1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551], "51___NUMERIC___char_freq_%21_00": [1552, 1553, 1554], "51___NUMERIC___char_freq_%21_01": [1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564], "51___NUMERIC___char_freq_%21_02": [1565], "51___NUMERIC___char_freq_%21_03": [1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575], "51___NUMERIC___char_freq_%21_04": [1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585], "51___NUMERIC___char_freq_%21_05": [1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595], "52___NUMERIC___char_freq_%24_00": [1596, 1597, 1598, 1599, 1600, 1601], "52___NUMERIC___char_freq_%24_01": [1602], "52___NUMERIC___char_freq_%24_02": [1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612], "52___NUMERIC___char_freq_%24_03": [1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622], "52___NUMERIC___char_freq_%24_04": [1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632], "53___NUMERIC___char_freq_%23_00": [1633, 1634], "53___NUMERIC___char_freq_%23_01": [1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642], "53___NUMERIC___char_freq_%23_02": [1643], "53___NUMERIC___char_freq_%23_03": [1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653], "53___NUMERIC___char_freq_%23_04": [1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663], "53___NUMERIC___char_freq_%23_05": [1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673], "54___NUMERIC___capital_run_length_average_00": [1674, 1675], "54___NUMERIC___capital_run_length_average_01": [1676, 1677, 1678, 1679, 1680], "54___NUMERIC___capital_run_length_average_02": [1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690], "54___NUMERIC___capital_run_length_average_03": [1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700], "54___NUMERIC___capital_run_length_average_04": [1701], "54___NUMERIC___capital_run_length_average_05": [1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711], "54___NUMERIC___capital_run_length_average_06": [1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721], "54___NUMERIC___capital_run_length_average_07": [1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731], "55___NUMERIC___capital_run_length_longest_00": [1732, 1733, 1734, 1735], "55___NUMERIC___capital_run_length_longest_01": [1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745], "55___NUMERIC___capital_run_length_longest_02": [1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755], "55___NUMERIC___capital_run_length_longest_03": [1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765], "56___NUMERIC___capital_run_length_total_00": [1766, 1767], "56___NUMERIC___capital_run_length_total_01": [1768, 1769, 1770, 1771, 1772, 1773, 1774], "56___NUMERIC___capital_run_length_total_02": [1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784], "56___NUMERIC___capital_run_length_total_03": [1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794], "56___NUMERIC___capital_run_length_total_04": [1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804], "57___CATEGORICAL___class": [1805, 1806]}}, "tabular_max_length": 259, "relational_max_length": null, "tabular_col_size": 3680, "relational_col_size": null, "col_transform_data": {"word_freq_make": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_address": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_all": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_our": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_over": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_remove": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_internet": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_order": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_mail": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_receive": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_will": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_people": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_report": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_addresses": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_free": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_business": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_email": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_you": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_credit": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_your": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_font": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_000": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_money": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_hp": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_hpl": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_george": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_650": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_lab": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_labs": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_telnet": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_857": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_data": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_415": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_85": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_technology": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_1999": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_pm": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_direct": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_cs": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_meeting": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_original": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "word_freq_project": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_re": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_edu": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "word_freq_conference": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "char_freq_%3B": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "char_freq_%28": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "char_freq_%5B": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "char_freq_%21": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "char_freq_%24": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "char_freq_%23": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "capital_run_length_average": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 8, "numeric_nparts": 1}, "capital_run_length_longest": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "capital_run_length_total": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 5, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15], "1": [16], "2": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "3": [27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "4": [37, 38], "5": [39, 40, 41, 42, 43, 44, 45], "6": [46], "7": [47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "8": [57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "9": [67, 68, 69, 70, 71], "10": [72], "11": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "12": [83, 84, 85, 86, 87, 88, 89, 90, 91, 92], "13": [93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "14": [127, 128], "15": [129, 130, 131, 132, 133, 134, 135, 136, 137, 138], "16": [139], "17": [140, 141, 142, 143, 144, 145, 146, 147, 148, 149], "18": [150, 151, 152, 153, 154, 155, 156, 157, 158, 159], "19": [160, 161, 162, 163, 164], "20": [165], "21": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "22": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "23": [186, 187, 188, 189, 190, 191, 192], "24": [193], "25": [194, 195, 196, 197, 198, 199, 200, 201, 202, 203], "26": [204, 205, 206, 207, 208, 209, 210, 211, 212, 213], "27": [214, 215], "28": [216, 217, 218, 219, 220, 221, 222], "29": [223], "30": [224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "31": [234, 235, 236, 237, 238, 239, 240, 241, 242, 243], "32": [244, 245, 246, 247], "33": [248], "34": [249, 250, 251, 252, 253, 254, 255, 256, 257, 258], "35": [259, 260, 261, 262, 263, 264, 265, 266, 267, 268], "36": [269, 270], "37": [271, 272, 273, 274, 275, 276, 277, 278], "38": [279], "39": [280, 281, 282, 283, 284, 285, 286, 287, 288, 289], "40": [290, 291, 292, 293, 294, 295, 296, 297, 298, 299], "41": [300, 301, 302], "42": [303], "43": [304, 305, 306, 307, 308, 309, 310, 311, 312, 313], "44": [314, 315, 316, 317, 318, 319, 320, 321, 322, 323], "45": [324, 325, 326, 327, 328, 329, 330, 331, 332], "46": [333], "47": [334, 335, 336, 337, 338, 339, 340, 341, 342, 343], "48": [344, 345, 346, 347, 348, 349, 350, 351, 352, 353], "49": [354, 355, 356, 357], "50": [358], "51": [359, 360, 361, 362, 363, 364, 365, 366, 367, 368], "52": [369, 370, 371, 372, 373, 374, 375, 376, 377, 378], "53": [379, 380], "54": [381, 382, 383, 384, 385, 386], "55": [387], "56": [388, 389, 390, 391, 392, 393, 394, 395, 396, 397], "57": [398, 399, 400, 401, 402, 403, 404, 405, 406, 407], "58": [408, 409, 410, 411], "59": [412], "60": [413, 414, 415, 416, 417, 418, 419, 420, 421, 422], "61": [423, 424, 425, 426, 427, 428, 429, 430, 431, 432], "62": [433, 434, 435], "63": [436, 437, 438, 439, 440, 441, 442, 443], "64": [444], "65": [445, 446, 447, 448, 449, 450, 451, 452, 453, 454], "66": [455, 456, 457, 458, 459, 460, 461, 462, 463, 464], "67": [465, 466, 467, 468, 469, 470], "68": [471], "69": [472, 473, 474, 475, 476, 477, 478, 479, 480, 481], "70": [482, 483, 484, 485, 486, 487, 488, 489, 490, 491], "71": [492, 493, 494, 495, 496, 497, 498, 499, 500], "72": [501], "73": [502, 503, 504, 505, 506, 507, 508, 509, 510, 511], "74": [512, 513, 514, 515, 516, 517, 518, 519, 520, 521], "75": [522, 523], "76": [524, 525, 526, 527, 528, 529, 530, 531, 532, 533], "77": [534], "78": [535, 536, 537, 538, 539, 540, 541, 542, 543, 544], "79": [545, 546, 547, 548, 549, 550, 551, 552, 553, 554], "80": [555, 556], "81": [557, 558, 559, 560, 561, 562, 563, 564], "82": [565], "83": [566, 567, 568, 569, 570, 571, 572, 573, 574, 575], "84": [576, 577, 578, 579, 580, 581, 582, 583, 584, 585], "85": [586, 587], "86": [588, 589, 590, 591, 592, 593, 594, 595, 596, 597], "87": [598], "88": [599, 600, 601, 602, 603, 604, 605, 606, 607, 608], "89": [609, 610, 611, 612, 613, 614, 615, 616, 617, 618], "90": [619, 620], "91": [621, 622, 623, 624, 625, 626, 627, 628, 629, 630], "92": [631], "93": [632, 633, 634, 635, 636, 637, 638, 639, 640, 641], "94": [642, 643, 644, 645, 646, 647, 648, 649, 650, 651], "95": [652, 653, 654, 655, 656, 657], "96": [658], "97": [659, 660, 661, 662, 663, 664, 665, 666, 667, 668], "98": [669, 670, 671, 672, 673, 674, 675, 676, 677, 678], "99": [679, 680], "100": [681, 682, 683, 684, 685, 686, 687, 688], "101": [689], "102": [690, 691, 692, 693, 694, 695, 696, 697, 698, 699], "103": [700, 701, 702, 703, 704, 705, 706, 707, 708, 709], "104": [710, 711, 712], "105": [713, 714, 715, 716, 717, 718, 719, 720, 721, 722], "106": [723], "107": [724, 725, 726, 727, 728, 729, 730, 731, 732, 733], "108": [734, 735, 736, 737, 738, 739, 740, 741, 742, 743], "109": [744, 745], "110": [746, 747, 748, 749, 750, 751, 752, 753, 754, 755], "111": [756], "112": [757, 758, 759, 760, 761, 762, 763, 764, 765, 766], "113": [767, 768, 769, 770, 771, 772, 773, 774, 775, 776], "114": [777, 778, 779, 780], "115": [781, 782, 783, 784, 785, 786, 787, 788, 789, 790], "116": [791], "117": [792, 793, 794, 795, 796, 797, 798, 799, 800, 801], "118": [802, 803, 804, 805, 806, 807, 808, 809, 810, 811], "119": [812, 813, 814, 815, 816, 817, 818, 819], "120": [820], "121": [821, 822, 823, 824, 825, 826, 827, 828, 829, 830], "122": [831, 832, 833, 834, 835, 836, 837, 838, 839, 840], "123": [841, 842], "124": [843, 844, 845, 846, 847, 848, 849, 850, 851], "125": [852], "126": [853, 854, 855, 856, 857, 858, 859, 860, 861, 862], "127": [863, 864, 865, 866, 867, 868, 869, 870, 871, 872], "128": [873, 874, 875, 876, 877, 878], "129": [879], "130": [880, 881, 882, 883, 884, 885, 886, 887, 888, 889], "131": [890, 891, 892, 893, 894, 895, 896, 897, 898, 899], "132": [900, 901], "133": [902, 903, 904, 905, 906], "134": [907], "135": [908, 909, 910, 911, 912, 913, 914, 915, 916, 917], "136": [918, 919, 920, 921, 922, 923, 924, 925, 926, 927], "137": [928, 929, 930, 931, 932], "138": [933], "139": [934, 935, 936, 937, 938, 939, 940, 941, 942, 943], "140": [944, 945, 946, 947, 948, 949, 950, 951, 952, 953], "141": [954, 955], "142": [956, 957, 958, 959, 960, 961, 962, 963, 964], "143": [965], "144": [966, 967, 968, 969, 970, 971, 972, 973, 974, 975], "145": [976, 977, 978, 979, 980, 981, 982, 983, 984, 985], "146": [986, 987, 988, 989, 990], "147": [991], "148": [992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001], "149": [1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011], "150": [1012, 1013], "151": [1014, 1015, 1016, 1017, 1018, 1019], "152": [1020], "153": [1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030], "154": [1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040], "155": [1041, 1042, 1043, 1044, 1045, 1046], "156": [1047], "157": [1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057], "158": [1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067], "159": [1068, 1069, 1070, 1071, 1072, 1073, 1074], "160": [1075], "161": [1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085], "162": [1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095], "163": [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], "164": [1144, 1145], "165": [1146, 1147, 1148, 1149, 1150, 1151, 1152], "166": [1153], "167": [1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163], "168": [1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173], "169": [1174, 1175, 1176, 1177, 1178], "170": [1179], "171": [1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189], "172": [1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199], "173": [1200, 1201, 1202, 1203, 1204, 1205, 1206], "174": [1207], "175": [1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217], "176": [1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227], "177": [1228, 1229], "178": [1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239], "179": [1240], "180": [1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250], "181": [1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260], "182": [1261, 1262, 1263, 1264], "183": [1265], "184": [1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275], "185": [1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285], "186": [1286, 1287, 1288], "187": [1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296], "188": [1297], "189": [1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307], "190": [1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317], "191": [1318, 1319, 1320], "192": [1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330], "193": [1331], "194": [1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341], "195": [1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351], "196": [1352, 1353, 1354], "197": [1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364], "198": [1365], "199": [1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375], "200": [1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385], "201": [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], "202": [1417, 1418], "203": [1419, 1420, 1421, 1422, 1423, 1424, 1425], "204": [1426], "205": [1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436], "206": [1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446], "207": [1447, 1448, 1449, 1450], "208": [1451], "209": [1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461], "210": [1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471], "211": [1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481], "212": [1482, 1483, 1484, 1485, 1486, 1487], "213": [1488], "214": [1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498], "215": [1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508], "216": [1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518], "217": [1519, 1520, 1521], "218": [1522], "219": [1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531], "220": [1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541], "221": [1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551], "222": [1552, 1553, 1554], "223": [1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564], "224": [1565], "225": [1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575], "226": [1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585], "227": [1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595], "228": [1596, 1597, 1598, 1599, 1600, 1601], "229": [1602], "230": [1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612], "231": [1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622], "232": [1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632], "233": [1633, 1634], "234": [1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642], "235": [1643], "236": [1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653], "237": [1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663], "238": [1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673], "239": [1674, 1675], "240": [1676, 1677, 1678, 1679, 1680], "241": [1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690], "242": [1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700], "243": [1701], "244": [1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711], "245": [1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721], "246": [1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731], "247": [1732, 1733, 1734, 1735], "248": [1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745], "249": [1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755], "250": [1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765], "251": [1766, 1767], "252": [1768, 1769, 1770, 1771, 1772, 1773, 1774], "253": [1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784], "254": [1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794], "255": [1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804], "256": [1805, 1806]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017760313747005569024", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/models_1epochs/id000017760313747005569024/rtf_model.pt b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/models_1epochs/id000017760313747005569024/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..9bf7cf6ef617edf871c9408f91e78e3f4936fc2f --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/models_1epochs/id000017760313747005569024/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4c75fa319123906853dcdb62177ad2153d0234e227b2c990593bb7b52902a9 +size 178841059 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea0990f267498755e921b225d08fb0704a147d4 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,1222 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/public_gate_report.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..76005f0c0dbdfe7ac411d1fdc1e546fbaa201fc6 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n1", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/staged_input_manifest.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d25dd6b73a8d68ce932cc955a311788f33c491aa --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/public_gate/staged_input_manifest.json @@ -0,0 +1,1227 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/realtabformer_features.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/realtabformer_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf-n1-3680-20260418_140052.csv b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf-n1-3680-20260418_140052.csv new file mode 100644 index 0000000000000000000000000000000000000000..4cae2926acd94176cd2a64ba42bb9e5fde3b2276 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf-n1-3680-20260418_140052.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2918dab2399da5481c2fa6a6c78d224db4fa9b707b20a8e0115ee6340575664 +size 839023 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/config.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..6f131fe55269de4dc3028a6fc0aa389bbc89adcb --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 1807 +} diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/generation_config.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/model.safetensors b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..80abc7318d1213ca88a0feb60fd420679d272161 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f33ad1a4ed64572f17bd2fc4b0cc665b65187a2a0cac7ba0736b306ae5d66d1 +size 178819528 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/optimizer.pt b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..317da52bb3e45ad2c971a6ff991e46f59d6dc59b --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad705291706abe71dec9ef318db4d350d3b543cd2d911b1022567706b0f5e0c +size 357688139 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/rng_state.pth b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1326973fedbab16254b4a7ab322dd24ad76b0c74 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f964106270952ff3eba53c0073fa33074b720b51d99a16c314f5497d83de307c +size 14645 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/scaler.pt b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..215c5d2069bd81cb35727ebca07a510ac59c9d94 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4393a84a3109995aa1202073b039b12062e3189ed89aa0b94ef0510ba843009 +size 1383 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/scheduler.pt b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..23207c77c19cfdb23c43b0d4702b0827ddefd8e0 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1dcdb0509343b664fdbbf348812921089352de78aba8a2ee4fa51189ddd2cec +size 1465 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/trainer_state.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..2e29de126c6e81370409f90e4eca81733e53a05a --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/trainer_state.json @@ -0,0 +1,41 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 0.8695652173913043, + "eval_steps": 100, + "global_step": 100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8695652173913043, + "grad_norm": 0.11279627680778503, + "learning_rate": 6.956521739130435e-06, + "loss": 1.9097673034667968, + "step": 100 + } + ], + "logging_steps": 100, + "max_steps": 115, + "num_input_tokens_seen": 0, + "num_train_epochs": 1, + "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": 211487057510400.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/training_args.bin b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0195816015d5c21c3e09d77986e2d617af0323f1 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fda081612ef1a909ba2a08c902c66cb892a207a78b9b08772b827d33f514d67 +size 5201 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/config.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/config.json new file mode 100644 index 0000000000000000000000000000000000000000..6f131fe55269de4dc3028a6fc0aa389bbc89adcb --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 1807 +} diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/generation_config.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/model.safetensors b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..15ebc688e7e784bab0df360ebf30c78d73639678 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0b6c661080d9c2e04325409712e28291a1776f5e119deb25913c3ae1bef49d +size 178819528 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/optimizer.pt b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..95c0276e40c45dd2ef4c8ab8308755ca58e79217 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a3430991ff99a210659f302ca7314afe3320344832ce6e8021cb65449cbf27 +size 357688139 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/rng_state.pth b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..6cecf659b9b00586014e21f5ecab9a2b8c2e888f --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327fbb4972f001532b9070907d885683834ebb7c0db90d3dcb5058717252daa6 +size 14645 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/scaler.pt b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9a69a9115b51e6419cf5b15d4db4661a320979fb --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2e48eb20b0d39173b2b273c993db4cc8b539a688041d98bb22226b9fc4a39f +size 1383 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/scheduler.pt b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9998d1b5bbf863d42773f9027affe124125689d7 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3bacb3acfedad2714006b62a0c9104af818319b7afe9b34f7a2eda7f8c59d4 +size 1465 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/trainer_state.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..33eecda5a70e46d3fa2520b2f968db7823532e01 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/trainer_state.json @@ -0,0 +1,41 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 1.0, + "eval_steps": 100, + "global_step": 115, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8695652173913043, + "grad_norm": 0.11279627680778503, + "learning_rate": 6.956521739130435e-06, + "loss": 1.9097673034667968, + "step": 100 + } + ], + "logging_steps": 100, + "max_steps": 115, + "num_input_tokens_seen": 0, + "num_train_epochs": 1, + "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": 243210116136960.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/training_args.bin b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0195816015d5c21c3e09d77986e2d617af0323f1 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/rtf_checkpoints/checkpoint-115/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fda081612ef1a909ba2a08c902c66cb892a207a78b9b08772b827d33f514d67 +size 5201 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/runtime_result.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f2900ee30d53a40bb774d3c65ea9bf7f050e34c3 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n1", + "model": "realtabformer", + "run_id": "rtf-n1-20260413_060137", + "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/n1/realtabformer/rtf-n1-20260413_060137/rtf-n1-3680-20260418_140052.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/staged_features.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/staged_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/test.csv b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..628770353833f1dc63d727f5bbc3c5bf7d8180e7 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03 +size 111841 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/train.csv b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dabe62a5dca077c9f19f338b30e0ea316947620d --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23 +size 885832 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/val.csv b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d03fc614be3e0e5f3e8e96f7c7f84a14889d16ec --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c +size 111513 diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/adapter_report.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ef54c053dda6b8c098c7736f87aff5fb5399cc1d --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/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/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/adapter_transforms_applied.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/model_input_manifest.json b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..768b896ff48e6b61e13d26414263742ad89cbda6 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,1229 @@ +{ + "dataset_id": "n1", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/realtabformer/rtf-n1-20260413_060137/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/train_20260413_060138.log b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/train_20260413_060138.log new file mode 100644 index 0000000000000000000000000000000000000000..cdf09e2cb434a1d4cc00ae3d42ff5b8fbaec2f37 --- /dev/null +++ b/syntheticSuccess/n1/realtabformer/rtf-n1-20260413_060137/train_20260413_060138.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f9409f944995f889f6fd857651355aec3f48c4b27e993cad77b01eebb6fa66 +size 23747 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/_tabddpm_sample.py b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/_tabddpm_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..c2cd2aac67ffc33ccf2a00adde62a0c8269cdf3f --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/_tabddpm_sample.py @@ -0,0 +1,67 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3680 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/config_sample_20260424_034040.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV +work_dir = "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725" +info_path = os.path.join(work_dir, "data", "info.json") +with open(info_path) as f: + info = json.load(f) + +output_dir = os.path.join(work_dir, "output") +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/tabddpm-n1-3680-20260424_034040.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/tabddpm-n1-3680-20260424_034040.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/_tabddpm_train.py b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a556af0e39409e05101083466777998c58776660 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/config.toml b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..219790b84251a8d0952e1698c4eef3034b53ecfc --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 54 +device = "cuda:0" + +[model_params] +d_in = 57 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/config_sample_20260424_034040.toml b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/config_sample_20260424_034040.toml new file mode 100644 index 0000000000000000000000000000000000000000..75726adae15119890f24ff3bdfc344c2c7681d80 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/config_sample_20260424_034040.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 54 +device = "cuda:0" + +[model_params] +d_in = 57 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3680 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/X_cat_train.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..f2fcae0340daa12501ab993b46b5430df3c2ff04 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0f734917851f75b2ed951170ec72ea321a8d9fd217091fcbc73d697bc61be6 +size 88448 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/X_num_train.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..a0e9a1061e0555faff376db4fbd6b3d06e155197 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed20a11b4ae7a50b2b71098612f94fc07e1682a2a9484b330757848870dd5ed +size 795008 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/info.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..82b950a489d9d2635967b6fc67eac35e41e5013f --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/info.json @@ -0,0 +1,132 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 54, + "n_cat_features": 3, + "train_size": 3680, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ], + "cat_col_idx": [ + 54, + 55, + 56 + ], + "target_col_idx": [ + 57 + ], + "column_names": [ + "word_freq_make", + "word_freq_address", + "word_freq_all", + "word_freq_our", + "word_freq_over", + "word_freq_remove", + "word_freq_internet", + "word_freq_order", + "word_freq_mail", + "word_freq_receive", + "word_freq_will", + "word_freq_people", + "word_freq_report", + "word_freq_addresses", + "word_freq_free", + "word_freq_business", + "word_freq_email", + "word_freq_you", + "word_freq_credit", + "word_freq_your", + "word_freq_font", + "word_freq_000", + "word_freq_money", + "word_freq_hp", + "word_freq_hpl", + "word_freq_george", + "word_freq_650", + "word_freq_lab", + "word_freq_labs", + "word_freq_telnet", + "word_freq_857", + "word_freq_data", + "word_freq_415", + "word_freq_85", + "word_freq_technology", + "word_freq_1999", + "word_freq_pm", + "word_freq_direct", + "word_freq_cs", + "word_freq_meeting", + "word_freq_original", + "word_freq_project", + "word_freq_re", + "word_freq_edu", + "word_freq_conference", + "char_freq_%3B", + "char_freq_%28", + "char_freq_%5B", + "char_freq_%21", + "char_freq_%24", + "char_freq_%23", + "capital_run_length_average", + "capital_run_length_longest", + "capital_run_length_total", + "word_freq_3d", + "word_freq_parts", + "word_freq_table", + "class" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/y_train.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f9c77303339ffe29118b71018c2df51a3419653 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95fccfea951830a81be642ed8a6b7b609467a19b70ceeca6a4c362957b7924a6 +size 29568 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/gen_20260424_034040.log b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/gen_20260424_034040.log new file mode 100644 index 0000000000000000000000000000000000000000..5b717a4a8d31b9dc2040c46c3ff9e1f244b510cb --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/gen_20260424_034040.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3990f4932d2baef53735c2b0f771b2e33d3ff44be7ff62a6623fe7c1e6d6efac +size 84230 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/input_snapshot.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0354de0fd63669cd6a6879ed8a45367d8b5f1e98 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n1", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "exists": true, + "size": 563021, + "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "exists": true, + "size": 71100, + "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv", + "exists": true, + "size": 71605, + "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json", + "exists": true, + "size": 21967, + "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json", + "exists": true, + "size": 27866, + "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_cat_train.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..62073647a063313d6cbe7e60f27df2581df7a255 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae175fc5b69d11bd7f20d142f9750040361a7dd296ae669a1910c9196108d1ec +size 22387 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_cat_unnorm.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..d96b27a780e08b4abc6903c13ba014d8f59dca97 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade7a73f15efc25964e43eb447675cf1f16cbf266a36c9fdae039cb4f72c75bb +size 88448 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_num_train.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1fceb35a2fbb83fb935e96cae6fd2cc024275b0 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0637a460d6624afde5b24c5fd42eee22cfe3d835d064b3c9f158776a7bf96367 +size 1589888 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_num_unnorm.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..bbc32920cd063d072338695285d69ba4975a065e --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26228e1486af78b87a020dbd7981ce7696202de2e786133cd9b5920177d0edae +size 1589888 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/config.toml b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..75726adae15119890f24ff3bdfc344c2c7681d80 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 54 +device = "cuda:0" + +[model_params] +d_in = 57 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3680 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/info.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..82b950a489d9d2635967b6fc67eac35e41e5013f --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/info.json @@ -0,0 +1,132 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 54, + "n_cat_features": 3, + "train_size": 3680, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ], + "cat_col_idx": [ + 54, + 55, + 56 + ], + "target_col_idx": [ + 57 + ], + "column_names": [ + "word_freq_make", + "word_freq_address", + "word_freq_all", + "word_freq_our", + "word_freq_over", + "word_freq_remove", + "word_freq_internet", + "word_freq_order", + "word_freq_mail", + "word_freq_receive", + "word_freq_will", + "word_freq_people", + "word_freq_report", + "word_freq_addresses", + "word_freq_free", + "word_freq_business", + "word_freq_email", + "word_freq_you", + "word_freq_credit", + "word_freq_your", + "word_freq_font", + "word_freq_000", + "word_freq_money", + "word_freq_hp", + "word_freq_hpl", + "word_freq_george", + "word_freq_650", + "word_freq_lab", + "word_freq_labs", + "word_freq_telnet", + "word_freq_857", + "word_freq_data", + "word_freq_415", + "word_freq_85", + "word_freq_technology", + "word_freq_1999", + "word_freq_pm", + "word_freq_direct", + "word_freq_cs", + "word_freq_meeting", + "word_freq_original", + "word_freq_project", + "word_freq_re", + "word_freq_edu", + "word_freq_conference", + "char_freq_%3B", + "char_freq_%28", + "char_freq_%5B", + "char_freq_%21", + "char_freq_%24", + "char_freq_%23", + "capital_run_length_average", + "capital_run_length_longest", + "capital_run_length_total", + "word_freq_3d", + "word_freq_parts", + "word_freq_table", + "class" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/loss.csv b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..d872d6046faa701d497f7b0a0c466d39d8631509 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a863d22c22d3170a7ea81ab5d61dd030d12fde689b91d780d8c223e75fbdbe6f +size 1459 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/model.pt b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..aa97ee37f47daf32ad9854cd6fadf91958c4483a --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301d511b95cf51f4a5c1d6ee9e608e4f5f92f98d44483eb2217013d8984c887e +size 790742 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/model_ema.pt b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..f204e4dbc87e372d33f33ffff9eee674ae9f5c78 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8923b001c8fb842434fd98217380d511a14488f3fba12d4169185a5cd2cce909 +size 791586 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/y_train.npy b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..3f7906140fc163357e49f9b3a869de8afbb6c0e6 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9871e78473a6246eb5c90cde96352bbba16bdeebcee23c40f43d338d487dec5e +size 29568 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea0990f267498755e921b225d08fb0704a147d4 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,1222 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/public_gate_report.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..76005f0c0dbdfe7ac411d1fdc1e546fbaa201fc6 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n1", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/staged_input_manifest.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..00927ecc706b189e3fdd1eddd7bb6bf4215461f3 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/staged_input_manifest.json @@ -0,0 +1,1227 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/runtime_result.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4b5869a671225d8dbbe27a7b878df9dd62ae7fad --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n1", + "model": "tabddpm", + "run_id": "tabddpm-n1-20260424_033725", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/tabddpm-n1-3680-20260424_034040.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/staged_features.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/staged_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/test.csv b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..628770353833f1dc63d727f5bbc3c5bf7d8180e7 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03 +size 111841 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/train.csv b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dabe62a5dca077c9f19f338b30e0ea316947620d --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23 +size 885832 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/val.csv b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d03fc614be3e0e5f3e8e96f7c7f84a14889d16ec --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c +size 111513 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/adapter_report.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7baa9f2513a86cf02ff08102b2874addeae54da8 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/adapter_transforms_applied.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/model_input_manifest.json b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3890ab80827ae515a3138668702772a1c3281716 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,1229 @@ +{ + "dataset_id": "n1", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tabddpm/tabddpm-n1-20260424_033725/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/tabddpm-n1-3680-20260424_034040.csv b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/tabddpm-n1-3680-20260424_034040.csv new file mode 100644 index 0000000000000000000000000000000000000000..f776c18877e86442ba3e3f2cb1baa0f4bcb89128 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/tabddpm-n1-3680-20260424_034040.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5d467fe08474b48953cf4efce149be7f02618aac944d75fe163e20c7c1e566 +size 1956901 diff --git a/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/train_20260424_033725.log b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/train_20260424_033725.log new file mode 100644 index 0000000000000000000000000000000000000000..d15987ba39357935fdcb525fc5cf534cca011638 --- /dev/null +++ b/syntheticSuccess/n1/tabddpm/tabddpm-n1-20260424_033725/train_20260424_033725.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00da33bf41736c2603f506d7cf75e0f4076125b0a9b40482fb7482e4792d2ad9 +size 831 diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/_tabpfgen_generate.py b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..7e578c61fe757e08d47a70a52d26227f2fbcb3cc --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/_tabpfgen_generate.py @@ -0,0 +1,68 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/train.csv") +target_col = "class" + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating 3680 rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=3680) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +syn_df = syn_df[list(df.columns)] +syn_df.to_csv("/work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/tabpfgen-n1-3680-20260422_070321.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/tabpfgen-n1-3680-20260422_070321.csv") diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/gen_20260422_070321.log b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/gen_20260422_070321.log new file mode 100644 index 0000000000000000000000000000000000000000..4ee92e8aea325ccbe83cd3e313f2a08bc5aeb8b6 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/gen_20260422_070321.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e06df6dce87e23c10449af6c481f279fcb4e5e414386c81c0bf247295100f9bc +size 478 diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/input_snapshot.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..38942c7fceb29ed84ae30ae10ec78d7b777057ae --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n1", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "exists": true, + "size": 563021, + "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "exists": true, + "size": 71100, + "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv", + "exists": true, + "size": 71605, + "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json", + "exists": true, + "size": 21967, + "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json", + "exists": true, + "size": 27866, + "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea0990f267498755e921b225d08fb0704a147d4 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,1222 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/public_gate_report.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..76005f0c0dbdfe7ac411d1fdc1e546fbaa201fc6 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n1", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/staged_input_manifest.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80df88c47047a1c0ba4fff2cd2615c58247a8194 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/public_gate/staged_input_manifest.json @@ -0,0 +1,1227 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/runner.log b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/runner.log new file mode 100644 index 0000000000000000000000000000000000000000..58d4980d497c614b3afa52404f4be8a3396a2db8 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/runner.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204a77818b6eaf11d9db54eef97e34271343773223e5e6e180dea29041b0ce42 +size 1303 diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/runtime_result.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c312124d4dc531d99a6455a110d75c71f5d079f6 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n1", + "model": "tabpfgen", + "run_id": "n1-migrated-20260422_183752", + "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/n1/tabpfgen/n1-migrated-20260422_183752/tabpfgen-n1-3680-20260422_070321.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/staged_features.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/staged_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/test.csv b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..628770353833f1dc63d727f5bbc3c5bf7d8180e7 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03 +size 111841 diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/train.csv b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dabe62a5dca077c9f19f338b30e0ea316947620d --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23 +size 885832 diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/val.csv b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d03fc614be3e0e5f3e8e96f7c7f84a14889d16ec --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c +size 111513 diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/adapter_report.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..56c64852e07f1cd8ef62194be5c70a17c0e42b79 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/adapter_transforms_applied.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/model_input_manifest.json b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fa831bb92bb82a9b1b0f4e6335116ebcf6b48828 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,1229 @@ +{ + "dataset_id": "n1", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n1/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/tabpfgen-n1-3680-20260422_070321.csv b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/tabpfgen-n1-3680-20260422_070321.csv new file mode 100644 index 0000000000000000000000000000000000000000..4174a27d3e33faac6ac5a31cb25c5d374d0bddf4 --- /dev/null +++ b/syntheticSuccess/n1/tabpfgen/n1-migrated-20260422_183752/tabpfgen-n1-3680-20260422_070321.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d35a16d60c7f27139a112247822f0eb777b4f63721c290d285e03bdc3794d7 +size 2726714 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/_tvae_generate.py b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..237cb9bb7bd2cb048e142f92de1dc1a067262bd2 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/_tvae_generate.py @@ -0,0 +1,5 @@ +from ctgan.synthesizers.tvae import TVAE +model = TVAE.load("/work/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/models_300epochs/tvae_300epochs.pt") +samples = model.sample(3680) +samples.to_csv("/work/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/tvae-n1-3680-20260330_065936.csv", index=False) +print(f"[TVAE] Generated 3680 rows -> /work/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/tvae-n1-3680-20260330_065936.csv") diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/_tvae_train.py b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6f84ae0c4856a7f169bc345babdad1aaf2730b4d --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/_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/n1/tvae/tvae-n1-20260321_065834/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/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/n1/tvae/tvae-n1-20260321_065834/gen_20260321_070349.log b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/gen_20260321_070349.log new file mode 100644 index 0000000000000000000000000000000000000000..f00478614529c2b8e0bf928ee77086138badae2c --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/gen_20260321_070349.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5c26416b879b9f8c28c3bfee73676a57c6110cbcc25b1b15d696307c3544ca +size 126 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/gen_20260330_065936.log b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/gen_20260330_065936.log new file mode 100644 index 0000000000000000000000000000000000000000..2f04af654d0a1a5f6508a77bbe7158344474c31c --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/gen_20260330_065936.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6c6b95cef198d26446cfc4e3eea6067c9de1619ee69dcc5ee1756479a8fb61 +size 126 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/input_snapshot.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..206ec0de5c339d94206e817ddf029c52c81b4efb --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n1", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "exists": true, + "size": 563021, + "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "exists": true, + "size": 71100, + "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv", + "exists": true, + "size": 71605, + "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json", + "exists": true, + "size": 21967, + "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json", + "exists": true, + "size": 27866, + "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/models_300epochs/train_20260321_065835.log b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/models_300epochs/train_20260321_065835.log new file mode 100644 index 0000000000000000000000000000000000000000..50c3c58ef8c68c44a9efb22d0492a50f7dec0569 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/models_300epochs/train_20260321_065835.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88106ea80850fee4721fe15367ed2f0c0a1a839a718a14a29f295c9c5c48e3f0 +size 170 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/models_300epochs/tvae_300epochs.pt b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..32f25f6736b95cda60c7073646e22fd043ee4551 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:042d2daa79f1bf05c9d9d49e40897d54ab48e56fcc054c7eb59285354145567c +size 2230636 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea0990f267498755e921b225d08fb0704a147d4 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,1222 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/public_gate_report.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..76005f0c0dbdfe7ac411d1fdc1e546fbaa201fc6 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n1", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/staged_input_manifest.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..36fce01d0854c010607d8c69c5bb731943c81fd5 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/public_gate/staged_input_manifest.json @@ -0,0 +1,1227 @@ +{ + "dataset_id": "n1", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/runtime_result.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..46e219d60d5486ef78768725de805e6051984c4d --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n1", + "model": "tvae", + "run_id": "tvae-n1-20260321_065834", + "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/n1/tvae/tvae-n1-20260321_065834/tvae-n1-3680-20260330_065936.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/staged_features.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..16ebac833523b22ee360679df21047245d9559cc --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/staged_features.json @@ -0,0 +1,292 @@ +[ + { + "feature_name": "word_freq_make", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_address", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_all", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_3d", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_our", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_over", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_remove", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_internet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_mail", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_receive", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_will", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_people", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_report", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_addresses", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_free", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_business", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_email", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_you", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_credit", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_your", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_font", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_000", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_money", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hp", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_hpl", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_george", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_650", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_lab", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_labs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_telnet", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_857", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_data", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_415", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_85", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_technology", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_1999", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_parts", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_pm", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_direct", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_cs", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_meeting", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_original", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_project", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_re", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_edu", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "word_freq_table", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "word_freq_conference", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%3B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%28", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%5B", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%21", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%24", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "char_freq_%23", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_average", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_longest", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "capital_run_length_total", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/test.csv b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..628770353833f1dc63d727f5bbc3c5bf7d8180e7 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03 +size 111841 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/train.csv b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dabe62a5dca077c9f19f338b30e0ea316947620d --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23 +size 885832 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/val.csv b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d03fc614be3e0e5f3e8e96f7c7f84a14889d16ec --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c +size 111513 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/adapter_report.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..962d1646e8e4c942eaf661e3ef355b349ac6128e --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/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/n1/tvae/tvae-n1-20260321_065834/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/adapter_transforms_applied.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/model_input_manifest.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c58373c60bef455763bfe49d266bdde4442eb44b --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/staged/tvae/model_input_manifest.json @@ -0,0 +1,1229 @@ +{ + "dataset_id": "n1", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "word_freq_make", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 137, + "unique_ratio": 0.037228, + "example_values": [ + "0", + "0.98", + "0.16", + "0.1", + "0.07" + ] + } + }, + { + "name": "word_freq_address", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.16", + "0.24", + "0.1", + "0.32" + ] + } + }, + { + "name": "word_freq_all", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 207, + "unique_ratio": 0.05625, + "example_values": [ + "1.07", + "0", + "0.32", + "0.41", + "1.24" + ] + } + }, + { + "name": "word_freq_3d", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009239, + "example_values": [ + "0", + "4.31", + "42.81", + "13.63", + "0.42" + ] + } + }, + { + "name": "word_freq_our", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 247, + "unique_ratio": 0.06712, + "example_values": [ + "0.53", + "0", + "0.32", + "0.08", + "0.41" + ] + } + }, + { + "name": "word_freq_over", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.8", + "0.24", + "0.58", + "0.2" + ] + } + }, + { + "name": "word_freq_remove", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.49", + "0.2", + "0.62", + "0.16" + ] + } + }, + { + "name": "word_freq_internet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 156, + "unique_ratio": 0.042391, + "example_values": [ + "0", + "0.08", + "0.33", + "0.1", + "0.88" + ] + } + }, + { + "name": "word_freq_order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 130, + "unique_ratio": 0.035326, + "example_values": [ + "0", + "0.66", + "1.43", + "0.03", + "0.3" + ] + } + }, + { + "name": "word_freq_mail", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 232, + "unique_ratio": 0.063043, + "example_values": [ + "0", + "0.49", + "0.66", + "1.96", + "0.82" + ] + } + }, + { + "name": "word_freq_receive", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 107, + "unique_ratio": 0.029076, + "example_values": [ + "0", + "0.08", + "0.24", + "0.1", + "0.62" + ] + } + }, + { + "name": "word_freq_will", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 301, + "unique_ratio": 0.081793, + "example_values": [ + "0", + "0.64", + "1.81", + "0.57", + "1.24" + ] + } + }, + { + "name": "word_freq_people", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 148, + "unique_ratio": 0.040217, + "example_values": [ + "0", + "0.9", + "0.16", + "0.17", + "0.74" + ] + } + }, + { + "name": "word_freq_report", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 117, + "unique_ratio": 0.031793, + "example_values": [ + "0", + "1.82", + "0.23", + "0.2", + "0.08" + ] + } + }, + { + "name": "word_freq_addresses", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 108, + "unique_ratio": 0.029348, + "example_values": [ + "0", + "0.16", + "0.66", + "0.31", + "0.4" + ] + } + }, + { + "name": "word_freq_free", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 246, + "unique_ratio": 0.066848, + "example_values": [ + "0", + "0.82", + "0.1", + "1.56", + "0.38" + ] + } + }, + { + "name": "word_freq_business", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 175, + "unique_ratio": 0.047554, + "example_values": [ + "0", + "0.16", + "0.31", + "2.22", + "1.63" + ] + } + }, + { + "name": "word_freq_email", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 217, + "unique_ratio": 0.058967, + "example_values": [ + "0", + "0.32", + "1.57", + "1.96", + "1.02" + ] + } + }, + { + "name": "word_freq_you", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 548, + "unique_ratio": 0.148913, + "example_values": [ + "3.22", + "2.4", + "0.32", + "1.81", + "2.46" + ] + } + }, + { + "name": "word_freq_credit", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 126, + "unique_ratio": 0.034239, + "example_values": [ + "0.53", + "0", + "0.16", + "0.41", + "0.4" + ] + } + }, + { + "name": "word_freq_your", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 383, + "unique_ratio": 0.104076, + "example_values": [ + "1.07", + "0", + "1.14", + "1.16", + "1.84" + ] + } + }, + { + "name": "word_freq_font", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 82, + "unique_ratio": 0.022283, + "example_values": [ + "8.06", + "12.8", + "0", + "0.2", + "7.33" + ] + } + }, + { + "name": "word_freq_000", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 152, + "unique_ratio": 0.041304, + "example_values": [ + "0", + "0.49", + "0.91", + "0.09", + "0.72" + ] + } + }, + { + "name": "word_freq_money", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 127, + "unique_ratio": 0.034511, + "example_values": [ + "0", + "1.14", + "0.16", + "0.3", + "0.32" + ] + } + }, + { + "name": "word_freq_hp", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.097826, + "example_values": [ + "0", + "0.64", + "0.72", + "0.52", + "5.45" + ] + } + }, + { + "name": "word_freq_hpl", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 262, + "unique_ratio": 0.071196, + "example_values": [ + "0", + "0.64", + "6.56", + "0.35", + "2.17" + ] + } + }, + { + "name": "word_freq_george", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 226, + "unique_ratio": 0.061413, + "example_values": [ + "0", + "0.35", + "0.47", + "0.23", + "0.86" + ] + } + }, + { + "name": "word_freq_650", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 187, + "unique_ratio": 0.050815, + "example_values": [ + "0", + "1.96", + "0.17", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_lab", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 145, + "unique_ratio": 0.039402, + "example_values": [ + "0", + "0.17", + "0.47", + "0.11", + "0.28" + ] + } + }, + { + "name": "word_freq_labs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 160, + "unique_ratio": 0.043478, + "example_values": [ + "0", + "0.17", + "0.11", + "0.28", + "1.19" + ] + } + }, + { + "name": "word_freq_telnet", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 116, + "unique_ratio": 0.031522, + "example_values": [ + "0", + "0.17", + "0.18", + "1.16", + "0.28" + ] + } + }, + { + "name": "word_freq_857", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.026359, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_data", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 166, + "unique_ratio": 0.045109, + "example_values": [ + "0", + "0.17", + "0.47", + "0.03", + "0.14" + ] + } + }, + { + "name": "word_freq_415", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 102, + "unique_ratio": 0.027717, + "example_values": [ + "0", + "0.17", + "0.28", + "0.39", + "2.77" + ] + } + }, + { + "name": "word_freq_85", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 158, + "unique_ratio": 0.042935, + "example_values": [ + "0", + "0.1", + "0.17", + "0.22", + "0.28" + ] + } + }, + { + "name": "word_freq_technology", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 151, + "unique_ratio": 0.041033, + "example_values": [ + "0", + "0.32", + "0.72", + "0.17", + "0.07" + ] + } + }, + { + "name": "word_freq_1999", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 180, + "unique_ratio": 0.048913, + "example_values": [ + "0", + "0.64", + "0.17", + "0.71", + "0.18" + ] + } + }, + { + "name": "word_freq_parts", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 48, + "unique_ratio": 0.013043, + "example_values": [ + "0", + "0.14", + "1.44", + "0.04", + "0.29" + ] + } + }, + { + "name": "word_freq_pm", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 149, + "unique_ratio": 0.040489, + "example_values": [ + "0", + "0.1", + "0.14", + "1.58", + "1.96" + ] + } + }, + { + "name": "word_freq_direct", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 112, + "unique_ratio": 0.030435, + "example_values": [ + "0", + "0.08", + "0.17", + "0.16", + "0.03" + ] + } + }, + { + "name": "word_freq_cs", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 95, + "unique_ratio": 0.025815, + "example_values": [ + "0", + "0.34", + "0.51", + "3.12", + "0.37" + ] + } + }, + { + "name": "word_freq_meeting", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 172, + "unique_ratio": 0.046739, + "example_values": [ + "0", + "0.9", + "1.21", + "0.71", + "0.04" + ] + } + }, + { + "name": "word_freq_original", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 123, + "unique_ratio": 0.033424, + "example_values": [ + "0", + "0.94", + "0.43", + "0.09", + "0.39" + ] + } + }, + { + "name": "word_freq_project", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 142, + "unique_ratio": 0.038587, + "example_values": [ + "0", + "0.97", + "1.08", + "0.41", + "0.37" + ] + } + }, + { + "name": "word_freq_re", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.060326, + "example_values": [ + "0", + "0.08", + "0.17", + "0.38", + "1.18" + ] + } + }, + { + "name": "word_freq_edu", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 203, + "unique_ratio": 0.055163, + "example_values": [ + "0", + "4.76", + "0.25", + "0.28", + "0.9" + ] + } + }, + { + "name": "word_freq_table", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.008424, + "example_values": [ + "0", + "1.51", + "0.72", + "0.61", + "0.04" + ] + } + }, + { + "name": "word_freq_conference", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 94, + "unique_ratio": 0.025543, + "example_values": [ + "0", + "0.03", + "2.22", + "0.14", + "0.74" + ] + } + }, + { + "name": "char_freq_%3B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 281, + "unique_ratio": 0.076359, + "example_values": [ + "0", + "0.119", + "0.028", + "0.176", + "0.023" + ] + } + }, + { + "name": "char_freq_%28", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 586, + "unique_ratio": 0.159239, + "example_values": [ + "0", + "0.04", + "0.159", + "0.095", + "0.132" + ] + } + }, + { + "name": "char_freq_%5B", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 200, + "unique_ratio": 0.054348, + "example_values": [ + "0", + "0.264", + "0.298", + "0.119", + "0.046" + ] + } + }, + { + "name": "char_freq_%21", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 870, + "unique_ratio": 0.236413, + "example_values": [ + "0.265", + "0.709", + "0", + "0.751", + "0.25" + ] + } + }, + { + "name": "char_freq_%24", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 461, + "unique_ratio": 0.125272, + "example_values": [ + "0.088", + "0", + "0.159", + "0.255", + "0.224" + ] + } + }, + { + "name": "char_freq_%23", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 279, + "unique_ratio": 0.075815, + "example_values": [ + "1.151", + "1.56", + "0", + "0.095", + "0.013" + ] + } + }, + { + "name": "capital_run_length_average", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1865, + "unique_ratio": 0.506793, + "example_values": [ + "11.066", + "7.82", + "1.902", + "1.515", + "4.163" + ] + } + }, + { + "name": "capital_run_length_longest", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 249, + "unique_ratio": 0.067663, + "example_values": [ + "67", + "39", + "10", + "5", + "84" + ] + } + }, + { + "name": "capital_run_length_total", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 828, + "unique_ratio": 0.225, + "example_values": [ + "332", + "305", + "175", + "50", + "712" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000543, + "example_values": [ + "1", + "0" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n1/tvae/tvae-n1-20260321_065834/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae-n1-1000-20260321_070349.csv b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae-n1-1000-20260321_070349.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e43091b7e36f0b6251766c73b6c57ff446a7784 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae-n1-1000-20260321_070349.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c2c48e6b55c7e3bc199051b3d03756da5f9005857afd458a0a8d2736b80094 +size 1151929 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae-n1-3680-20260330_065936.csv b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae-n1-3680-20260330_065936.csv new file mode 100644 index 0000000000000000000000000000000000000000..d01f30655d6af8be6419b796ed061f4259ffd34a --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae-n1-3680-20260330_065936.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e614bd1fcf606d5fc3b46583022b834dc7054c90b914843152200e6cc367f4ea +size 4239238 diff --git a/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae_metadata.json b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8be15bd2f23278eb3593c251cae9e22965bd5f77 --- /dev/null +++ b/syntheticSuccess/n1/tvae/tvae-n1-20260321_065834/tvae_metadata.json @@ -0,0 +1,236 @@ +{ + "columns": [ + { + "name": "word_freq_make", + "type": "continuous" + }, + { + "name": "word_freq_address", + "type": "continuous" + }, + { + "name": "word_freq_all", + "type": "continuous" + }, + { + "name": "word_freq_3d", + "type": "categorical" + }, + { + "name": "word_freq_our", + "type": "continuous" + }, + { + "name": "word_freq_over", + "type": "continuous" + }, + { + "name": "word_freq_remove", + "type": "continuous" + }, + { + "name": "word_freq_internet", + "type": "continuous" + }, + { + "name": "word_freq_order", + "type": "continuous" + }, + { + "name": "word_freq_mail", + "type": "continuous" + }, + { + "name": "word_freq_receive", + "type": "continuous" + }, + { + "name": "word_freq_will", + "type": "continuous" + }, + { + "name": "word_freq_people", + "type": "continuous" + }, + { + "name": "word_freq_report", + "type": "continuous" + }, + { + "name": "word_freq_addresses", + "type": "continuous" + }, + { + "name": "word_freq_free", + "type": "continuous" + }, + { + "name": "word_freq_business", + "type": "continuous" + }, + { + "name": "word_freq_email", + "type": "continuous" + }, + { + "name": "word_freq_you", + "type": "continuous" + }, + { + "name": "word_freq_credit", + "type": "continuous" + }, + { + "name": "word_freq_your", + "type": "continuous" + }, + { + "name": "word_freq_font", + "type": "continuous" + }, + { + "name": "word_freq_000", + "type": "continuous" + }, + { + "name": "word_freq_money", + "type": "continuous" + }, + { + "name": "word_freq_hp", + "type": "continuous" + }, + { + "name": "word_freq_hpl", + "type": "continuous" + }, + { + "name": "word_freq_george", + "type": "continuous" + }, + { + "name": "word_freq_650", + "type": "continuous" + }, + { + "name": "word_freq_lab", + "type": "continuous" + }, + { + "name": "word_freq_labs", + "type": "continuous" + }, + { + "name": "word_freq_telnet", + "type": "continuous" + }, + { + "name": "word_freq_857", + "type": "continuous" + }, + { + "name": "word_freq_data", + "type": "continuous" + }, + { + "name": "word_freq_415", + "type": "continuous" + }, + { + "name": "word_freq_85", + "type": "continuous" + }, + { + "name": "word_freq_technology", + "type": "continuous" + }, + { + "name": "word_freq_1999", + "type": "continuous" + }, + { + "name": "word_freq_parts", + "type": "categorical" + }, + { + "name": "word_freq_pm", + "type": "continuous" + }, + { + "name": "word_freq_direct", + "type": "continuous" + }, + { + "name": "word_freq_cs", + "type": "continuous" + }, + { + "name": "word_freq_meeting", + "type": "continuous" + }, + { + "name": "word_freq_original", + "type": "continuous" + }, + { + "name": "word_freq_project", + "type": "continuous" + }, + { + "name": "word_freq_re", + "type": "continuous" + }, + { + "name": "word_freq_edu", + "type": "continuous" + }, + { + "name": "word_freq_table", + "type": "categorical" + }, + { + "name": "word_freq_conference", + "type": "continuous" + }, + { + "name": "char_freq_%3B", + "type": "continuous" + }, + { + "name": "char_freq_%28", + "type": "continuous" + }, + { + "name": "char_freq_%5B", + "type": "continuous" + }, + { + "name": "char_freq_%21", + "type": "continuous" + }, + { + "name": "char_freq_%24", + "type": "continuous" + }, + { + "name": "char_freq_%23", + "type": "continuous" + }, + { + "name": "capital_run_length_average", + "type": "continuous" + }, + { + "name": "capital_run_length_longest", + "type": "continuous" + }, + { + "name": "capital_run_length_total", + "type": "continuous" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file