카테고리: Python

0

텐서플로 입문 (예제로 배우는 텐서플로)

책.텐서플로 입문 (예제로 배우는 텐서플로) 머신러닝을 공부하고자 하는 학생은 유투브, 코세라, 에드엑스 등 동영상 강의를 통해 해외 유명 대학의 수업을 쉽게 접할 수 있다. 들어가며 텐서플로(Tensorflow)는 머신 러닝과 딥 러닝을 위해 만들어진 오픈소스 소프트웨어 라이브러리이다. 머신러닝 알고리즘 지도 학습 : 프로그래머가 컴퓨터에게 해야 할

0

Visual Studio 2017 - python

VSCode - Settings Sync github 으로 이동한다. Key Features Use your github account token and Gist. Can create Anonymous Gist without using your Github account token. Easy to Upload and Download on one clic

0

Run Python as a Windows Service

Run Python as a Windows Service 단순하게 sc.exe 를 사용한다. 샘플코드인데 1sc create PythonApp binPath= "C:\Python34\Python.exe --C:\tmp\pythonscript.py" -- 이것이 왜 있는거지…??? 빼고 서비스를 생성해보자. 1sc create django

0

OpenCV Crop Frame and Save

OpenCV Crop Frame and Save 123count = 0cv2.imwrite("frame%d.jpg" % count, frame)count = count+1 123456import cv2img = cv2.imread("lenna.png")crop_img = img[200:400, 100:300] # Cro

0

윈도우에 pyrebase 설치

윈도우에 pyrebase 설치 설치 12345678910Collecting jws>=0.1.3 (from python-jwt==2.0.1->pyrebase) Using cached jws-0.1.3.tar.gz Complete output from command python setup.py egg_info: Traceback (m

0

django 프로젝트 생성

django 프로젝트 생성 프로젝트 생성 Google App Engine 에서 Django 사용하기 문자열 반환 URL 추가 1url(r'^view/', view.test), 함수 생성 12def test(request): return HttpResponse("Hello, world. You're at the