This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
ロジスティック回帰の実験 | |
参考 | |
「人工知能に関する断層録」 | |
http://aidiary.hatenablog.com/entry/20100430/1272590402 | |
""" | |
import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
パーセプトロンの実験 | |
参考 荒木雅弘, フリーソフトで作る音声認識システム | |
""" | |
import numpy as np | |
import matplotlib.pyplot as plt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
参考 http://hi-king.hatenablog.com/entry/2015/06/27/194630 | |
クラスタリングの実験 | |
""" | |
import numpy as np | |
import chainer as chnr |