This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD license | |
| python 3에서 실행 가능하도록 수정, 한글 해설 추가 | |
| """ | |
| import numpy as np | |
| # 데이터를 불러오고, 글자-벡터 간 상호 변환 매핑 준비 | |
| data = open('input.txt', 'r').read() # 텍스트 파일 로드 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Placeholder for custom user CSS | |
| mainly to be overridden in profile/static/custom/custom.css | |
| This will always be an empty file in IPython | |
| */ | |
| div.text_cell { | |
| font-family: 'Malgun Gothic'; |
NewerOlder