- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
목록Python (63)
민서네집
Docker 환경에서 %matplotlib qt 가 Import 에러남. ImportError: Matplotlib qt-based backends require an external PyQt4, PyQt5,or PySide package to be installed, but it was not found. (python3) root@bdfef6c5464a:~/data# pip install -U pyqt5Collecting pyqt5 Downloading PyQt5-5.7-cp35-cp35m-manylinux1_x86_64.whl (89.8MB) 100% |################################| 89.8MB 13kB/sCollecting sip (from pyqt5) Downloa..
pip install Django==1.10https://www.djangoproject.com/download/ 장고 걸스 튜토리얼 (Django Girls Tutorial)http://tutorial.djangogirls.org/ko/ 나의 첫 번째 Django 프로젝트!http://tutorial.djangogirls.org/ko/django_start_project/ [교재] 프로 리액트 (위키북스)Two Scoops of Django 인사이트 \32,000원http://www.yes24.com/24/Goods/27871271?Acode=101 Two Scoops of Django : 모범 사례로 배우는 Django(장고) 테크닉http://www.yes24.com/24/goods/30355215..
def __init__(self, name): self.name=name Person = type('Person',(object,),{"__init__":__init__})p = Person("Jerry")print(p.__dict__)print(type(p))print(Person.__class__) {'name': 'Jerry'} p의 type 값이 깔끔하게 class 'Person' 으로 나오지 않네요. 이유가 뭘까요??
# add() 의 도움말 보기help(add) # add()의 파이썬 소스를 보고 싶을 때import inspectinspect.getsource(add) # 바이트 코드 보기import disdis.dis(add) len((1,))=> 1 ()만 있으면 길이가 0인 tuple(1) 은 int type. ()는 우선 연산자로 작동한다.(1,) 은 길이가 1인 tuple v=()print(type(v)) # print(len(v)) # 0 v=1print(type(v))# # print(len(v))# TypeError: object of type 'int' has no len() v=(1,)print(type(v))# print(len(v))# 1 함수 안에서 static 변수를 설정하려면 http://..
Problem Solving with Algorithms and Data Structures using Python http://interactivepython.org/runestone/static/pythonds/index.html
밑바닥부터 시작하는 데이터 사이언스https://github.com/sungjin712/data_from_scratch https://github.com/DevStarSJ/Study/tree/master/Blog/Python/DataScienceFromScratch
eclipse pydev 에서도 remote 디버깅이 되는것 같은데 설정 방법이 훨씬 복잡하네요. Django / Docker / Remote Debug using Pydevhttp://stackoverflow.com/questions/36058776/django-docker-remote-debug-using-pydev
Where is python tensorflow mnist source file $ python -m tensorflow.models.image.mnist.convolutional (Execution) How to get Python module(file) location $ python -c "import os; import inspect; import tensorflow; print(os.path.dirname(inspect.getfile(tensorflow)))" [Result] /usr/local/lib/python2.7/dist-packages/tensorflow $ python -c "import os; import inspect; from tensorflow.models.image.mnist..
질문 하신 rtm_send 관련 소스 보실 수 있는 링크 입니다. https://github.com/slackhq/python-slackclient/blob/master/slackclient/_client.py java는 대부분의 컴퓨터에 깔려 있으니.. jar 파일 하나만 받아서, 터미널에서 실행하시면 될 것 같습니다. 파일도 5MB 밖에 안되요. ^^ (저도 방금 처음 깔아봐서 잘은 몰라요...) http://clojure.org/guides/getting_started jupyter에 clojure 설치하는 것은 이 글을 보시면 될 것 같아요. 잘 되네요. ^^ https://brunch.co.kr/@ksseono/10
from PIL import Image new_width = 256 new_height = 256 image = Image.open("original.jpg") width, height = image.size # Get dimensions left = (width - new_width)/2 top = (height - new_height)/2 right = (width + new_width)/2 bottom = (height + new_height)/2 image = image.crop((left, top, right, bottom)) image.save("cropped_image.jpg") JPEG 이미지를 Tensorflow 입력으로 변환 (CIFAR10 참조) [출처] JPEG 이미지를 Tensor..