TabQueryBench commited on
Commit
f8431e6
·
verified ·
1 Parent(s): 4e3def9

Add 5090 success run m5/forestdiffusion/forest-m5-20260425_022409

Browse files
Files changed (20) hide show
  1. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_X_host.npy +3 -0
  2. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_gen.py +8 -0
  3. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_meta_host.json +3 -0
  4. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_train.py +20 -0
  5. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/forest-m5-3539-20260426_040630.csv +3 -0
  6. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/input_snapshot.json +3 -0
  8. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/models_fd/model.joblib +3 -0
  9. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/runtime_result.json +3 -0
  13. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/staged_features.json +3 -0
  17. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/test.csv +3 -0
  18. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/train.csv +3 -0
  19. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/val.csv +3 -0
  20. 5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/train_20260425_022409.log +3 -0
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a92ece4c8f221d47b0441317bf565d760f9973201c90f0b6775b5e014a42207
3
+ size 523900
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/m5/forestdiffusion/forest-m5-20260425_022409/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(3539))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/m5/forestdiffusion/forest-m5-20260425_022409/forest-m5-3539-20260426_040630.csv', index=False)
8
+ print("saved", len(df))
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55aa79bc97296cfecc44933770992a6395c642f5eb525ec0ee32c4e874a6ce07
3
+ size 1052
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/m5/forestdiffusion/forest-m5-20260425_022409/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/m5/forestdiffusion/forest-m5-20260425_022409/_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/m5/forestdiffusion/forest-m5-20260425_022409/forestdiffusion_model.joblib')
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/forest-m5-3539-20260426_040630.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42c15ed36444466c274a82d2689f0eafa380db5c554078c950e9ad236437164e
3
+ size 1812942
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e05990ed0dd1fa6b08cd39caf7ae33831ef21aa17f7f38c9784400ad94f3e3f7
3
+ size 337390755
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba2250b12f81f58dee0044faa1ccffecac1916d4d672fa6e8b1413aab7a98918
3
+ size 1356
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e05990ed0dd1fa6b08cd39caf7ae33831ef21aa17f7f38c9784400ad94f3e3f7
3
+ size 337390755
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0842181000270f831fc5a634584366b305768795ef2b8fc37cfa7354cc8dd261
3
+ size 17113
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:801e82b3277060405c0fd96aa18ff7e560323da1c51e3eee5e41a755a2f053b0
3
+ size 913
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da68545e2b55ca6884adfe5730d077daca4ca9f71946e3e8ec3f401c26d9b7ff
3
+ size 17929
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da8b017fdd7a1aafe097b6afd5dbfa2d47bfab052b3099b57bfbe70e48e4ddbd
3
+ size 622
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf06140779d1170df21a595222c02e2133230a0b979c567920d60c33b7bab0ac
3
+ size 331
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/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/m5/forestdiffusion/forest-m5-20260425_022409/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b6e54d50be2050b57f784329bc72c1d0a94cd8ef62c7762ad37e237fd4f6ec4
3
+ size 18136
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4966adee2269582a83b612bffff9390170354c5d44e5c694204595ad1f3b05a
3
+ size 4027
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c
3
+ size 53943
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f
3
+ size 422717
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557
3
+ size 53889
5090-Success/m5/forestdiffusion/forest-m5-20260425_022409/train_20260425_022409.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25