TabQueryBench commited on
Commit
3a82615
·
verified ·
1 Parent(s): 16b8223

Add remaining 5090 success run c4/forestdiffusion/forest-c4-20260423_044547

Browse files
Files changed (20) hide show
  1. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_X_host.npy +3 -0
  2. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_gen.py +8 -0
  3. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_meta_host.json +3 -0
  4. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_train.py +20 -0
  5. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/forest-c4-2557-20260423_113411.csv +3 -0
  6. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/input_snapshot.json +3 -0
  8. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/models_fd/model.joblib +3 -0
  9. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/runtime_result.json +3 -0
  13. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/staged_features.json +3 -0
  17. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/test.csv +3 -0
  18. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/train.csv +3 -0
  19. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/val.csv +3 -0
  20. 5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/train_20260423_044547.log +3 -0
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f4f0efb8956f36a640001658e7b136381d948f1ac28915aef4ff38d3f2a8e0c
3
+ size 378564
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/c4/forestdiffusion/forest-c4-20260423_044547/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(2557))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c4/forestdiffusion/forest-c4-20260423_044547/forest-c4-2557-20260423_113411.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3f8f9c1f327e456672803fec9cb2f3f7bd5eb85999f1873f4e56ac8b6a16887
3
+ size 502
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c4/forestdiffusion/forest-c4-20260423_044547/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c4/forestdiffusion/forest-c4-20260423_044547/_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/c4/forestdiffusion/forest-c4-20260423_044547/forestdiffusion_model.joblib')
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/forest-c4-2557-20260423_113411.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c02b098964a69b2c91ce07b26f84e4ed48780ebe73f6f006f3b3d8ba6f4c225a
3
+ size 399354
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:532d71e0f979eb50bcfc4cbd39bea84203cd7e9b10527365c4959f16a748fafa
3
+ size 337184967
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55bf569d4af4cfeee9938a6e2e0d26efbf0317eb05c379c176648cac6d12ef06
3
+ size 1356
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:532d71e0f979eb50bcfc4cbd39bea84203cd7e9b10527365c4959f16a748fafa
3
+ size 337184967
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd215e2b568b51c89131bc82ae10e581ce201a81c969236f2fad5e62f9fd5d8d
3
+ size 14899
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cef158c9809e79d0662cfe8676f3e496717d4679c6019dbf38d05229a591f6f6
3
+ size 912
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a1fa3f89d7572572d63dcb963febe051c251113694fa4be15484544887d6857
3
+ size 15715
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c68c2be80db15d95f4cb8f24c19aa3f1b005f6ea9d21c576e1687f0b3e7e93f
3
+ size 622
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8d4740dd9330d24016636b77c4f2fb0bed55dbbb139b80b02d2439028b21fc0
3
+ size 331
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/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/c4/forestdiffusion/forest-c4-20260423_044547/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb1f2f6da71dc70222acfdc550b63ab06e50fcfd50760b64a2a1301dab82137a
3
+ size 15922
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a87f218a78f746c6bac3b01a4eeecffa6d238b7d3a8a4ad195998463ac57f305
3
+ size 3272
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0025753653c2b6aa73ac4dbaca5f0aab6b2834bfbab5aacee09a0a06b503f0c
3
+ size 24846
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:740abc2572f84132936c56aec13d8876c3f878fd131d8f6b6f339195f09d0036
3
+ size 197004
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:615716822f945c50a8f7c105fe3fbde1cc0bf29b057e0274f36c6f3256b55316
3
+ size 24766
5090-Success/c4/forestdiffusion/forest-c4-20260423_044547/train_20260423_044547.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25