{ "info": { "author": "Allen Institute for Artificial Intelligence", "author_email": "allennlp@allenai.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "

\n\n[![Build Status](http://build.allennlp.org/app/rest/builds/buildType:(id:AllenNLP_AllenNLPCommits)/statusIcon)](http://build.allennlp.org/viewType.html?buildTypeId=AllenNLP_AllenNLPCommits&guest=1)\n[![codecov](https://codecov.io/gh/allenai/allennlp/branch/master/graph/badge.svg)](https://codecov.io/gh/allenai/allennlp)\n\nAn [Apache 2.0](https://github.com/allenai/allennlp/blob/master/LICENSE) NLP research library, built on PyTorch,\nfor developing state-of-the-art deep learning models on a wide variety of linguistic tasks.\n\n## Quick Links\n\n* [Website](https://allennlp.org/)\n* [Tutorial](https://allennlp.org/tutorials)\n* [Forum](https://discourse.allennlp.org)\n* [Documentation](https://allenai.github.io/allennlp-docs/)\n* [Contributing Guidelines](CONTRIBUTING.md)\n* [Model List](MODELS.md)\n* [Continuous Build](http://build.allennlp.org/)\n\n## Package Overview\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
allennlp an open-source NLP research library, built on PyTorch
allennlp.commands functionality for a CLI and web service
allennlp.data a data processing module for loading datasets and encoding strings as integers for representation in matrices
allennlp.models a collection of state-of-the-art models
allennlp.modules a collection of PyTorch modules for use with text
allennlp.nn tensor utility functions, such as initializers and activation functions
allennlp.service a web server to that can serve demos for your models
allennlp.training functionality for training models
\n\n## Installation\n\nAllenNLP requires Python 3.6.1 or later. The preferred way to install AllenNLP is via `pip`. Just run `pip install allennlp` in your Python environment and you're good to go!\n\nIf you need pointers on setting up an appropriate Python environment or would like to install AllenNLP using a different method, see below.\n\nWindows is currently not officially supported, although we try to fix issues when they are easily addressed.\n\n### Installing via pip\n\n#### Setting up a virtual environment\n\n[Conda](https://conda.io/) can be used set up a virtual environment with the\nversion of Python required for AllenNLP. If you already have a Python 3.6 or 3.7\nenvironment you want to use, you can skip to the 'installing via pip' section.\n\n1. [Download and install Conda](https://conda.io/projects/conda/en/latest/user-guide/install/index.html).\n\n2. Create a Conda environment with Python 3.6\n\n ```bash\n conda create -n allennlp python=3.6\n ```\n\n3. Activate the Conda environment. You will need to activate the Conda environment in each terminal in which you want to use AllenNLP.\n\n ```bash\n source activate allennlp\n ```\n\n#### Installing the library and dependencies\n\nInstalling the library and dependencies is simple using `pip`.\n\n ```bash\n pip install allennlp\n ```\n\nThat's it! You're now ready to build and train AllenNLP models.\nAllenNLP installs a script when you install the python package, meaning you can run allennlp commands just by typing `allennlp` into a terminal.\n\nYou can now test your installation with `allennlp test-install`.\n\n_`pip` currently installs Pytorch for CUDA 9 only (or no GPU). If you require an older version,\nplease visit https://pytorch.org/ and install the relevant pytorch binary._\n\n### Installing using Docker\n\nDocker provides a virtual machine with everything set up to run AllenNLP--\nwhether you will leverage a GPU or just run on a CPU. Docker provides more\nisolation and consistency, and also makes it easy to distribute your\nenvironment to a compute cluster.\n\nOnce you have [installed Docker](https://docs.docker.com/engine/installation/)\njust run the following command to get an environment that will run on either the cpu or gpu.\n\n ```bash\n mkdir -p $HOME/.allennlp/\n docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.9.0\n ```\n\nYou can test the Docker environment with `docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.9.0 test-install`.\n\n### Installing from source\n\nYou can also install AllenNLP by cloning our git repository:\n\n ```bash\n git clone https://github.com/allenai/allennlp.git\n ```\n\nCreate a Python 3.6 virtual environment, and install AllenNLP in `editable` mode by running:\n\n ```bash\n pip install --editable .\n ```\n\nThis will make `allennlp` available on your system but it will use the sources from the local clone\nyou made of the source repository.\n\nYou can test your installation with `allennlp test-install`.\nThe full development environment also requires the JVM and `perl`,\nwhich must be installed separately. `./scripts/verify.py` will run\nthe full suite of tests used by our continuous build environment.\n\n## Running AllenNLP\n\nOnce you've installed AllenNLP, you can run the command-line interface either\nwith the `allennlp` command (if you installed via `pip`) or `allennlp` (if you installed via source).\n\n```bash\n$ allennlp\nRun AllenNLP\n\noptional arguments:\n -h, --help show this help message and exit\n --version show program's version number and exit\n\nCommands:\n\n configure Run the configuration wizard.\n train Train a model.\n evaluate Evaluate the specified model + dataset.\n predict Use a trained model to make predictions.\n make-vocab Create a vocabulary.\n elmo Create word vectors using a pretrained ELMo model.\n fine-tune Continue training a model on a new dataset.\n dry-run Create a vocabulary, compute dataset statistics and other\n training utilities.\n test-install\n Run the unit tests.\n find-lr Find a learning rate range.\n```\n\n## Docker images\n\nAllenNLP releases Docker images to [Docker Hub](https://hub.docker.com/r/allennlp/) for each release. For information on how to run these releases, see [Installing using Docker](#installing-using-docker).\n\n### Building a Docker image\n\nFor various reasons you may need to create your own AllenNLP Docker image.\nThe same image can be used either with a CPU or a GPU.\n\nFirst, you need to [install Docker](https://www.docker.com/get-started).\nThen run the following command\n(it will take some time, as it completely builds the\nenvironment needed to run AllenNLP.)\n\n```bash\ndocker build -f Dockerfile.pip --tag allennlp/allennlp:latest .\n```\n\nYou should now be able to see this image listed by running `docker images allennlp`.\n\n```\nREPOSITORY TAG IMAGE ID CREATED SIZE\nallennlp/allennlp latest b66aee6cb593 5 minutes ago 2.38GB\n```\n\n### Running the Docker image\n\nYou can run the image with `docker run --rm -it allennlp/allennlp:latest`. The `--rm` flag cleans up the image on exit and the `-it` flags make the session interactive so you can use the bash shell the Docker image starts.\n\nYou can test your installation by running `allennlp test-install`.\n\n## Issues\n\nEveryone is welcome to file issues with either feature requests, bug reports, or general questions. As a small team with our own internal goals, we may ask for contributions if a prompt fix doesn't fit into our roadmap. We allow users a two week window to follow up on questions, after which we will close issues. They can be re-opened if there is further discussion.\n\n## Contributions\n\nThe AllenNLP team at AI2 (@allenai) welcomes contributions from the greater AllenNLP community, and, if you would like to get a change into the library, this is likely the fastest approach. If you would like to contribute a larger feature, we recommend first creating an issue with a proposed design for discussion. This will prevent you from spending significant time on an implementation which has a technical limitation someone could have pointed out early on. Small contributions can be made directly in a pull request.\n\nPull requests (PRs) must have one approving review and no requested changes before they are merged. As AllenNLP is primarily driven by AI2 (@allenai) we reserve the right to reject or revert contributions that we don't think are good additions.\n\n## Citing\n\nIf you use AllenNLP in your research, please cite [AllenNLP: A Deep Semantic Natural Language Processing Platform](https://www.semanticscholar.org/paper/AllenNLP%3A-A-Deep-Semantic-Natural-Language-Platform-Gardner-Grus/a5502187140cdd98d76ae711973dbcdaf1fef46d).\n\n```\n@inproceedings{Gardner2017AllenNLP,\n title={AllenNLP: A Deep Semantic Natural Language Processing Platform},\n author={Matt Gardner and Joel Grus and Mark Neumann and Oyvind Tafjord\n and Pradeep Dasigi and Nelson F. Liu and Matthew Peters and\n Michael Schmitz and Luke S. Zettlemoyer},\n year={2017},\n Eprint = {arXiv:1803.07640},\n}\n```\n\n## Team\n\nAllenNLP is an open-source project backed by [the Allen Institute for Artificial Intelligence (AI2)](https://allenai.org/).\nAI2 is a non-profit institute with the mission to contribute to humanity through high-impact AI research and engineering.\nTo learn more about who specifically contributed to this codebase, see [our contributors](https://github.com/allenai/allennlp/graphs/contributors) page.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/allenai/allennlp", "keywords": "allennlp NLP deep learning machine reading", "license": "Apache", "maintainer": "", "maintainer_email": "", "name": "allennlp", "package_url": "https://pypi.org/project/allennlp/", "platform": "", "project_url": "https://pypi.org/project/allennlp/", "project_urls": { "Homepage": "https://github.com/allenai/allennlp" }, "release_url": "https://pypi.org/project/allennlp/0.9.0/", "requires_dist": [ "torch (>=1.2.0)", "overrides", "nltk", "spacy (<2.2,>=2.1.0)", "numpy", "tensorboardX (>=1.2)", "boto3", "flask (>=1.0.2)", "flask-cors (>=3.0.7)", "gevent (>=1.3.6)", "requests (>=2.18)", "tqdm (>=4.19)", "editdistance", "h5py", "scikit-learn", "scipy", "pytz (>=2017.3)", "unidecode", "matplotlib (>=2.2.3)", "pytest", "flaky", "responses (>=0.7)", "numpydoc (>=0.8.0)", "conllu (==1.3.1)", "parsimonious (>=0.8.0)", "ftfy", "sqlparse (>=0.2.4)", "word2number (>=1.1)", "pytorch-pretrained-bert (>=0.6.0)", "pytorch-transformers (==1.1.0)", "jsonpickle", "jsonnet (>=0.10.0) ; sys_platform != \"win32\"" ], "requires_python": ">=3.6.1", "summary": "An open-source NLP research library, built on PyTorch.", "version": "0.9.0" }, "last_serial": 5885612, "releases": { "0.1a6": [ { "comment_text": "", "digests": { "md5": "e64ea745838fd9fa3ceb495c878338fa", "sha256": "4d656a74369786392833ba68afa3374735f3c634b32bb2318efa24adc981cfef" }, "downloads": -1, "filename": "allennlp-0.1a6-py3-none-any.whl", "has_sig": false, "md5_digest": "e64ea745838fd9fa3ceb495c878338fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.5", "size": 251715, "upload_time": "2017-09-01T20:27:36", "url": "https://files.pythonhosted.org/packages/4b/55/7260c7fa093fcdf5580a4cc5c4b5d457194da4cc800b43df27d87c1fade1/allennlp-0.1a6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14bfcdba6e621a33287863f5e9f0a41c", "sha256": "3e9ff69181a79fc3b1f678f5d5c2ba6f2fbb456638acc25b0db97f4bf19bd598" }, "downloads": -1, "filename": "allennlp-0.1a6.tar.gz", "has_sig": false, "md5_digest": "14bfcdba6e621a33287863f5e9f0a41c", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.5", "size": 152118, "upload_time": "2017-09-01T20:27:39", "url": "https://files.pythonhosted.org/packages/5f/b7/e767c9258be70cfed43ac60de93d953600d8014db2055db1b61a36963887/allennlp-0.1a6.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "215a2dcf4c318e82ed25e292787f6be7", "sha256": "a3e321fc5a3ca610c51331c0307989b6884ada3fb9aa1dd048243381eef04ff3" }, "downloads": -1, "filename": "allennlp-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "215a2dcf4c318e82ed25e292787f6be7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "==3.6", "size": 255555, "upload_time": "2017-09-08T20:59:38", "url": "https://files.pythonhosted.org/packages/60/b0/b879eaf6350952b5e6e50fb4fc27cd13edf7b956c087b6e0a97c15660a99/allennlp-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a1ea39139856489aaf3cdc97fe8b43c6", "sha256": "3b6d3fca260c231ba5d92204ecda45d862021e21274265752357a01b6b84a33e" }, "downloads": -1, "filename": "allennlp-0.2.0.tar.gz", "has_sig": false, "md5_digest": "a1ea39139856489aaf3cdc97fe8b43c6", "packagetype": "sdist", "python_version": "source", "requires_python": "==3.6", "size": 245694, "upload_time": "2017-09-08T20:59:40", "url": "https://files.pythonhosted.org/packages/07/f7/454009e056887beb3a26dce24a438ad1575913cb534cdbfdbc8748d34bb6/allennlp-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "37a06fb7d45551b2e56373804c3248f5", "sha256": "e16bd931910863c9dc85f6b605634e18f2b0284492253146ba499d4d077074b3" }, "downloads": -1, "filename": "allennlp-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "37a06fb7d45551b2e56373804c3248f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 255453, "upload_time": "2017-09-11T20:02:37", "url": "https://files.pythonhosted.org/packages/02/bd/1f9c32e1ae35c40b26cc85877d3539a14e79fe69acaff5c628231b4bd775/allennlp-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f64317e7ddbab2f6390e858158e027f", "sha256": "e5536db8585db7c2626373301fbefbf46436b1cf682ef108c37e0dbfbfa9b42e" }, "downloads": -1, "filename": "allennlp-0.2.1.tar.gz", "has_sig": false, "md5_digest": "3f64317e7ddbab2f6390e858158e027f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 249362, "upload_time": "2017-09-11T20:02:41", "url": "https://files.pythonhosted.org/packages/a1/63/a75ffd2cd49d77dc0c119c4a07d679e431ebc28799c564a4e57bf6865092/allennlp-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "3a5da448d7b6cbcdea7d8bc8418ffb82", "sha256": "6642f9c48a94bfe896ec81156eda04176ab900e92fdb05186baed2d3cd91ac5a" }, "downloads": -1, "filename": "allennlp-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "3a5da448d7b6cbcdea7d8bc8418ffb82", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 374314, "upload_time": "2017-11-29T23:22:04", "url": "https://files.pythonhosted.org/packages/62/9a/085e9c556eb7f3c3fbeb71551a2afb131e121d7575d60accfb29c4f9b556/allennlp-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "192675f04300e08d390aa65b68915601", "sha256": "98e422d589d6789292a210f025f3eeba9410459db6aa7bf182a32727a767a0fb" }, "downloads": -1, "filename": "allennlp-0.2.2.tar.gz", "has_sig": false, "md5_digest": "192675f04300e08d390aa65b68915601", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 322449, "upload_time": "2017-11-29T23:22:07", "url": "https://files.pythonhosted.org/packages/b5/4d/c99108d4540b17db09ad165d37d90d2e2e439ffd2d478751fa6664fed91d/allennlp-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "dac3bda93c111969190c70e1331955e8", "sha256": "9a6f89508c405a0bb8cfea304c685177400fa43c4b290e31f97424abf0e077e4" }, "downloads": -1, "filename": "allennlp-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "dac3bda93c111969190c70e1331955e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 390943, "upload_time": "2017-12-06T18:54:51", "url": "https://files.pythonhosted.org/packages/20/61/e7569b176f42fbe847e62b56b94a9cc1187acb90995b3bb60be4da27e312/allennlp-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49211f3dc544af72f88a4bf1dac4af12", "sha256": "34ffd1bd26fca350be154c237948a342697ff4bc58a0288c4521b2acebdd45de" }, "downloads": -1, "filename": "allennlp-0.2.3.tar.gz", "has_sig": false, "md5_digest": "49211f3dc544af72f88a4bf1dac4af12", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 331525, "upload_time": "2017-12-06T18:54:53", "url": "https://files.pythonhosted.org/packages/c7/e1/38f374c67841e9805726dc5fd8b077c01388118ca9c125bd4a0e4c03d115/allennlp-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "35af89f4fac6ec0f31df2f88b0422b38", "sha256": "4f4ed5e0ed9694103e6608c42a04200f18396e7f583f9b65620f8b9b61f3821e" }, "downloads": -1, "filename": "allennlp-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "35af89f4fac6ec0f31df2f88b0422b38", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 392326, "upload_time": "2017-12-15T16:08:23", "url": "https://files.pythonhosted.org/packages/64/ee/8d2a43dc686ee7920e3728f4e00a7d676b1fb83cf082e4768b62cbd4fea8/allennlp-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9e5e4f0bc86091f516f3c473d89de2b5", "sha256": "896f11399075676f27af91e0e2242dc354d4240ec953fb037102d7e5fdf67844" }, "downloads": -1, "filename": "allennlp-0.3.0.tar.gz", "has_sig": false, "md5_digest": "9e5e4f0bc86091f516f3c473d89de2b5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 344651, "upload_time": "2017-12-15T16:08:25", "url": "https://files.pythonhosted.org/packages/01/3a/f324de526d3844927cc9be6edf2b4305565cf6382e9d76eb901bfe931fc5/allennlp-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "e8c668b06a9b299cde80b9ff3e0a2990", "sha256": "97a755c367e903ef4a57644c2d18d53e8940cd582c80188356239f64534c86e7" }, "downloads": -1, "filename": "allennlp-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e8c668b06a9b299cde80b9ff3e0a2990", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 488314, "upload_time": "2018-02-20T21:53:30", "url": "https://files.pythonhosted.org/packages/d7/9d/096821861893e7557333bdea3226711b2a69b00f69bce69a279453da7cbc/allennlp-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "992f150454ad7e3199f31a27c924feea", "sha256": "f6d3e0e2877f6157966b2f081e45ab73f3b3b70b959d37aeb1d414171d4e6664" }, "downloads": -1, "filename": "allennlp-0.4.0.tar.gz", "has_sig": false, "md5_digest": "992f150454ad7e3199f31a27c924feea", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1676732, "upload_time": "2018-02-20T21:53:36", "url": "https://files.pythonhosted.org/packages/1b/24/52f96a1ac4689c48e1a30ffcdc8133d6afe629a8347f88674a85ad23719b/allennlp-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "0e42b29880d10f97daccd0f3c16399bc", "sha256": "cf2a1c4493cea169309de15fbcb9d493cc91a9877701f39d6e7e82b4768e08f9" }, "downloads": -1, "filename": "allennlp-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0e42b29880d10f97daccd0f3c16399bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 496898, "upload_time": "2018-03-23T22:34:03", "url": "https://files.pythonhosted.org/packages/38/a1/bf3625c838e743cd720dfa321ff1d95a0a4cf175d28fa4bc0f1f897474e7/allennlp-0.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cec6947ea89b4f02a819ecf9368f090", "sha256": "13d2f7f110a5df899069550259d1dd6cdf744ad15eccc6d68f4804985a6fc8ee" }, "downloads": -1, "filename": "allennlp-0.4.1.tar.gz", "has_sig": false, "md5_digest": "0cec6947ea89b4f02a819ecf9368f090", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1688866, "upload_time": "2018-03-23T22:34:05", "url": "https://files.pythonhosted.org/packages/97/7a/06832b8bd2975399c7cfaea151f00954108a104d8fb82ac6f33c200d34f4/allennlp-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "a968664cec7569e92f1bca9406bf1878", "sha256": "24b08e0e6a8bf8bf0e9bf1e8407e34c42b199633567d3bd8ed298cb63d43123a" }, "downloads": -1, "filename": "allennlp-0.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a968664cec7569e92f1bca9406bf1878", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 710752, "upload_time": "2018-05-01T17:56:23", "url": "https://files.pythonhosted.org/packages/c5/60/fa613bdea022bd6c26176f5786efcc0b5a6d8acf97131e324179a99fcbaf/allennlp-0.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "830a4748b47d3ed7f4bfbb11d51aa1f6", "sha256": "c415a063dc343f6bcbcbccde26540160b7c949e28f215538a14a77723d4b54cd" }, "downloads": -1, "filename": "allennlp-0.4.2.tar.gz", "has_sig": false, "md5_digest": "830a4748b47d3ed7f4bfbb11d51aa1f6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1841213, "upload_time": "2018-05-01T17:56:26", "url": "https://files.pythonhosted.org/packages/44/bb/9aca0990a1fee39d1cc6201443548a0f172728d259963bb052d691bb6f27/allennlp-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "bcd147bd49e27b96192f501f8e7a7e29", "sha256": "6be81ed9f064f1032c4b3f5048bda607dca2847055592a2efa124e29dd49454f" }, "downloads": -1, "filename": "allennlp-0.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "bcd147bd49e27b96192f501f8e7a7e29", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 4262273, "upload_time": "2018-05-24T22:44:12", "url": "https://files.pythonhosted.org/packages/99/97/b2656eeb71565059de62718ef04c2ef86f3ef0ba8282e2b9146c1b8dba40/allennlp-0.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2722aeae18b0946fb3beacb484e313a8", "sha256": "1cc902c71df4a99157abf6bf511a53c636f1011a76d3d8d96715484a6ad9eb8a" }, "downloads": -1, "filename": "allennlp-0.4.3.tar.gz", "has_sig": false, "md5_digest": "2722aeae18b0946fb3beacb484e313a8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 4739609, "upload_time": "2018-05-24T22:44:27", "url": "https://files.pythonhosted.org/packages/73/7e/bc867102513cce4fbaa09ff761a5262b2375e09bc31b01d11bac651768d3/allennlp-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "4dfc3f77da70b635d6c0bb5d59145563", "sha256": "5dec408b9675f32efe47e72031aedea655546c06c64c23abd4495152120ae8a7" }, "downloads": -1, "filename": "allennlp-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4dfc3f77da70b635d6c0bb5d59145563", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 3887280, "upload_time": "2018-06-13T17:59:07", "url": "https://files.pythonhosted.org/packages/ca/cd/98a374f16d4ee5c944a38b526d03e5f7341e434e827983c414fd3367d29b/allennlp-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "debb841f4c87345b4342ce74a7d85319", "sha256": "148d996a4492465e8eac36a6b75bcb0769818912bc2bdfff1b0ac2df01fc43e9" }, "downloads": -1, "filename": "allennlp-0.5.0.tar.gz", "has_sig": false, "md5_digest": "debb841f4c87345b4342ce74a7d85319", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 5566427, "upload_time": "2018-06-13T17:59:10", "url": "https://files.pythonhosted.org/packages/31/00/cf418ae92fb7998c60e09354309a6af2a60d397ad876abef109a5cd74c96/allennlp-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "327ff42af9680f4dc819c74f9d871875", "sha256": "bbf3ac1f97d882e32c55057b3b37852ff44d5a87842673c2421c449e5887a724" }, "downloads": -1, "filename": "allennlp-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "327ff42af9680f4dc819c74f9d871875", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 3886411, "upload_time": "2018-06-14T00:24:03", "url": "https://files.pythonhosted.org/packages/8d/34/1439e851e8ebd913f958b40c48bc75451d37f337105703fa04dd855ae3f5/allennlp-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "580764afed213bbfb77500ae4c2a5482", "sha256": "c6c3d47fabf8b1a4ba93c09e833b56fadcf706c343f807a6e7b41ba93637b18e" }, "downloads": -1, "filename": "allennlp-0.5.1.tar.gz", "has_sig": false, "md5_digest": "580764afed213bbfb77500ae4c2a5482", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 5567856, "upload_time": "2018-06-14T00:24:06", "url": "https://files.pythonhosted.org/packages/24/f0/3e3df9f06d534270b5da0de31ba9cf742f7e2a5fc0d2d70afb069e44308d/allennlp-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "509f55fefc96c1f447222b962404047c", "sha256": "ad32dc54bbd0c52a2940018aef14f8b094f41b3eb80fca123b22def345204f88" }, "downloads": -1, "filename": "allennlp-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "509f55fefc96c1f447222b962404047c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 5751032, "upload_time": "2018-08-15T18:01:03", "url": "https://files.pythonhosted.org/packages/75/80/7dd9f42d89b9506f74f87c0d055a32a0137c98ba56a420f93a4d3a87085f/allennlp-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "394745897b065acd5e91c7e28e39256d", "sha256": "01aca55d958535dcc489876cc7e75d7657ff3074fb91db082f7241062e3df160" }, "downloads": -1, "filename": "allennlp-0.6.0.tar.gz", "has_sig": false, "md5_digest": "394745897b065acd5e91c7e28e39256d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 6212571, "upload_time": "2018-08-15T18:01:06", "url": "https://files.pythonhosted.org/packages/d1/b6/1a0d01e55f3695b8418c44db9bc60ce3517b4dcaca9a7c895241b07e9ea6/allennlp-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "6f8f564c9c51a84656b2da5142f730aa", "sha256": "40e661b0d6ff7583b7a296632fb13e7ec7f670f3cc4751ee3e3ca389b62d9a64" }, "downloads": -1, "filename": "allennlp-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6f8f564c9c51a84656b2da5142f730aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 6946310, "upload_time": "2018-08-30T23:49:44", "url": "https://files.pythonhosted.org/packages/f7/db/c74487c9fb95fb322816d2d7e6ed983cea9d4fb77844cc0e101a9dadf744/allennlp-0.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ddba669182294cdb09cf22b5e7b9e4e", "sha256": "25d84495d1be526d0ad76432db03249626b98353b6296227e4367c3faf087cc5" }, "downloads": -1, "filename": "allennlp-0.6.1.tar.gz", "has_sig": false, "md5_digest": "2ddba669182294cdb09cf22b5e7b9e4e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 8538774, "upload_time": "2018-08-30T23:50:05", "url": "https://files.pythonhosted.org/packages/00/3d/d1fc64fb589fadb2366b9ff11f7c43235497d4ac41b748c607d0bd98fed3/allennlp-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f218002ef10ab1070c6241427dde05c5", "sha256": "192b241f13b18c24d715ca0a9f82d1b95b32a9f96e5109838978419bd5676ca9" }, "downloads": -1, "filename": "allennlp-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f218002ef10ab1070c6241427dde05c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 6997934, "upload_time": "2018-10-05T22:33:47", "url": "https://files.pythonhosted.org/packages/0d/fd/965353c9c35fb56c7e82fd0e69298c8deb9ead27c10ebaa072660751dafd/allennlp-0.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1a1b2352c209823b637d03c68b90a912", "sha256": "58d82bf09a4d2dcf80e925fd42007e44040c5afd7085db31660a492bd2ed747c" }, "downloads": -1, "filename": "allennlp-0.7.0.tar.gz", "has_sig": false, "md5_digest": "1a1b2352c209823b637d03c68b90a912", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 8481577, "upload_time": "2018-10-05T22:33:50", "url": "https://files.pythonhosted.org/packages/9e/ab/2f26aa18e7dd5db6b36fb7856dd6d8c676d3ce3c65d5da334e24c824fb55/allennlp-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "0456f00a013b198a700cd612c88071ff", "sha256": "099a02dbc5c93b0604e6b748b86a777e73100aec43a1a25b3e672fb9224d8b1c" }, "downloads": -1, "filename": "allennlp-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0456f00a013b198a700cd612c88071ff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 4504116, "upload_time": "2018-10-25T22:38:47", "url": "https://files.pythonhosted.org/packages/db/98/3b620e6472a240a4451c6daece6ce9d806fde0b0250606f910557a5353f6/allennlp-0.7.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18b3ad719b9a18d45199e3a2a4e6fbe3", "sha256": "d29faeb7365d282f9c7522d11e4a0879d220265fc61fb36de5dea9719cc9ee7f" }, "downloads": -1, "filename": "allennlp-0.7.1.tar.gz", "has_sig": false, "md5_digest": "18b3ad719b9a18d45199e3a2a4e6fbe3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 6909168, "upload_time": "2018-10-25T22:39:04", "url": "https://files.pythonhosted.org/packages/d6/1d/e572ad8bbab8bbf170e733d3c56e13a0c35aeca7dd628ee092a7545440af/allennlp-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "bbfa55deeada8f8c581b923d3c40d64b", "sha256": "bff041eda6a47832e150daf575aaf29b1e87c35560aeba57e26f7b85af4fd698" }, "downloads": -1, "filename": "allennlp-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "bbfa55deeada8f8c581b923d3c40d64b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 6558380, "upload_time": "2018-12-03T19:48:50", "url": "https://files.pythonhosted.org/packages/e5/a3/cb723790b98728962cb9144c3cef1c978cb5158fbf8c280f4c1a50ce8058/allennlp-0.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e13369b55fad13dac4bd2e48ba58f02", "sha256": "c51d32598ed0efb0599c15f463e2fe792e06d843964528b6bca9747b0d31be5c" }, "downloads": -1, "filename": "allennlp-0.7.2.tar.gz", "has_sig": false, "md5_digest": "4e13369b55fad13dac4bd2e48ba58f02", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 8319478, "upload_time": "2018-12-03T19:49:10", "url": "https://files.pythonhosted.org/packages/b0/24/bf00eeaa29160b7774ddabeb7151033c400fd483140cc48ee2277200369a/allennlp-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "aed07d1c4b48b3b468ca1615a6d322c2", "sha256": "a0b6bca71d8fc5164e01fe7356f47d51537a4421f494506bd62be0cbd451a05f" }, "downloads": -1, "filename": "allennlp-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "aed07d1c4b48b3b468ca1615a6d322c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 10067275, "upload_time": "2018-12-19T18:24:46", "url": "https://files.pythonhosted.org/packages/92/87/905d0ac536477490ee3392f0db97f40fae7f0ec6baee52e44880a20a2515/allennlp-0.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66489c931696fcaf73836eea65505153", "sha256": "6447c49d78eabd9c82796895d3d92ecda6f324d09ee23b23509d1ec0c3f69256" }, "downloads": -1, "filename": "allennlp-0.8.0.tar.gz", "has_sig": false, "md5_digest": "66489c931696fcaf73836eea65505153", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 9494729, "upload_time": "2018-12-19T18:24:51", "url": "https://files.pythonhosted.org/packages/20/6b/cb06d1efcf2898a4bf64da9464cfced1c9028e12bf9f2cf348e4c776f3e2/allennlp-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "b98c3d216a57d3fd7a7646614d6a4dff", "sha256": "757ca48f516b61511464aeaf36942c42d3315c68ca97ca0d6ea4d22793571129" }, "downloads": -1, "filename": "allennlp-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b98c3d216a57d3fd7a7646614d6a4dff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 5506692, "upload_time": "2019-01-08T00:01:02", "url": "https://files.pythonhosted.org/packages/d6/37/e2418f74df007e9516013828205462021e330c27aed8ffc64c6fca44c7d6/allennlp-0.8.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c1cd56d6dd75c028f8b3e91ad5b5f71", "sha256": "b0e14743fa6d1bf36ca6a3f1dd04b6e57d34a6e3c7757ea9587ef78df86f141d" }, "downloads": -1, "filename": "allennlp-0.8.1.tar.gz", "has_sig": false, "md5_digest": "4c1cd56d6dd75c028f8b3e91ad5b5f71", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 7978507, "upload_time": "2019-01-08T00:01:06", "url": "https://files.pythonhosted.org/packages/ac/b4/c2ac8bf5d919105a356c8aa325d6e63b3f7cf9e404486dcacdea18d080a9/allennlp-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "ed8982a7b206eac7266d7d1a5f614ae6", "sha256": "1d0010850aad37d5d4c7cb50974114416adec6bc6358e026f7dcda1e388145ca" }, "downloads": -1, "filename": "allennlp-0.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "ed8982a7b206eac7266d7d1a5f614ae6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 5563748, "upload_time": "2019-02-19T16:44:37", "url": "https://files.pythonhosted.org/packages/64/32/d6d0a93a23763f366df2dbd4e007e45ce4d2ad97e6315506db9da8af7731/allennlp-0.8.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08c46257c7cc1a532507545315310373", "sha256": "9cddaed0cd2a02dd39760a7de8e9ffef152d33815deda1ef63413bc3d74c4ec1" }, "downloads": -1, "filename": "allennlp-0.8.2.tar.gz", "has_sig": false, "md5_digest": "08c46257c7cc1a532507545315310373", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 8001786, "upload_time": "2019-02-19T16:44:41", "url": "https://files.pythonhosted.org/packages/86/cf/26d26a10efd6efcaf398d822d90e78623101899c8e16ec8defbb91094194/allennlp-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "7daeb609f18defaa1ea2c36d90797ea6", "sha256": "bbbad7e3f05166e981e53ec3f3d78b8abe2189d5731b73c601e2cce310c1e8a0" }, "downloads": -1, "filename": "allennlp-0.8.3-py3-none-any.whl", "has_sig": false, "md5_digest": "7daeb609f18defaa1ea2c36d90797ea6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 5609788, "upload_time": "2019-03-29T21:27:07", "url": "https://files.pythonhosted.org/packages/a4/c8/10342a6068a8d156a5947e03c95525d559e71ad62de0f2585ab922e14533/allennlp-0.8.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2409d7ab65fc4ae5c46c37ee5b659e85", "sha256": "99a4b4688a9c1d76e223eb3ddb37e6d5caec852d5e38967ca0715bbcbbaa35cd" }, "downloads": -1, "filename": "allennlp-0.8.3.tar.gz", "has_sig": false, "md5_digest": "2409d7ab65fc4ae5c46c37ee5b659e85", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 8029019, "upload_time": "2019-03-29T21:27:10", "url": "https://files.pythonhosted.org/packages/47/eb/16d8730938b6b1f3ae0e44521f94826560e36a52be8a4392fcb0363b13aa/allennlp-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "e31e74abca9aa88189658560b932f353", "sha256": "1f1e4bb1a7a5839cb904252375065cc3a93c64053552934206536d5a2ddf858f" }, "downloads": -1, "filename": "allennlp-0.8.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e31e74abca9aa88189658560b932f353", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 5690454, "upload_time": "2019-05-30T21:46:27", "url": "https://files.pythonhosted.org/packages/30/8c/72b14d20c9cbb0306939ea41109fc599302634fd5c59ccba1a659b7d0360/allennlp-0.8.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd0667e10346bae0d55f635f2bb41468", "sha256": "53c9c36dac6599c8b1205dcdb4640a2147e23a746c47aeb69eb5cbd4288fbcea" }, "downloads": -1, "filename": "allennlp-0.8.4.tar.gz", "has_sig": false, "md5_digest": "bd0667e10346bae0d55f635f2bb41468", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 8096390, "upload_time": "2019-05-30T21:46:55", "url": "https://files.pythonhosted.org/packages/bc/34/b65046850e9e251b0da0923f6e5ae1d1a2b8a79fe9b190a42a630ddd9fef/allennlp-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "b7e4df9bee9fe755da0e3b9533f949e6", "sha256": "56a72facf2ddf6cebe7ca6101e7d41ee2c8da657b49cd54427b307c514c969a9" }, "downloads": -1, "filename": "allennlp-0.8.5-py3-none-any.whl", "has_sig": false, "md5_digest": "b7e4df9bee9fe755da0e3b9533f949e6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 7446157, "upload_time": "2019-08-21T18:02:19", "url": "https://files.pythonhosted.org/packages/3f/bc/e30325523363215c503171822f09436adcfbc74f426ad62496276f1ac4c0/allennlp-0.8.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "252bc24b3d5400d96864d07458f06398", "sha256": "8bf29092039fb8793ecc58fba361c9b3039b18934beffee3479354ff7d20d263" }, "downloads": -1, "filename": "allennlp-0.8.5.tar.gz", "has_sig": false, "md5_digest": "252bc24b3d5400d96864d07458f06398", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 9837512, "upload_time": "2019-08-21T18:02:23", "url": "https://files.pythonhosted.org/packages/1f/5a/4fa22fb8d02a1a8851a3cd8ef6441da227b609d072bc896613059d638505/allennlp-0.8.5.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "1c9e10e98a6ba879d2778c93e5d4aed4", "sha256": "353752e7b78e48c450e27889d80a3000c4a9af34f70ff9091b3031ad01320940" }, "downloads": -1, "filename": "allennlp-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1c9e10e98a6ba879d2778c93e5d4aed4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 7553796, "upload_time": "2019-09-25T14:22:23", "url": "https://files.pythonhosted.org/packages/bb/bb/041115d8bad1447080e5d1e30097c95e4b66e36074277afce8620a61cee3/allennlp-0.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6b3b5bad71bfd7f63b6da13749cce95", "sha256": "f70a2d83146630bcc213ed64ff868e3fed8519480fb495dee14a8a5b19c2ff90" }, "downloads": -1, "filename": "allennlp-0.9.0.tar.gz", "has_sig": false, "md5_digest": "a6b3b5bad71bfd7f63b6da13749cce95", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 9888496, "upload_time": "2019-09-25T14:23:18", "url": "https://files.pythonhosted.org/packages/89/bd/06938a8bd4754d6b6d4235994c23b7dec5892fb425ad5e62cd33ebdf5a19/allennlp-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1c9e10e98a6ba879d2778c93e5d4aed4", "sha256": "353752e7b78e48c450e27889d80a3000c4a9af34f70ff9091b3031ad01320940" }, "downloads": -1, "filename": "allennlp-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1c9e10e98a6ba879d2778c93e5d4aed4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.1", "size": 7553796, "upload_time": "2019-09-25T14:22:23", "url": "https://files.pythonhosted.org/packages/bb/bb/041115d8bad1447080e5d1e30097c95e4b66e36074277afce8620a61cee3/allennlp-0.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6b3b5bad71bfd7f63b6da13749cce95", "sha256": "f70a2d83146630bcc213ed64ff868e3fed8519480fb495dee14a8a5b19c2ff90" }, "downloads": -1, "filename": "allennlp-0.9.0.tar.gz", "has_sig": false, "md5_digest": "a6b3b5bad71bfd7f63b6da13749cce95", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 9888496, "upload_time": "2019-09-25T14:23:18", "url": "https://files.pythonhosted.org/packages/89/bd/06938a8bd4754d6b6d4235994c23b7dec5892fb425ad5e62cd33ebdf5a19/allennlp-0.9.0.tar.gz" } ] }