Add files using upload-large-folder tool
Browse files- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_fd_X_host.npy +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_fd_gen.py +8 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_fd_meta_host.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_fd_train.py +28 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/gen_20260430_054654.log +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/input_snapshot.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/models_fd/model.joblib +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/runtime_result.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_report.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/model_input_manifest.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/staged_features.json +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/test.csv +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/train.csv +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/val.csv +3 -0
- syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/train_20260430_054459.log +3 -0
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce27b51e592355e14fee8f6d47e08e3f99736fcde567190e0e180a1656361059
|
| 3 |
+
size 710336
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_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/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(9864))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31499a842126905384d1f622fa8907f31d1b1584ac9bbf184a88a9888f7643c6
|
| 3 |
+
size 338
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/_fd_train.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/_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/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib')
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7faf5b259fda52ff22517e77518e378b91030f3cb80a92b0f6eb6e9b35bcc216
|
| 3 |
+
size 2609459
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72b48bad6de7a535f72fcdeddfceebe8a0c6146586d37ab93dff734bb9f971df
|
| 3 |
+
size 243056863
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/gen_20260430_054654.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31252164f9e40ecd1845fe1b4af7576ffc653afed5086861d8ba6ee3c3fee702
|
| 3 |
+
size 294
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4b0076e796b2f100cd41e77fb659b335482e41378eb71e72c5c45b9199f795b
|
| 3 |
+
size 1356
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72b48bad6de7a535f72fcdeddfceebe8a0c6146586d37ab93dff734bb9f971df
|
| 3 |
+
size 243056863
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a347e1961ed33117b9d30b34fc15249721c7bd0b25fb31ac7f974d158104bdd
|
| 3 |
+
size 8408
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eab3321ed4d9b51e430632d2aedeca5d0260df7acff58b7d732c556dd377db9d
|
| 3 |
+
size 918
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb1f371027a9fecb379a7297032143dfe8e5b8f3012e3420ae1cf13f6e2afbb
|
| 3 |
+
size 9249
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe156cdc2d174af02ce8ededb66730db59980b69fca487fb50e91bf698563a87
|
| 3 |
+
size 632
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc29347ffdcaafd6e813ccdbc6df3041f6b81f5171a6b93d8ebb0835da1018b4
|
| 3 |
+
size 336
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/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/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:119ae68dda2f4d49cad36c1f65d02515a9f65301c2194c96e4aaa3fa6a77270e
|
| 3 |
+
size 9461
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23eac1d28d264cb53a977ae6229286741b38cdeec8b02eb2ee5f9a2949661e29
|
| 3 |
+
size 1780
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d
|
| 3 |
+
size 116376
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1
|
| 3 |
+
size 924849
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4
|
| 3 |
+
size 116198
|
syntheticSuccess/m6/forestdiffusion/forest-m6-20260430_054459/train_20260430_054459.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8173d211b9289155d4a0196a0d614b0dfb6e8797604c78d862fd30a3a6f57f46
|
| 3 |
+
size 424
|