일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- deep learning
- 프로그래머스
- Linear Regression
- join
- softmax
- Neural Network
- 모두를 위한 딥러닝
- 한화오션
- stl
- SQL
- 모두를 위한 머신러닝
- 큐
- Machine learning
- c++
- BOJ
- TensorFlow
- deque
- sort
- 알고리즘 고득점 kit
- Queue
- Programmers
- 정렬
- 시간초과
- ML
- DFS
- PIR
- mysql
- CSAP
- 백준
- sung kim
Archives
- Today
- Total
목록numpy (1)
hello, world!
[ML lab 04-2] TensorFlow로 파일에서 데이타 읽어오기
[Slicing examples] b = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]) # array([[1, 2, 3, 4], # [5, 6, 7, 8], # [9, 10, 11, 12]]) b[:, 1] # array([ 2, 6, 10]) b[-1] # array([ 9, 10, 11, 12]) b[-1, :] # array([ 9, 10, 11, 12]) b[-1, ...] # array([ 9, 10, 11, 12]) b[0:2, :] # array([[1, 2, 3, 4], # [5, 6, 7, 8]]) [Loading data from file] x_data와 y_data가 많아짐에 따라 소스코드에 전부 적는 것이 무리가 있다. 따라서 텍..
AI/모두를 위한 ML (SungKim)
2021. 2. 17. 11:53