TabQueryBench commited on
Commit
59708bd
·
verified ·
1 Parent(s): ab3fd35

Add 5090 success run c20/forestdiffusion/forest-c20-20260425_021841

Browse files
Files changed (20) hide show
  1. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_X_host.npy +3 -0
  2. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_gen.py +8 -0
  3. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_meta_host.json +3 -0
  4. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_train.py +20 -0
  5. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/forest-c20-35855-20260425_073030.csv +3 -0
  6. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/input_snapshot.json +3 -0
  8. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/models_fd/model.joblib +3 -0
  9. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/runtime_result.json +3 -0
  13. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/staged_features.json +3 -0
  17. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/test.csv +3 -0
  18. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/train.csv +3 -0
  19. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/val.csv +3 -0
  20. 5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/train_20260425_021841.log +3 -0
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f22af635088d37988dde78d8764caeb455ab63039ed000cd093f2d062d5d4870
3
+ size 1004068
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/c20/forestdiffusion/forest-c20-20260425_021841/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(35855))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c20/forestdiffusion/forest-c20-20260425_021841/forest-c20-35855-20260425_073030.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a290cb0222277fe1a2a420297fc8e9cd21f17f602eb3588ef7e2cf7da72aa850
3
+ size 180
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c20/forestdiffusion/forest-c20-20260425_021841/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c20/forestdiffusion/forest-c20-20260425_021841/_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/c20/forestdiffusion/forest-c20-20260425_021841/forestdiffusion_model.joblib')
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/forest-c20-35855-20260425_073030.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f462abf2760a6fc805557d85b1e3c3cfb7b6bf1b37397ec8c5749b88f08d550
3
+ size 4012864
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f4de89861904a98a6104e190b596c32fdf4317664288bdda728690352410178
3
+ size 69878899
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0688020ea3f01ed2585848f3e18439630c7e476dfea404dc10aa677aa61d338a
3
+ size 1365
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f4de89861904a98a6104e190b596c32fdf4317664288bdda728690352410178
3
+ size 69878899
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:830d74fbed61676747c37937d4cec4067dbb933a65b7848db4652c288d691bcc
3
+ size 3277
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:614d73c62ed6bbaa646050144e2dbc55af6bd28a2ffa8cba94e305c1f73e6634
3
+ size 919
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:474da988151daab40ed5930182c2402adb0cd637d3d36a48613edee8df6f95f7
3
+ size 4103
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:429dd94c3363c8fb6016be18253680b5ebc1d83c63c94340b2cc418c732cc4a8
3
+ size 630
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c306f36665005287f064123152f16fed00ac9e31583062c4b5e0766a8e64f07a
3
+ size 333
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/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/c20/forestdiffusion/forest-c20-20260425_021841/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff3cf83b9d166807aa5693c7cde557c65409473bb0ea199cc1c98a48955a0f64
3
+ size 4312
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b2019501faafa7b8f2cc92be10d18b21daeb31a98bed2538a998e0c39a3cfb3
3
+ size 726
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0091c37417c2702c5bfc5aee9911927ba2c8c7de2233b2d5c72d5e530a503d88
3
+ size 62884
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2c76c6d0e5ed6c6df6e6351254bc759b208e8f11d47f2ee114a65a38bc3e82a
3
+ size 502092
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5106c1dd013c7fef43fb35d4c4bb45fae99af977e1d18465006e726ec2ece73e
3
+ size 62856
5090-Success/c20/forestdiffusion/forest-c20-20260425_021841/train_20260425_021841.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25