일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- 백준
- autoencoder
- GitHub Action
- NLP
- DeepLearning
- NaverAItech
- 코딩테스트
- FDS
- pep8
- Kubernetes
- github
- python
- GCP
- GIT
- wandb
- pytorch
- FastAPI
- datascience
- vscode
- 완전탐색
- Kaggle
- Matplotlib
- 프로그래머스
- 알고리즘
- rnn
- leetcode
- 네이버AItech
- docker
- torchserve
- PytorchLightning
- Today
- Total
목록네이버 AI 부스트캠프 4기/MLops (4)
Sangmun

Mlflow는 머신러닝 실험, 배포를 쉽게 관리해줄 수 있는 오픈소스이다. 개인적으로는 wandb가 빠르게 실험에 대한 내용을 기록해 줄 수 있는 도구라면 mlflow는 약간은 사용하기 복잡하지만 배포 및 운영하는데도 유용하게 쓸 수 있다는 느낌을 받았다. 기본 사용법 원래는 네이버 boost 캠프의 변성윤 마스터님의 강의를 참조하려고 하였으나 뭔가 잘 되지 않아 공식 document를 참조하기로 하였다. https://www.mlflow.org/docs/latest/quickstart.html Quickstart — MLflow 2.0.1 documentation Note MLflow works on MacOS. If you run into issues with the default system Pyt..

wandb sweep은 automl의 한 도구로써 하이퍼 파라미터를 찾는 작업을 자동으로 해주는 도구이다. https://docs.wandb.ai/guides/sweeps/add-w-and-b-to-your-code Add W&B to your code - Documentation To create a W&B Sweep, we first create a YAML configuration file. The configuration file contains he hyperparameters we want the sweep to explore. In the proceeding example, the batch size (batch_size), epochs (epochs), and the learning rat..

https://wandb.ai/cayush/pytorchlightning/reports/Use-PyTorch-Lightning-with-Weights-Biases--Vmlldzo2NjQ1Mw Use PyTorch Lightning with Weights & Biases In this article, we explore how to use PyTorch Lightning with Weights & Biases so that it's possible to quickly train and monitor models. . wandb.ai Pytorch ligntning에서 wandb를 이용하여 실험내용을 로깅하는 것은 매우 간단한다. 아래 코드 처럼 wandb_logger class를 선언만 해주고 traine..

Pytorch를 이용한 학습 시 Log를 기록할때 Tensorboard를 주로 사용하는것으로 알고 있었으나, 이번 강의를 통하여 weight & biases(wandb)라는 툴을 알게되어서 해당 툴을 사용법을 기록해보고자 한다. wandb는 MLOps의 대표적인 툴로 확대중이라고 한다. 배워두면 좋은툴 인것 같다. https://wandb.ai/site Weights & Biases – Developer tools for ML WandB is a central dashboard to keep track of your hyperparameters, system metrics, and predictions so you can compare models live, and share your findings. ..