Screen 사용법 정리
https://github.com/dalek7/umbrella/blob/master/ETC/screen.md
2018년 9월 24일 월요일
Sequential vs. Functional
Keras Models: Sequential vs. Functional
https://jovianlin.io/keras-models-sequential-vs-functional/
Reference:There are two ways to build Keras models: sequential and functional.The sequential API allows you to create models layer-by-layer for most problems. It is limited in that it does not allow you to create models that share layers or have multiple inputs or outputs.Alternatively, the functional API allows you to create models that have a lot more flexibility as you can easily define models where layers connect to more than just the previous and next layers.
https://jovianlin.io/keras-models-sequential-vs-functional/
2018년 9월 17일 월요일
To change the default setting to display line numbers in vi/vim:
To change the default setting to display line numbers in vi/vim:
vi ~/.vimrc
then add the following line to the file:
set number
Either we can source ~/.vimrc or save and quit by :wq, now vim session will have numbering
https://stackoverflow.com/a/31105979/8608003
vi ~/.vimrc
then add the following line to the file:
set number
Either we can source ~/.vimrc or save and quit by :wq, now vim session will have numbering
https://stackoverflow.com/a/31105979/8608003
2018년 8월 19일 일요일
Teacher forcing
Teacher forcing is a strategy for training recurrent neural networks that uses model output from a prior time step as an input.
... the decoder learns to generate
https://machinelearningmastery.com/teacher-forcing-for-recurrent-neural-networks/
... the decoder learns to generate
targets[t+1...]
given targets[...t]
, conditioned on the input sequence.https://machinelearningmastery.com/teacher-forcing-for-recurrent-neural-networks/
2018년 8월 17일 금요일
2018년 8월 15일 수요일
1/e
RMSprop
So that's RMSprop, and similar to momentum, has the effects of damping out the oscillations in gradient descent, in mini-batch gradient descent. And allowing you to maybe use a larger learning rate alpha. And certainly speeding up the learning speed of your algorithm.
from Andrew Ng's lecture
https://www.youtube.com/watch?v=_e-LFe_igno
2018년 8월 10일 금요일
Setup Bluetooth through Terminal
터미널에서 bluetooth 페어링하기 (블루투스 마우스)
https://www.cnet.com/how-to/how-to-setup-bluetooth-on-a-raspberry-pi-3/
or
http://archive.is/tpEHO
2018년 4월 23일 월요일
2017년 12월 28일 목요일
T표준점수
학생들 채점을 하다보니 필요한 표준점수..
http://blog.naver.com/PostView.nhn?blogId=oohyes0201&logNo=30031094911
http://archive.is/07qtY
Z-점수: 평균=0, 표준편차=1인 표준점수
Z = (변수 - 평균) / 표준편차 <높은 점수 - 높은 성적>
Z'= (평균 - 변수) / 표준편차 <낮은 점수 - 높은 성적>
T-점수: 평균=50, 표준편차=10인 표준점수
T = 10Z + 50 <높은 점수 - 높은 성적>
T'= 10Z' + 50 <낮은 점수 - 높은 성적>
http://blog.naver.com/PostView.nhn?blogId=oohyes0201&logNo=30031094911
http://archive.is/07qtY
Z-점수: 평균=0, 표준편차=1인 표준점수
Z = (변수 - 평균) / 표준편차 <높은 점수 - 높은 성적>
Z'= (평균 - 변수) / 표준편차 <낮은 점수 - 높은 성적>
T-점수: 평균=50, 표준편차=10인 표준점수
T = 10Z + 50 <높은 점수 - 높은 성적>
T'= 10Z' + 50 <낮은 점수 - 높은 성적>
2017년 12월 14일 목요일
Virtualenv 환경 복사하기
On the first virtual env:
On the second:
https://stackoverflow.com/a/11702289
pip freeze > requirements.txt
On the second:
pip install -r requirements.txt
https://stackoverflow.com/a/11702289
2017년 11월 13일 월요일
process terminated with status -1 (Codeblocks)
Settings -> Environments
Terminal to launch console programs :
gnome-terminal -t $TITLE -x
인데, gnome-terminal 이 설치 안된 경우도 있음.
$ sudo apt-get install gnome-terminal
참고로 default는 다음과 같음
xterm -T $TITLE -e
Terminal to launch console programs :
gnome-terminal -t $TITLE -x
인데, gnome-terminal 이 설치 안된 경우도 있음.
$ sudo apt-get install gnome-terminal
참고로 default는 다음과 같음
xterm -T $TITLE -e
피드 구독하기:
글 (Atom)