TabQueryBench commited on
Commit
a36cdd7
·
verified ·
1 Parent(s): d62ce28

Add files using upload-large-folder tool

Browse files
Files changed (38) hide show
  1. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/_tabddpm_sample.py +67 -0
  2. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/_tabddpm_train.py +32 -0
  3. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/config.toml +3 -0
  4. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_cat_test.npy +3 -0
  5. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_cat_train.npy +3 -0
  6. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_cat_val.npy +3 -0
  7. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_num_test.npy +3 -0
  8. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_num_train.npy +3 -0
  9. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_num_val.npy +3 -0
  10. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/info.json +3 -0
  11. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/y_test.npy +3 -0
  12. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/y_train.npy +3 -0
  13. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/y_val.npy +3 -0
  14. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/gen_20260321_141338.log +3 -0
  15. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/input_snapshot.json +3 -0
  16. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_cat_train.npy +3 -0
  17. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_cat_unnorm.npy +3 -0
  18. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_num_train.npy +3 -0
  19. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_num_unnorm.npy +3 -0
  20. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/config.toml +3 -0
  21. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/info.json +3 -0
  22. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/loss.csv +3 -0
  23. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/model.pt +3 -0
  24. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/model_ema.pt +3 -0
  25. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/y_train.npy +3 -0
  26. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/public_gate/normalized_schema_snapshot.json +3 -0
  27. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/public_gate/public_gate_report.json +3 -0
  28. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/public_gate/staged_input_manifest.json +3 -0
  29. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/runtime_result.json +3 -0
  30. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/staged_features.json +3 -0
  31. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/test.csv +3 -0
  32. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/train.csv +3 -0
  33. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/val.csv +3 -0
  34. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/tabddpm/adapter_report.json +3 -0
  35. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/tabddpm/adapter_transforms_applied.json +3 -0
  36. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/tabddpm/model_input_manifest.json +3 -0
  37. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/tabddpm-c13-1000-20260321_141338.csv +3 -0
  38. syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/train_20260321_135808.log +3 -0
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/_tabddpm_sample.py ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os, sys, subprocess, json
2
+ import numpy as np
3
+ import pandas as pd
4
+
5
+ tabddpm_root = "/workspace/tabddpm/code"
6
+ assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}"
7
+ env = os.environ.copy()
8
+ env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", ""))
9
+
10
+ # Reuse the compat wrapper (patches collections.Sequence for skorch)
11
+ wrapper = os.path.join(tabddpm_root, "_compat_run.py")
12
+ if not os.path.exists(wrapper):
13
+ with open(wrapper, "w") as f:
14
+ f.write(
15
+ "import collections, collections.abc\n"
16
+ "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping',"
17
+ "'MutableSet','Set','Callable','Iterable','Iterator'):\n"
18
+ " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n"
19
+ "import sys, runpy\n"
20
+ "sys.argv = sys.argv[1:]\n"
21
+ "runpy.run_path(sys.argv[0], run_name='__main__')\n"
22
+ )
23
+
24
+ print(f"[TabDDPM] Sampling 1000 rows")
25
+ ret = subprocess.run(
26
+ [sys.executable, wrapper, "scripts/pipeline.py",
27
+ "--config", "/work/output-SpecializedModels/c13/tabddpm/tabddpm-c13-20260321_135559/config.toml",
28
+ "--sample"],
29
+ cwd=tabddpm_root,
30
+ env=env
31
+ )
32
+ if ret.returncode != 0:
33
+ sys.exit(ret.returncode)
34
+
35
+ # 将 .npy 输出转为 CSV
36
+ work_dir = "/work/output-SpecializedModels/c13/tabddpm/tabddpm-c13-20260321_135559"
37
+ info_path = os.path.join(work_dir, "data", "info.json")
38
+ with open(info_path) as f:
39
+ info = json.load(f)
40
+
41
+ output_dir = os.path.join(work_dir, "output")
42
+ col_names = info.get("column_names", [])
43
+
44
+ parts = []
45
+ x_num_path = os.path.join(output_dir, "X_num_train.npy")
46
+ x_cat_path = os.path.join(output_dir, "X_cat_train.npy")
47
+ y_path = os.path.join(output_dir, "y_train.npy")
48
+
49
+ if os.path.exists(x_num_path):
50
+ parts.append(np.load(x_num_path, allow_pickle=True))
51
+ if os.path.exists(x_cat_path):
52
+ parts.append(np.load(x_cat_path, allow_pickle=True).astype(float))
53
+ if os.path.exists(y_path):
54
+ y = np.load(y_path, allow_pickle=True)
55
+ parts.append(y.reshape(-1, 1) if y.ndim == 1 else y)
56
+
57
+ if parts:
58
+ combined = np.concatenate(parts, axis=1)
59
+ if col_names and len(col_names) == combined.shape[1]:
60
+ df = pd.DataFrame(combined, columns=col_names)
61
+ else:
62
+ df = pd.DataFrame(combined)
63
+ df.to_csv("/work/output-SpecializedModels/c13/tabddpm/tabddpm-c13-20260321_135559/tabddpm-c13-1000-20260321_141338.csv", index=False)
64
+ print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-SpecializedModels/c13/tabddpm/tabddpm-c13-20260321_135559/tabddpm-c13-1000-20260321_141338.csv")
65
+ else:
66
+ print("[TabDDPM] WARNING: No output .npy files found")
67
+ sys.exit(1)
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/_tabddpm_train.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os, sys, subprocess
2
+
3
+ tabddpm_root = "/workspace/tabddpm/code"
4
+ assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}"
5
+ env = os.environ.copy()
6
+ env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", ""))
7
+
8
+ # Write a wrapper that patches collections.Sequence (removed in Python 3.10+)
9
+ # before running pipeline.py - needed because skorch uses old API
10
+ wrapper = os.path.join(tabddpm_root, "_compat_run.py")
11
+ with open(wrapper, "w") as f:
12
+ f.write(
13
+ "import collections, collections.abc\n"
14
+ "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping',"
15
+ "'MutableSet','Set','Callable','Iterable','Iterator'):\n"
16
+ " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n"
17
+ "import sys, runpy\n"
18
+ "sys.argv = sys.argv[1:]\n"
19
+ "runpy.run_path(sys.argv[0], run_name='__main__')\n"
20
+ )
21
+
22
+ print(f"[TabDDPM] Training, config=/work/output-SpecializedModels/c13/tabddpm/tabddpm-c13-20260321_135559/config.toml")
23
+ ret = subprocess.run(
24
+ [sys.executable, wrapper, "scripts/pipeline.py",
25
+ "--config", "/work/output-SpecializedModels/c13/tabddpm/tabddpm-c13-20260321_135559/config.toml",
26
+ "--train"],
27
+ cwd=tabddpm_root,
28
+ env=env
29
+ )
30
+ if ret.returncode != 0:
31
+ sys.exit(ret.returncode)
32
+ print("[TabDDPM] Training complete")
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/config.toml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7bcde2e77c445f9df85f6d7c2d2d0f6415a0fa104eaa6cdbddebf1e3d0f9036
3
+ size 765
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2228016306a22247eb332ffa388acfff599b26ee64831c2de6549c15d9775bdc
3
+ size 37366136
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0743b4629c997aa291667334549b4190f20114278b03aa1bed8de798ad89e145
3
+ size 298927584
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7218fca657e406184d4a6a6305657e42f0d7f4b0127eee90dc047a9c42beab8
3
+ size 37365984
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d4bbf1f168de1bfb19ed78a92459dff65e65d532b6702ce99715eb1dcec1a8a
3
+ size 48182612
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43c274a381508fe9428f534588622a9d2d949cacea0a1a0add673e12555c5f4c
3
+ size 385459216
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:263726f8cb18b23743eceae8ed54e9a7e6f77b07353601542f2f94dcb5d1ffcd
3
+ size 48182416
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96e9f4b713c22e7e305f5a91ff242ead06c82c50ae1b7dab83aea7abe11b4314
3
+ size 1868
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bde6c5a591d8ef24c41b455c823baa2235c526d5714ce9173a43c98316b2d581
3
+ size 983444
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abc831b8712ccb8563937432d8ce4b06418ff356d0fc959b8c8223544f59545c
3
+ size 7866640
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/data/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81ede10370d741f153df8751007b66d10cf4b9bad6d3245564f320085aad4f8b
3
+ size 983440
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/gen_20260321_141338.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d9fca21855767b6fc180fe5c0cde72ae8bfcea398c7028c8cce4b161c3014bc
3
+ size 21741
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:575624faf06170cf53997de5325fe98982e43bb51578ed7117bb49473850519f
3
+ size 1368
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d9c93a4f5643eee36ef745b45e622a6e51f6138760079119dfe98250d3531b2
3
+ size 74806881
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_cat_unnorm.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c468600b92f177db3bdce95d1118b90096298d203c2e654e608936bb282ed366
3
+ size 298927584
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1eeb6f4f6c7007099cffbe5c8b71f203fad64c17773e2b19592e300addf18c9
3
+ size 770918304
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/X_num_unnorm.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0350026bb6f9abda8b06fec5895f351f665214fa5de2af3eeed24805389fa892
3
+ size 770918304
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/config.toml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbe63870b0f345c4ec75ebfe557785121e68ac94159696e180d7f901f9411ebe
3
+ size 768
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96e9f4b713c22e7e305f5a91ff242ead06c82c50ae1b7dab83aea7abe11b4314
3
+ size 1868
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/loss.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cea0d5f5916e5b0ae86da99ad189117c37f75b96d43dfefc961c054c29fdf57
3
+ size 1511
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:917356bbbbd1e8b39db1c5d01d28acfb8908a4cd094c875a8a4afdb0ed1bd7c1
3
+ size 687062
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/model_ema.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c95073c5844cb740bc673fe9b81966c67bcf78efd0b3c8ad2816662717b666c3
3
+ size 687906
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/output/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f13a02425dd224cee05976b49942f06935ebe356b984aa2392b8942307f01225
3
+ size 15733152
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac7cc45a45a66882898330041e21ecc9d2fa2337acbdac10fdc6bfcf29f37ecb
3
+ size 29682
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98b0bd56b40bce017ada413ff6fd6c8249d274691543a2317af77dc66423edab
3
+ size 920
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb8c92ab0ced423a97fdbeb23a37e13e1983d0b2876fa642514587d474c38ae7
3
+ size 30473
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6feca7e6acb4ffd79d80afc43236722bae37d6ffad2235ec9f82ae5c8b626558
3
+ size 586
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81bd0d2d8f45f0f84ba7aa5d987138568ed6c11284619479782ad7b5a8406868
3
+ size 6450
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cf0d7c1dbb2038abdd41e3d786a07088e449032778f4738dc6b22d0eb191d5a
3
+ size 35888554
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13129dc33af4bddd2cf285ff554eec75d60242263631bd9b9bf17dad2ed3c2e6
3
+ size 287108949
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:146c58ed78179cd93f44c20c808eca71eea5c5c3f8d2ae147cc44663356384fb
3
+ size 35889620
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/tabddpm/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92ef7c9f82e905041812a16c752a3b6b5d4a4766631f3be017b3c37368b8630c
3
+ size 318
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/tabddpm/adapter_transforms_applied.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945
3
+ size 2
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/staged/tabddpm/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85b47db157614bfc00cf231130d8d2a24be5cc7197aba56ca2bc3dfae1e823fa
3
+ size 30667
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/tabddpm-c13-1000-20260321_141338.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c648f56f8c6865d80fabbf0295eb2e9fc2eef6596cd6733e17acd997f9c1e40
3
+ size 287393
syntheticSuccess/c13/tabddpm/tabddpm-c13-20260321_135559/train_20260321_135808.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:376a0717ae855b6b29e26d107517a3289043d506ce9dd81a91541d25ff2dde53
3
+ size 1246