일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Splunk
- GitHub
- javascript
- synology
- pycharm
- Numpy
- SciPy
- Series
- imread
- ipad
- GT-S80
- LSTM
- index
- 삼성소프트웨어멤버십
- Python
- SPL
- E-P1
- CNN
- Button
- pip
- mean
- 알고리즘
- install
- pandas
- keras
- Lotto
- RNN
- DFS
- dataframe
- mariadb
- Today
- Total
목록공부 (287)
잠토의 잠망경

GITHUB https://github.com/yiwonjae/Project_Lotto/blob/master/Book_001/p100.py 0. 목표 이전 형태에서 model만 바꾼 것으로 input 값의 종류에 따라 layer를 변경한 것이다. 1. DATA # data sample in_seq1 = np.asarray([10, 20, 30, 40, 50, 60, 70, 80, 90]) in_seq2 = np.asarray([15, 25, 35, 45, 55, 65, 75, 85, 95]) out_seq = np.asarray([in_seq1[i]+in_seq2[i] for i in range(len(in_seq1))]) # sample용 의미 없음 in_seq1 = in_seq1.reshape((in..

GITHUB https://github.com/yiwonjae/Project_Lotto/blob/master/Book_001/p096.py 0. 목표 data가 두가지 종류가 있다. 현재 포함 과거 data 총 3단계를 바탕으로 예측되는 data를 산출한다. input data 10, 15 20, 25 30, 35 prediction data 65 1. DATA in_seq1 = np.asarray([10, 20, 30, 40, 50, 60, 70, 80, 90]) in_seq2 = np.asarray([15, 25, 35, 45, 55, 65, 75, 85, 95]) out_seq = np.asarray([in_seq1[i]+in_seq2[i] for i in range(len(in_seq1))]) i..
GITHUB https://github.com/yiwonjae/Project_Lotto/blob/master/Book_001/p091.py 0. 목표 연속된 하나의 sequcence에서 다음 하나의(univariate) 값을 예측한다. data : [10, 20, 30, 40, 50, 60, 70, 80, 90] x y 10 20 30 40 20 30 40 50 30 40 50 60 1. DATA raw_seq = [10, 20, 30, 40, 50, 60, 70, 80, 90] n_steps = 3 2. DATA 정제 X def splite_sequence(sequence:list, n_steps:int)->(ndarray, ndarray): x, y = [], [] for i in range(len(..

https://github.com/yiwonjae/Project_Book_012/blob/master/sample/sample001.py 불러오는 중입니다... 사전 준비 ① instant-client download ② cx-oracle download [사전 준비] instant-client download https://www.oracle.com/database/technologies/instant-client/downloads.html Oracle Instant Client Downloads No results found Your search did not match any results. We suggest you try the following to help find what you're lo..
git을 사용하다 보면 대용량 file upload가 필요하다. 1. git-lfs를 설치한다. https://git-lfs.github.com/ Git Large File Storage Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. git-lfs.github.com 2. 대상 git으로 이동해서 console 실행 $ git lfs install 3. 관..

1. CUDA Toolkit 설치 (Base: 10.1) 2. cuDNN 설치 (Base: 10.1) 1. CUDA Toolkit 설치(10.1) https://developer.nvidia.com/cuda-10.1-download-archive-update2?target_os=Windows&target_arch=x86_64&target_version=10&target_type=exelocal CUDA Toolkit 10.1 update2 Archive Select Target Platform Click on the green buttons that describe your target platform. Only supported platforms will be shown. Operating System..
역순으로 만드는 법 1. sliding 기법 a[::-1] print(a[::-1]) print(type(a)) 위와 같이 할 경우 역순으로만들 수 있다.