スポンサーリンク

機械学習で用いるpythonの”import xxx”まとめ

pythonで機械学習をしていると、import numpyとかよく出てくる。

プログラミングど素人の私にはさっぱりわからないので、少しずつまとめていきたい。

<python一般>

“import cv2”

http://twosquirrel.mints.ne.jp/?p=20039

“リスト[]とタプル()”

http://twosquirrel.mints.ne.jp/?p=20084

“import os ”

http://twosquirrel.mints.ne.jp/?p=20115

“from PIL import Image”

http://twosquirrel.mints.ne.jp/?p=20135

“import numpy as np”

http://twosquirrel.mints.ne.jp/?p=20153

“%matplotlib inline”
“import matplotlib.pyplot as plt”

https://qiita.com/samacoba/items/81093984605abfed70d1

import struct

http://komaken.me/blog/2014/05/30/python%E3%81%AEstruct%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%E3%82%92%E8%A7%A6%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%8B/

“from sklearn.model_selection import train_test_split”

MNISTのjpg画像からKerasのデータセットに変換し、学習して予測(1)

<Chainer>

 

<Keras>

 

途中

スポンサーリンク