Skip to content

Instantly share code, notes, and snippets.

@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.
@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 / GANの3式が分からない.ipynb
Created March 7, 2017 12:15
GANの論文の4.1にある(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 / 5_3_2_例の計算を自分でもやってみる.ipynb
Created March 3, 2017 01:21
PRMLの5.3.2の具体例の計算を自分でやってみることで、バックプロパゲーションの理解を深める。 手を動かす事が目的なのでこのファイルはそんな資料的意味は無いが、一応保存しておく。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / HelloCustomView.java
Created February 25, 2017 11:14
Androidを支える技術Iのサンプルに作ったカスタムビュー
public class HelloCustomView extends View {
String first;
String second;
public HelloCustomView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.HelloCustomView, 0, 0);
@karino2
karino2 / Androidを支える技術Iについて_メモリサブシステムとの比較.ipynb
Created February 9, 2017 04:48
PCのメモリサブシステムとGUIシステムの比較: Androidを支える技術Iの内容紹介
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / 5章、NNあらすじ.ipynb
Last active March 3, 2017 01:24
PRMLの5章の簡単な粗筋
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@karino2
karino2 / bookmark.ps1
Last active February 26, 2017 12:25
PowerShell script of bookmark for editbook
filter fifi {
$drv = $_.substring(0, 2)
$splits = $_.substring(2).split(":")
if ($splits.length -eq 1) {
$_
} else {
$drv + $splits[0]
}
}
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.