:mod:`learner.greedy` -- Greedy learner
=======================================

.. module:: pebl.learner.greedy
    :synopsis: Greedy learner

This module provides a learner implementing the Greedy Learner algorithm.
More information about greedy algorithms: http://en.wikipedia.org/wiki/Greedy_algorithm

Configuration Parameters
------------------------

.. Autogenerated by pebl.config.paramdocs at Thu Jun 12 15:28:19 2008

.. confparam:: greedy.max_iterations

	Maximum number of iterations to run.
	default=1000

.. confparam:: greedy.max_time

	Maximum learner runtime in seconds.
	default=0

.. confparam:: greedy.max_unimproved_iterations

	Maximum number of iterations without score improvement before a restart.
	default=restart_after_max_unimproved_iterations(500)

.. confparam:: greedy.seed

	Starting network for a greedy search.
	default=''



GreedyLearner Class
-------------------

 .. autoclass:: GreedyLearner
    :members:

