Skip to content

Commit 0843a14

Browse files
authored
배포 v1.2.7
배포 v1.2.7
2 parents 65fcd33 + 07df5b4 commit 0843a14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MLOps/app/services/deepctr_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class DeepCTRService:
99
"""DeepCTR 모델 서비스"""
1010

1111
def __init__(self):
12-
self.model = DeepFMModdelTrain("../../../data/final_click_log.csv")
12+
self.model = DeepFMModdelTrain("/home/ubuntu/MLOps/data/final_click_log.csv")
1313
self.elk_client = ELKClient()
1414
self.user_data_service = UserDataService()
1515

MLOps/app/services/user_data_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class UserDataService:
55
"""사용자 데이터 관리 서비스"""
66

77
def __init__(self):
8-
self.data_path = "../../../data/final_click_log.csv"
8+
self.data_path = "/home/ubuntu/MLOps/data/user.csv"
99
self.user_data = pd.read_csv(self.data_path)
1010

1111
def get_user_info(self, userid: str) -> Dict:

0 commit comments

Comments
 (0)