목록분류 전체보기 (96)
노는게 제일 좋습니다.
윈도우에서 텐서플로를 깔았다.시간이 지나 내용이 바뀌면. 여기를 참고. https://www.tensorflow.org/ 1. 파이썬 아나콘다 배포판을 받는다. 패키지 받기 귀찮으니 몽땅 다 넣어놓은 파이썬이다.나는 3.5v 64비트 인스톨러를 받았다.https://www.continuum.io/downloads#windows 2. 설치된 anaconda prompt를 켠다. 3. pip install tensorflow 라고 친다. 끝.
explicit program : 보통 쓰는 프로그램. 입력값을 보고 짜여진대로 결과를 보여줌.ML : 컴퓨터가 학습하는 능력을 주는 프로그램. ML에서 말하는 학습의 방법에 따라 다음과 같이 분류된다.1. supervised : training set으로 학습한다. 트레이닝 셋이란 정해진 레이블, 데이터를 말한다. 2. unsupervised : 정해진 레이블은 없고, 그냥 데이터 보고 알아서 학습. 이 두 개의 방식중, supervised방식의 learning으로 나오는 결과에 따라 세 가지로 나눈다.1. regression ( 0점부터 100점까지 ) : 범위가 크다.2. binary classification ( P, F ) : 두 개로 딱 떨어진다.3. multi label classificat..
SummaryWrong: lbl.text = "PLUG"Right : lbl.config(text = "PLUG") You have code.from tkinter import *master = Tk()lbl = Label(master, text="studioPLUG") lbl.pack() If you want to modify options of a widget ("studioPLUG" --> "PLUG") , you could see message like below. lbl.text = "PLUG">> Traceback (most recent call last): File "", line 1, in lbl.text AttributeError: 'Label' object has no attribute..
random 모듈 import 필요. random.random()0
reference http://effbot.org/tkinterbook/entry.htm#Tkinter.Entry.insert-method Entry has index. Index specify position. You can use index to access data in Entry.Example) ABCDEindex 2 means hear.(between A and B) AB CDE In webpage http://effbot.org/tkinterbook/entry.htm#Tkinter.Entry.insert-method , index is being said. IndexesThe Entry widget allows you to specify character positions in a number..
http://robotic-controls.com/learn/python-guis/basics-tkinter-gui That webpage explains FrameLabelEntryButtonCanvasText
Reference http://stackoverflow.com/questions/6582387/image-resize-under-photoimage Example from tkinter import * master = Tk()src_img = PhotoImage(file ='test.gif').subsample(20) image = Label(master, image = src_img)image.grid(row=0, column=2, columnspan=2, rowspan=2,sticky=N+S+W+E)
If you write code like this, error occurs.[code]img = PhotoImage(file ='test.gif')img.grid(row=0, column=0) [error] AttributeError: 'PhotoImage' object has no attribute 'grid' image.grid(row=0, column=0) File "C:\Users\studioplug\Desktop\aa.py", line 28, in Traceback (most recent call last): According my trying, PhotoImage object should be used by attribute of Label.src_img = PhotoImage(file ='t..