File size: 452 Bytes
a4602e3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import os
import sys
# Ensure current working directory is in python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from generate_real_kecamatan_dataset import generate_dataset
def run_pipeline():
print("🚀 Running full data generation and spatial model training pipeline...")
df = generate_dataset()
import train
print("✨ Pipeline build completed successfully!")
if __name__ == "__main__":
run_pipeline()
|