Add 5090 success run m9/forestdiffusion/forest-m9-20260425_150810
Browse files- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_X_host.npy +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_gen.py +8 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_meta_host.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_train.py +20 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/forest-m9-15326-20260429_171929.csv +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/forestdiffusion_model.joblib +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/input_snapshot.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/models_fd/model.joblib +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/public_gate/public_gate_report.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/runtime_result.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/staged_features.json +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/test.csv +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/train.csv +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/val.csv +3 -0
- 5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/train_20260425_150810.log +3 -0
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2769c713d0fe42fb76566ec74c4d22a4cd476d64a75da4d667d43e991c1283d6
|
| 3 |
+
size 858384
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/m9/forestdiffusion/forest-m9-20260425_150810/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(15326))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-SpecializedModels/m9/forestdiffusion/forest-m9-20260425_150810/forest-m9-15326-20260429_171929.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09b4a9cf3c4dff5cec10bd8eb13648903dc0f4278bb926fe6e7f20058c3d0435
|
| 3 |
+
size 301
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/m9/forestdiffusion/forest-m9-20260425_150810/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/m9/forestdiffusion/forest-m9-20260425_150810/_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/m9/forestdiffusion/forest-m9-20260425_150810/forestdiffusion_model.joblib')
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/forest-m9-15326-20260429_171929.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ad97de8c27a2b866b44aa4863d9850acc6f2fbe6f3f26fe05a413c178fe3848
|
| 3 |
+
size 1680759
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6897ab05f598b586e97f97bcfe68d2c8e1602ac8099a99fb93d157549ef6970
|
| 3 |
+
size 1658220488
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42ca73fb4f266f7d7f9428128159c3f9fa4119ed59ff0a977abcd6480a61f25f
|
| 3 |
+
size 1357
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6897ab05f598b586e97f97bcfe68d2c8e1602ac8099a99fb93d157549ef6970
|
| 3 |
+
size 1658220488
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:993d65c319b791da718f3be7cf7ae72d12cd43c241d0cda0d82a3b4506c4c984
|
| 3 |
+
size 6709
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4113f3e714e580fcb22219eb548a7de4d57f80ef6cb5ed2396f3e45baead7078
|
| 3 |
+
size 913
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63bea0c82ce3d452a74a9a7dce03e5790adf6198fb3ed635fea82d528e6f292b
|
| 3 |
+
size 7525
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecc6006d0ec61ae29ebd0e05e480b08dcc1ad97152903e7e51958e7af28ca438
|
| 3 |
+
size 623
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee94d4e9c39467b96d30ce0d393c4c6456d3062c8e9c842af6cf69dc2c0909b0
|
| 3 |
+
size 331
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/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/m9/forestdiffusion/forest-m9-20260425_150810/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76f78d3425b9572349bfe439c7f2fae9613473adc3860206601a257726b55003
|
| 3 |
+
size 7732
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c737f5273d9543daa7adfeeadd1d30829575938fe476cf5bc4f780fd594a4fd
|
| 3 |
+
size 1407
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f61fd91d6b36fb78247e6a342fc5f089500396b09eda485421c74d5012138c07
|
| 3 |
+
size 193961
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8f6feb29a6c69afd23345fe03b2f3bb5d7f0f08bf8c8be86132e85ea54cfd65
|
| 3 |
+
size 1544257
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c73f6c76113338cf786877e911ac48e749a569a85ac2e266c7a6dea77ec9d28e
|
| 3 |
+
size 193818
|
5090-Success/m9/forestdiffusion/forest-m9-20260425_150810/train_20260425_150810.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|