TabQueryBench commited on
Commit
89527a5
·
verified ·
1 Parent(s): e35fabb

Add 5090 success run m11/forestdiffusion/forest-m11-20260426_040649

Browse files
Files changed (20) hide show
  1. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_X_host.npy +3 -0
  2. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_gen.py +8 -0
  3. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_meta_host.json +3 -0
  4. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_train.py +20 -0
  5. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/forest-m11-304887-20260426_123310.csv +3 -0
  6. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/input_snapshot.json +3 -0
  8. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/models_fd/model.joblib +3 -0
  9. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/runtime_result.json +3 -0
  13. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/staged_features.json +3 -0
  17. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/test.csv +3 -0
  18. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/train.csv +3 -0
  19. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/val.csv +3 -0
  20. 5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/train_20260426_040651.log +3 -0
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a04bdf40ab88fa7f3fc6e465245872082abcb54cc1c3cd7408eff84e57748b3
3
+ size 14634704
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/m11/forestdiffusion/forest-m11-20260426_040649/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(304887))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/m11/forestdiffusion/forest-m11-20260426_040649/forest-m11-304887-20260426_123310.csv', index=False)
8
+ print("saved", len(df))
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb3c055fe5af03b4f66b16a2f63583e4b58bce1985d04fa592aa9d948f2869dd
3
+ size 228
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/m11/forestdiffusion/forest-m11-20260426_040649/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/m11/forestdiffusion/forest-m11-20260426_040649/_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/m11/forestdiffusion/forest-m11-20260426_040649/forestdiffusion_model.joblib')
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/forest-m11-304887-20260426_123310.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bab911f79f345e1d01904b63c733660c340603a36a63a2fd6d158ed3afac4a7b
3
+ size 43454072
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cc1ae53419bbe308876f6536ed4fa1749f8b308c99da66f2e4c56f59cb44960
3
+ size 160071237
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b45b8b68881b2e61aefe5ec6c9081bd0f8299986684b0844985204673ad6768
3
+ size 1371
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cc1ae53419bbe308876f6536ed4fa1749f8b308c99da66f2e4c56f59cb44960
3
+ size 160071237
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c72ff0473a3e4d42dad399ccbdb6e25cab814c11f02c3a1babfb03fd5d70f458
3
+ size 5400
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:408ce089749673256334d045f8d0d2f13b1e3d8ed048d99c68f23f89a91263bc
3
+ size 932
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b44c89ca50b40dc37bf1b28266fd14c3b020709ef8c6d5ae38fa246e4297920b
3
+ size 6226
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e89433c46156f3f111984dddf9c88d61dbd5db535703c2031afcd9f358d0f978
3
+ size 631
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35ce52253dedb822c1d968fd11d8565d4b3351c4f1b732049cff7e432322fadb
3
+ size 333
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/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/m11/forestdiffusion/forest-m11-20260426_040649/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:814d621bf1b1c0ec95d1aa5eff0a0560302edc0cffb8e49201668f25e3ae0392
3
+ size 6435
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b36d25a7769c0cbf2fcdd4f1ea3c717718c21b7d7f3af2e7650de64254c8a17d
3
+ size 1160
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45a031a23f36e6dec485a2c50a0314a1e7d92b0f084fe2fe226b068b2781783d
3
+ size 2143487
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:929bf5af6a31a08475878fb8f509e60d9b9aa0a48344ec40053e242f33eb15aa
3
+ size 17145673
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd630014d7f4fb9141831d29ca94cf2849de0e2a950913df63df846778180600
3
+ size 2143479
5090-Success/m11/forestdiffusion/forest-m11-20260426_040649/train_20260426_040651.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25