Add 5090 success run n5/forestdiffusion/forest-n5-20260427_105738
Browse files- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_X_host.npy +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_gen.py +8 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_meta_host.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_train.py +20 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/forest-n5-17010-20260429_032331.csv +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/forestdiffusion_model.joblib +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/input_snapshot.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/models_fd/model.joblib +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/public_gate/normalized_schema_snapshot.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/public_gate/public_gate_report.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/public_gate/staged_input_manifest.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/runtime_result.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/forestdiffusion/adapter_report.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/forestdiffusion/adapter_transforms_applied.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/forestdiffusion/model_input_manifest.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/staged_features.json +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/test.csv +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/train.csv +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/val.csv +3 -0
- 5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/train_20260427_105739.log +3 -0
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e62899a86fca12a5b462c65d270b3c37cf263644b64d5fddfd2bdf0d188f1ec
|
| 3 |
+
size 5579408
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_gen.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import joblib, pandas as pd
|
| 3 |
+
m, meta = joblib.load(r'/work/output-SpecializedModels/n5/forestdiffusion/forest-n5-20260427_105738/forestdiffusion_model.joblib')
|
| 4 |
+
# generate:batch_size 为样本数
|
| 5 |
+
arr = m.generate(batch_size=int(17010))
|
| 6 |
+
df = pd.DataFrame(arr, columns=meta["column_names"])
|
| 7 |
+
df.to_csv(r'/work/output-SpecializedModels/n5/forestdiffusion/forest-n5-20260427_105738/forest-n5-17010-20260429_032331.csv', index=False)
|
| 8 |
+
print("saved", len(df))
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_meta_host.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75230234ac2623210adb58559484f73bfcd268bfea0eb224af897ed307c84ada
|
| 3 |
+
size 1880
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/_fd_train.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-SpecializedModels/n5/forestdiffusion/forest-n5-20260427_105738/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-SpecializedModels/n5/forestdiffusion/forest-n5-20260427_105738/_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/n5/forestdiffusion/forest-n5-20260427_105738/forestdiffusion_model.joblib')
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/forest-n5-17010-20260429_032331.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3dd38c813555b609d2a18f6ff77a3486e3ddacc6660b91a7236093d3a68f933d
|
| 3 |
+
size 25692558
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/forestdiffusion_model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b449839e151b64f84a72225d88fd56c53552dc31ce0161391fa38f20a2381b3d
|
| 3 |
+
size 800631067
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ec458cd4eb74c595dec961ced8ad07508fd9b11ebe66986920511fb65bffadf
|
| 3 |
+
size 1362
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/models_fd/model.joblib
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b449839e151b64f84a72225d88fd56c53552dc31ce0161391fa38f20a2381b3d
|
| 3 |
+
size 800631067
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1040c08505d7d12423246ff5edb775aa195afb74ff3a306f09e495c391bf3797
|
| 3 |
+
size 42956
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bba35a161dd75f710820d3bfe711fff6d2a6b1a86f34a55adcc8a63db00b3add
|
| 3 |
+
size 922
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1af514de02794a1c407b1ff2390c7a608762aca5c22ee6c66ac9d81516fdaffa
|
| 3 |
+
size 43772
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1dc2d72d581bf7b55c621ef6f063eb3b3ac5c58b6b900cd0184d03fd90115e6a
|
| 3 |
+
size 623
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/forestdiffusion/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25a9e9ffed191f78978cc4dd6af614d6c35184ccc739fa724f51c52fe617d9c8
|
| 3 |
+
size 331
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/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/n5/forestdiffusion/forest-n5-20260427_105738/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c4032dda9437fb227150853b98d992f0a24ce70850bcb74c4b1ddb321969ed6
|
| 3 |
+
size 43979
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eed8a8509e7adba3169b6a451170f1d5c52adc97fe7669ef197ac560954c45bb
|
| 3 |
+
size 8650
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16efa6819477c1d61f1a80a9e480021d1814a8076e1c0f3182769e7e31fc5142
|
| 3 |
+
size 2403226
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c15cea644970e0d6a9c73d949153a38425fa473a8d0b4e2e70cfcdc7d09ec440
|
| 3 |
+
size 19205735
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c0a9b6eb141b64fcd162a8de3c3c11047c60f0d92a250663ea03cfc688bce3a
|
| 3 |
+
size 2412771
|
5090-Success/n5/forestdiffusion/forest-n5-20260427_105738/train_20260427_105739.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e3c3f0e5594533e51d7c09d3916fd0a5aa12d664ec2270e4ca4b32907b5bfa2
|
| 3 |
+
size 25
|