목록전체 글 (412)
취미와 밥줄사이

1. 아나콘다 설치 및 실행 - 본인이 사용하는 컴퓨터의 해당 운영체제(windows / linux / mac os)에 따라 설치파일 실행하기 www.anaconda.com/products/individual Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 2. 가상환경 생성 1) 설치 후 Anaconda prompt 실행하기 (1) 가상환경에 설치할 파이썬 버전을 지정하지 않는다면 자동으로 최신버전이 지정됩니다. conda cr..

1. Visual Studio Code 설치 및 실행하기 code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications. code.visualstudio.com 2. pip를 통해서 streamlit 설치하기 p..

1. Python 가상환경이 필요한 이유 1) 서로 다른 응용프로그램의 경우 다른 버젼의 라이브러리나 모듈이 필요한 경우가 있다. 이러한 상황에서 버젼이 다른 모듈이 충돌할 위험이 발생할 수 있다. 이러한 상황을 예방하기 위해서 가상환경이 필요하다. 2) 프로그램을 개발하는 환경과 배포하는 환경이 다른 경우이다. 회사에서 개발자로 업무를 하는 경우를 예를 들수가 있다. 프로그램을 개발한 로컬컴퓨터와 프로그램의 배포되는 서버의 컴퓨터의 버전이 다른 경우에 다시 작업을 해야하는 문제가 생길 수가 있다. 로컬 컴퓨터에만 돌아가는 것은 의미가 없다. 회사의 서버에서 돌아가야 의미가 있다. 서버의 버전에 맞춰서 파이썬 라이브러를 모두 서버의 기준으로 맞춰서 개발을 해야한다. 이러한 상황에서 필요한 것이 가상환경이..
keras is a Deep Learning library for Python, that is simple, modular, and extensible. 케라스는 파이썬을 위한 딥러닝 라이브러리이며 단순하고 모듈적이며 확장가능하다. 1. ImageDataGenerator가 하는 역할과 코드 In this tutorial, we will present a few simple yet effective methods that you can use to build a powerful image classifier, using only very few training examples --just a few hundred or thousand pictures from each class you want to be ..