TabQueryBench commited on
Commit
2dc84af
·
verified ·
1 Parent(s): 3a82615

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

Browse files
Files changed (20) hide show
  1. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/_fd_X_host.npy +3 -0
  2. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/_fd_gen.py +8 -0
  3. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/_fd_meta_host.json +3 -0
  4. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/_fd_train.py +20 -0
  5. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/forest-c7-10368-20260420_142640.csv +3 -0
  6. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/input_snapshot.json +3 -0
  8. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/models_fd/model.joblib +3 -0
  9. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/runtime_result.json +3 -0
  13. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/staged_features.json +3 -0
  17. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/test.csv +3 -0
  18. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/train.csv +3 -0
  19. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/val.csv +3 -0
  20. 5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/train_20260419_200956.log +3 -0
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:704bab13ead16cf08a6c8521c33a1e9c77ec3c94ed9b6b190511a1b1d55d7ba1
3
+ size 373376
5090-Success/c7/forestdiffusion/forest-c7-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/c7/forestdiffusion/forest-c7-20260419_200956/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(10368))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c7/forestdiffusion/forest-c7-20260419_200956/forest-c7-10368-20260420_142640.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4086ab6e352f9bd700aaafdcb395b4cdd323874b19a1cc52a68fbb8fa2b2d212
3
+ size 153
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c7/forestdiffusion/forest-c7-20260419_200956/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c7/forestdiffusion/forest-c7-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/c7/forestdiffusion/forest-c7-20260419_200956/forestdiffusion_model.joblib')
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/forest-c7-10368-20260420_142640.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cb3e8f9b34a74ba0852c7771e38cf2dedcdd76884374ea8286b950cbbe3844c
3
+ size 504271
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6a4d7e4a280e4f8ba1a2844580c47d027497856969e2c238f7e9f9c89add966
3
+ size 191178097
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3825860f9369e86ff68d6cc9b13c90127e722845861403970be5bbbb694b0f66
3
+ size 1356
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6a4d7e4a280e4f8ba1a2844580c47d027497856969e2c238f7e9f9c89add966
3
+ size 191178097
5090-Success/c7/forestdiffusion/forest-c7-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:5dd68094a5d8fc40d291695c5aa12bc01cfe8d3a62848b4bcfd82c2e88ed19c9
3
+ size 4177
5090-Success/c7/forestdiffusion/forest-c7-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:eeef0c85f32d42a68cbcc67cf574c1fba26a3f456609f4141a8ab50e37a714d7
3
+ size 912
5090-Success/c7/forestdiffusion/forest-c7-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:074e082faeded2f6d5ff201e5f0d0681fff8e5bd2bde7fe4aa927c3dd03de30f
3
+ size 4993
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c83a46ce9dd7156cfbc5103438b3fb981a433ac9237de519cf993f425d5982f
3
+ size 623
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6a4c8a81701f9f47c3e6d83e840167d21a9b42492d1465129da7b0ed3776f30
3
+ size 331
5090-Success/c7/forestdiffusion/forest-c7-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/c7/forestdiffusion/forest-c7-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:f01a9fa64d93f3a2174840038d0ce873e38a5b5f89cbad7feab7ddf9c60515eb
3
+ size 5200
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07596ae0689482090a05749dba332eca061d863cde5d8bf7a83e8c2c92abb330
3
+ size 851
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058
3
+ size 106030
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a
3
+ size 847349
5090-Success/c7/forestdiffusion/forest-c7-20260419_200956/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780
3
+ size 106192
5090-Success/c7/forestdiffusion/forest-c7-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