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