TabQueryBench commited on
Commit
3dcf24b
·
verified ·
1 Parent(s): f36ab9b

Add 5090 success run n10/forestdiffusion/forest-n10-20260430_052420

Browse files
Files changed (20) hide show
  1. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_X_host.npy +3 -0
  2. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_gen.py +8 -0
  3. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_meta_host.json +3 -0
  4. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_train.py +20 -0
  5. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/forest-n10-10888-20260430_132532.csv +3 -0
  6. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/input_snapshot.json +3 -0
  8. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/models_fd/model.joblib +3 -0
  9. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/runtime_result.json +3 -0
  13. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/staged_features.json +3 -0
  17. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/test.csv +3 -0
  18. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/train.csv +3 -0
  19. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/val.csv +3 -0
  20. 5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/train_20260430_052420.log +3 -0
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3947eeef27a6612459d1d353a47ae22f8e0515ff5fa222136469de2a9acc6a96
3
+ size 740512
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/n10/forestdiffusion/forest-n10-20260430_052420/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(10888))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/n10/forestdiffusion/forest-n10-20260430_052420/forest-n10-10888-20260430_132532.csv', index=False)
8
+ print("saved", len(df))
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea2867b5fc46f0a7890cd7137b9bd657ee50d042c3d09fe8f2a0365a4db62693
3
+ size 282
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/n10/forestdiffusion/forest-n10-20260430_052420/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/n10/forestdiffusion/forest-n10-20260430_052420/_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/n10/forestdiffusion/forest-n10-20260430_052420/forestdiffusion_model.joblib')
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/forest-n10-10888-20260430_132532.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:901a1adffbbcaa87bf240edcec4d5045ba5c1a1ec0d75288fda5567f060ce8b2
3
+ size 3486406
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95a900dfb9c759f6018a6c0cd5d3ce9afa13145a3ba537fe3b07937ea29b209b
3
+ size 163317107
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efbc112b5a7151efdeb3818091135b8259128d9ee01bc46e9f4af14d4b9904ef
3
+ size 1368
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95a900dfb9c759f6018a6c0cd5d3ce9afa13145a3ba537fe3b07937ea29b209b
3
+ size 163317107
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fee895fc1a117cbaab0b9758f74f0febe347530390032f18a87436840b7e0e60
3
+ size 9156
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:835bc3e7d1f3cba7279e31030121610d389d32ff0faa1982b1ef1d2b40622247
3
+ size 919
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5e3d7b712b36d345c54fa2b03eaf10ac755fa194e530928133d3751ef51313f
3
+ size 9982
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bd2c1d72ec9da3875ba3285f282065be9192d36be80fe98fe260a52fee98ea6
3
+ size 630
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc804786d929db5bf38bc92a4ab27830b45e003ec278de8ca530e79994f55a44
3
+ size 333
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/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/n10/forestdiffusion/forest-n10-20260430_052420/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e6794c559a59f0d85f98eec2084062b4684390f1bbb87f35a8a01159eaf0c28
3
+ size 10191
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d8641c4ae826d5fd344143623ff2fb6bff4f650e4dde3268bee6b5441b32a2a
3
+ size 1658
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19ba1cede34438e7c99e1e5b51c660cd2422bf4cb24556d5a54bcd1574d4dab9
3
+ size 379709
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d264cc48e17ff398df7edeb6819e5f66b3dbf14935184253bf21ac0cbb1d84e
3
+ size 3036991
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:158fe1f6049fb53cca70e222d76ff7901731586869da103df04b314ad2f195e1
3
+ size 379595
5090-Success/n10/forestdiffusion/forest-n10-20260430_052420/train_20260430_052420.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25