일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Linux
- demultiplexing
- 펌웨어
- Switch
- 텐서플로우
- 모두를 위한 딥러닝
- 인터럽트
- 3분 딥러닝
- 리눅스
- RDT
- Generalized forward
- Network layer
- Router
- 디바이스 드라이버
- file descriptors
- GPIO
- 모두를 위한 딥러닝]
- TensorFlow
- 스위치
- Class Activation Map
- Transport layer
- 딥러닝
- 신경망 첫걸음
- 신경망
- LED 제어
- 밑바닥부터 시작하는 딥러닝
- LED
- 운영체제
- Interrupt
- function call
Archives
- Today
- Total
목록텐서플로우 (2)
건조젤리의 저장소
[골빈해커의 3분 딥러닝 텐서플로맛] 정리
기본 개념 1234import tensorflow as tf hello = tf.constant('Hello, TensorFlow!')print(hello)cs 출력 Tensor("Const:0", shape=(), dtype=string) 문자열이 아닌 변수의 자료형과 무엇을 담고 있는지 정보가 출력된다. 12345a = tf.constant(10)b = tf.constant(32)c = tf.add(a,b) print(c)cs 출력Tensor("Add:0", shape=(), dtype=int32) 12345678910sess = tf.Session() print(sess.run(hello))print(sess.run([a, b, c])) # b 의미 : byte 코드이다. decode 하면 없어짐 ..
공부 기록/인공지능
2019. 2. 27. 23:06