Skip to content

Instantly share code, notes, and snippets.

@karino2
karino2 / GANの3式分かった.ipynb
Created March 7, 2017 12:32
先程分からなかった(3)の変形が分かった!
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / BeamSearch.ipynb
Created March 21, 2017 23:16
Beam Searchについての簡単な説明
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / インターバルとトライアド.ipynb
Created May 5, 2017 17:32
よくわかるコード理論講座、の動画の自分が覚えたい所のメモです。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / CS231n_softmaxのメモ.ipynb
Created May 14, 2017 06:20
CS231nのコースのsoftmaxの所で、定義を書き下したメモを書いた。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / 13_3_1のLDS周辺を追う.ipynb
Last active September 12, 2017 18:48
13.85式のあたりで何をやってるのか良く分からなくなってきたので、そもそも何をやりたかったのか、から考えてみる。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / setup.sh
Last active November 9, 2017 00:43
GCP Setup
#!/bin/sh
sudo apt-get update
sudo apt-get install -y git python-pip
git config --global user.email "[email protected]"
git config --global user.name "Kazuma Arino"
git config --global core.editor "vi"
# setup cuda
curl -O http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
@karino2
karino2 / setup.sh
Last active November 22, 2017 04:13
GCP Setup, debian, non gpu
#!/bin/sh
sudo apt-get update
sudo apt-get install -y git python-pip
git config --global user.email "[email protected]"
git config --global user.name "Kazuma Arino"
git config --global core.editor "vi"
#docker-ce for non GPU
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common