Add remaining 5090 success run m6/forestdiffusion/forest-m6-20260425_023058
Browse files- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_fd_X_host.npy +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_fd_gen.py +8 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_fd_meta_host.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_fd_train.py +20 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/forest-m6-9864-20260425_200111.csv +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/forestdiffusion_model.joblib +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/input_snapshot.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/models_fd/model.joblib +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/public_gate/public_gate_report.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/runtime_result.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/public/staged_features.json +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/public/test.csv +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/public/train.csv +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/public/val.csv +3 -0
- 5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/train_20260425_023059.log +3 -0
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_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
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/m6/forestdiffusion/forest-m6-20260425_023058/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-SpecializedModels/m6/forestdiffusion/forest-m6-20260425_023058/forest-m6-9864-20260425_200111.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_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
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/m6/forestdiffusion/forest-m6-20260425_023058/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/m6/forestdiffusion/forest-m6-20260425_023058/_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/m6/forestdiffusion/forest-m6-20260425_023058/forestdiffusion_model.joblib')
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/forest-m6-9864-20260425_200111.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4b54ec3b2765343405cebd8a698b49c5fb99f79e716f3283e763eec1b339b9d
|
| 3 |
+
size 2609199
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:155bbd5c5b4d598c32b09617896d1fa19f6895c5887cd698cb3bb01058bc859d
|
| 3 |
+
size 243056847
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0be3ca27dd37ad608a4a6621771787d5e2cadd8c3c238d29faf0849e82946586
|
| 3 |
+
size 1356
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:155bbd5c5b4d598c32b09617896d1fa19f6895c5887cd698cb3bb01058bc859d
|
| 3 |
+
size 243056847
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/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
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0995078aed9519e0ec6fda2a1152f71aabe3b498b0ea02928416afadfdeb1769
|
| 3 |
+
size 918
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67704e132860cccf935d1fb1f6ea56ec0c54a192071f62a7fe215045b24ebd71
|
| 3 |
+
size 9224
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b363e95c9ea70eb47a31559e9dca630ac8ee1d0e2497b91ec5b47e861927421
|
| 3 |
+
size 622
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea9c82ee51f700d45336260070578a61b4453215f3dc4f619f629e1504903bf5
|
| 3 |
+
size 331
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/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/m6/forestdiffusion/forest-m6-20260425_023058/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05f89bef6fd4b1fbc8384208cb3a5d9deedf046c36b4373b12507e925ab55a67
|
| 3 |
+
size 9431
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/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
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/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
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/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
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/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
|
5090-Success/m6/forestdiffusion/forest-m6-20260425_023058/train_20260425_023059.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|