{ "info": { "author": "Erick Fonseca", "author_email": "erickrfonseca@gmail.com", "bugtrack_url": null, "classifiers": [], "description": ".. image:: https://badges.gitter.im/Join%20Chat.svg\n :alt: Join the chat at https://gitter.im/erickrf/nlpnet\n :target: https://gitter.im/erickrf/nlpnet?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\nGitter is chat room for developers.\n\n===============================================================\n``nlpnet`` --- Natural Language Processing with neural networks\n===============================================================\n\n``nlpnet`` is a Python library for Natural Language Processing tasks based on neural networks. \nCurrently, it performs part-of-speech tagging, semantic role labeling and dependency parsing. \nMost of the architecture is language independent, but some functions were specially tailored for working\nwith Portuguese. This system was inspired by SENNA_.\n\n.. _SENNA: http://ronan.collobert.com/senna/\n\n**Important:** in order to use the trained models for Portuguese NLP, you will need to download the data from http://nilc.icmc.usp.br/nlpnet/models.html.\n\nDependencies\n------------\n\n``nlpnet`` requires NLTK_ and numpy_. Additionally, it needs to download some data from NLTK. After installing it, call\n\n >>> nltk.download()\n\ngo to the `Models` tab and select the Punkt tokenizer. It is used in order to split the text into sentences.\n\nCython_ is used to generate C extensions and run faster. You probably won't need it, since the generated ``.c`` file is already provided with `nlpnet`, but you will need a C compiler. On Linux and Mac systems this shouldn't be a problem, but may be on Windows, because setuptools_ requires the Microsoft C Compiler by default. If you don't have it already, it is usually easier to install MinGW_ instead and follow the instructions `here `_.\n\n.. _NLTK: http://www.nltk.org\n.. _numpy: http://www.numpy.org\n.. _Cython: http://cython.org\n.. _MinGW: http://www.mingw.org\n.. _setuptools: http://pythonhosted.org/setuptools/\n\nBasic usage\n-----------\n\n``nlpnet`` can be used both as a Python library or by its standalone scripts. Both usages are explained below.\n\nLibrary usage\n~~~~~~~~~~~~~\n\nYou can use ``nlpnet`` as a library in Python code as follows:\n\n.. code-block:: python\n\n >>> import nlpnet\n >>> tagger = nlpnet.POSTagger('/path/to/pos-model/', language='pt')\n >>> tagger.tag('O rato roeu a roupa do rei de Roma.')\n [[(u'O', u'ART'), (u'rato', u'N'), (u'roeu', u'V'), (u'a', u'ART'), (u'roupa', u'N'), (u'do', u'PREP+ART'), (u'rei', u'N'), (u'de', u'PREP'), (u'Roma', u'NPROP'), (u'.', 'PU')]]\n\nIn the example above, the ``POSTagger`` constructor receives as the first argument the directory where its trained model is located. The second argument is the two letter language code (currently, onle ``pt`` and ``en`` are supported). This only has impact in tokenization.\n\nCalling an annotation tool is pretty straightforward. The provided ones are ``POSTagger``, ``SRLTagger`` and ``DependencyParser``, all of them having a method ``tag`` which receives strings with text to be tagged (in ``DependencyParser``, there is an alias to the method ``parse``, which sounds more adequate). The tagger splits the text into sentences and then tokenizes each one (hence the return of the POSTagger is a list of lists).\n\nThe output of the SRLTagger is slightly more complicated:\n\n >>> tagger = nlpnet.SRLTagger()\n >>> tagger.tag(u'O rato roeu a roupa do rei de Roma.')\n []\n\nInstead of a list of tuples, sentences are represented by instances of ``SRLAnnotatedSentence``. This class serves basically as a data holder, and has two attributes:\n\n >>> sent = tagger.tag(u'O rato roeu a roupa do rei de Roma.')[0]\n >>> sent.tokens\n [u'O', u'rato', u'roeu', u'a', u'roupa', u'do', u'rei', u'de', u'Roma', u'.']\n >>> sent.arg_structures\n [(u'roeu',\n {u'A0': [u'O', u'rato'],\n u'A1': [u'a', u'roupa', u'do', u'rei', u'de', u'Roma'],\n u'V': [u'roeu']})]\n\nThe ``arg_structures`` is a list containing all predicate-argument structures in the sentence. The only one in this example is for the verb `roeu`. It is represented by a tuple with the predicate and a dictionary mapping semantic role labels to the tokens that constitute the argument.\n\nNote that the verb appears as the first member of the tuple and also as the content of label 'V' (which stands for verb). This is because some predicates are multiwords. In these cases, the \"main\" predicate word (usually the verb itself) appears in ``arg_structures[0]``, and all the words appear under the key 'V'.\n\nHere's an example with the DependencyParser:\n\n >>> parser = nlpnet.DependencyParser('dependency', language='en')\n >>> parsed_text = parser.parse('The book is on the table.')\n >>> parsed_text\n []\n >>> sent = parsed_text[0]\n >>> print(sent.to_conll())\n 1 The _ DT DT _ 2 NMOD\n 2 book _ NN NN _ 3 SBJ\n 3 is _ VBZ VBZ _ 0 ROOT\n 4 on _ IN IN _ 3 LOC-PRD\n 5 the _ DT DT _ 6 NMOD\n 6 table _ NN NN _ 4 PMOD\n 7 . _ . . _ 3 P\n\nThe ``to_conll()`` method of ParsedSentence objects prints them in the `CoNLL`_ notation. The tokens, labels and head indices are accessible through member variables:\n\n >>> sent.tokens\n [u'The', u'book', u'is', u'on', u'the', u'table', u'.']\n >>> sent.heads\n array([ 1, 2, -1, 2, 5, 3, 2])\n >>> sent.labels\n [u'NMOD', u'SBJ', u'ROOT', u'LOC-PRD', u'NMOD', u'PMOD', u'P']\n\nThe ``heads`` member variable is a numpy array. The i-th position in the array contains the index of the head of the i-th token, except for the root token, which has a head of -1. Notice that these indices are 0-based, while the ones shown in the ``to_conll()`` function are 1-based.\n\n.. _`CoNLL`: http://ilk.uvt.nl/conll/#dataformat\n\nStandalone scripts\n~~~~~~~~~~~~~~~~~~\n\n``nlpnet`` also provides scripts for tagging text, training new models and testing them. They are copied to the `scripts` subdirectory of your Python installation, which can be included in the system PATH variable. You can call them from command line and give some text input.\n\n.. code-block:: bash\n\n $ nlpnet-tag.py pos --data /path/to/nlpnet-data/ --lang pt\n O rato roeu a roupa do rei de Roma.\n O_ART rato_N roeu_V a_ART roupa_N do_PREP+ART rei_N de_PREP Roma_NPROP ._PU\n\nIf ``--data`` is not given, the script will search for the trained models in the current directory. ``--lang`` defaults to ``en``. If you have text already tokenized, you may use the ``-t`` option; it assumes tokens are separated by whitespaces.\n\nWith semantic role labeling:\n\n.. code-block:: bash\n\n $ nlpnet-tag.py srl /path/to/nlpnet-data/\n O rato roeu a roupa do rei de Roma.\n O rato roeu a roupa do rei de Roma .\n roeu\n A1: a roupa do rei de Roma\n A0: O rato\n V: roeu\n\nThe first line was typed by the user, and the second one is the result of tokenization.\n\nAnd dependency parsing:\n\n.. code-block:: bash\n\n $ nlpnet-tag.py dependency --data dependency --lang en\n The book is on the table.\n 1 The _ DT DT _ 2 NMOD\n 2 book _ NN NN _ 3 SBJ\n 3 is _ VBZ VBZ _ 0 ROOT\n 4 on _ IN IN _ 3 LOC-PRD\n 5 the _ DT DT _ 6 NMOD\n 6 table _ NN NN _ 4 PMOD\n 7 . _ . . _ 3 P\n\nTo learn more about training and testing new models, and other functionalities, refer to the documentation at http://nilc.icmc.usp.br/nlpnet\n\nReferences\n----------\n\nThe following references describe the design of nlpnet, as well as experiments carried out. Some improvements to the code have been implemented since their publication.\n\n* Fonseca, Erick and Alu\u00edsio, Sandra M. **A Deep Architecture for Non-Projective Dependency Parsing**. Proceedings of the NAACL-HLT Workshop on Vector Space Modeling for NLP. 2015\n\n* Fonseca, Erick and Rosa, Jo\u00e3o Lu\u00eds G. **A Two-Step Convolutional Neural Network Approach for Semantic Role Labeling**. Proceedings of the International Joint Conference on Neural Networks. 2013.\n\n* Fonseca, Erick, Rosa, Jo\u00e3o Lu\u00eds G. and Alu\u00edsio, Sandra M. **Evaluating word embeddings and a revised corpus for part-of-speech tagging in Portuguese**. Journal of The Brazilian Computer Society. 2015.\n\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://nilc.icmc.usp.br/nlpnet", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "nlpnet", "package_url": "https://pypi.org/project/nlpnet/", "platform": "", "project_url": "https://pypi.org/project/nlpnet/", "project_urls": { "Homepage": "http://nilc.icmc.usp.br/nlpnet" }, "release_url": "https://pypi.org/project/nlpnet/1.2.4/", "requires_dist": [ "numpy (>=1.9.0)", "nltk (>=3.2.2)", "six (>=1.10)", "h5py (>=2.8.0rc1)" ], "requires_python": "", "summary": "Neural networks for NLP tasks", "version": "1.2.4" }, "last_serial": 5667232, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "21202037bd4497ba817ed7cbd1c543cf", "sha256": "48fd1dadcf47815f6adc9ea42705606d4ab77fe56e9a1a0c3ea95e19c655c7aa" }, "downloads": -1, "filename": "nlpnet-1.0.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "21202037bd4497ba817ed7cbd1c543cf", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 393755, "upload_time": "2013-10-12T07:57:01", "url": "https://files.pythonhosted.org/packages/b6/d2/6eba5f2ae1fa6a54e9ea6085e9471b14d37912421d3e30307bfd3029bdaa/nlpnet-1.0.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "0bf8d68fed5ecd7f960728d9b8afe901", "sha256": "6e9f1da6161d3da2e66fda97369fdf6c3c2fe251d345d116bc0015faa9b7aba4" }, "downloads": -1, "filename": "nlpnet-1.0.0.zip", "has_sig": false, "md5_digest": "0bf8d68fed5ecd7f960728d9b8afe901", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 265559, "upload_time": "2013-10-12T07:56:55", "url": "https://files.pythonhosted.org/packages/bb/71/79ec5bf119f67821301928bf763e3771c1e5e2ecd751b1be7c2e45eec34a/nlpnet-1.0.0.zip" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "ddb0cf62e6a1ec0dea076c0060b93562", "sha256": "86d885781cf1afcbcb59eadaff54a03dae98c5f627bb46a9d03f65d911c5cf86" }, "downloads": -1, "filename": "nlpnet-1.0.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "ddb0cf62e6a1ec0dea076c0060b93562", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 393934, "upload_time": "2014-02-27T14:32:01", "url": "https://files.pythonhosted.org/packages/39/9d/f4e2e3d641a18ec26337fd7a75be43401f26ae74f9e4a8d305e2efb18f33/nlpnet-1.0.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "7d693d34d1ef3972d26b9559293de4d7", "sha256": "1c178b4488e6de4ffb22030721c44695fd4b2396991bf2421eb2f8078aa72044" }, "downloads": -1, "filename": "nlpnet-1.0.1.zip", "has_sig": false, "md5_digest": "7d693d34d1ef3972d26b9559293de4d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 265753, "upload_time": "2014-02-27T14:30:40", "url": "https://files.pythonhosted.org/packages/cc/fb/7898ea9ea436ed4d15ada4d3ed258962db2911ba2fdb92d0aebee16c27be/nlpnet-1.0.1.zip" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "5f0111700bcf3d27a1e0edc39019afc7", "sha256": "394e7ad9b11c353d31f5b74f5b9f36bcb4337a7bc44794fc228c21c5e49afe7b" }, "downloads": -1, "filename": "nlpnet-1.0.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "5f0111700bcf3d27a1e0edc39019afc7", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 394265, "upload_time": "2014-03-01T19:50:44", "url": "https://files.pythonhosted.org/packages/63/8f/64738402b0c05e1d7dacb1bc87706de849c32d34708d324080650f288e08/nlpnet-1.0.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "ff21c262b0ae94a36b37fc46a90e4cfd", "sha256": "499013c5dae61a9b63ec513b4cb779898d7dee3713b57e301126ff9af145cec5" }, "downloads": -1, "filename": "nlpnet-1.0.2.zip", "has_sig": false, "md5_digest": "ff21c262b0ae94a36b37fc46a90e4cfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 266097, "upload_time": "2014-03-01T19:50:37", "url": "https://files.pythonhosted.org/packages/89/59/48bcda6157ab9f05cd97020ea1330cd01e7c25432a69e901c21048d51264/nlpnet-1.0.2.zip" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "5c65e73d141dc7621903e994453bfbc9", "sha256": "63c8b4a652c35df796c8ce80154554e0fba447d9928abba4ef7bedbf9c73aba3" }, "downloads": -1, "filename": "nlpnet-1.0.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "5c65e73d141dc7621903e994453bfbc9", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 394248, "upload_time": "2014-03-05T16:42:46", "url": "https://files.pythonhosted.org/packages/38/81/86f89c46d160669f19762cc51e357a9cb739931895066e84ad7909dbabdf/nlpnet-1.0.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "5f19f3f554108328180ecdb78fc99995", "sha256": "f18f6e371fa77d7e6501af7bd7e799f6d033cd1536a13f166d4ea5b52d5d1053" }, "downloads": -1, "filename": "nlpnet-1.0.3.zip", "has_sig": false, "md5_digest": "5f19f3f554108328180ecdb78fc99995", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 266081, "upload_time": "2014-03-05T16:42:40", "url": "https://files.pythonhosted.org/packages/50/71/5aed32bb689ef9ba6931131b0cd4e457414afa00ae3008ab6663cf0ce709/nlpnet-1.0.3.zip" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "272e803cd757f9bdca16ce5216f33571", "sha256": "b29603321f343d0b21f73a3b6bf95398cd8263d2ad7381c5cf8558e2cbc5082a" }, "downloads": -1, "filename": "nlpnet-1.0.4.win32-py2.7.exe", "has_sig": false, "md5_digest": "272e803cd757f9bdca16ce5216f33571", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 393968, "upload_time": "2014-03-06T19:28:06", "url": "https://files.pythonhosted.org/packages/fe/cc/1f46ab24cc678dff24786b354249c56ca008544b6f30709f84766018bcc5/nlpnet-1.0.4.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "9d0031f85c3c8fd41745c735df216376", "sha256": "ee1d1b0758b48ce54ded84ee032883d5917eb6ae3f0c58e0c7819d1d726ca720" }, "downloads": -1, "filename": "nlpnet-1.0.4.zip", "has_sig": false, "md5_digest": "9d0031f85c3c8fd41745c735df216376", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269837, "upload_time": "2014-03-06T19:28:01", "url": "https://files.pythonhosted.org/packages/d9/af/7a73e1c0615e75837d5cd0cefa779d2cc70374c332fd6c71103c733a7f5d/nlpnet-1.0.4.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "a209365d6234b67f512887b8e069ee38", "sha256": "1ddc17cca694c57140844ac447d4a4203122b5dde7ced1b415492c026415f749" }, "downloads": -1, "filename": "nlpnet-1.1.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "a209365d6234b67f512887b8e069ee38", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 401533, "upload_time": "2014-05-22T20:21:38", "url": "https://files.pythonhosted.org/packages/b3/ce/87fa807312b1a4715640180e126bfa75fc9479dbf33b5ded2afdcbf2e0a8/nlpnet-1.1.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "564e2143e47ec064a28898c9828f1e08", "sha256": "1c99ec3f58063530dd2edfd08f5219ece959a372900e560af01c07824cb87a0d" }, "downloads": -1, "filename": "nlpnet-1.1.0.zip", "has_sig": false, "md5_digest": "564e2143e47ec064a28898c9828f1e08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 281105, "upload_time": "2014-05-22T20:18:29", "url": "https://files.pythonhosted.org/packages/3b/11/18064300edb3a78231fe2c5e88d64d96105313a89038dbeebf9a79479db1/nlpnet-1.1.0.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "b588df6c824f7edecfc0fe980ed2b6a5", "sha256": "182e30457d84264cc328a2423533da9d46b2dcb3f4a3a6daab75f26764001540" }, "downloads": -1, "filename": "nlpnet-1.1.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "b588df6c824f7edecfc0fe980ed2b6a5", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 380185, "upload_time": "2014-07-07T15:49:08", "url": "https://files.pythonhosted.org/packages/16/7a/f2bd69f106e0ad6933903c1e23343cba7402d4b7270ba615af7000de2c2e/nlpnet-1.1.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "500c3bcce20a57eed5d7a39523c0bff0", "sha256": "1a189441d7f7c500a8d2e4226bdfd5aa86dcc1be330c1ae8afc0dadbac1a16ab" }, "downloads": -1, "filename": "nlpnet-1.1.1.zip", "has_sig": false, "md5_digest": "500c3bcce20a57eed5d7a39523c0bff0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245592, "upload_time": "2014-07-07T15:49:00", "url": "https://files.pythonhosted.org/packages/c1/f1/5153814b0b1e7ea1696ba9b81d5efc8763ddd1b24a7cc367546fb7512971/nlpnet-1.1.1.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "1bb395bb830e5f9a07e68b7bbff31232", "sha256": "ed3c0610aab86648d89338160ac90330c1e5e40aaff240f47c0f4bb36453fe84" }, "downloads": -1, "filename": "nlpnet-1.1.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "1bb395bb830e5f9a07e68b7bbff31232", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 380190, "upload_time": "2014-07-07T20:00:18", "url": "https://files.pythonhosted.org/packages/66/55/5ebe04f62617161d8db0e681e015828e7544138d8e2732eca0ed0005bb62/nlpnet-1.1.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "a3fbd84e1dfa43021abe6acab820d447", "sha256": "b361f6a01dc6caddc7dd6018cbe03c6e9dfb26ceb31beca3ee39f8618c6775fa" }, "downloads": -1, "filename": "nlpnet-1.1.2.zip", "has_sig": false, "md5_digest": "a3fbd84e1dfa43021abe6acab820d447", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245598, "upload_time": "2014-07-07T20:00:05", "url": "https://files.pythonhosted.org/packages/69/38/fef1b8e6bfeb60ce9eb1cd469c73ca547722589dd01fa9b635c056d5a1cd/nlpnet-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "24f5e6c0151c53e06e3f8ea478e62c55", "sha256": "34721b2b3bc07aed37f026b4faa32307a499803a5a3de57e45aa75681a6dbdf0" }, "downloads": -1, "filename": "nlpnet-1.1.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "24f5e6c0151c53e06e3f8ea478e62c55", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 380289, "upload_time": "2014-07-07T23:43:18", "url": "https://files.pythonhosted.org/packages/a9/10/2d5fde0486778baf929c4f0889d3e5e54295ce00c41f7141e233895108d1/nlpnet-1.1.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "024a909db16ca71bef987fce5f0df09f", "sha256": "0c1c86d4464ad971d583cd7c3e01d1652c587810eca9455d4e6e515922ff7f98" }, "downloads": -1, "filename": "nlpnet-1.1.3.zip", "has_sig": false, "md5_digest": "024a909db16ca71bef987fce5f0df09f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245697, "upload_time": "2014-07-07T23:43:03", "url": "https://files.pythonhosted.org/packages/52/81/3597471cf565314bd898fd905c190dd12aa358c1ff26efd50715515da7a6/nlpnet-1.1.3.zip" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "184e35aa9ae75e05401b63af1d571c13", "sha256": "4e3d9dce92c3b3fa3ef0d396240e3886faeef34aec21b229aa86cf951b5839d8" }, "downloads": -1, "filename": "nlpnet-1.1.4.win32-py2.7.exe", "has_sig": false, "md5_digest": "184e35aa9ae75e05401b63af1d571c13", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 382096, "upload_time": "2014-07-08T01:13:03", "url": "https://files.pythonhosted.org/packages/68/84/35f2bba699c63b91bb0030bec8257aaf100340e4d99980658a27dc442813/nlpnet-1.1.4.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "679a843d82cc8cb462d3f09928490f13", "sha256": "fa84da3a071e93af3525ab1927c609413df1770f6802d834aa9be9525649a9b7" }, "downloads": -1, "filename": "nlpnet-1.1.4.zip", "has_sig": false, "md5_digest": "679a843d82cc8cb462d3f09928490f13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 247532, "upload_time": "2014-07-08T01:12:55", "url": "https://files.pythonhosted.org/packages/4d/d8/996cf9e3f2512d43755f0bcbfc1198c615ad5f8c66c4b69b99ac65373d7a/nlpnet-1.1.4.zip" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "8bda844f6d7b1e191d049b883b79df59", "sha256": "364266c70708b8f2251e764af778f76fee041d8ea574a6a1966cfaaf36b2eddd" }, "downloads": -1, "filename": "nlpnet-1.1.5.win32-py2.7.exe", "has_sig": false, "md5_digest": "8bda844f6d7b1e191d049b883b79df59", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 384498, "upload_time": "2014-07-12T04:28:10", "url": "https://files.pythonhosted.org/packages/53/72/69390ff90723ccd6785f258f3fd15402e19ae62b3dfcefa7f728b79c7e83/nlpnet-1.1.5.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "5c3d6c735a02435b5fc96ff301ade119", "sha256": "a2490f887662c0da06cd635032ca777661b34e98bb68c5f3f832f7eb32804bb0" }, "downloads": -1, "filename": "nlpnet-1.1.5.zip", "has_sig": false, "md5_digest": "5c3d6c735a02435b5fc96ff301ade119", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 249676, "upload_time": "2014-07-12T04:28:02", "url": "https://files.pythonhosted.org/packages/61/8e/989b5d5e5b817acd6ecbd59e3fe3ff893134e5de0c8450410f21c9568dba/nlpnet-1.1.5.zip" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "ba456a10131b6eb07a62e37c1fa629c2", "sha256": "d1121b6b85e4ab287663a01084cc74ea3b01995e554239515ce7dcc7fc36503b" }, "downloads": -1, "filename": "nlpnet-1.1.6.win32-py2.7.exe", "has_sig": false, "md5_digest": "ba456a10131b6eb07a62e37c1fa629c2", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 442832, "upload_time": "2015-02-25T18:02:37", "url": "https://files.pythonhosted.org/packages/f5/28/fd2c1e9730be7b443af3e1a1737ae2e2e1c5e7eeaea1b7d60d5273911506/nlpnet-1.1.6.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "3b67afd95ebc24d46061f9aba0a15e47", "sha256": "d5c9f221030cc22467c4eb1f2f50d049130f77fb805c7773f26366c58fdb6f70" }, "downloads": -1, "filename": "nlpnet-1.1.6.zip", "has_sig": false, "md5_digest": "3b67afd95ebc24d46061f9aba0a15e47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284269, "upload_time": "2015-02-25T18:02:29", "url": "https://files.pythonhosted.org/packages/f9/d7/be451a78fc3d5d38f5213c758cb3dbb14059fc364e97f3941466da2f0f56/nlpnet-1.1.6.zip" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "4a936f415d42f1a9636f17260ebd8f1e", "sha256": "211247ec1cbf635832729ee8edc06485580bfdd0dd5ac0d0aa527b8843d44ced" }, "downloads": -1, "filename": "nlpnet-1.2.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "4a936f415d42f1a9636f17260ebd8f1e", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 477584, "upload_time": "2015-04-18T13:03:32", "url": "https://files.pythonhosted.org/packages/53/64/944b1af065b600a2dbd06c3ff3e71d55c68b08876608d158ebc47a2057e4/nlpnet-1.2.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "9c266dc533d53aa407d49788465e8352", "sha256": "7a68cb792eab720ac3e270d149a8b8a63fa0cd04e68c5d50876ba1c32e990263" }, "downloads": -1, "filename": "nlpnet-1.2.0.zip", "has_sig": false, "md5_digest": "9c266dc533d53aa407d49788465e8352", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 329495, "upload_time": "2015-04-18T13:03:24", "url": "https://files.pythonhosted.org/packages/2b/2b/a5e5457132fce87274dc1369e769974e78f1019a19a9570efe6a09ff3ee5/nlpnet-1.2.0.zip" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "67e6533c256df2c25aba7afd4149719a", "sha256": "12c009c69db8376dc94836e974a2c0dd3a100dbd111fbfe9dd8cdf3a1956fb0d" }, "downloads": -1, "filename": "nlpnet-1.2.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "67e6533c256df2c25aba7afd4149719a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 495767, "upload_time": "2015-11-21T13:38:39", "url": "https://files.pythonhosted.org/packages/49/f6/624a512c2c3cdd825f6524cc9d414cf142b70e224b38f5004153be874724/nlpnet-1.2.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "b684d0097943a66ed32292d55e678191", "sha256": "9181c936a0ebb62556c2685dc12aa5624c668975ffe8aa770669513d8d87463d" }, "downloads": -1, "filename": "nlpnet-1.2.1.zip", "has_sig": false, "md5_digest": "b684d0097943a66ed32292d55e678191", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347686, "upload_time": "2015-11-21T13:38:25", "url": "https://files.pythonhosted.org/packages/cf/21/72d08bde40ce5e2233dbd682b9348b36d014242dfe99b828ebf764e98228/nlpnet-1.2.1.zip" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "f6d650dd91c6eff42d4a8a222be5947d", "sha256": "ac76a0fff888aef492f79700304a75cb7e9b69b1597746eea0f5b05256cf1f5c" }, "downloads": -1, "filename": "nlpnet-1.2.2-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "f6d650dd91c6eff42d4a8a222be5947d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 424444, "upload_time": "2017-10-08T03:21:20", "url": "https://files.pythonhosted.org/packages/85/88/748a8313aa443568ae0622d6707d97c4f60c1de84bb4d92d6c87f0ab428c/nlpnet-1.2.2-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e529c81ad185620bda8fe805fce48109", "sha256": "353556fea37fca68cf636b8ad47d3b8baa73613cc322ac9d16c1e65f64439a4f" }, "downloads": -1, "filename": "nlpnet-1.2.2.tar.gz", "has_sig": false, "md5_digest": "e529c81ad185620bda8fe805fce48109", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 335955, "upload_time": "2017-10-08T03:21:24", "url": "https://files.pythonhosted.org/packages/45/b7/89a0e81cc8a55fd2d2697ae89db795c84e45d117f13ee0b104422b45cba6/nlpnet-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "7b133638ed778e2649c4365e9ff3c606", "sha256": "6ed49467dbdbc34f43dbfbca6f980f671d2b2422f8c0ee52c3edae45abdf078d" }, "downloads": -1, "filename": "nlpnet-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7b133638ed778e2649c4365e9ff3c606", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 472266, "upload_time": "2019-05-08T13:32:37", "url": "https://files.pythonhosted.org/packages/5c/9f/6fcfdc155009a4b881d231d915e37805c6658f40d93c2dfed497592a493d/nlpnet-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2086917393cd8dafc07a1f0f0c35b17d", "sha256": "9fbf4dceeb9fd4ccb161226df75f6f0b3b68e0ea6c2fb9e6f68ea56d9fa46475" }, "downloads": -1, "filename": "nlpnet-1.2.3.macosx-10.9-x86_64.tar.gz", "has_sig": false, "md5_digest": "2086917393cd8dafc07a1f0f0c35b17d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 500462, "upload_time": "2019-05-08T13:32:48", "url": "https://files.pythonhosted.org/packages/43/0e/3127489a4da3fae536c16eb9233d46e9ab00e3ad0d39bdd82ec1b3056ef2/nlpnet-1.2.3.macosx-10.9-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "4cb091ccf43ad4c2f4509571cb994b6b", "sha256": "61a423483af52915e375b0899bfbeb42d5ae8679d75d7b5ed080a3481baa27d1" }, "downloads": -1, "filename": "nlpnet-1.2.3-py2.7-macosx-10.6-x86_64.egg", "has_sig": false, "md5_digest": "4cb091ccf43ad4c2f4509571cb994b6b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 513379, "upload_time": "2019-05-08T13:32:40", "url": "https://files.pythonhosted.org/packages/bb/e3/4d03b09b11be3eda2027a708bfd337b6add482d6addfb4b2918f33d22b1f/nlpnet-1.2.3-py2.7-macosx-10.6-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "8f0821731233c51bf51a0f85ea6e02c3", "sha256": "763bfc93a4d5a484deaf81cf73dfe810a1d4f9750af7e771604e2f075421318a" }, "downloads": -1, "filename": "nlpnet-1.2.3-py3.6-macosx-10.7-x86_64.egg", "has_sig": false, "md5_digest": "8f0821731233c51bf51a0f85ea6e02c3", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 444135, "upload_time": "2019-05-08T13:32:43", "url": "https://files.pythonhosted.org/packages/b5/be/8880987a346ed894c5fd6161724bbd8ea496b0a105472efed538dd6231a3/nlpnet-1.2.3-py3.6-macosx-10.7-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "cdb1aec7dce9da98896d2f6f480a3f75", "sha256": "25f46cd561ebc70adf4fcb54d0149a090e2645f594eba01b9b946bfadd60f5c5" }, "downloads": -1, "filename": "nlpnet-1.2.3-py3.7-macosx-10.9-x86_64.egg", "has_sig": false, "md5_digest": "cdb1aec7dce9da98896d2f6f480a3f75", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 521066, "upload_time": "2019-05-08T13:32:45", "url": "https://files.pythonhosted.org/packages/eb/9d/eec0897a7ab56629d79065b7a0ff588b88b66db6cb86a2afede7b208721a/nlpnet-1.2.3-py3.7-macosx-10.9-x86_64.egg" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "fda37202e26ced53e3f2f883fbfbc5f7", "sha256": "a3c6a99387fca37ffb4ff0d68fe3be843f1d13c54293cd1dd278a7d9b091458b" }, "downloads": -1, "filename": "nlpnet-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fda37202e26ced53e3f2f883fbfbc5f7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 483881, "upload_time": "2019-08-12T15:52:54", "url": "https://files.pythonhosted.org/packages/7c/9c/d2ea065c82a94d4c8841eb568f6f367c2e7f0d323ad376a9a57d3fc995e2/nlpnet-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8a4f9d548f5eab593d635d44211357c2", "sha256": "b791110ad068e273d2fc664d94b2608d322184da6b2cd799f0e4d476f1631614" }, "downloads": -1, "filename": "nlpnet-1.2.4.tar.gz", "has_sig": false, "md5_digest": "8a4f9d548f5eab593d635d44211357c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 393273, "upload_time": "2019-08-12T15:52:56", "url": "https://files.pythonhosted.org/packages/cc/3f/a5bf348da1a3148acb810d5236bd1c832383fd1a98cb9c4ac3f3bf92ab72/nlpnet-1.2.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fda37202e26ced53e3f2f883fbfbc5f7", "sha256": "a3c6a99387fca37ffb4ff0d68fe3be843f1d13c54293cd1dd278a7d9b091458b" }, "downloads": -1, "filename": "nlpnet-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fda37202e26ced53e3f2f883fbfbc5f7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 483881, "upload_time": "2019-08-12T15:52:54", "url": "https://files.pythonhosted.org/packages/7c/9c/d2ea065c82a94d4c8841eb568f6f367c2e7f0d323ad376a9a57d3fc995e2/nlpnet-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8a4f9d548f5eab593d635d44211357c2", "sha256": "b791110ad068e273d2fc664d94b2608d322184da6b2cd799f0e4d476f1631614" }, "downloads": -1, "filename": "nlpnet-1.2.4.tar.gz", "has_sig": false, "md5_digest": "8a4f9d548f5eab593d635d44211357c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 393273, "upload_time": "2019-08-12T15:52:56", "url": "https://files.pythonhosted.org/packages/cc/3f/a5bf348da1a3148acb810d5236bd1c832383fd1a98cb9c4ac3f3bf92ab72/nlpnet-1.2.4.tar.gz" } ] }