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
- 머신러닝
- 이미지
- list
- tensorflow
- 저장소
- branch
- git
- Repository
- datascience
- Spring
- opencv
- db
- CLONE
- 파이썬
- data
- Linux
- AI
- gitignore
- 가중치
- Anaconda
- Java
- 함수
- Python
- Vector
- model
- imread
- destroyallwindows
- r
- imshow
- Session
Archives
- Today
- Total
목록Session (5)
AI학교

상수 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를 이용해 변수를 초기화해줍니다..
STUDY
2019. 12. 10. 13:56