TabQueryBench commited on
Commit
64d2cb0
·
verified ·
1 Parent(s): 443c173

Add remaining 5090 success run m8/forestdiffusion/forest-m8-20260425_073100

Browse files
Files changed (20) hide show
  1. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_X_host.npy +3 -0
  2. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_gen.py +8 -0
  3. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_meta_host.json +3 -0
  4. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_train.py +20 -0
  5. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/forest-m8-36168-20260426_114708.csv +3 -0
  6. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/input_snapshot.json +3 -0
  8. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/models_fd/model.joblib +3 -0
  9. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/runtime_result.json +3 -0
  13. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/staged_features.json +3 -0
  17. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/test.csv +3 -0
  18. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/train.csv +3 -0
  19. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/val.csv +3 -0
  20. 5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/train_20260425_073101.log +3 -0
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5685c6cee6ebc3c4426f8e5f6e09f3ce8e0fed97ee0834f37391f6a1d4cb69f4
3
+ size 2459552
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/m8/forestdiffusion/forest-m8-20260425_073100/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(36168))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/m8/forestdiffusion/forest-m8-20260425_073100/forest-m8-36168-20260426_114708.csv', index=False)
8
+ print("saved", len(df))
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c75869cd5d8c5dd0324c29cee000e1ad129d1c94fd3545db09ae9d081bb0e5e1
3
+ size 232
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/m8/forestdiffusion/forest-m8-20260425_073100/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/m8/forestdiffusion/forest-m8-20260425_073100/_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/m8/forestdiffusion/forest-m8-20260425_073100/forestdiffusion_model.joblib')
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/forest-m8-36168-20260426_114708.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bb86fa09e60deb56b74d6628423ba606a775d43652cf76fbfaf03d8686ba1d7
3
+ size 6020834
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f551b5539c70eafe45b7a7efcc4ca5b8a53a0b6690e3f5752e7f4380b0bae7e3
3
+ size 419375823
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f790015e53ae255cf6437a6cdb05e650447a693b2f7fdd255f461f6714c5cfdd
3
+ size 1357
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f551b5539c70eafe45b7a7efcc4ca5b8a53a0b6690e3f5752e7f4380b0bae7e3
3
+ size 419375823
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d733310afeedb79582ccecc72b050f6a9a712817177584d3824924c50e502e38
3
+ size 7627
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e89b0ea4d2520e690eac7b5c89e20eb797f4d5895a64f12a22ec9f64ad8a635e
3
+ size 908
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1019063f8c1b84cfed67beb86db41d33f8959e7625d4bd15898c2889d79c88d4
3
+ size 8443
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d82a39fdbd3ae260185faf6f8270ac12e4f2045b212eae740ebe928e0b3ee53
3
+ size 623
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c25cf58ad4b45adaee83d34111f409a15f8afcc0dd1df5d7e4fb65975f7c9e60
3
+ size 331
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/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/m8/forestdiffusion/forest-m8-20260425_073100/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74095cf2b90ec337094c005ac3dbad3fcd7ff383b9ef10774746f2850be88d8b
3
+ size 8650
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cf7f5cbab67fd23b227d3d6dd45fee61797fb10d962495c5e6e65ae5dbcb5f0
3
+ size 1570
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310
3
+ size 370991
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833
3
+ size 2964802
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525
3
+ size 370535
5090-Success/m8/forestdiffusion/forest-m8-20260425_073100/train_20260425_073101.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25