Add remaining 5090 success run m4/forestdiffusion/forest-m4-20260424_082033
Browse files- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_X_host.npy +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_gen.py +8 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_meta_host.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_train.py +20 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/forest-m4-2217-20260424_115613.csv +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/forestdiffusion_model.joblib +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/input_snapshot.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/models_fd/model.joblib +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/public_gate/public_gate_report.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/runtime_result.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/staged_features.json +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/test.csv +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/train.csv +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/val.csv +3 -0
- 5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/train_20260424_082033.log +3 -0
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2075e38ffa201390419d8ba927a30948410d3bae79c47b2d376e0991c42ba455
|
| 3 |
+
size 62204
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/m4/forestdiffusion/forest-m4-20260424_082033/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(2217))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-SpecializedModels/m4/forestdiffusion/forest-m4-20260424_082033/forest-m4-2217-20260424_115613.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19d0903021c8db0432f40ebb0ad4bc909b216f35419c2eb217766d73d8fe11d2
|
| 3 |
+
size 108
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/m4/forestdiffusion/forest-m4-20260424_082033/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/m4/forestdiffusion/forest-m4-20260424_082033/_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/m4/forestdiffusion/forest-m4-20260424_082033/forestdiffusion_model.joblib')
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/forest-m4-2217-20260424_115613.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36e69b4d4485c1d109f80228208391b8f4f32bf7f87122f406603c9aac35b72b
|
| 3 |
+
size 184227
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11b2f14957d292d57060a3a0913d3f25ce118458d2b5117514284b739117c41d
|
| 3 |
+
size 83389245
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:337eb7d1fbe8ac301ee91ee91bfaf9b0ff696bd11032562682cd1d26743d1fbe
|
| 3 |
+
size 1353
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11b2f14957d292d57060a3a0913d3f25ce118458d2b5117514284b739117c41d
|
| 3 |
+
size 83389245
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:147188e89a0542cf3b022c634e88c2d00f2d4ee70b9581034df8ccb87204eee8
|
| 3 |
+
size 3234
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0702b19d99842cbfdf9f959fe1c2f900eb3015c64394b65c36c2b1d68433f524
|
| 3 |
+
size 910
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b83ac284e47dec33f17aa7876ffe0256da0a47519ad4b812f958c54bd1f9ba0
|
| 3 |
+
size 4050
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e298faaaf8cfe40a8f17e9f85bc522bd8bce4adb8401b92741eee89144ea6f28
|
| 3 |
+
size 622
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:092b5f95a7d91eff7fbcfc04b041f3579be48852e696ec2fdec365db12a8d8b8
|
| 3 |
+
size 331
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/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/m4/forestdiffusion/forest-m4-20260424_082033/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3970e3231b60e2354c3c01fcc9c0fcde9ab2c0413c613ba0e90428dab9f9d7c5
|
| 3 |
+
size 4257
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1207bcd03560fd5e534c9b55e7ef32d0bf5bf1ccb7c37782749c850b76b062ef
|
| 3 |
+
size 644
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea
|
| 3 |
+
size 11298
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837
|
| 3 |
+
size 90069
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7
|
| 3 |
+
size 11218
|
5090-Success/m4/forestdiffusion/forest-m4-20260424_082033/train_20260424_082033.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|