일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- list
- data
- tensorflow
- Repository
- AI
- datascience
- Spring
- destroyallwindows
- CLONE
- imread
- 저장소
- opencv
- Anaconda
- imshow
- Python
- Linux
- 함수
- Session
- gitignore
- 이미지
- model
- branch
- 가중치
- 파이썬
- db
- Java
- git
- 머신러닝
- Vector
- r
- Today
- Total
목록AI (6)
AI학교

https://github.com/UB-Mannheim/tesseract/wiki에 들어가서 tesseract-ocr-w64-setup-v5.0.0-alpha.20191030.exe (64 bit) resp. 를 다운받아줍니다. 실행시키고 싶은 환경에서 activate ㅇㅇ conda install -c conda-forge pytesseract conda install -c conda-forge tesseract 두개를 설치해 줍니다.

상수 a = tf.constant(1) b = tf.constant(2) a와 b를 constant 상수 바구니에 담아줍니다. c = tf.add(a, b) c는 a와 b를 더한 값을 담아줍니다. sess = tf.Session() 실제로 실행하도록 해주는 흐름 객체를 만들어줍니다. sess.run(c) 세션을 실행시켜줍니다. 변수 a = tf.Variable(5) b = tf.Variable(3) a와 b를 Variable이라는 변수 바구니에 담아줍니다. c = tf.multiply(a, b) c에는 a와 b를 곱한(multiply)값을 담아줍니다. init = tf.global_variables_initializer() global_variables_initializer를 이용해 변수를 초기화해줍니다..

https://www.virtualbox.org https://www.ubuntu.com/ - 데스크탑용 https://putty.org - 운영체제 접속 Oracle VM VirtualBox Welcome to VirtualBox.org! News Flash New October 15th, 2019VirtualBox 6.0.14 released! Oracle today released a 6.0 maintenance release which improves stability and fixes regressions. See the Changelog for details. New September 4th, 2019VirtualBox 6.0.12 www.virtualbox.org The leading ope..

import json text -> json -> python객체 타입처럼 변환이 가능합니다.(list dictionary)