TabQueryBench commited on
Commit
ace42fd
·
verified ·
1 Parent(s): 03da667

Add 5090 success run m10/forestdiffusion/forest-m10-20260425_200135

Browse files
Files changed (20) hide show
  1. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_X_host.npy +3 -0
  2. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_gen.py +8 -0
  3. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_meta_host.json +3 -0
  4. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_train.py +20 -0
  5. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/forest-m10-1600-20260426_101122.csv +3 -0
  6. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/forestdiffusion_model.joblib +3 -0
  7. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/input_snapshot.json +3 -0
  8. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/models_fd/model.joblib +3 -0
  9. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/public_gate/normalized_schema_snapshot.json +3 -0
  10. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/public_gate/public_gate_report.json +3 -0
  11. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/public_gate/staged_input_manifest.json +3 -0
  12. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/runtime_result.json +3 -0
  13. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/forestdiffusion/adapter_report.json +3 -0
  14. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  15. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/forestdiffusion/model_input_manifest.json +3 -0
  16. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/staged_features.json +3 -0
  17. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/test.csv +3 -0
  18. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/train.csv +3 -0
  19. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/val.csv +3 -0
  20. 5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/train_20260425_200136.log +3 -0
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0587ca26f2ddbc3ad135d1ca8bef52ecc08181ca339227cdb15c9630b4ec4bf
3
+ size 134528
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-SpecializedModels/m10/forestdiffusion/forest-m10-20260425_200135/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(1600))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-SpecializedModels/m10/forestdiffusion/forest-m10-20260425_200135/forest-m10-1600-20260426_101122.csv', index=False)
8
+ print("saved", len(df))
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1d786109c8a271d69ddb91e5e7e99adf58472f8d1938924bd2fc5d3e7ad9e8c
3
+ size 288
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/_fd_train.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-SpecializedModels/m10/forestdiffusion/forest-m10-20260425_200135/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-SpecializedModels/m10/forestdiffusion/forest-m10-20260425_200135/_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/m10/forestdiffusion/forest-m10-20260425_200135/forestdiffusion_model.joblib')
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/forest-m10-1600-20260426_101122.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74e465add05bf9ac6a68bafbfe395464aa9009760a7cef1f1ae2bb522ed0663c
3
+ size 473842
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b923b7214dd9fb5c82c3381c66c4405855498926f4404a3d08f5d94fe92c3396
3
+ size 195659284
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bab18086a0ef77c2595bdfe74f14f324f024bda6c40a6476cd9310045e54d3b7
3
+ size 1364
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b923b7214dd9fb5c82c3381c66c4405855498926f4404a3d08f5d94fe92c3396
3
+ size 195659284
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e0b4b32dc3273f99328e72f7b5a830444b967386c77d3eacbfe2f367235d172
3
+ size 9315
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f9d97f7d812f03897ed2ac1fba10b3ad0abb994aa8895608c4008dc2fde1671
3
+ size 920
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0221f617595906f4cbce08b86c85485868029ffa16fc0e9b66061b22a27d97bb
3
+ size 10141
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b0046b18f5642cf7232c5f77eb3c425aa1c5f0ba5cfa4672fd8cdfff59926ca
3
+ size 629
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:021c6ca95f1477778daa6e3b9ba8c8828d70577ee4981bd1ed6c547bb0097099
3
+ size 333
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/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/m10/forestdiffusion/forest-m10-20260425_200135/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45b015c84c8402fdcae800a781187c99e7c844118133f5fef5328c2316ea73b9
3
+ size 10350
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f9fd27ea602ac44946f02fbad5e711356035d61a0885cf84425dc44c75ff9f1
3
+ size 1952
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d112b674dd456a5bdc2c17ad698087f2df416abb02166d3a29a5873900ca5c0
3
+ size 12392
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de150b4643e0b79637165cc914e9fcfb6de70087020ecc8330be516c425aa579
3
+ size 97926
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cc0732d8711d262fd1bc7e0157e67872bcc08b0ac05ae2c75bd2773560e29fd
3
+ size 12423
5090-Success/m10/forestdiffusion/forest-m10-20260425_200135/train_20260425_200136.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
3
+ size 25