pyndl


Namepyndl JSON
Version 1.2.2 PyPI version JSON
download
home_pagehttps://pyndl.readthedocs.io/en/latest/
SummaryNaive discriminative learning implements learning and classification models based on the Rescorla-Wagner equations.
upload_time2023-11-28 13:53:00
maintainer
docs_urlNone
authorKonstantin Sering
requires_python>=3.8,<3.12
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============================================
Pyndl - Naive Discriminative Learning in Python
===============================================

.. image:: https://github.com/quantling/pyndl/actions/workflows/python-test.yml/badge.svg?branch=main
    :target: https://github.com/quantling/pyndl/actions/workflows/python-test.yml

.. image:: https://codecov.io/gh/quantling/pyndl/branch/main/graph/badge.svg?token=2GWUXRA9PD
    :target: https://codecov.io/gh/quantling/pyndl

.. image:: https://img.shields.io/lgtm/grade/python/g/quantling/pyndl.svg?logo=lgtm&logoWidth=18
    :target: https://lgtm.com/projects/g/quantling/pyndl/context:python

.. image:: https://img.shields.io/pypi/pyversions/pyndl.svg
    :target: https://pypi.python.org/pypi/pyndl/

.. image:: https://img.shields.io/github/license/quantling/pyndl.svg
    :target: https://github.com/quantling/pyndl/blob/main/LICENSE

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.597964.svg
   :target: https://doi.org/10.5281/zenodo.597964

*pyndl* is an implementation of Naive Discriminative Learning in Python. It was
created to analyse huge amounts of text file corpora. Especially, it allows to
efficiently apply the Rescorla-Wagner learning rule to these corpora.


Installation
============

The easiest way to install *pyndl* is using
`pip <https://pip.pypa.io/en/stable/>`_:

.. code:: bash

    pip install --user pyndl

For more information have a look at the `Installation Guide
<http://pyndl.readthedocs.io/en/latest/installation.html>`_.


Documentation
=============

*pyndl* uses ``sphinx`` to create a documentation manual. The documentation is
hosted on `Read the Docs <http://pyndl.readthedocs.io/en/latest/>`_.


Getting involved
================

The *pyndl* project welcomes help in the following ways:

* Making Pull Requests for
  `code <https://github.com/quantling/pyndl/tree/main/pyndl>`_,
  `tests <https://github.com/quantling/pyndl/tree/main/tests>`_
  or `documentation <https://github.com/quantling/pyndl/tree/main/doc>`_.
* Commenting on `open issues <https://github.com/quantling/pyndl/issues>`_
  and `pull requests <https://github.com/quantling/pyndl/pulls>`_.
* Helping to answer `questions in the issue section
  <https://github.com/quantling/pyndl/labels/question>`_.
* Creating feature requests or adding bug reports in the `issue section
  <https://github.com/quantling/pyndl/issues/new>`_.

For more information on how to contribute to *pyndl* have a look at the
`development section <http://pyndl.readthedocs.io/en/latest/development.html>`_.


Authors and Contributers
========================

*pyndl* was mainly developed by
`Konstantin Sering <https://github.com/derNarr>`_,
`Marc Weitz <https://github.com/trybnetic>`_,
`David-Elias Künstle <https://github.com/dekuenstle/>`_,
`Elnaz Shafaei Bajestan <https://github.com/elnazsh>`_
and `Lennart Schneider <https://github.com/sumny>`_. For the full list of
contributers have a look at `Github's Contributor summary
<https://github.com/quantling/pyndl/contributors>`_.

Currently, it is maintained by `Konstantin Sering <https://github.com/derNarr>`_
and `Marc Weitz <https://github.com/trybnetic>`_.


Funding
-------
*pyndl* was partially funded by the Humboldt grant, the ERC advanced grant (no.
742545) and by the University of Tübingen.


Acknowledgements
----------------
This package is build as a python replacement for the R ndl2 package. Some
ideas on how to build the API and how to efficiently run the Rescorla Wagner
iterative learning on large text corpora are inspired by the way the ndl2
package solves this problems. The ndl2 package is available on Github `here
<https://github.com/quantling/ndl2>`_.


            

Raw data

            {
    "_id": null,
    "home_page": "https://pyndl.readthedocs.io/en/latest/",
    "name": "pyndl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<3.12",
    "maintainer_email": "",
    "keywords": "",
    "author": "Konstantin Sering",
    "author_email": "konstantin.sering@uni-tuebingen.de",
    "download_url": "https://files.pythonhosted.org/packages/f2/16/f7adf52a4e7d74782c4f2387cf37077e83a2f9240e90f30f79c9f70d5e50/pyndl-1.2.2.tar.gz",
    "platform": null,
    "description": "===============================================\nPyndl - Naive Discriminative Learning in Python\n===============================================\n\n.. image:: https://github.com/quantling/pyndl/actions/workflows/python-test.yml/badge.svg?branch=main\n    :target: https://github.com/quantling/pyndl/actions/workflows/python-test.yml\n\n.. image:: https://codecov.io/gh/quantling/pyndl/branch/main/graph/badge.svg?token=2GWUXRA9PD\n    :target: https://codecov.io/gh/quantling/pyndl\n\n.. image:: https://img.shields.io/lgtm/grade/python/g/quantling/pyndl.svg?logo=lgtm&logoWidth=18\n    :target: https://lgtm.com/projects/g/quantling/pyndl/context:python\n\n.. image:: https://img.shields.io/pypi/pyversions/pyndl.svg\n    :target: https://pypi.python.org/pypi/pyndl/\n\n.. image:: https://img.shields.io/github/license/quantling/pyndl.svg\n    :target: https://github.com/quantling/pyndl/blob/main/LICENSE\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.597964.svg\n   :target: https://doi.org/10.5281/zenodo.597964\n\n*pyndl* is an implementation of Naive Discriminative Learning in Python. It was\ncreated to analyse huge amounts of text file corpora. Especially, it allows to\nefficiently apply the Rescorla-Wagner learning rule to these corpora.\n\n\nInstallation\n============\n\nThe easiest way to install *pyndl* is using\n`pip <https://pip.pypa.io/en/stable/>`_:\n\n.. code:: bash\n\n    pip install --user pyndl\n\nFor more information have a look at the `Installation Guide\n<http://pyndl.readthedocs.io/en/latest/installation.html>`_.\n\n\nDocumentation\n=============\n\n*pyndl* uses ``sphinx`` to create a documentation manual. The documentation is\nhosted on `Read the Docs <http://pyndl.readthedocs.io/en/latest/>`_.\n\n\nGetting involved\n================\n\nThe *pyndl* project welcomes help in the following ways:\n\n* Making Pull Requests for\n  `code <https://github.com/quantling/pyndl/tree/main/pyndl>`_,\n  `tests <https://github.com/quantling/pyndl/tree/main/tests>`_\n  or `documentation <https://github.com/quantling/pyndl/tree/main/doc>`_.\n* Commenting on `open issues <https://github.com/quantling/pyndl/issues>`_\n  and `pull requests <https://github.com/quantling/pyndl/pulls>`_.\n* Helping to answer `questions in the issue section\n  <https://github.com/quantling/pyndl/labels/question>`_.\n* Creating feature requests or adding bug reports in the `issue section\n  <https://github.com/quantling/pyndl/issues/new>`_.\n\nFor more information on how to contribute to *pyndl* have a look at the\n`development section <http://pyndl.readthedocs.io/en/latest/development.html>`_.\n\n\nAuthors and Contributers\n========================\n\n*pyndl* was mainly developed by\n`Konstantin Sering <https://github.com/derNarr>`_,\n`Marc Weitz <https://github.com/trybnetic>`_,\n`David-Elias K\u00fcnstle <https://github.com/dekuenstle/>`_,\n`Elnaz Shafaei Bajestan <https://github.com/elnazsh>`_\nand `Lennart Schneider <https://github.com/sumny>`_. For the full list of\ncontributers have a look at `Github's Contributor summary\n<https://github.com/quantling/pyndl/contributors>`_.\n\nCurrently, it is maintained by `Konstantin Sering <https://github.com/derNarr>`_\nand `Marc Weitz <https://github.com/trybnetic>`_.\n\n\nFunding\n-------\n*pyndl* was partially funded by the Humboldt grant, the ERC advanced grant (no.\n742545) and by the University of T\u00fcbingen.\n\n\nAcknowledgements\n----------------\nThis package is build as a python replacement for the R ndl2 package. Some\nideas on how to build the API and how to efficiently run the Rescorla Wagner\niterative learning on large text corpora are inspired by the way the ndl2\npackage solves this problems. The ndl2 package is available on Github `here\n<https://github.com/quantling/ndl2>`_.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Naive discriminative learning implements learning and classification models based on the Rescorla-Wagner equations.",
    "version": "1.2.2",
    "project_urls": {
        "Homepage": "https://pyndl.readthedocs.io/en/latest/",
        "Repository": "https://github.com/quantling/pyndl"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f216f7adf52a4e7d74782c4f2387cf37077e83a2f9240e90f30f79c9f70d5e50",
                "md5": "cca67b87080757eedec6d9413ed861ce",
                "sha256": "96a6730914bf2f37d8b9a3b39650aabf674ffc6b33b919ae77002d236344a14d"
            },
            "downloads": -1,
            "filename": "pyndl-1.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "cca67b87080757eedec6d9413ed861ce",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.12",
            "size": 38179,
            "upload_time": "2023-11-28T13:53:00",
            "upload_time_iso_8601": "2023-11-28T13:53:00.723861Z",
            "url": "https://files.pythonhosted.org/packages/f2/16/f7adf52a4e7d74782c4f2387cf37077e83a2f9240e90f30f79c9f70d5e50/pyndl-1.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-28 13:53:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "quantling",
    "github_project": "pyndl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "landscape": true,
    "lcname": "pyndl"
}
        
Elapsed time: 0.15094s