TabQueryBench commited on
Commit
31e721e
·
verified ·
1 Parent(s): 7c53806

Add remaining 5090 success run n3/forestdiffusion/forest-n3-20260424_102420

Browse files
Files changed (20) hide show
  1. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_X_host.npy +3 -0
  2. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_gen.py +8 -0
  3. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_meta_host.json +3 -0
  4. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_train.py +20 -0
  5. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/forest-n3-3918-20260424_151326.csv +3 -0
  6. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/input_snapshot.json +3 -0
  8. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/models_fd/model.joblib +3 -0
  9. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/runtime_result.json +3 -0
  13. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/staged_features.json +3 -0
  17. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/test.csv +3 -0
  18. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/train.csv +3 -0
  19. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/val.csv +3 -0
  20. 5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/train_20260424_102420.log +3 -0
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff
3
+ size 188192
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/n3/forestdiffusion/forest-n3-20260424_102420/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(3918))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/n3/forestdiffusion/forest-n3-20260424_102420/forest-n3-3918-20260424_151326.csv', index=False)
8
+ print("saved", len(df))
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0287f599c103622a82983571d356b54f9e7eb7b6cdb44c37364c01d0a549a6a
3
+ size 219
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/n3/forestdiffusion/forest-n3-20260424_102420/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/n3/forestdiffusion/forest-n3-20260424_102420/_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/n3/forestdiffusion/forest-n3-20260424_102420/forestdiffusion_model.joblib')
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/forest-n3-3918-20260424_151326.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df078a271327545c330dfd4f2f4cc7cee476c015d2b30d764a2fc3a0e7a599e3
3
+ size 885219
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c579041dc1aaaeadaf91fbd683249e84cebfe161fceabbb3a7cc8e2597f20f63
3
+ size 112963509
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40aa5ff48c57d8d6144b1613a0e40f756e296985f6913a7e1dc53fde1083087a
3
+ size 1354
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c579041dc1aaaeadaf91fbd683249e84cebfe161fceabbb3a7cc8e2597f20f63
3
+ size 112963509
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0d6ea2b78489a6f1d2a4546e12404214ae439c9439a9922bea713ec72b4b12a
3
+ size 5698
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4967e78d725b24c05f5b3570c195d02364189d2b48e7c72f7b0d60a203964a4
3
+ size 914
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:257998a3f2938187d6fdb6340c159e3804d696727c412218a22884b32b343f11
3
+ size 6514
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aa9ddcd9749ef8b9ca742891b51a17d91f21db9d721eb086cfc37184037aa22
3
+ size 622
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52aeae30e31e0b7ac8f6dcb4a84795034f896bc0f44b9662e342d531864aab0a
3
+ size 331
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/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/n3/forestdiffusion/forest-n3-20260424_102420/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6812bfaec3fabd6f437783102c47ce54c53b55538642f4534fa01d12b6bb6c1e
3
+ size 6721
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:554e7aee4c0517bcf9d7810fc4a5563b6ed24d721bc267fee16aa28edd889143
3
+ size 1179
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b
3
+ size 28944
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9
3
+ size 229945
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6
3
+ size 28791
5090-Success/n3/forestdiffusion/forest-n3-20260424_102420/train_20260424_102420.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25