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
- Deep Learning
- Video
- 가상환경
- Python
- 라즈베리파이
- 영상분석
- Machine Learning
- php
- keras
- 머신러닝
- Object Detection
- Linux
- 정리
- RapidCheck
- MySQL
- tracking
- FLASK
- tensorflow
- sw
- 지능형
- C언어
- Raspberry
- detection
- 안드로이드
- IMAGE
- 디버그모드
- 데이터
- Android
- 고급C
- 서버
Archives
- Today
- Total
목록기초 (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