Skip to content

Instantly share code, notes, and snippets.

View yoongi0428's full-sized avatar
🎯
Focusing

Yoonki Jeong yoongi0428

🎯
Focusing
  • NAVER Corp.
View GitHub Profile
0. PyTorch Tutorial
☆ - https://github.com/yunjey/pytorch-tutorial
- https://github.com/yoongi0428/dmlab_torch_tutorial
1. Word Embedding
1) 관련 논문
- Word2Vec: https://www.aclweb.org/anthology/N13-1090.pdf
☆ - Skip-gram: https://papers.nips.cc/paper/5021-distributed-representations-of-words-and-phrases-and-their-compositionality.pdf
2) 블로그
☆ - Jay Alammar "The Illustrated Word2Vec": http://jalammar.github.io/illustrated-word2vec/
@yoongi0428
yoongi0428 / deep_learning_lectures.txt
Last active January 30, 2020 05:25
Deep Learning Basic Lectures (01/30/20)
UC 버클리 - Introduction to Deep Learning (STAT 157)
https://courses.d2l.ai/berkeley-stat-157/syllabus.html
- 강의 + 슬라이드
- 전범위 (Linear regression ~ 최근 NLP, Vision 모델)
- 사용 실습 패키지: MxNet (한글 가이드 https://ko.d2l.ai/)
- 진행중인 강의로 Assignment는 순차 업로드
UCL + DeepMind - Deep Learning Lecture Series
https://www.eventbrite.co.uk/o/ucl-x-deepmind-deep-learning-lecture-series-general-29078980901?fbclid=IwAR1kpPES8IzR2L4oORESUypeZHfvQFiHXsdjZedgltPXpFamjEVNGZVuDxo
- 강의 + 슬라이드 (총 12강)
var hit_btn, stand_btn, db_btn, split_btn, sur_btn;
var bet_input, deal_btn;
var actions = [], deal_bet = [];
function setup() {
createCanvas(windowWidth,windowHeight);
background('green');
noStroke();
noLoop();
}
@yoongi0428
yoongi0428 / blackjack.js
Created August 22, 2017 06:36
game javascript
var bj_main;
//Card
function Card(type, number){
this.type = "";
this.number = -1;
this.value = -1;
this.SetInfo(type, number);
}
@yoongi0428
yoongi0428 / App.js
Last active August 11, 2017 13:01
Bytesjack App.js with Korean comments
/*
* BytesJack <https://github.com/EtienneLem/bytesjack>
*
* Dev Etienne Lemay <http://twitter.com/#!/EtienneLem>
* Design Tristan L'abbé <http://twitter.com/#!/_Tristan>
*
* Special thanks to rafBM <http://twitter.com/#!/rafbm> for some JS tricks!
*/
// Static class hack (auto init)