python
pip install theano
python
pip install pillow
pip install PyYAML
pip install IPython
pip install Cython
git clone git://github.com/lisa-lab/pylearn2.git
python setup.py develop
python
ImportError: No module named numpy
python
===============================
00001 #include <Python.h>
00002 #include "structmember.h"
00003 #include <sys/time.h>
~~~~~~~~~Abréviation~~~~~~~~~
Exception: Compilation failed (return status=1): /Users/user-name/.theano/compiledir_Darwin-14.5.0-x86_64-i386-64bit-i386-2.7.8-64/lazylinker_ext/mod.cpp:1:10: fatal error: 'Python.h' file not found. #include <Python.h>. ^. 1 error generated..
Exécutez img2csv.py sur le site
Si on vous dit que vous ne trouvez pas le module Image, changez les 2e à 4e lignes comme suit
from PIL import Image
from PIL import ImageOps
from PIL import ImageFilter
Exécutez la commande suivante selon le site
python img2csv.py échelle de gris convertie.Liste des trains jpg.csv
Je n'ai pas pu bien passer la liste ici, alors lisez le code et exécutez-le ci-dessous
python img2csv.py "../img/*.jpg " train.csv
Mettez hoge_dataset.py pour votre site dans pylearn2 / datasets /
Définissez ce qui suit dans la variable d'environnement
export PYLEARN2_DATA_PATH = le chemin où se trouvent train.csv et grbm.yaml * export PYLEARN2_VIEWER_COMMAND="open -Wn"
Apprendre
```commander:
train.py grbm.yaml
```
Commande d'affichage
```commander:
show_weights.py grbm.pkl
```
L'erreur suivante s'est produite lors de l'affichage du résultat d'apprentissage
UserWarning: Unable to import matplotlib. Some features unavailable. Original exception: No module named matplotlib.pyplot "Original exception: " + str(matplotlib_exception)) ```
Ajoutez matplotlib avec la commande suivante et vérifiez le fonctionnement en toute sécurité
pip install matplotlib
http://kensuke-mi.xyz/kensuke-mi_diary/2014/11/rbma.html http://d.hatena.ne.jp/aremokoremo/20140507/1399475248
Recommended Posts