페이지

2019년 4월 30일 화요일

윈도우즈 환경에서 Python + TensorFlow + Keras 설치하기

단계-1. Anaconda Distribution 페이지에서 Windows 탭을 선택하고 Python 3.7 버전을 다운로드하여 설치합니다.
단계-2. 아래 메뉴에서 관리자 권한으로 Anaconda Prompt 창을 엽니다.
    Windows 시작 메뉴 > Anaconda3 (64-bit) > Anaconda Prompt
단계-3. Anaconda를 업데이트합니다.
>conda update -n base conda
단계-4. Python 사용 환경을 업데이트합니다.
>conda update --all
단계-5. TensorFlow를 설치합니다.
>conda install tensorflow
단계-6. 아래의 명령을 실행하여 이상이 없으면 TensorFlow가 성공적으로 설치된 것입니다.
>ipython
...
In [1]: import tensorflow as tf
In [2]:
단계-7. Keras를 설치합니다.
>conda install keras

Llama 3.2로 문장 생성 및 챗팅 완성 실습

Llama 3.2로 문장 생성 및 챗팅 완성 실습 Running Meta Llama on Linux 문서의 내용을 참고하여 Llama 3.2 1B 모델로 다음 두 가지 기능을 실습합니다. 문장 완성 챗팅 ...