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,8 @@
# radiuma_pipeline.py
from dagster import job
from ops_reader import read_images, extract_features, write_report
@job
def radiuma_job():
result = extract_features(read_images())
write_report(result)