일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pandas
- 알고리즘
- keras
- DFS
- mariadb
- CNN
- Numpy
- pycharm
- SPL
- RNN
- GitHub
- E-P1
- imread
- dataframe
- Lotto
- synology
- Button
- GT-S80
- ipad
- index
- SciPy
- mean
- pip
- install
- Splunk
- Series
- 삼성소프트웨어멤버십
- Python
- LSTM
- javascript
- Today
- Total
목록공부 (287)
잠토의 잠망경
https://github.com/yiwonjae/Project_Algorithm/tree/master/Study05_01
https://github.com/yiwonjae/Project_Algorithm/tree/master/Study15_01
https://github.com/yiwonjae/Project_Algorithm/tree/master/Study16_01
https://github.com/yiwonjae/Project_Algorithm/tree/master/Study_08_01
https://github.com/yiwonjae/Project_Algorithm/tree/master/Study07_01
pycharm → code 함수 선택 → 오른쪽 key → goto → test( shift + ctrl + T) 일부 코드가 자동으로 생성된다. 아래와 같이 sample을 넣었으니 unitest하면 된다. from unittest import TestCase class Test(TestCase): def test_read_dbdata(self): from Stock.sample_stock01 import readDBData readDatas = readDBData() self.assertTrue(len(readDatas) >0) test 가 안보이는 경우 모듈을 찾는 과정이라 못 보여주는 거니 참고 인래하라
Solution 문제 InternalError: GPU sync failed 해결 코드상에 아래 부분을 넣어준다. from keras.backend import tensorflow_backend as K config = tf.ConfigProto() config.gpu_options.allow_growth = True K.set_session(tf.Session(config=config))