Skip to content

Instantly share code, notes, and snippets.

View minjejeon's full-sized avatar

Minje Jeon minjejeon

  • Bank of Korea
  • Seoul, Korea
View GitHub Profile
@minjejeon
minjejeon / min-char-rnn.py
Last active June 8, 2022 12:55 — forked from karpathy/min-char-rnn.py
min-char-rnn 한글 주석 추가
"""
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() # 텍스트 파일 로드
@minjejeon
minjejeon / custom.css
Created July 26, 2016 13:20
jupyter custom css
/*
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';
@minjejeon
minjejeon / 2016-07-18-rnn-lstm.md
Last active December 28, 2016 03:13
RNN, LSTM 관련글 링크