TabQueryBench commited on
Commit
0d9e28a
·
verified ·
1 Parent(s): 6a329a1

Add files using upload-large-folder tool

Browse files
Files changed (21) hide show
  1. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_X_host.npy +3 -0
  2. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_gen.py +8 -0
  3. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_meta_host.json +3 -0
  4. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_train.py +28 -0
  5. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/forest-c10-820008-20260430_065357.csv +3 -0
  6. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/forestdiffusion_model.joblib +3 -0
  7. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/gen_20260430_065357.log +3 -0
  8. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/input_snapshot.json +3 -0
  9. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/models_fd/model.joblib +3 -0
  10. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/public_gate/normalized_schema_snapshot.json +3 -0
  11. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/public_gate/public_gate_report.json +3 -0
  12. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/public_gate/staged_input_manifest.json +3 -0
  13. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/runtime_result.json +3 -0
  14. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/forestdiffusion/adapter_report.json +3 -0
  15. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/forestdiffusion/model_input_manifest.json +3 -0
  17. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/staged_features.json +3 -0
  18. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/test.csv +3 -0
  19. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/train.csv +3 -0
  20. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/val.csv +3 -0
  21. syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/train_20260430_061806.log +3 -0
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19c29f37e39bc9df8e214b320e42c13197e96c75b24fc5debc410fec0d6f8684
3
+ size 36080480
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c10/forestdiffusion/forest-c10-20260430_061804/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(820008))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-Benchmark-trainonly-v1/c10/forestdiffusion/forest-c10-20260430_061804/forest-c10-820008-20260430_065357.csv', index=False)
8
+ print("saved", len(df))
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcf6c8a2871042e6dac2457e54bf953c04b16792319178ead7b7414a393d1ff4
3
+ size 106
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/_fd_train.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-Benchmark-trainonly-v1/c10/forestdiffusion/forest-c10-20260430_061804/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-Benchmark-trainonly-v1/c10/forestdiffusion/forest-c10-20260430_061804/_fd_meta_host.json') as f:
5
+ open('/tmp/fd_meta.json','w').write(f.read())
6
+
7
+ import numpy as np, joblib, json, os
8
+ from ForestDiffusion import ForestDiffusionModel
9
+ X = np.load("/tmp/fd_X.npy")
10
+ with open("/tmp/fd_meta.json") as f:
11
+ meta = json.load(f)
12
+ cat_indexes = meta["cat_indexes"]
13
+ print(
14
+ "[ForestDiffusion] train config: "
15
+ f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 "
16
+ f"n_estimators=100 duplicate_K=20 n_jobs=2 "
17
+ f"xgb_verbosity=1",
18
+ flush=True,
19
+ )
20
+ m = ForestDiffusionModel(
21
+ X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2,
22
+ model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes,
23
+ verbosity=1,
24
+ )
25
+ joblib.dump((m, meta), "/tmp/fd_model.joblib")
26
+ print("ForestDiffusion train OK")
27
+
28
+ shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c10/forestdiffusion/forest-c10-20260430_061804/forestdiffusion_model.joblib')
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/forest-c10-820008-20260430_065357.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d6feed0588410df142a41a182871aea8c98bfc33eb9cd8a0a1fd0155193ba5b
3
+ size 150679158
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a49e50c12bd2525569fe0b3e7409a93f809b1cd8bbbca26434f83dc2341ffe2
3
+ size 146165257
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/gen_20260430_065357.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13e770c3f962ca56ee2572329001388a81365969c75e2115a219880af938a4d3
3
+ size 296
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4d6cf3ba5b7f5da3ab8cb5b767796d3f653d90d5736265e1009076d2d0adb1d
3
+ size 1371
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a49e50c12bd2525569fe0b3e7409a93f809b1cd8bbbca26434f83dc2341ffe2
3
+ size 146165257
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7148c9ceb476ede5c254d7a50d92c8aba6ff2fae55ac0910a9658442e6280700
3
+ size 4900
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60bd528e37176a3620521f975593931d2c58c19f31aba2bdd606108558beff84
3
+ size 919
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22dd535ce1124945365815397306c724b8c1d0caa9daaad1506bb36989c5027a
3
+ size 5751
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8996e1b09f20242940882cb63bebfd8e40f0cf03894c18ba97c2aee3ce8094b1
3
+ size 935
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8baee6b7288b0f93971aba291c639d25cdcaf3f86796fef5d62a16887b394f0
3
+ size 338
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/forestdiffusion/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/c10/forestdiffusion/forest-c10-20260430_061804/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d42703b5d518e423039bf611eca5f3049844260657f0a807fc081790f33d71c4
3
+ size 5965
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6731a6de684726aac71a09ef332a76bfba59cb80562f5df3cacd198efdbbf608
3
+ size 983
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e7ce2790bd0b291bf9cf968a4ff9b74964a9caf1d0c613d0897843583e3118f
3
+ size 2412815
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8161358f4f74365c2c6f8c61a115d1f3f6598de4c923179d6c7a9a38b7912bd
3
+ size 19300938
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c46e64f7ec21c60fd61ce6ee8e060ceb4f2f7f831a1cac5368efe861d0dfc3b
3
+ size 2413372
syntheticSuccess/c10/forestdiffusion/forest-c10-20260430_061804/train_20260430_061806.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:925ec4564d1b2164aa9adde47433fa3fd557a0ad31677af853694b3dfefce292
3
+ size 427