반응형

아나콘다 3

텐서플로우 개발 환경 구축 2 (텐서플로우 설치)

이전 글에서 아나콘다를 설치해보았다. https://soccerda.tistory.com/113 텐서플로우 개발 환경 구축 1 (아나콘다 설치) Tensorflow 공식 홈페이지 https://www.tensorflow.org/install 에 들어가 보면 운영 체제별 설치 방법을 확인할 수 있다. Install TensorFlow 2 Learn how to install TensorFlow on your system. Download a pip.. soccerda.tistory.com anaconda에는 Python 및 다양한 패키지가 포함되어 있어 별도로 Python을 설치할 필요가 없다. 텐서플로우를 설치하기 위해서 가상 환경을 만들어야 한다. 가상 환경에 설치하면 기존 시스템에 영향을 받지 않고 ..

AI/DeepLearning 2020.06.01

텐서플로우 개발 환경 구축 1 (아나콘다 설치)

Tensorflow 공식 홈페이지 https://www.tensorflow.org/install 에 들어가 보면 운영 체제별 설치 방법을 확인할 수 있다. Install TensorFlow 2 Learn how to install TensorFlow on your system. Download a pip package, run in a Docker container, or build from source. Enable the GPU on supported cards. www.tensorflow.org 크게 CPU버전과 GPU 버전으로 나눠져 있어 자신의 자신의 시스템에 맞게 설치하면 되는데 CPU 버전은 시스템에 NVIDIA GPU를 가지고 있다면 설치하면 되며 GPU보다 설치 시간이 절약된다. GPU ..

AI/DeepLearning 2020.05.26

딥러닝 아나콘다 설치 및 spider 실습

최신 아나콘다는 최신 텐서플로우워를 지원하지 않는다https://repo.continuum.io/archive/ Anaconda3-5.2.0-Windows-x86_64.exe 관리자권한으로설치 실습코드# -*- coding: utf-8 -*-"""Spyder Editor This is a temporary script file.""" #정수형a=1print(a,type(a))#실수형b=1.0print(b,type(b))#문자열c="파이썬"print(c,type(c))#리스트[] 가변 객체d=[1,2,1.0,"인공지능",[5,6]]print(d,type(d))#튜플 불변객체e=(1,2,3.0,"인공지능2")print(e,type(e))d[3]="머신러닝"#e[3]="딥러닝"print("리스트:",d[3],..

AI/DeepLearning 2019.03.03
반응형