Add remaining 5090 success run c10/forestdiffusion/forest-c10-20260419_200956
Browse files- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_X_host.npy +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_gen.py +8 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_meta_host.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_train.py +20 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/forest-c10-820008-20260420_115742.csv +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/forestdiffusion_model.joblib +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/input_snapshot.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/models_fd/model.joblib +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/public_gate/public_gate_report.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/runtime_result.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/staged_features.json +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/test.csv +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/train.csv +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/val.csv +3 -0
- 5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/train_20260419_200958.log +3 -0
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19c29f37e39bc9df8e214b320e42c13197e96c75b24fc5debc410fec0d6f8684
|
| 3 |
+
size 36080480
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/c10/forestdiffusion/forest-c10-20260419_200956/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(820008))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-SpecializedModels/c10/forestdiffusion/forest-c10-20260419_200956/forest-c10-820008-20260420_115742.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcf6c8a2871042e6dac2457e54bf953c04b16792319178ead7b7414a393d1ff4
|
| 3 |
+
size 106
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/c10/forestdiffusion/forest-c10-20260419_200956/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/c10/forestdiffusion/forest-c10-20260419_200956/_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/c10/forestdiffusion/forest-c10-20260419_200956/forestdiffusion_model.joblib')
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/forest-c10-820008-20260420_115742.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba5adac2b3beec3603115dbbebf78b429c50b7eb64efdd090fc402fe8ac6300a
|
| 3 |
+
size 150701603
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c213415b80f97da235cdeee5505b5b3ae67dae33f60754cd21cd12e218402e53
|
| 3 |
+
size 146165257
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8972f69e4f80328801c1e2d76289e4e21e01dc28044674d80461f7019e710c31
|
| 3 |
+
size 1371
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c213415b80f97da235cdeee5505b5b3ae67dae33f60754cd21cd12e218402e53
|
| 3 |
+
size 146165257
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7148c9ceb476ede5c254d7a50d92c8aba6ff2fae55ac0910a9658442e6280700
|
| 3 |
+
size 4900
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d426613479e876a1d85d8fea4bd8b2fd9a5109d37b55baa30e182f7f4d663d30
|
| 3 |
+
size 919
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a996cdfcc6d5d7601b9933c0613c4d0abf69e9f074b93b5b3ee935256efddc8
|
| 3 |
+
size 5726
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:876e919937149089fd381779da3d681cae97045f868e01fcecd2a065ad36b11d
|
| 3 |
+
size 631
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3e457eb09c793567b9a45fb6aa18463f81ebb6201f614d4e09584dd86fa8f7b
|
| 3 |
+
size 333
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/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/c10/forestdiffusion/forest-c10-20260419_200956/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:104c28b3a2ca20691af2df008d245dee137d1d18036a6e0bb18bd57b7ce0a902
|
| 3 |
+
size 5935
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6731a6de684726aac71a09ef332a76bfba59cb80562f5df3cacd198efdbbf608
|
| 3 |
+
size 983
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e7ce2790bd0b291bf9cf968a4ff9b74964a9caf1d0c613d0897843583e3118f
|
| 3 |
+
size 2412815
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8161358f4f74365c2c6f8c61a115d1f3f6598de4c923179d6c7a9a38b7912bd
|
| 3 |
+
size 19300938
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c46e64f7ec21c60fd61ce6ee8e060ceb4f2f7f831a1cac5368efe861d0dfc3b
|
| 3 |
+
size 2413372
|
5090-Success/c10/forestdiffusion/forest-c10-20260419_200956/train_20260419_200958.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|