TabQueryBench commited on
Commit
38806ff
·
verified ·
1 Parent(s): a210a11

Add remaining 5090 success run c9/forestdiffusion/forest-c9-20260419_200956

Browse files
Files changed (20) hide show
  1. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/_fd_X_host.npy +3 -0
  2. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/_fd_gen.py +8 -0
  3. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/_fd_meta_host.json +3 -0
  4. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/_fd_train.py +20 -0
  5. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/forest-c9-26215-20260420_064923.csv +3 -0
  6. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/input_snapshot.json +3 -0
  8. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/models_fd/model.joblib +3 -0
  9. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/runtime_result.json +3 -0
  13. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/staged_features.json +3 -0
  17. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/test.csv +3 -0
  18. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/train.csv +3 -0
  19. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/val.csv +3 -0
  20. 5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/train_20260419_200956.log +3 -0
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49409373c1891e344242cd0658fab290a486ed9475addd64477522e21d4ebece
3
+ size 1048728
5090-Success/c9/forestdiffusion/forest-c9-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/c9/forestdiffusion/forest-c9-20260419_200956/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(26215))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c9/forestdiffusion/forest-c9-20260419_200956/forest-c9-26215-20260420_064923.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:825930f51e7e8ab4a7b8769ae0b7607e83b88a1d06dee09b2095dd78a5b49d14
3
+ size 183
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c9/forestdiffusion/forest-c9-20260419_200956/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c9/forestdiffusion/forest-c9-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/c9/forestdiffusion/forest-c9-20260419_200956/forestdiffusion_model.joblib')
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/forest-c9-26215-20260420_064923.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f3e19b7e86b721dad713723b37eb59590d6dca635f788f8b942b0cdc4541044
3
+ size 4487154
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4f9395e271fa8e2f9eba42d43e24f4ee66a00f03fa365e01c0261f05b5c82c2
3
+ size 97640618
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d155c39ce0dba9d05525bacbe672f7628246638893230819a2b8ad5a0d5412e
3
+ size 1357
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4f9395e271fa8e2f9eba42d43e24f4ee66a00f03fa365e01c0261f05b5c82c2
3
+ size 97640618
5090-Success/c9/forestdiffusion/forest-c9-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:83f8364b69bf8dbae1b24e07aaa9992a5f109c944e4c9a7c80cf6c26a46ac325
3
+ size 4803
5090-Success/c9/forestdiffusion/forest-c9-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:1964746533475f77130f406ab9512971a656fc1eeb5d1b649b92389810e7c7d7
3
+ size 914
5090-Success/c9/forestdiffusion/forest-c9-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:8d06b9e87c6a7f6fc6204eb3e4f5e3ff092a2e02e1254d44c82ade9883c28e55
3
+ size 5619
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70dd9cfb91f7fff142cfbd8f41676e09505876bcaab2863d66ba7cb9b583efd1
3
+ size 623
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da8e6ee4f64bcebd8cdcc63da12a9bb7487c47b5f568d96629a9bfaaabc5d0b2
3
+ size 331
5090-Success/c9/forestdiffusion/forest-c9-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/c9/forestdiffusion/forest-c9-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:08dab8d4206b011cbc18d4747e5203cbc6b4435fc844b9f5c30e10ab1d0d92a3
3
+ size 5826
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ac6e9727221d87c5fc182247d5b3205c5c1e7e3fc5722d3d3d0ceee528fb3b3
3
+ size 972
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0af6e0312230bd2e171907bf4a9604e4b600e6335c3e4b4842b1f60c8e7260c7
3
+ size 203927
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5289d18c270c8b9f28c49f65f7dcbcbfe99c6d9c36bf7468cb0bd306c37a6c7
3
+ size 1630334
5090-Success/c9/forestdiffusion/forest-c9-20260419_200956/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad236210ab730f44360ed17509da76cda75ad36d8ab73965a437110f905764d3
3
+ size 203862
5090-Success/c9/forestdiffusion/forest-c9-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