일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- index
- ipad
- GT-S80
- keras
- javascript
- imread
- SPL
- DFS
- CNN
- synology
- Numpy
- Python
- Button
- dataframe
- pip
- RNN
- Series
- Splunk
- LSTM
- mean
- 삼성소프트웨어멤버십
- Lotto
- SciPy
- pycharm
- mariadb
- install
- GitHub
- 알고리즘
- pandas
- E-P1
- Today
- Total
목록ML (2)
잠토의 잠망경
gotypes.py github import enum #tag::color[] class Player(enum.Enum): black = 1 white = 2 @property def other(self): return Player.black if self == Player.white else Player.white #end::color[] #tag::points[] from collections import namedtuple class Point(namedtuple('Point', 'row col')): def neighbors(self): return[ Point(self.row-1, self.col), # A A Point(self.row+1, self.col), # ..
붓꽃 KNN GitHub GitHub 내용 KNN 알고리즘을 이용하여 Classification을 하는데 그 목적이 있다. Sample import pandas as pd # excel 같은 형태의 data table을 만들어준다. import matplotlib.pyplot as plt # 그래프를 만들어준다. from sklearn import datasets from sklearn.model_selection import train_test_split # test/train data split # data set에서 값들을 갖고 온다. iris_dataset = datasets.load_iris(); # training과 test를 나눈다. X_train, X_test, y_train, y_test..