| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- LSTM
- SPL
- javascript
- Numpy
- GT-S80
- synology
- mariadb
- pandas
- mean
- ipad
- DFS
- RNN
- E-P1
- install
- Button
- Lotto
- CNN
- GitHub
- index
- dataframe
- Series
- keras
- Python
- Splunk
- 삼성소프트웨어멤버십
- imread
- pycharm
- SciPy
- pip
- 알고리즘
Archives
- Today
- Total
목록Move (1)
잠토의 잠망경
[python] 딥러닝과 바둑
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), # ..
Book/0006.딥러닝과 바둑
2020. 6. 13. 07:23