TabQueryBench commited on
Commit
16b8223
·
verified ·
1 Parent(s): b94ad1d

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

Browse files
Files changed (20) hide show
  1. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/_fd_X_host.npy +3 -0
  2. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/_fd_gen.py +8 -0
  3. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/_fd_meta_host.json +3 -0
  4. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/_fd_train.py +20 -0
  5. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/forest-c4-2557-20260420_222400.csv +3 -0
  6. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/input_snapshot.json +3 -0
  8. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/models_fd/model.joblib +3 -0
  9. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/runtime_result.json +3 -0
  13. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/staged_features.json +3 -0
  17. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/test.csv +3 -0
  18. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/train.csv +3 -0
  19. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/val.csv +3 -0
  20. 5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/train_20260419_200956.log +3 -0
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f4f0efb8956f36a640001658e7b136381d948f1ac28915aef4ff38d3f2a8e0c
3
+ size 378564
5090-Success/c4/forestdiffusion/forest-c4-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/c4/forestdiffusion/forest-c4-20260419_200956/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(2557))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c4/forestdiffusion/forest-c4-20260419_200956/forest-c4-2557-20260420_222400.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3f8f9c1f327e456672803fec9cb2f3f7bd5eb85999f1873f4e56ac8b6a16887
3
+ size 502
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c4/forestdiffusion/forest-c4-20260419_200956/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c4/forestdiffusion/forest-c4-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/c4/forestdiffusion/forest-c4-20260419_200956/forestdiffusion_model.joblib')
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/forest-c4-2557-20260420_222400.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2eaeb58cda343685e0319b0d91d9eae6b5d95128625e756004e26cc5c94547a5
3
+ size 399541
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:532d71e0f979eb50bcfc4cbd39bea84203cd7e9b10527365c4959f16a748fafa
3
+ size 337184967
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55bf569d4af4cfeee9938a6e2e0d26efbf0317eb05c379c176648cac6d12ef06
3
+ size 1356
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:532d71e0f979eb50bcfc4cbd39bea84203cd7e9b10527365c4959f16a748fafa
3
+ size 337184967
5090-Success/c4/forestdiffusion/forest-c4-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:dd215e2b568b51c89131bc82ae10e581ce201a81c969236f2fad5e62f9fd5d8d
3
+ size 14899
5090-Success/c4/forestdiffusion/forest-c4-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:cef158c9809e79d0662cfe8676f3e496717d4679c6019dbf38d05229a591f6f6
3
+ size 912
5090-Success/c4/forestdiffusion/forest-c4-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:555ab03e89d7288d49d587b3244dc058fb95f90c9c354c8d0f3c56854717f1c9
3
+ size 15715
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b36a56ac4a7653aee3b02d30e7086223eaba81ab506dc7d3a2366b7af01b1bed
3
+ size 622
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70225222ce5e3b83f88000e5a406df20469fb8d19013a55b315401ba6faf81b1
3
+ size 331
5090-Success/c4/forestdiffusion/forest-c4-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/c4/forestdiffusion/forest-c4-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:c4aca0fb33e938cbb967aeda9b14dd4f9fba2bfd60b4348c5d18cf16c7f18683
3
+ size 15922
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a87f218a78f746c6bac3b01a4eeecffa6d238b7d3a8a4ad195998463ac57f305
3
+ size 3272
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0025753653c2b6aa73ac4dbaca5f0aab6b2834bfbab5aacee09a0a06b503f0c
3
+ size 24846
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:740abc2572f84132936c56aec13d8876c3f878fd131d8f6b6f339195f09d0036
3
+ size 197004
5090-Success/c4/forestdiffusion/forest-c4-20260419_200956/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:615716822f945c50a8f7c105fe3fbde1cc0bf29b057e0274f36c6f3256b55316
3
+ size 24766
5090-Success/c4/forestdiffusion/forest-c4-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