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
+14
View File
@@ -0,0 +1,14 @@
import luigi
import time
from engine.pipeline import RadiumaPipeline
if __name__ == "__main__":
start = time.time()
luigi.build([RadiumaPipeline(artifacts_dir="artifacts")], local_scheduler=True)
elapsed = time.time() - start
hours, rem = divmod(elapsed, 3600)
minutes, seconds = divmod(rem, 60)
centiseconds = int((seconds - int(seconds)) * 100)
print(f"[Pipeline] total execution time: {int(hours):02}:{int(minutes):02}:{int(seconds):02}.{centiseconds:02}")
print("=== Workflow completed successfully ===")