TabQueryBench commited on
Commit
a2490c0
·
verified ·
1 Parent(s): f14481a

Add files using upload-large-folder tool

Browse files
Files changed (21) hide show
  1. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_fd_X_host.npy +3 -0
  2. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_fd_gen.py +8 -0
  3. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_fd_meta_host.json +3 -0
  4. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_fd_train.py +28 -0
  5. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv +3 -0
  6. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib +3 -0
  7. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/gen_20260430_054812.log +3 -0
  8. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/input_snapshot.json +3 -0
  9. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/models_fd/model.joblib +3 -0
  10. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/normalized_schema_snapshot.json +3 -0
  11. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/public_gate_report.json +3 -0
  12. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/staged_input_manifest.json +3 -0
  13. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/runtime_result.json +3 -0
  14. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_report.json +3 -0
  15. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/model_input_manifest.json +3 -0
  17. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/staged_features.json +3 -0
  18. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/test.csv +3 -0
  19. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/train.csv +3 -0
  20. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/val.csv +3 -0
  21. syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/train_20260430_054702.log +3 -0
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e4ca71ef754aec60001d4541bfbd80348f65da032f4a0588c700c98f612c952
3
+ size 435328
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_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/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(6400))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv', index=False)
8
+ print("saved", len(df))
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36045a33c52e95514db5c5cd893444c215c7b02999ccf690a572858846dd7ca9
3
+ size 145
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/_fd_train.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/_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/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib')
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d749f08869b7692e4644ba927e2acf6077ae09e07dccdf009bc9f328d12881fb
3
+ size 2050319
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cff49432187dadb16342ea856e6595fb0585592329a86c5ebe3223450c37771f
3
+ size 160032483
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/gen_20260430_054812.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7a783426d699ee9e6de613abf4caff8e4d5f280dc659e6abb0299c6121c1066
3
+ size 294
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbfa1292d6e1e001d9601cb8df0efcd026deb7a67cce71e1045c2c43bc0faae2
3
+ size 1354
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cff49432187dadb16342ea856e6595fb0585592329a86c5ebe3223450c37771f
3
+ size 160032483
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b240ee2cf62a2868bf54e3b4393eadd3d7751825bf4bb34743e85547f7cbcd3
3
+ size 7725
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:225732b90f81f74a3430523830af44cf151a7f15f2571a57ad83c2d55f982195
3
+ size 908
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26b645f673951e52d5f6e68c4e198a1b507987b4a604a4e001fbfdf6d541a93a
3
+ size 8566
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:791f2e1a9f0edaf5e4cca1d99cb0c0cf9f560ee24d5a3ac04c5b58e3ff219aaf
3
+ size 632
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1db7d44325f163d699b2e0a2aa3e416d83dd92d94fdea7fda31bff2c94f75823
3
+ size 336
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/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/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10d548c153ee4fe2bc0a19e68982c301a7beae304860e0159494b326b308067d
3
+ size 8778
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e2869694dd92d59628a62fdd1349d4dd69eb6608ed9b0fdeb4b0800b6334d81
3
+ size 1520
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
3
+ size 39918
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
3
+ size 316902
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
3
+ size 39705
syntheticSuccess/n6/forestdiffusion/forest-n6-20260430_054702/train_20260430_054702.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a093401613435f43b43c0a049bf8acf3a1a62d4de5281ea87675e47c12591f2
3
+ size 423