File size: 351 Bytes
24203aa
 
 
 
 
 
 
 
 
 
b01d916
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""Chạy EquiFashionDB pipeline; cwd = thư mục chứa file này để đọc pipeline_config.yaml đúng."""

from __future__ import annotations

import os
from pathlib import Path

_ROOT = Path(__file__).resolve().parent
os.chdir(_ROOT)

from EquiFashionDB_pipeline.runner import main_cli

if __name__ == "__main__":
    main_cli()