[실험] TRADE 모델 Serving하기 #82
JAEWOOSUN
started this conversation in
Experiments
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
TRADE 모델 Serving하기
Description: TRADE 모델 Serving
시작일: 2021년 5월 6일
실험자: 재우 선
제안자: 재우 선
종료일: 2021년 5월 10일
진행상황: 완료
카테고리: Deploying
문제 정의
훈련된 Model을 실제 서비스에서 사용하기 위한 Serving 작업
해결 아이디어
진행 상황
1. AWS Server에 필요한 파일 업로드
2. Handler 작성
handler는 실행된 model에서 preprocessor, postprocessor, inference 등을 정의해논 파일이다.
따라서 양식에 맞춰서 이러한 부분들을 작성해주어야함.
Handler는 torchserve의 BaseHandler를 상속받음
Handler에서는 두 가지를 분리하는 것이 중요
ex) tokenizer 정의, preprocessor 정의, model 정의, slot_meta 로드 등
기본적인 handler는 다음과 같이 정의된다.
3. Archive 만들기
다음 코드를 실행하면 torchserve에서 자동으로 archive를 만들어준다.
dst에서 Ontology 파일 등을 여기에 넣은 후, handler에서 불러와서 사용
4. Config.properties 작성
5. torchserve start
6. Inference 날리기
7. torchserve stop
결과
평가
Reference
Beta Was this translation helpful? Give feedback.
All reactions