TabQueryBench commited on
Commit
4613d78
·
verified ·
1 Parent(s): 8a289bf

Add files using upload-large-folder tool

Browse files
Files changed (21) hide show
  1. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_fd_X_host.npy +3 -0
  2. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_fd_gen.py +8 -0
  3. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_fd_meta_host.json +3 -0
  4. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_fd_train.py +28 -0
  5. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/forest-c11-54045-20260430_072502.csv +3 -0
  6. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/forestdiffusion_model.joblib +3 -0
  7. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/gen_20260430_072502.log +3 -0
  8. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/input_snapshot.json +3 -0
  9. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/models_fd/model.joblib +3 -0
  10. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/public_gate/normalized_schema_snapshot.json +3 -0
  11. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/public_gate/public_gate_report.json +3 -0
  12. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/public_gate/staged_input_manifest.json +3 -0
  13. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/runtime_result.json +3 -0
  14. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/forestdiffusion/adapter_report.json +3 -0
  15. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/forestdiffusion/model_input_manifest.json +3 -0
  17. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/staged_features.json +3 -0
  18. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/test.csv +3 -0
  19. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/train.csv +3 -0
  20. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/val.csv +3 -0
  21. syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/train_20260430_065416.log +3 -0
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f2f4a359c120b7c69a9fd6b7d5dafb29660c3e9f050c52bb353f0c8274c959d
3
+ size 9295868
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_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/c11/forestdiffusion/forest-c11-20260430_065415/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(54045))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-Benchmark-trainonly-v1/c11/forestdiffusion/forest-c11-20260430_065415/forest-c11-54045-20260430_072502.csv', index=False)
8
+ print("saved", len(df))
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c943a9b6f080e33ad72dd3b85ce8f99cc1aa86b0b9db929e7a475a5301a09c24
3
+ size 454
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/_fd_train.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-Benchmark-trainonly-v1/c11/forestdiffusion/forest-c11-20260430_065415/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-Benchmark-trainonly-v1/c11/forestdiffusion/forest-c11-20260430_065415/_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/c11/forestdiffusion/forest-c11-20260430_065415/forestdiffusion_model.joblib')
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/forest-c11-54045-20260430_072502.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42d347984f20fa5c166e78c962baefd1e7384dd4e6f4cf639ab3b893f77bfb02
3
+ size 9797278
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1757782ab3daf028c6170a712dae7feaa7790f59aba227077c67e05dc91dd670
3
+ size 842589495
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/gen_20260430_072502.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d01f5e891a9cb93e481bd55ab1bf60cedc5fac2a84da58a3662509f8f439c78
3
+ size 296
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c2dba35e103a0c0b7c06632f0d0f8fbdc5f6fd3ee6e47e94783a5a810808863
3
+ size 1370
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1757782ab3daf028c6170a712dae7feaa7790f59aba227077c67e05dc91dd670
3
+ size 842589495
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b387e803521158c1aa700ead7c21618e0e50431f16b63cab8a00e06ab28af399
3
+ size 17917
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b99fb323722f555b9e74e3512866eb944f48bd85e405dcde9c9d7566944f7338
3
+ size 919
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9830377ccad61644fb95ae5ce0221a09c0ae506dd75dfa579f2c6013e202500
3
+ size 18768
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:136ac7aac328f4d7515b436682707a55720173abb3b903eea96fb5508fc33fe1
3
+ size 934
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85b6ed4467e80f64b6cfa7a7b8a31e5fb0aeb798b77684fca226b755114d7989
3
+ size 338
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/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/c11/forestdiffusion/forest-c11-20260430_065415/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:772cd1948d1edf3b624d9ded6b863e17f1bb77261a2dcfccc5ae15574222120d
3
+ size 18982
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e99375f3f096bf5d6d52a3e97804773b9ea59316c63312e7fb667cd6b858b78
3
+ size 3874
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bf013e6809cd2d7d0606cff7ce2daca4b4bdc9683262cfe5458a5d06c8efe15
3
+ size 597067
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea5c56f8337b738f6f4c8fd78647834cf1947072fd207f1a6c3e78453f49e66a
3
+ size 4774600
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25f005f58bf10bf36365d3b64392af50bc3f14d54ae06b431c381fbc8fcf4c3e
3
+ size 596829
syntheticSuccess/c11/forestdiffusion/forest-c11-20260430_065415/train_20260430_065416.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04b1b56306d592d0d60cd56786d5a41dc256a38c0f0506658f73d6b37927c26f
3
+ size 426