Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- Linux
- sw
- IMAGE
- 서버
- php
- 안드로이드
- tensorflow
- 머신러닝
- MySQL
- tracking
- keras
- 정리
- 데이터
- 디버그모드
- Raspberry
- Object Detection
- Deep Learning
- FLASK
- 고급C
- Machine Learning
- RapidCheck
- 지능형
- Android
- 가상환경
- detection
- C언어
- 영상분석
- Video
- 라즈베리파이
Archives
- Today
- Total
목록기초 (1)
건프의 소소한 개발이야기
[Python - Tensorflow] Tensorflow 시작하기(1)
안녕하세요, 건프입니다. 이번엔 Python 기반의 Machine Learning 언어 및 플랫폼인 "Tensorflow" 를 사용해봅니다. import tensorflow as tf import numpy as np a = tf.constant([1,2,3]) b = tf.constant([[10, 20, 30], [100, 200, 300]]) c = tf.add(a,b) with tf.Session() as sess: print sess.run(c) 우선 상수 tensor a와 b를 생성합니다 이후, a 와 b를 더하는 tensor 인 c 를 생성합니다.그리고 Session 을 열고 c를 run 합니다.그 결과를 print 하면 다음과 같은 결과가 나타납니다. a는 벡터이고 b는 행렬인데, 더하기 ..
개발 이야기/Machine Learning 이야기
2016. 6. 4. 23:28