일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- index
- Python
- LSTM
- GT-S80
- keras
- SciPy
- RNN
- E-P1
- Lotto
- GitHub
- SPL
- 삼성소프트웨어멤버십
- Numpy
- Splunk
- pycharm
- pandas
- dataframe
- Button
- ipad
- pip
- 알고리즘
- synology
- Series
- DFS
- install
- mariadb
- CNN
- imread
- mean
- javascript
- Today
- Total
목록Python (25)
잠토의 잠망경
참고 https://swpfun.tistory.com/643 1 터미널 이동 # apt update # apt upgrade # apt install python3.8 # apt install python3-pip # pip3 install --upgrade pip
gym FrozenLake-v0에대한 예시가 있다. ![https://apincan.tistory.com/28?category=839519] SOM(Self Organizing Maps) SOM을 사용하기 위한 LIB이며 PIP에 등록된 GITHUB ![https://github.com/JustGlowing/minisom] SOM에 대한 개념 설명이 쉽게되어 있다. ![https://medium.com/machine-learning-researcher/self-organizing-map-som-c296561e2117] DTW DTW 알고리즘 설명 ![https://leo-bb.tistory.com/58]
VSCode로 python을 작성하려한다. 가장 기본이 되는 unittest를 하기 위한 환경 설정이 필요하여 기록으로 남긴다. 폴더 구성 index 파일이름 1 settings.json 2 sample009_01.py 3 sample009_01_test.py 사전 준비 { "python.pythonPath": "C:\\Users\\xxxxx\\AppData\\Local\\Programs\\Python\\Python36\\python.exe", "python.testing.unittestEnabled": false, "python.testing.nosetestsEnabled": false, "python.testing.pytestEnabled": true } unit code sample Target F..
Solution 일반적으로 실행 시키면 정상적으로 동작하지만 Crontab으로 가동시키면 동작하는 않는 문제가 발생하였다. 원인은 bash 때문인데 이를 Crontab에 어떻게 적용할지 고민하다가 발견한 Solution이다. 핵심 . /etc/profile;crontab 예시 $crontab -e 30 7 * * * . /etc/profile; /usr/local/bin/python2.7 /data/storeDataToOracleDB.py & batch File $vi mybatch.sh . /etc/profile; /usr/local/bin/python2.7 /data/storeDataToOracleDB.py $crontab -e 30 7 * * * mybatch.sh
bookgithub github main source from dlgo.ttt.ttttypes import Point from dlgo.ttt.ttttypes import Player from dlgo.ttt.tttboard import GameState from dlgo.ttt.tttboard import Move from dlgo.minmax.minmax import MinMaxAgent from six.moves import input COL_NAMES = 'ABC' def print_board(board)->None: print(' A B C') for row in (1, 2, 3): pieces = [] for col in (1, 2, 3): piece = board..
github set 기본기능 set의 특징 무질서 중복제거 code github #region::sample s1 = set([1,2,3,4]) print(s1) print(len(s1)) print(type(s1)) s2 = set('hello') print(s2) print(len(s2)) s3 = set() print(s3) print(len(s3)) #endregion 결과 {1, 2, 3, 4} 4 {'e', 'h', 'l', 'o'} 4 set() 0set에서 교집합, 차집합, 합집합 code github # region::union,difference,intersection s1 = set([1,2,3,4,5,6,7,8]..
참고 pycharm에서는 실행에 unitest 부분이 있다. 이걸로 실행한다. sample code def add(a, c): return a+c def mul(a, c): return a*c def divided(a, c): return a/c test code github import unittest import sample.myCalc as myCalc class myCalcTest(unittest.TestCase): def test_add(self): c = myCalc.add(10, 30) self.assertEqual(c, 40) def test_mul(self): c = myCalc.mul(10, 30) self.assertEqual(c, 300) def test_divided(self): ..
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), # ..