Add remaining 5090 success run n6/forestdiffusion/forest-n6-20260429_032351
Browse files- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_X_host.npy +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_gen.py +8 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_meta_host.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_train.py +20 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/forest-n6-6400-20260429_112707.csv +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/forestdiffusion_model.joblib +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/input_snapshot.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/models_fd/model.joblib +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/public_gate/public_gate_report.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/runtime_result.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/staged_features.json +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/test.csv +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/train.csv +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/val.csv +3 -0
- 5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/train_20260429_032352.log +3 -0
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e4ca71ef754aec60001d4541bfbd80348f65da032f4a0588c700c98f612c952
|
| 3 |
+
size 435328
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/n6/forestdiffusion/forest-n6-20260429_032351/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(6400))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-SpecializedModels/n6/forestdiffusion/forest-n6-20260429_032351/forest-n6-6400-20260429_112707.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36045a33c52e95514db5c5cd893444c215c7b02999ccf690a572858846dd7ca9
|
| 3 |
+
size 145
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/n6/forestdiffusion/forest-n6-20260429_032351/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/n6/forestdiffusion/forest-n6-20260429_032351/_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/n6/forestdiffusion/forest-n6-20260429_032351/forestdiffusion_model.joblib')
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/forest-n6-6400-20260429_112707.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ae9d7224f6573e1bc4c1dd64ec5cc1076d324f286014e8f7268e6dd79eba910
|
| 3 |
+
size 2052012
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:905b8e86c8d85b5655c943e692bb10936883b8471f6ec0a66f91efd0942f10db
|
| 3 |
+
size 160032467
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98164002f2c1d3f2152342226b15af48950c688da1057e597f4abd1b7790858d
|
| 3 |
+
size 1354
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:905b8e86c8d85b5655c943e692bb10936883b8471f6ec0a66f91efd0942f10db
|
| 3 |
+
size 160032467
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b240ee2cf62a2868bf54e3b4393eadd3d7751825bf4bb34743e85547f7cbcd3
|
| 3 |
+
size 7725
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c34e3ea923f7c8932850719a37b5f5774c68fc80501b8fe2312f2a1e30ed09e6
|
| 3 |
+
size 908
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:585a5f5fec070d82bf2e618c57294219fff3095d63e2bce16a63dca21c66587a
|
| 3 |
+
size 8541
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:966e837da926d67cc834095f459441ddc2c8599f34690e86185881232d265aa4
|
| 3 |
+
size 622
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c091cae9df248f8e557230c0dc57f274196f668b3bc44c4a33db77b38fb0a36f
|
| 3 |
+
size 331
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/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/n6/forestdiffusion/forest-n6-20260429_032351/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3761ba74ecd3d86bd2efbbde9cc3d152fd56e125f41c5771108ad9d424b3d3f4
|
| 3 |
+
size 8748
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e2869694dd92d59628a62fdd1349d4dd69eb6608ed9b0fdeb4b0800b6334d81
|
| 3 |
+
size 1520
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
|
| 3 |
+
size 39918
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
|
| 3 |
+
size 316902
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
|
| 3 |
+
size 39705
|
5090-Success/n6/forestdiffusion/forest-n6-20260429_032351/train_20260429_032352.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|