TabQueryBench commited on
Commit
e43febb
·
verified ·
1 Parent(s): 202094b

Add 5090 success run c8/forestdiffusion/forest-c8-20260419_200956

Browse files
Files changed (20) hide show
  1. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_X_host.npy +3 -0
  2. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_gen.py +8 -0
  3. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_meta_host.json +3 -0
  4. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_train.py +20 -0
  5. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/forest-c8-8844-20260420_193824.csv +3 -0
  6. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/input_snapshot.json +3 -0
  8. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/models_fd/model.joblib +3 -0
  9. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/runtime_result.json +3 -0
  13. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/staged_features.json +3 -0
  17. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/test.csv +3 -0
  18. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/train.csv +3 -0
  19. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/val.csv +3 -0
  20. 5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/train_20260419_200956.log +3 -0
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f558adb3431b2b5c07f1ea810a016abe6f6b011f93341ed55778691daaf4b6dc
3
+ size 1096784
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/c8/forestdiffusion/forest-c8-20260419_200956/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(8844))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c8/forestdiffusion/forest-c8-20260419_200956/forest-c8-8844-20260420_193824.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:755f9613aa79e5ce5d6c91216f7077ffd8c994370127b00715c8f1efabe25b68
3
+ size 559
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c8/forestdiffusion/forest-c8-20260419_200956/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c8/forestdiffusion/forest-c8-20260419_200956/_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/c8/forestdiffusion/forest-c8-20260419_200956/forestdiffusion_model.joblib')
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/forest-c8-8844-20260420_193824.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c2c339ac998f3c40920df9f99a957adac5d6bf6b12f9464fdd83c5ac3de3222
3
+ size 3287801
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8382b49ff77a491569a08815d346fddd33b432e030d5a593d31897b6c50a75f0
3
+ size 294164989
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91eb0f4179cdb76ba9baf62231af07d0703a0651cc6319aab2d5de6860323e6c
3
+ size 1356
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8382b49ff77a491569a08815d346fddd33b432e030d5a593d31897b6c50a75f0
3
+ size 294164989
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4213af428a9dba0a099f5f4b83768c0a9dd7b17a3045f0ddac06ce6354437140
3
+ size 12934
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c05fcf6daf4b968504c2e5d9a2d92257f0e29fb104b4822b486248f921ac6c5
3
+ size 923
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6852740eaf7fd722790277c464fabac5d38dcef7c4ef513217d1e3a35aa4ff4
3
+ size 13750
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2321ccf5b102f36d1d8647f7858ca90c0ef7324a127024f1f823894a33ff7e4
3
+ size 622
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d2b1e923b4100f0fe7a857a9c930d77343a51103d4790d81283dad1e56a8761
3
+ size 331
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/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/c8/forestdiffusion/forest-c8-20260419_200956/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4464db8e345cab5f563a6ceac4fb12abb86842a3c871f4d7225694bf7050deaa
3
+ size 13957
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:225f86796b970ab41c82ed9bc4036cfe6616bc61bc5a93404e4803ad6b375c6d
3
+ size 3090
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75e0809428463e710fffe7443c63202bb0df096f71365262a3e32e43e365fa35
3
+ size 79280
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88a639183f8fa6acc2a2465b4d787607df6b931c2b681b0e9d0e1be007fea0da
3
+ size 631235
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:272551def8b1e81583201f55065453d772f25b8dd17958d4f25478c033769f9e
3
+ size 79486
5090-Success/c8/forestdiffusion/forest-c8-20260419_200956/train_20260419_200956.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25