{ "info": { "author": "Renke Grunwald, Bengt L\u00fcers, Jendrik Poloczek, Justin Heinermann, Oliver Kramer", "author_email": "justin.heinermann@informatik.uni-oldenburg.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Environment :: Plugins", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Distributed Computing" ], "description": "MetaOpt\n=======\n\nMetaOpt is a library that optimizes black-box functions using a limited\namount of time and utilizing multiple processors. The main focus of MetaOpt\nis the parameter tuning for machine learning and heuristic optimization.\n\nMetaOpt has been developed by the `Computational Intelligence Group`_ at the University of Oldenburg.\nThe authors are: Renke Grunwald, Bengt L\u00fcers, Jendrik Poloczek, Justin Heinermann, Oliver Kramer.\n\n.. _Computational Intelligence Group: http://www.ci.uni-oldenburg.de/\n\nFor a user guide, see `the documentation`_.\nThe following describes basic operations with the repository.\n\n.. _the documentation: http://metaopt.readthedocs.org/\n\nStatus\n------\n\n======== =============== ============= ======== =========\nPyPIn |download| |version| |format| |license|\n======== =============== ============= ======== =========\n\n.. |download| image:: https://pypip.in/download/metaopt/badge.png\n :target: https://pypi.python.org/pypi/metaopt/\n :alt: PyPIn downloads\n\n.. |version| image:: https://pypip.in/version/metaopt/badge.png\n :target: https://pypi.python.org/pypi/metaopt/\n :alt: PyPIn version\n\n.. |format| image:: https://pypip.in/format/metaopt/badge.png\n :target: https://pypi.python.org/pypi/metaopt/\n :alt: PyPIn Download Format\n\n.. |license| image:: https://pypip.in/license/metaopt/badge.png\n :target: https://pypi.python.org/pypi/metaopt/\n :alt: PyPIn License\n\n====== ========== ========= =====\nGitHub |reposize| |release| |tag|\n====== ========== ========= =====\n\n.. |reposize| image:: https://reposs.herokuapp.com/?path=cigroup-ol/metaopt\n :alt: repo size\n\n.. |release| image:: http://img.shields.io/github/release/cigroup-ol/metaopt.svg\n :target: https://github.com/cigroup-ol/metaopt/releases\n :alt: releases\n\n.. |tag| image:: http://img.shields.io/github/tag/cigroup-ol/metaopt.svg\n :target: https://github.com/cigroup-ol/metaopt/tags\n :alt: tags\n\n======== =============== ================ ==================\nmaster |Build Master| |Health Master| |Coverage Master|\ndevelop |Build Develop| |Health Develop| |Coverage Develop|\n======== =============== ================ ==================\n\n.. |Build Master| image:: https://travis-ci.org/cigroup-ol/metaopt.png?branch=master\n :target: https://travis-ci.org/cigroup-ol/metaopt\n :alt: Build Status\n\n.. |Health Master| image:: https://landscape.io/github/cigroup-ol/metaopt/master/landscape.png\n :target: https://landscape.io/github/cigroup-ol/metaopt/master\n :alt: Code Health\n\n.. |Build Develop| image:: https://travis-ci.org/cigroup-ol/metaopt.png?branch=develop\n :target: https://travis-ci.org/cigroup-ol/metaopt\n :alt: Build Status\n\n.. |Health Develop| image:: https://landscape.io/github/cigroup-ol/metaopt/develop/landscape.png\n :target: https://landscape.io/github/cigroup-ol/metaopt/develop\n :alt: Code Health\n\n.. |Coverage Develop| image:: https://coveralls.io/repos/cigroup-ol/metaopt/badge.png?branch=develop\n :target: https://coveralls.io/r/cigroup-ol/metaopt?branch=develop\n\n.. |Coverage Master| image:: https://coveralls.io/repos/cigroup-ol/metaopt/badge.png?branch=master\n :target: https://coveralls.io/r/cigroup-ol/metaopt?branch=master\n\n\nDownload\n--------\n\nMetaOpt is obtainable via `archives of past releases`_,\nbut you can also get the sources by cloning the repository.\n\n.. _archives of past releases: https://github.com/cigroup-ol/metaopt/releases\n\nTo get a working copy of the MetaOpt repository:\n\n.. code:: bash\n\n $ git clone https://github.com/cigroup-ol/metaopt.git\n\nInstallation\n------------\n\nMetaOpt is `available on PyPI`_, but you can also install it from source.\n\n.. _available on PyPI: https://pypi.python.org/pypi/metaopt\n\nTo install MetaOpt from PyPI using pip:\n\n.. code:: bash\n\n $ sudo pip install metaopt\n\nTo install MetaOpt from a working copy:\n\n.. code:: bash\n\n $ cd metaopt\n $ sudo python setup.py install\n\nTo verify MetaOpt was installed correctly:\n\n.. code:: bash\n\n $ python metaopt --version\n metaopt 0.1.0.0\n\nTests\n-----\n\nMetaOpt has `automated online tests`_, but you can also run them locally.\n\n.. _automated online tests: https://travis-ci.org/cigroup-ol/metaopt\n\nTo run MetaOpt's test suite from a working copy:\n\n.. code:: bash\n\n $ cd metaopt\n $ sudo pip install -r requirements_test.txt\n $ make tests-all\n \nCoverage\n--------\n\nMetaOpt has `automated online test coverage reports`_, but you can also create them locally.\n\n.. _automated online test coverage reports: https://coveralls.io/r/cigroup-ol/metaopt\n\nTo create MetaOpt's coverage reports from a working copy:\n\n.. code:: bash\n\n $ cd metaopt\n $ sudo pip install -r requirements_coverage.txt\n $ make coverage\n\nExamples\n--------\n\nMetaOpt comes with `examples, which you can view in the docs`_, but you can also run them locally.\n\n.. _examples, which you can view in the docs: http://metaopt.readthedocs.org/en/latest/examples/index.html\n\nTo install MetaOpt's example dependecies and run an example from a working copy:\n\n.. code:: bash\n\n $ cd metaopt\n $ sudo pip install -r requirements_examples.txt\n $ PYTHONPATH=. python examples/svm_saes_global_timeout.py\n\nDocumentation\n-------------\n\nMetaOpt has `automatically generated online documentation`_, but you can build\nyourself a local copy.\n\n.. _automatically generated online documentation: http://metaopt.readthedocs.org/\n\nTo build MetaOpt's html documentation from a working copy:\n\n.. code:: bash\n\n $ cd metaopt\n $ sudo pip install -r requirements_docs.txt\n $ make docs\n\n\n0.1.0 -- initial release", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://pypi.python.org/pypi/metaopt/", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "metaopt", "package_url": "https://pypi.org/project/metaopt/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/metaopt/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://pypi.python.org/pypi/metaopt/" }, "release_url": "https://pypi.org/project/metaopt/0.1.0/", "requires_dist": null, "requires_python": null, "summary": "MetaOpt is a library that optimizes black-box functions using a limited amount of time and utilizing multiple processors. The main focus of MetaOpt is the parameter tuning for machine learning and heuristic optimization.", "version": "0.1.0" }, "last_serial": 1111435, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "7ac92aa368b9b679cab512f4de8244cc", "sha256": "ea8041fc6ffd8e63179e7f046ef0c7d5bea226f300865977d94f3e12403dff0f" }, "downloads": -1, "filename": "metaopt-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7ac92aa368b9b679cab512f4de8244cc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 117485, "upload_time": "2014-06-02T14:19:54", "url": "https://files.pythonhosted.org/packages/a8/a3/92f6f1530b59cb8bbee07cc6e519b409d92a86cb1de496b95f3496783604/metaopt-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4183ee0e60970077763e3c898455aca", "sha256": "c162e54091142d7ae53a84f135df52acb0e7e0e42ff18d2e8dd34a439fa49ba3" }, "downloads": -1, "filename": "metaopt-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d4183ee0e60970077763e3c898455aca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271276, "upload_time": "2014-06-02T14:19:32", "url": "https://files.pythonhosted.org/packages/65/b1/7920af6c3f3de0a5d5dc39c33097e9782c47ceb808685b13854f7932e963/metaopt-0.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7ac92aa368b9b679cab512f4de8244cc", "sha256": "ea8041fc6ffd8e63179e7f046ef0c7d5bea226f300865977d94f3e12403dff0f" }, "downloads": -1, "filename": "metaopt-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7ac92aa368b9b679cab512f4de8244cc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 117485, "upload_time": "2014-06-02T14:19:54", "url": "https://files.pythonhosted.org/packages/a8/a3/92f6f1530b59cb8bbee07cc6e519b409d92a86cb1de496b95f3496783604/metaopt-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4183ee0e60970077763e3c898455aca", "sha256": "c162e54091142d7ae53a84f135df52acb0e7e0e42ff18d2e8dd34a439fa49ba3" }, "downloads": -1, "filename": "metaopt-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d4183ee0e60970077763e3c898455aca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271276, "upload_time": "2014-06-02T14:19:32", "url": "https://files.pythonhosted.org/packages/65/b1/7920af6c3f3de0a5d5dc39c33097e9782c47ceb808685b13854f7932e963/metaopt-0.1.0.tar.gz" } ] }