"This repository is an ULTIMATE TUTORIALS for different frameworks of AutoML"
입문자를 위한 튜토리얼이며, 튜토리얼 진행을 위해서 Python 기본 문법은 알고 있어야 합니다.
본 튜토리얼 Repository를 복제(Clone) 하거나 **"Download ZIP"**으로 내려 받습니다.
아나콘다 가상환경 및 Python 설치 (링크)
- [참고] 아나콘다 가상환경 설치 관련 블로그 글 (링크)
automl
가상환경을 설치 합니다.
- (Windows) anaconda prompt 열기
- (Mac OS) "Terminal" 열기
conda create -n automl python=3.8
생성한 가상환경에 진입합니다.
Windows
conda activate automl
MacOS
source activate automl
requirements.txt
에 설정된 패키지들을 일괄 설치 합니다.
pip install -r requirements.txt