일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- sort
- 프로그래머스
- stl
- mysql
- ML
- 모두를 위한 딥러닝
- Queue
- 알고리즘 고득점 kit
- CSAP
- 한화오션
- 시간초과
- 큐
- Machine learning
- DFS
- 모두를 위한 머신러닝
- c++
- Neural Network
- join
- Programmers
- 백준
- 정렬
- TensorFlow
- BOJ
- PIR
- deque
- SQL
- Linear Regression
- sung kim
- deep learning
- softmax
Archives
- Today
- Total
목록merge (1)
hello, world!
[ML lab 09-2] Tensorboard (Neural Net for XOR)
TesnsorBoard 그래프를 통해 학습이 잘 이루어지고 있는지 한눈에 확인할 수 있다. [5 steps of using TensorBoard] 1. 어떤 tensor를 loging할 것인지 정한다. w2_hist = tf.summary.histogram("weights2", W2) cost_summ = tf.summary.scalar("cost", cost) 2. merge 한다. summary = tf.summary.merge_all() 3. file 위치를 적어 writer를 만들고 graph를 추가한다. # Create summary writer writer = tf.summary.FileWriter('./logs') writer.add_graph(sess.graph) 4. summery를 실행..
AI/모두를 위한 ML (SungKim)
2021. 2. 21. 01:27