TabQueryBench commited on
Commit
3c047d3
·
verified ·
1 Parent(s): 68d4477

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

Browse files
Files changed (20) hide show
  1. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/_fd_X_host.npy +3 -0
  2. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/_fd_gen.py +8 -0
  3. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/_fd_meta_host.json +3 -0
  4. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/_fd_train.py +20 -0
  5. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/forest-c11-54045-20260421_163815.csv +3 -0
  6. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/input_snapshot.json +3 -0
  8. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/models_fd/model.joblib +3 -0
  9. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/runtime_result.json +3 -0
  13. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/staged_features.json +3 -0
  17. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/test.csv +3 -0
  18. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/train.csv +3 -0
  19. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/val.csv +3 -0
  20. 5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/train_20260419_200956.log +3 -0
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f2f4a359c120b7c69a9fd6b7d5dafb29660c3e9f050c52bb353f0c8274c959d
3
+ size 9295868
5090-Success/c11/forestdiffusion/forest-c11-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/c11/forestdiffusion/forest-c11-20260419_200956/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(54045))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/c11/forestdiffusion/forest-c11-20260419_200956/forest-c11-54045-20260421_163815.csv', index=False)
8
+ print("saved", len(df))
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c943a9b6f080e33ad72dd3b85ce8f99cc1aa86b0b9db929e7a475a5301a09c24
3
+ size 454
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/c11/forestdiffusion/forest-c11-20260419_200956/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/c11/forestdiffusion/forest-c11-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/c11/forestdiffusion/forest-c11-20260419_200956/forestdiffusion_model.joblib')
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/forest-c11-54045-20260421_163815.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:457dc3f91d8969e24d1b868a4e71e099f9b469604fcafe20e4b9ff2ef90545bb
3
+ size 9796927
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:531cc1c6548b787a5a92678b5440add6694e6a445bcefae5ce60f5c43a3356dd
3
+ size 842589479
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc0a0b7561d1757d3b7fc14c78e3ab50dfdf62b1d27adfed0c0805cc61171698
3
+ size 1370
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:531cc1c6548b787a5a92678b5440add6694e6a445bcefae5ce60f5c43a3356dd
3
+ size 842589479
5090-Success/c11/forestdiffusion/forest-c11-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:b387e803521158c1aa700ead7c21618e0e50431f16b63cab8a00e06ab28af399
3
+ size 17917
5090-Success/c11/forestdiffusion/forest-c11-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:c0c6da1cc9e572de73994f6b14042f50bac8385be6e1ada93887572c04ec41f9
3
+ size 919
5090-Success/c11/forestdiffusion/forest-c11-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:4e1474cd6aa0aca4b33a663029acb7ffb125611b4b93ecb09855850cfd2f50ff
3
+ size 18743
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c59aaa8381e8eee2b70329849fc3c69da6c5d4f0a9b246b1be8bb136dd4e9c1
3
+ size 630
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:292768104e0794b3a46281f8319997e78bfc89615440932f711be963186d5f83
3
+ size 333
5090-Success/c11/forestdiffusion/forest-c11-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/c11/forestdiffusion/forest-c11-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:e6a647e611288fae379cf7c36d82e8c2497f9b3635713fee9926ee91d5cef41f
3
+ size 18952
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e99375f3f096bf5d6d52a3e97804773b9ea59316c63312e7fb667cd6b858b78
3
+ size 3874
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bf013e6809cd2d7d0606cff7ce2daca4b4bdc9683262cfe5458a5d06c8efe15
3
+ size 597067
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea5c56f8337b738f6f4c8fd78647834cf1947072fd207f1a6c3e78453f49e66a
3
+ size 4774600
5090-Success/c11/forestdiffusion/forest-c11-20260419_200956/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25f005f58bf10bf36365d3b64392af50bc3f14d54ae06b431c381fbc8fcf4c3e
3
+ size 596829
5090-Success/c11/forestdiffusion/forest-c11-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