Add remaining 5090 success run c2/forestdiffusion/forest-c2-20260420_023921
Browse files- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_X_host.npy +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_gen.py +8 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_meta_host.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_train.py +20 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/forest-c2-1382-20260420_145647.csv +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/forestdiffusion_model.joblib +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/input_snapshot.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/models_fd/model.joblib +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/public_gate/public_gate_report.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/runtime_result.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/staged_features.json +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/test.csv +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/train.csv +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/val.csv +3 -0
- 5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/train_20260420_023921.log +3 -0
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280
|
| 3 |
+
size 38824
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260420_023921/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(1382))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260420_023921/forest-c2-1382-20260420_145647.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7128e33f2b73aeaa821c489d2024f3cc8a7cea3c1ec486467ed07e71ece7ba81
|
| 3 |
+
size 123
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260420_023921/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/c2/forestdiffusion/forest-c2-20260420_023921/_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/c2/forestdiffusion/forest-c2-20260420_023921/forestdiffusion_model.joblib')
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/forest-c2-1382-20260420_145647.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55302be09101c8c0b00050483b31e010caf92637481dd8f4a42a5cce4acebe4b
|
| 3 |
+
size 57172
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6c42984ccf7e254a383118e7ab92d30c7d6ae9da7a2e0ed59d986c5adb21861
|
| 3 |
+
size 144873415
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d7e8987c6202ff2b45eb327932465cefa5a581ee173073ba616f1584878e015
|
| 3 |
+
size 1351
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6c42984ccf7e254a383118e7ab92d30c7d6ae9da7a2e0ed59d986c5adb21861
|
| 3 |
+
size 144873415
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a63ea2091eccf0145444f670415e7201dbdd052bc2ddabdc4241f6f16bdcf0a0
|
| 3 |
+
size 3153
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1503b177727c3781414427a7bc1e423fa92e314f5cf957de4e258340ca60ddef
|
| 3 |
+
size 912
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b78a48b9c3e6dead89b58df38d03024acd2b1f71ec43b5968efc395dcf81ea07
|
| 3 |
+
size 3969
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e880106b93644912ea6b02b88a1eadc0269e4468ff2636da958630fcb2519b0
|
| 3 |
+
size 622
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7012eb112562389935fdd6adbe308dff9112590ca595d20e10e2d593963e554a
|
| 3 |
+
size 331
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/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/c2/forestdiffusion/forest-c2-20260420_023921/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea5dbe8eb695ec9df4380916229716539cebf26e8c1a1fea608f3d61a574994a
|
| 3 |
+
size 4176
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37511511f1d7cb0e004f9d7305c900644ebefe672c9a1a418c1f29b36786fabd
|
| 3 |
+
size 659
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73
|
| 3 |
+
size 5273
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd
|
| 3 |
+
size 41565
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01
|
| 3 |
+
size 5176
|
5090-Success/c2/forestdiffusion/forest-c2-20260420_023921/train_20260420_023921.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|