TabQueryBench commited on
Commit
4efe5ae
·
verified ·
1 Parent(s): 2c79061

Add files using upload-large-folder tool

Browse files
Files changed (21) hide show
  1. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_fd_X_host.npy +3 -0
  2. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_fd_gen.py +8 -0
  3. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_fd_meta_host.json +3 -0
  4. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_fd_train.py +28 -0
  5. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv +3 -0
  6. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib +3 -0
  7. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/gen_20260430_054452.log +3 -0
  8. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/input_snapshot.json +3 -0
  9. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/models_fd/model.joblib +3 -0
  10. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/normalized_schema_snapshot.json +3 -0
  11. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/public_gate_report.json +3 -0
  12. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/staged_input_manifest.json +3 -0
  13. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/runtime_result.json +3 -0
  14. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_report.json +3 -0
  15. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
  16. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/model_input_manifest.json +3 -0
  17. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/staged_features.json +3 -0
  18. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/test.csv +3 -0
  19. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/train.csv +3 -0
  20. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/val.csv +3 -0
  21. syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/train_20260429_210000.log +3 -0
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_fd_X_host.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:704bab13ead16cf08a6c8521c33a1e9c77ec3c94ed9b6b190511a1b1d55d7ba1
3
+ size 373376
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_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/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib')
4
+ # generate:batch_size 为样本数
5
+ arr = m.generate(batch_size=int(10368))
6
+ df = pd.DataFrame(arr, columns=meta["column_names"])
7
+ df.to_csv(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv', index=False)
8
+ print("saved", len(df))
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_fd_meta_host.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4086ab6e352f9bd700aaafdcb395b4cdd323874b19a1cc52a68fbb8fa2b2d212
3
+ size 153
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/_fd_train.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import shutil, json
3
+ shutil.copy(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/_fd_X_host.npy', '/tmp/fd_X.npy')
4
+ with open(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/_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/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib')
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:703360b58e9d53fe5254592edfe3c9a39155fde5e78017c6dcf544c20b00ab2e
3
+ size 504811
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b6b0fa6051d5a485cbfd393e980f1ac6f949cdb1b3f91b49c4e55d5f637a0be
3
+ size 191178113
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/gen_20260430_054452.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c49c54437191843a32a8a9e36c89644373d4384f753025182b0e4b2bed2e3f7
3
+ size 294
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/input_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0484aa5a0c1b7e2122560ad2d9e7e4ef3a156212a2d328304c0f3ced9c68cce3
3
+ size 1356
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/models_fd/model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b6b0fa6051d5a485cbfd393e980f1ac6f949cdb1b3f91b49c4e55d5f637a0be
3
+ size 191178113
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dd68094a5d8fc40d291695c5aa12bc01cfe8d3a62848b4bcfd82c2e88ed19c9
3
+ size 4177
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f08566bcd78a9005059bf27f5f9ecf74954e2be289410d19100e900577f651ea
3
+ size 912
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd3076be9f1e0586c093a9e7195f5056393d7ec56f44b4e1d239d833008dd880
3
+ size 5018
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/runtime_result.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2e3a722b925d5cd42d9967e7f504c6725c946e9cf48bc708a563481ed1ec4cb
3
+ size 633
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_report.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f5f228913d9b1d605d7279226f7f2935b5a475472c3afed165d96c70cd03cf1
3
+ size 336
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/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/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/model_input_manifest.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4673fad07b276078d4424adcd706f9849f721a0ec15b8f87ee3c043f1d9d7cd
3
+ size 5230
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/staged_features.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07596ae0689482090a05749dba332eca061d863cde5d8bf7a83e8c2c92abb330
3
+ size 851
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058
3
+ size 106030
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a
3
+ size 847349
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780
3
+ size 106192
syntheticSuccess/c7/forestdiffusion/forest-c7-20260429_210000/train_20260429_210000.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9226abaddf0b235c55e758a858abb878322b6fa7ce4917212f87f4237f1dcfa3
3
+ size 426