MLops

패스트캠퍼스 챌린지 40일차

Laftel 2022. 3. 4. 22:59
반응형

Store 구축과 Minio 연계 실습

Jupyter on Feast Server 실행

docker start feast-jupyter
docker exec -it feast-jupyter start.sh jupyter lab &

Feast Feature Store 구축하기

FeatureService 추가

Feature Repo 안의 example.py 에 아래 코드 추가

from feast import FeatureService
driver_fs = FeatureService(name="driver_ranking_fv_svc",
                           features=[driver_hourly_stats_view],
                           tags={"description": "Used for training an ElasticNet model"})
  • Terminal 에서 /home/jovyan/feature_repo 로 이동하여 feast apply 실행
    • data, example.py, feature_store.yaml 이외 다른 파일 삭제 필요
  • Feast 주요 명령어들 소개
    • Terminal 에서 feature_repo 로 이동하여 아래 명령들 실행 테스트
feast --help
feast feature-views list
feast feature-services list
feast feature-services describe <feature_service_name>
feast entities list

feast teardown ## 전부 삭제되므로 주의


#직장인인강 #직장인자기계발 #패스트캠퍼스후기#온라인패키지:머신러닝서비스구축을위한실전MLOps#머신러닝서비스구축을위한실전MLOps온라인패키지Online.
https://bit.ly/37BpXiC

 

패스트캠퍼스 [직장인 실무교육]

프로그래밍, 영상편집, UX/UI, 마케팅, 데이터 분석, 엑셀강의, The RED, 국비지원, 기업교육, 서비스 제공.

fastcampus.co.kr

본 포스팅은 패스트캠퍼스 환급 챌린지 참여를 위해 작성되었습니다.




반응형