Add 5090 success run n9/forestdiffusion/forest-n9-20260429_212403
Browse files- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_X_host.npy +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_gen.py +8 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_meta_host.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_train.py +20 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/forest-n9-8794-20260430_052409.csv +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/forestdiffusion_model.joblib +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/input_snapshot.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/models_fd/model.joblib +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/public_gate/public_gate_report.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/runtime_result.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/staged_features.json +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/test.csv +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/train.csv +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/val.csv +3 -0
- 5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/train_20260429_212403.log +3 -0
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c851723338ee65328edd3eedb75e312f3d5bb58cb53948d48e144a9961e94bf
|
| 3 |
+
size 598120
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/n9/forestdiffusion/forest-n9-20260429_212403/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(8794))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-SpecializedModels/n9/forestdiffusion/forest-n9-20260429_212403/forest-n9-8794-20260430_052409.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40a8af0690bdc43746012687fec2f78b25517b2a7cf74ee31a6b69fc2ad8ec7e
|
| 3 |
+
size 261
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/n9/forestdiffusion/forest-n9-20260429_212403/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/n9/forestdiffusion/forest-n9-20260429_212403/_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/n9/forestdiffusion/forest-n9-20260429_212403/forestdiffusion_model.joblib')
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/forest-n9-8794-20260430_052409.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b53c1fcdee26c397e76448e3110f6183cd6d512335354e2617b4df972d3b4ef
|
| 3 |
+
size 2592437
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c19cc1b8a575629aee6dbc11631062a3ae079eb6eb335793b6eccd41d898750
|
| 3 |
+
size 165572285
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d0d81070417845ca51e4527eb1798270acd99583924b15610cbc5e1613a9f9f
|
| 3 |
+
size 1354
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c19cc1b8a575629aee6dbc11631062a3ae079eb6eb335793b6eccd41d898750
|
| 3 |
+
size 165572285
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:653eac75afead5f53a09d01b5319fa3ecb7e7618590c4578c04e260759b78ed9
|
| 3 |
+
size 7864
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0fe26882333f29cac798f0b59a80b62564e54077705a877de3c23a4fde28fd84
|
| 3 |
+
size 912
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d6ad89e6d62beaf869e1d341bc66cbf3a2ce1d926aefe58e8336205ca2aec7d
|
| 3 |
+
size 8680
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10dbe0d1698fa4e4052b56ae9df8113f88553b36bc73a00227fe943430afdd36
|
| 3 |
+
size 622
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8fb3908b5b831b4c44dc31993a64b1bacb0d28deccd82655d0b782abf3b224a
|
| 3 |
+
size 331
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/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/n9/forestdiffusion/forest-n9-20260429_212403/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73d47216996f4ee3006ba7163702df7ab6fb8a3a2102c03238aca74b47a02b2e
|
| 3 |
+
size 8887
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d885776c1caf3bc43a474d54dddcd3c92230d85db294c1655e00797e0665f08
|
| 3 |
+
size 1636
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8d13f8e2b38a047750a3197b6a95249a935bb4f3bbe57803a1ff585719dd32c
|
| 3 |
+
size 54106
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fe9e94a37bc9d9ce8e3e5aa24d99fd2c51e68f9fb34b56f0cd9b89a92502d07
|
| 3 |
+
size 431866
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:762c2acfb195c4245b988607fee3af7064ee8a00fa18714cb3e7a7becb54ff55
|
| 3 |
+
size 54170
|
5090-Success/n9/forestdiffusion/forest-n9-20260429_212403/train_20260429_212403.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|