TabQueryBench commited on
Commit
f7acefa
·
verified ·
1 Parent(s): 773d438

Add 5090 success run n12/forestdiffusion/forest-n12-20260430_111708

Browse files
Files changed (20) hide show
  1. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_X_host.npy +3 -0
  2. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_gen.py +8 -0
  3. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_meta_host.json +3 -0
  4. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_train.py +20 -0
  5. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/forest-n12-196045-20260430_132034.csv +3 -0
  6. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/input_snapshot.json +3 -0
  8. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/models_fd/model.joblib +3 -0
  9. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/runtime_result.json +3 -0
  13. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/staged_features.json +3 -0
  17. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/test.csv +3 -0
  18. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/train.csv +3 -0
  19. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/val.csv +3 -0
  20. 5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/train_20260430_111708.log +3 -0
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c282e7e528a5fbc6cc907c17cdd55fd90bb8c151019e5c9dbf7fe7a223ee4718
3
+ size 3136848
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/n12/forestdiffusion/forest-n12-20260430_111708/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(196045))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/n12/forestdiffusion/forest-n12-20260430_111708/forest-n12-196045-20260430_132034.csv', index=False)
8
+ print("saved", len(df))
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f13f9854e6164fbeb51363a17123e8b80d508183d0476f54defcb375b709799
3
+ size 86
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/n12/forestdiffusion/forest-n12-20260430_111708/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/n12/forestdiffusion/forest-n12-20260430_111708/_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
+ m = ForestDiffusionModel(
14
+ X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2,
15
+ model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes,
16
+ )
17
+ joblib.dump((m, meta), "/tmp/fd_model.joblib")
18
+ print("ForestDiffusion train OK")
19
+
20
+ shutil.copy('/tmp/fd_model.joblib', r'/work/output-SpecializedModels/n12/forestdiffusion/forest-n12-20260430_111708/forestdiffusion_model.joblib')
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/forest-n12-196045-20260430_132034.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f18cde3c2e536371f0aef2ed59dbd807c1ba7b7ef483bdac03a304eb56901f3
3
+ size 13035157
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fde85cb46c69af8e58003f3c9ba38c3cb7489e0daad825cfbdc348087a484680
3
+ size 42802965
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43051434935c101bb4a5fb69f335a64acb5b23dcc055247a3736e164852f2758
3
+ size 1368
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fde85cb46c69af8e58003f3c9ba38c3cb7489e0daad825cfbdc348087a484680
3
+ size 42802965
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f557e091384db0c72c9acb9ef1549554fc2a2d69f9990d9697104a90556b8a68
3
+ size 1878
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88b0046f67a201d002249201c233ce395a7eabbeb1e096bdf5ec4e6afffd2489
3
+ size 920
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc948f6b8c43c64c0b095c03e8ec3b289e6209fa05c9e895356e2fd2e610888e
3
+ size 2704
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2610adff8ce33a02c7c2d744e8b0e5d155545f0bd5f8b5b8114d3c650124c496
3
+ size 631
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c89b72ba0fd28914f1d7e073a555d29011175cb766a37f13e12baf2262aac27c
3
+ size 333
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/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
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daedba8c02e66acfa9f6d3f2de35fa7540d254a2625d82c3c87c9d63675884ec
3
+ size 2913
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:148b95cbf4c3da3ebc38686f20ef1e724b56b701abfa24065d77f9b417e8671e
3
+ size 382
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4972eb2812d325c143ec99492afa470fe047141a9bdf34893ec0133a12b8dc26
3
+ size 315789
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:728fec9c0ec06ca4b292989614be4374c308d9a15b1e0002c3daeb3a68d5d350
3
+ size 2524420
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8931c0b2402466ccca41868fc484ab4bc6f627d68422570b20d47d1104922959
3
+ size 315663
5090-Success/n12/forestdiffusion/forest-n12-20260430_111708/train_20260430_111708.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25