L-BFGS-based trainer for the MLP machine of Bob
Project description
==========================
MLP L-BFGS Trainer for Bob
==========================
This example demonstrates how to extend Bob by providing a new L-BFGS-based
trainer for the multilayer perceptron (MLP) implementation of Bob.
Installation
============
First, you have to install `bob <http://www.idiap.ch/software/bob>`_ following the instructions
`there <http://www.idiap.ch/software/bob/docs/releases/last/sphinx/html/Installation.html>`_.
.. note::
If you are reading this page through our GitHub portal and not through PyPI,
note **the development tip of the package may not be stable** or become
unstable in a matter of moments.
Go to `http://pypi.python.org/pypi/xbob.mlp.lbfgs
<http://pypi.python.org/pypi/xbob.mlp.lbfgs>`_ to download the latest
stable version of this package.
There are two options you can follow to get this package installed and
operational on your computer: you can use automatic installers like `pip
<http://pypi.python.org/pypi/pip/>`_ (or `easy_install
<http://pypi.python.org/pypi/setuptools>`_) or manually download, unpack and
use `zc.buildout <http://pypi.python.org/pypi/zc.buildout>`_ to create a
virtual work environment just for this package. In both cases, the two
dependences listed above will be automatically downloaded and installed.
Using an automatic installer
----------------------------
Using ``pip`` is the easiest (shell commands are marked with a ``$`` signal)::
$ pip install xbob.mlp.lbfgs
You can also do the same with ``easy_install``::
$ easy_install xbob.mlp.lbfgs
This will download and install this package plus any other required
dependencies. It will also verify if the version of Bob you have installed
is compatible.
This scheme works well with virtual environments by `virtualenv
<http://pypi.python.org/pypi/virtualenv>`_ or if you have root access to your
machine. Otherwise, we recommend you use the next option.
Using ``zc.buildout``
---------------------
Download the latest version of this package from `PyPI
<http://pypi.python.org/pypi/xbob.mlp.lbfgs>`_ and unpack it in your
working area. The installation of the toolkit itself uses `buildout
<http://www.buildout.org/>`_. You don't need to understand its inner workings
to use this package. Here is a recipe to get you started::
$ python bootstrap.py
$ ./bin/buildout
These two commands should download and install all non-installed dependencies and
get you a fully operational test and development environment.
.. note::
The python shell used in the first line of the previous command set
determines the python interpreter that will be used for all scripts developed
inside this package. Because this package makes use of `Bob
<http://idiap.github.com/bob>`_, you must make sure that the ``bootstrap.py``
script is called with the **same** interpreter used to build Bob, or
unexpected problems might occur.
If Bob is installed by the administrator of your system, it is safe to
consider it uses the default python interpreter. In this case, the above 3
command lines should work as expected. If you have Bob installed somewhere
else on a private directory, edit the file ``buildout.cfg`` **before**
running ``./bin/buildout``. Find the section named ``buildout`` and edit or
add the line ``prefixes`` to point to the directory where Bob is installed or
built. For example::
[buildout]
...
prefixes=/Users/crazyfox/work/bob/build
User Guide
==========
It is assumed you have followed the installation instructions for the package
and got this package installed.
Below, we provide an example of how to train an MLP using this trainer, from
the python universe::
>>> machine = bob.machine.MLP((n_inputs, n_hidden, n_outputs))
>>> # Initialize the machine weights/biases as wished
>>> trainer = xbob.mlp.lbfgs.Trainer(1e-6)
>>> trainer.initialize(machine)
>>> trainer.train(machine, X, labels)
MLP L-BFGS Trainer for Bob
==========================
This example demonstrates how to extend Bob by providing a new L-BFGS-based
trainer for the multilayer perceptron (MLP) implementation of Bob.
Installation
============
First, you have to install `bob <http://www.idiap.ch/software/bob>`_ following the instructions
`there <http://www.idiap.ch/software/bob/docs/releases/last/sphinx/html/Installation.html>`_.
.. note::
If you are reading this page through our GitHub portal and not through PyPI,
note **the development tip of the package may not be stable** or become
unstable in a matter of moments.
Go to `http://pypi.python.org/pypi/xbob.mlp.lbfgs
<http://pypi.python.org/pypi/xbob.mlp.lbfgs>`_ to download the latest
stable version of this package.
There are two options you can follow to get this package installed and
operational on your computer: you can use automatic installers like `pip
<http://pypi.python.org/pypi/pip/>`_ (or `easy_install
<http://pypi.python.org/pypi/setuptools>`_) or manually download, unpack and
use `zc.buildout <http://pypi.python.org/pypi/zc.buildout>`_ to create a
virtual work environment just for this package. In both cases, the two
dependences listed above will be automatically downloaded and installed.
Using an automatic installer
----------------------------
Using ``pip`` is the easiest (shell commands are marked with a ``$`` signal)::
$ pip install xbob.mlp.lbfgs
You can also do the same with ``easy_install``::
$ easy_install xbob.mlp.lbfgs
This will download and install this package plus any other required
dependencies. It will also verify if the version of Bob you have installed
is compatible.
This scheme works well with virtual environments by `virtualenv
<http://pypi.python.org/pypi/virtualenv>`_ or if you have root access to your
machine. Otherwise, we recommend you use the next option.
Using ``zc.buildout``
---------------------
Download the latest version of this package from `PyPI
<http://pypi.python.org/pypi/xbob.mlp.lbfgs>`_ and unpack it in your
working area. The installation of the toolkit itself uses `buildout
<http://www.buildout.org/>`_. You don't need to understand its inner workings
to use this package. Here is a recipe to get you started::
$ python bootstrap.py
$ ./bin/buildout
These two commands should download and install all non-installed dependencies and
get you a fully operational test and development environment.
.. note::
The python shell used in the first line of the previous command set
determines the python interpreter that will be used for all scripts developed
inside this package. Because this package makes use of `Bob
<http://idiap.github.com/bob>`_, you must make sure that the ``bootstrap.py``
script is called with the **same** interpreter used to build Bob, or
unexpected problems might occur.
If Bob is installed by the administrator of your system, it is safe to
consider it uses the default python interpreter. In this case, the above 3
command lines should work as expected. If you have Bob installed somewhere
else on a private directory, edit the file ``buildout.cfg`` **before**
running ``./bin/buildout``. Find the section named ``buildout`` and edit or
add the line ``prefixes`` to point to the directory where Bob is installed or
built. For example::
[buildout]
...
prefixes=/Users/crazyfox/work/bob/build
User Guide
==========
It is assumed you have followed the installation instructions for the package
and got this package installed.
Below, we provide an example of how to train an MLP using this trainer, from
the python universe::
>>> machine = bob.machine.MLP((n_inputs, n_hidden, n_outputs))
>>> # Initialize the machine weights/biases as wished
>>> trainer = xbob.mlp.lbfgs.Trainer(1e-6)
>>> trainer.initialize(machine)
>>> trainer.train(machine, X, labels)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
xbob.mlp.lbfgs-0.1e.zip
(21.4 kB
view details)
File details
Details for the file xbob.mlp.lbfgs-0.1e.zip
.
File metadata
- Download URL: xbob.mlp.lbfgs-0.1e.zip
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f461da1496d86db6e151cdeb952b3e6fc758dd7a961b860f670a9fbf02cee2c9 |
|
MD5 | f6d389eb11048efba8317cf526f7bd17 |
|
BLAKE2b-256 | a3dcd2913a162d927962f809aa119b1ef3d02fb62591064d34e3bf8316f4f7de |