TabQueryBench commited on
Commit
89fa96d
·
verified ·
1 Parent(s): 45c644c

Add 5090 success run m7/forestdiffusion/forest-m7-20260425_024652

Browse files
Files changed (20) hide show
  1. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_X_host.npy +3 -0
  2. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_gen.py +8 -0
  3. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_meta_host.json +3 -0
  4. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_train.py +20 -0
  5. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/forest-m7-4088-20260425_150407.csv +3 -0
  6. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/input_snapshot.json +3 -0
  8. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/models_fd/model.joblib +3 -0
  9. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/runtime_result.json +3 -0
  13. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/staged_features.json +3 -0
  17. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/test.csv +3 -0
  18. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/train.csv +3 -0
  19. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/val.csv +3 -0
  20. 5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/train_20260425_024652.log +3 -0
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87fa2899613f48fe7b0c0ca2c518ce2896ebd26e7d2025b33665328cc8ad9b42
3
+ size 196352
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/m7/forestdiffusion/forest-m7-20260425_024652/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(4088))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/m7/forestdiffusion/forest-m7-20260425_024652/forest-m7-4088-20260425_150407.csv', index=False)
8
+ print("saved", len(df))
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e86e81c60fa31a4473bb91b1b00fb093c18ac84eb6c4ef84814633cf71aa5cc1
3
+ size 216
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/m7/forestdiffusion/forest-m7-20260425_024652/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/m7/forestdiffusion/forest-m7-20260425_024652/_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/m7/forestdiffusion/forest-m7-20260425_024652/forestdiffusion_model.joblib')
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/forest-m7-4088-20260425_150407.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a01baa8eb3c4b7ff3d043cd6894a5d71097282587fad4cb2e99899b4995bfeb
3
+ size 462384
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4abf0214dab20cdd68dc06d6974be465f52c4df6f11b85e385c6c13e9ae1498a
3
+ size 158833936
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:372bfa9a69ff241c2696555d1f6a8c95bba2b11a483d8ded0c87fc00c4a4ff0f
3
+ size 1354
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4abf0214dab20cdd68dc06d6974be465f52c4df6f11b85e385c6c13e9ae1498a
3
+ size 158833936
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:342769ee0e1e748969c71f638a7e56fc9e9405c4fed7b86ea9b4c3566dbcb285
3
+ size 5416
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f96f96753b4de94e7e19b995d0860f3c5f443e4578184f5c4af8f082bb9eadcb
3
+ size 921
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e63c30d5d7ecb7128feb19d762e3f17da4121131be158f8ba15c290583c96985
3
+ size 6232
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e243701f84839d2d58dec3430d5c9388ae35ad5716407e72ee8b86f3afa8864
3
+ size 622
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7637a69da8c74e9327b9baa28bc3e8254e93c13c98b9fd99c465ba6ff9c4f5ac
3
+ size 331
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/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/m7/forestdiffusion/forest-m7-20260425_024652/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:705efb94b2e930bdddd3850dfb46ce4f4c182e22bf3d39a67740cb5b28ab756a
3
+ size 6439
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8758351f7f06bcf302527554be7b8c24038c4eb4fa49f1bb6202d094955e168
3
+ size 1144
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8
3
+ size 32934
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d
3
+ size 262059
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8
3
+ size 32704
5090-Success/m7/forestdiffusion/forest-m7-20260425_024652/train_20260425_024652.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25