TabQueryBench commited on
Commit
211885a
·
verified ·
1 Parent(s): a42baba

Add files using upload-large-folder tool

Browse files
Files changed (21) hide show
  1. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_X_host.npy +3 -0
  2. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_gen.py +8 -0
  3. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_meta_host.json +3 -0
  4. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_train.py +28 -0
  5. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv +3 -0
  6. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib +3 -0
  7. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/gen_20260503_211948.log +3 -0
  8. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/input_snapshot.json +3 -0
  9. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/models_fd/model.joblib +3 -0
  10. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/normalized_schema_snapshot.json +3 -0
  11. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/public_gate_report.json +3 -0
  12. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/staged_input_manifest.json +3 -0
  13. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/runtime_result.json +3 -0
  14. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_report.json +3 -0
  15. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/model_input_manifest.json +3 -0
  17. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/staged_features.json +3 -0
  18. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/test.csv +3 -0
  19. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/train.csv +3 -0
  20. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/val.csv +3 -0
  21. syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/train_20260503_195212.log +3 -0
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0346bf8583b64028d74f6afb3d6f48466083db517af967cfb868f8f8fcced3ee
3
+ size 669588
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_gen.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ import joblib, pandas as pd
3
+ m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(15215))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv', index=False)
8
+ print("saved", len(df))
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2ed8eb6447a805f070ef97028581db180781bab16b408001ec27966d50596db
3
+ size 147
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/_fd_train.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/_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
+ print(
14
+ "[ForestDiffusion] train config: "
15
+ f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 "
16
+ f"n_estimators=100 duplicate_K=20 n_jobs=2 "
17
+ f"xgb_verbosity=1",
18
+ flush=True,
19
+ )
20
+ m = ForestDiffusionModel(
21
+ X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2,
22
+ model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes,
23
+ verbosity=1,
24
+ )
25
+ joblib.dump((m, meta), "/tmp/fd_model.joblib")
26
+ print("ForestDiffusion train OK")
27
+
28
+ shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib')
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5306a03af445c940f39afbb0ad66801284fb99a411f176ad2ca86dd929ff521d
3
+ size 3039046
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64ed3d5b788c1bb35e9ef48e190ca2772289cd323416654aaea8eb04a7bf4769
3
+ size 106363897
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/gen_20260503_211948.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afa2bb5f293a8017c1dda4f3ca09d89b144ed1888a6a42bfc81262a9d88a6069
3
+ size 295
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22fc0bcade56136b0b29da788f8af906cfebabfc1740c41f1d06eb2ec91c57da
3
+ size 1368
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64ed3d5b788c1bb35e9ef48e190ca2772289cd323416654aaea8eb04a7bf4769
3
+ size 106363897
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68c3209b66f9891477ccb430a3d02e3a299eb9c1a2d045bbf528bdfeb8de4fb0
3
+ size 5283
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6336138aac04ffe8bd9b1596f9d11556e4417d85ddb950dd20c9532ef6b9fd80
3
+ size 915
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bbc3fcd68b01f4a446703bced33f067b25040c53d7892fa7db351509088701b
3
+ size 6134
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a821d45e9a409ed6bdd3b3d6e6298b9e6f01f02ac396d53fad8f237ebcef446
3
+ size 932
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b188bca2e79b8265cc920d97ae54074e67a2c45378fbc0d35cce459ada99e3ae
3
+ size 338
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/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
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fad5e116e4fd55ae0cf6505abc5fd28974ca562262a5da34ca725af159cb8f6
3
+ size 6348
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ea5e7a5363e366f12e9794c57325c7f28e71ef584464c2f78fa67b80eca9a82
3
+ size 1025
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50
3
+ size 148017
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7
3
+ size 1182326
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44
3
+ size 147784
syntheticSuccess/n11/forestdiffusion/forest-n11-20260503_195211/train_20260503_195212.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eff762f0b42f4238855e40193571a54b74e22f4dcc360ee060539d33669e8636
3
+ size 426