Skip to content

Latest commit

 

History

History
 
 

README.md

자동 머신러닝 도구 튜토리얼

"This repository is an ULTIMATE TUTORIALS for different frameworks of AutoML"

입문자를 위한 튜토리얼이며, 튜토리얼 진행을 위해서 Python 기본 문법은 알고 있어야 합니다.


설치(Installation)

본 튜토리얼 Repository를 복제(Clone) 하거나 **"Download ZIP"**으로 내려 받습니다.

image-20220828033638915

아나콘다 가상환경 및 Python 설치 (링크)

  • [참고] 아나콘다 가상환경 설치 관련 블로그 글 (링크)

image-20220828033256739

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