일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- matplotlib
- Python
- python visualization
- 파이썬
- 시각화
- MySQL
- MATLAB
- Blog
- 한빛미디어서평단
- 한빛미디어
- Visualization
- SQL
- Ga
- 월간결산
- 통계학
- Google Analytics
- 독후감
- 매틀랩
- 서평단
- 리눅스
- 파이썬 시각화
- 블로그
- 티스토리
- Linux
- 딥러닝
- Tistory
- tensorflow
- 서평
- 텐서플로
- Pandas
- Today
- Total
목록numpy (2)
pbj0812의 코딩 일기
0. 목표 - KNN 으로 편가르기 1. 실습 1) 데이터 생성 - 두 팀 생성 import numpy as np x = np.linspace(0, 5, 6) y = np.linspace(0, 100, 101) xx, yy = np.meshgrid(x, y) xxx = np.reshape(xx, (-1, )) yyy = np.reshape(yy, (-1, )) x2 = np.linspace(15, 20, 6) y2 = np.linspace(0, 100, 101) xx2, yy2 = np.meshgrid(x2, y2) xxx2 = np.reshape(xx2, (-1, )) yyy2 = np.reshape(yy2, (-1, )) 2) 데이터 프레임화 import pandas as pd df = pd.Data..
Pytorch with examples (numpy) 코드 분석 - 아래 글은 파이토치 튜토리얼 중 numpy 부분을 학습하여 영상으로 만든 것을 재구성한 글입니다. 원본링크 : https://pytorch.org/tutorials/beginner/pytorch_with_examples.html 유투브 영상 : https://youtu.be/ovENuzUM_5k 한글 주석 코드: https://github.com/pbj0812/deep_learning/blob/master/pytorch_tutorial/learning_pytorch_with_examples _numpy.ipynb 코드 프리뷰 - 전체 코드이다. - 비교적 짧게 구성되어 있다. 설계도 - 위 코드를 프리뷰하여 작성한 설계도이다. - hid..