Fix: segmentation get_model() parameter 수정
This commit is contained in:
parent
669562b712
commit
6a000be8d7
@ -35,9 +35,9 @@ async def segmentation_predict(request: PredictRequest):
|
|||||||
return response
|
return response
|
||||||
|
|
||||||
# 모델 로드
|
# 모델 로드
|
||||||
def get_model(request: PredictRequest):
|
def get_model(project_id:int, model_key:str):
|
||||||
try:
|
try:
|
||||||
return load_segmentation_model(request.project_id, request.m_key)
|
return load_segmentation_model(project_id, model_key)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise HTTPException(status_code=500, detail="load model exception: " + str(e))
|
raise HTTPException(status_code=500, detail="load model exception: " + str(e))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user