TabQueryBench commited on
Commit
062749e
·
verified ·
1 Parent(s): 2cba8fe

Add remaining 5090 success run c2/forestdiffusion/forest-c2-20260419_200955

Browse files
Files changed (20) hide show
  1. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_X_host.npy +3 -0
  2. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_gen.py +8 -0
  3. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_meta_host.json +3 -0
  4. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_train.py +20 -0
  5. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/forest-c2-1382-20260420_111849.csv +3 -0
  6. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/input_snapshot.json +3 -0
  8. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/models_fd/model.joblib +3 -0
  9. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/runtime_result.json +3 -0
  13. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/staged_features.json +3 -0
  17. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/test.csv +3 -0
  18. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/train.csv +3 -0
  19. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/val.csv +3 -0
  20. 5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/train_20260419_200956.log +3 -0
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280
3
+ size 38824
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260419_200955/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(1382))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260419_200955/forest-c2-1382-20260420_111849.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7128e33f2b73aeaa821c489d2024f3cc8a7cea3c1ec486467ed07e71ece7ba81
3
+ size 123
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260419_200955/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260419_200955/_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/c2/forestdiffusion/forest-c2-20260419_200955/forestdiffusion_model.joblib')
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/forest-c2-1382-20260420_111849.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0a0206710d413ca26961399f7467d29dd84fe9fd68faec0a43a6d35252fd9da
3
+ size 57354
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6c42984ccf7e254a383118e7ab92d30c7d6ae9da7a2e0ed59d986c5adb21861
3
+ size 144873415
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d7e8987c6202ff2b45eb327932465cefa5a581ee173073ba616f1584878e015
3
+ size 1351
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6c42984ccf7e254a383118e7ab92d30c7d6ae9da7a2e0ed59d986c5adb21861
3
+ size 144873415
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a63ea2091eccf0145444f670415e7201dbdd052bc2ddabdc4241f6f16bdcf0a0
3
+ size 3153
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1503b177727c3781414427a7bc1e423fa92e314f5cf957de4e258340ca60ddef
3
+ size 912
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50711fb75e950040a3b5dfafad7148af96900961e3fd3ae713e8c83a0e64f661
3
+ size 3969
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd5ef9e33e515b68c92510c86d3ff9840545f667f842085de3d6aeaa42e933cd
3
+ size 622
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28633a0d75c6d9f61158883696acc16faa9d4a2945479cd41df75ff472738986
3
+ size 331
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/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/c2/forestdiffusion/forest-c2-20260419_200955/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9d4bd64b79cfed2576b80ba2c32f937c79457a785a4c7f0040b809afaff3ecb
3
+ size 4176
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37511511f1d7cb0e004f9d7305c900644ebefe672c9a1a418c1f29b36786fabd
3
+ size 659
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73
3
+ size 5273
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd
3
+ size 41565
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01
3
+ size 5176
5090-Success/c2/forestdiffusion/forest-c2-20260419_200955/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