Add All Folders

This commit is contained in:
soorena62
2026-02-08 04:38:10 +03:30
commit 9bb57e4799
191 changed files with 8469 additions and 0 deletions
@@ -0,0 +1,9 @@
from dagster import op
@op
def write_report(features):
with open("artifacts/final_report.txt", "w", encoding="utf-8") as f:
f.write("# Radiomics Report\n")
f.write(f"Extracted {len(features)} features\n")
for k, v in features.items():
f.write(f"{k},{v}\n")