{ "info": { "author": "Rasa Technologies GmbH", "author_email": "hi@rasa.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries" ], "description": "# Rasa NLU\n[![Join the forum at https://forum.rasa.com](https://img.shields.io/badge/forum-join%20discussions-brightgreen.svg)](https://forum.rasa.com/?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![PyPI version](https://badge.fury.io/py/rasa-nlu.svg)](https://badge.fury.io/py/rasa-nlu)\n[![Supported Python Versions](https://img.shields.io/pypi/pyversions/rasa_nlu.svg)](https://pypi.python.org/pypi/rasa_nlu)\n[![Build Status](https://travis-ci.com/RasaHQ/rasa_nlu.svg?branch=master)](https://travis-ci.com/RasaHQ/rasa_nlu)\n[![Coverage Status](https://coveralls.io/repos/github/RasaHQ/rasa_nlu/badge.svg?branch=master)](https://coveralls.io/github/RasaHQ/rasa_nlu?branch=master)\n[![Documentation Status](https://img.shields.io/badge/docs-stable-brightgreen.svg)](https://rasa.com/docs/nlu/)\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FRasaHQ%2Frasa_nlu.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FRasaHQ%2Frasa_nlu?ref=badge_shield)\n\n\n\nRasa NLU (Natural Language Understanding) is a tool for understanding what is being said in short pieces of text.\nFor example, taking a short message like:\n\n> *\"I'm looking for a Mexican restaurant in the center of town\"*\n\nAnd returning structured data like:\n\n```\n intent: search_restaurant\n entities: \n - cuisine : Mexican\n - location : center\n```\n\nRasa NLU is primarily used to build chatbots and voice apps, where this is called intent classification and entity extraction.\nTo use Rasa, *you have to provide some training data*.\nThat is, a set of messages which you've already labelled with their intents and entities.\nRasa then uses machine learning to pick up patterns and generalise to unseen sentences. \n\nYou can think of Rasa NLU as a set of high level APIs for building your own language parser using existing NLP and ML libraries.\n\nIf you are new to Rasa NLU and want to create a bot, you should start with the [**tutorial**](https://rasa.com/docs/nlu/quickstart/).\n\n- **What does Rasa NLU do? \ud83e\udd14** [Read About the Rasa Stack](http://rasa.com/products/rasa-stack/)\n\n- **I'd like to read the detailed docs \ud83e\udd13** [Read The Docs](https://rasa.com/docs/nlu/)\n\n- **I'm ready to install Rasa NLU! \ud83d\ude80** [Installation](https://rasa.com/docs/nlu/installation/)\n\n- **I have a question \u2753** [Rasa Community Forum](https://forum.rasa.com)\n\n- **I would like to contribute \ud83e\udd17** [How to contribute](#how-to-contribute)\n\n### Important Note\n\nCurrent github master version does NOT support python 2.7 anymore (neither\nwill the next major release). If you want to use Rasa NLU with python \n2.7, please install the most recent version from pypi (0.14).\n\n\n# Quick Install\n\nFor the full installation instructions, please head over to the documentation: [Installation](https://rasa.com/docs/nlu/installation/)\n\n**Via Docker Image**\nFrom docker hub:\n```\ndocker run -p 5000:5000 rasa/rasa_nlu:latest-full\n```\n(for more docker installation options see [Advanced Docker Installation](#advanced-docker))\n\n**Via Python Library**\nFrom pypi:\n```\npip install rasa_nlu\npython -m rasa_nlu.server &\n```\n(for more python installation options see [Advanced Python Installation](#advanced-python))\n\n### Basic test\nThe below command can be executed for either method used above.\n```\ncurl 'http://localhost:5000/parse?q=hello'\n```\n\n# Example use\n\n### Get the Server Status\n```\ncurl 'http://localhost:5000/status'\n```\n\n### Check the Server Version\n```\ncurl 'http://localhost:5000/version'\n```\n\n### Training New Models\n[Examples](https://github.com/RasaHQ/rasa_nlu/tree/master/data/examples/rasa)\nand [Documentation](https://rasa.com/docs/nlu/dataformat/) of the training data\nformat are provided. But as a quick start execute the below command to train\na new model\n\n#### Json format\n```\ncurl 'https://raw.githubusercontent.com/RasaHQ/rasa_nlu/master/sample_configs/config_train_server_json.yml' | \\\ncurl --request POST --header 'content-type: application/x-yml' --data-binary @- --url 'localhost:5000/train?project=test_model'\n```\n\nThis will train a simple keyword based models (not usable for anything but this demo). For better\npipelines consult the documentation.\n\n#### Markdown format\n```\nwget 'https://raw.githubusercontent.com/RasaHQ/rasa_nlu/master/sample_configs/config_train_server_md.yml'\ncurl --request POST --header 'content-type: application/x-yml' --data-binary @config_train_server_md.yml --url 'localhost:5000/train?project=test_model'\n```\n\nThe above command does the following:\n1. It Fetches some of the example data in the repo\n2. It `POSTS` that data to the `/train` endpoint and names the model `project=test_model`\n\n### Parsing New Requests\nMake sure the above command has finished before executing the below. You can check with the `/status` command above.\n```\ncurl 'http://localhost:5000/parse?q=hello&project=test_model'\n```\n\n# FAQ\n\n### Who is it for?\nThe intended audience is mainly __people developing bots__, starting from scratch or looking to find a a drop-in replacement for [wit](https://wit.ai), [LUIS](https://www.luis.ai), or [Dialogflow](https://dialogflow.com). The setup process is designed to be as simple as possible. Rasa NLU is written in Python, but you can use it from any language through a [HTTP API](https://rasa.com/docs/nlu/http/). If your project is written in Python you can [simply import the relevant classes](https://rasa.com/docs/nlu/python/). If you're currently using wit/LUIS/Dialogflow, you just:\n\n1. Download your app data from wit, LUIS, or Dialogflow and feed it into Rasa NLU\n2. Run Rasa NLU on your machine and switch the URL of your wit/LUIS api calls to `localhost:5000/parse`.\n\n### Why should I use Rasa NLU?\n* You don't have to hand over your data to FB/MSFT/GOOG\n* You don't have to make a `https` call to parse every message.\n* You can tune models to work well on your particular use case.\n\nThese points are laid out in more detail in a \n[blog post](https://blog.rasa.com/put-on-your-robot-costume-and-be-the-minimum-viable-bot-yourself/). \nRasa is a set of tools for building more advanced bots, developed by \nthe company [Rasa](https://rasa.com). Rasa NLU is the natural language \nunderstanding module, and the first component to be open-sourced. \n\n### What languages does it support?\nThe `supervised_embeddings` pipeline works in any language.\nIf you want to use pre-trained word embeddings, there are models available for\nmany languages. See details [here](https://rasa.com/docs/nlu/languages/)\n\n### How to contribute\nWe are very happy to receive and merge your contributions. There is some more information about the style of the code and docs in the [documentation](https://rasa.com/docs/contributing/).\n\nIn general the process is rather simple:\n1. create an issue describing the feature you want to work on (or have a look at issues with the label [help wanted](https://github.com/RasaHQ/rasa_nlu/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22))\n2. write your code, tests and documentation\n3. create a pull request describing your changes\n\nYou pull request will be reviewed by a maintainer, who might get back to you about any necessary changes or questions. You will also be asked to sign the [Contributor License Agreement](https://cla-assistant.io/RasaHQ/rasa_nlu)\n\n# Advanced installation\n### Advanced Python\nFrom github:\n```\ngit clone git@github.com:RasaHQ/rasa_nlu.git\ncd rasa_nlu\npip install -r requirements.txt\npip install -e .\n```\n\nFor local development make sure you install the development requirements:\n```\npip install -r alt_requirements/requirements_dev.txt\npip install -e .\n```\n\nTo test the installation use (this will run a very stupid default model. you need to [train your own model](https://rasa.com/docs/nlu/quickstart/) to do something useful!):\n\n### Advanced Docker\nBefore you start, ensure you have the latest version of docker engine on your machine. You can check if you have docker installed by typing ```docker -v``` in your terminal.\n\nTo see all available builds go to the [Rasa docker hub](https://hub.docker.com/r/rasa/rasa_nlu/), but to get up and going the quickest just run:\n```\ndocker run -p 5000:5000 rasa/rasa_nlu:latest-full\n```\n\nThere are also three volumes, which you may want to map: `/app/projects`, `/app/logs`, and `/app/data`. It is also possible to override the config file used by the server by mapping a new config file to the volume `/app/config.json`. For complete docker usage instructions go to the official [docker hub readme](https://hub.docker.com/r/rasa/rasa_nlu/).\n\nTo test run the below command after the container has started. For more info on using the HTTP API see [here](https://rasa.com/docs/nlu/http/#endpoints)\n```\ncurl 'http://localhost:5000/parse?q=hello'\n```\n\n### Docker Cloud\nWarning! setting up Docker Cloud is quite involved - this method isn't recommended unless you've already configured Docker Cloud Nodes (or swarms)\n\n[![Deploy to Docker Cloud](https://files.cloud.docker.com/images/deploy-to-dockercloud.svg)](https://cloud.docker.com/stack/deploy/?repo=https://github.com/RasaHQ/rasa_nlu/tree/master/docker)\n\n### Install Pretrained Models for Spacy & Mitie\nIn order to use the Spacy or Mitie backends make sure you have one of their pretrained models installed.\n```\npython -m spacy download en\n```\n\nTo download the Mitie model run and place it in a location that you can \nreference in your configuration during model training:\n```\nwget https://github.com/mit-nlp/MITIE/releases/download/v0.4/MITIE-models-v0.2.tar.bz2\ntar jxf MITIE-models-v0.2.tar.bz2\n```\n\nIf you want to run the tests, you need to copy the model into the Rasa folder:\n\n```\ncp MITIE-models/english/total_word_feature_extractor.dat RASA_NLU_ROOT/data/\n``` \n\nWhere `RASA_NLU_ROOT` points to your Rasa installation directory.\n\n# Development Internals\n\n### Steps to release a new version\nReleasing a new version is quite simple, as the packages are build and distributed by travis. The following things need to be done to release a new version\n1. update [rasa_nlu/version.py](https://github.com/RasaHQ/rasa_nlu/blob/master/rasa_nlu/version.py) to reflect the correct version number\n2. edit the [CHANGELOG.rst](https://github.com/RasaHQ/rasa_nlu/blob/master/CHANGELOG.rst), create a new section for the release (eg by moving the items from the collected master section) and create a new master logging section\n3. edit the [migration guide](https://github.com/RasaHQ/rasa_nlu/blob/master/docs/migrations.rst) to provide assistance for users updating to the new version \n4. commit all the above changes and tag a new release, e.g. using \n ```\n git tag -f 0.7.0 -m \"Some helpful line describing the release\"\n git push origin 0.7.0\n ```\n travis will build this tag and push a package to [pypi](https://pypi.python.org/pypi/rasa_nlu)\n5. only if it is a **major release**, a new branch should be created pointing to the same commit as the tag to allow for future minor patches, e.g.\n ```\n git checkout -b 0.7.x\n git push origin 0.7.x\n ```\n\n### Running the Tests\nIn order to run the tests make sure that you have the development requirements installed.\n```\nmake test\n```\n\n## License\nLicensed under the Apache License, Version 2.0. Copyright 2019 \nRasa Technologies GmbH. [Copy of the license](LICENSE.txt).\n\nA list of the Licenses of the dependencies of the project can be found at\nthe bottom of the\n[Libraries Summary](https://libraries.io/github/RasaHQ/rasa_nlu).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/RasaHQ/rasa_nlu/archive/0.15.1.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://rasa.com", "keywords": "nlp machine-learning machine-learning-library bot bots botkit rasa conversational-agents conversational-ai chatbotchatbot-framework bot-framework", "license": "Apache 2.0", "maintainer": "Tom Bocklisch", "maintainer_email": "tom@rasa.com", "name": "rasa-nlu", "package_url": "https://pypi.org/project/rasa-nlu/", "platform": "", "project_url": "https://pypi.org/project/rasa-nlu/", "project_urls": { "Bug Reports": "https://github.com/rasahq/rasa_nlu/issues", "Download": "https://github.com/RasaHQ/rasa_nlu/archive/0.15.1.tar.gz", "Homepage": "https://rasa.com", "Source": "https://github.com/rasahq/rasa_nlu" }, "release_url": "https://pypi.org/project/rasa-nlu/0.15.1/", "requires_dist": [ "cloudpickle (~=0.6.1)", "gevent (~=1.3)", "klein (~=17.10)", "boto3 (~=1.9)", "packaging (~=18.0)", "typing (~=3.6)", "future (~=0.17.1)", "tqdm (~=4.19)", "requests (~=2.20)", "jsonschema (~=2.6)", "matplotlib (~=2.2)", "numpy (>=1.16)", "simplejson (~=3.13)", "ruamel.yaml (~=0.15.7)", "coloredlogs (~=10.0)", "scikit-learn (~=0.20.2)", "mitie ; extra == 'mitie'", "sklearn-crfsuite (~=0.3.6) ; extra == 'spacy'", "scipy (~=1.2) ; extra == 'spacy'", "spacy (<=2.0.18,>2.0) ; extra == 'spacy'", "sklearn-crfsuite (~=0.3.6) ; extra == 'tensorflow'", "scipy (~=1.2) ; extra == 'tensorflow'", "tensorflow (~=1.13.0) ; extra == 'tensorflow'", "pytest (~=3.3) ; extra == 'test'", "pytest-pycodestyle (~=1.4) ; extra == 'test'", "pytest-cov (~=2.5) ; extra == 'test'", "pytest-twisted (<1.6) ; extra == 'test'", "treq (~=17.8) ; extra == 'test'", "responses (~=0.9.0) ; extra == 'test'", "httpretty (~=0.9.0) ; extra == 'test'" ], "requires_python": "", "summary": "Rasa NLU a natural language parser for bots", "version": "0.15.1" }, "last_serial": 5358869, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "d506da12998b97519f2ae6f185fd31f4", "sha256": "56d370c09b823bd916daa0155ae70ad45851aea67b1c4b03d973589d9b3ec9ff" }, "downloads": -1, "filename": "rasa_nlu-0.10.0.tar.gz", "has_sig": false, "md5_digest": "d506da12998b97519f2ae6f185fd31f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45824, "upload_time": "2017-09-27T15:53:57", "url": "https://files.pythonhosted.org/packages/d2/32/1d274627ba082ac5925a1fdc4442cfc94088da56eea2bad22179bb7e98df/rasa_nlu-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "6ab5533133176cf354a2e58311cea995", "sha256": "84d2e89e4f48bc7b5dafed577879d0f350a883120014c8a1393ca878b0ec4c72" }, "downloads": -1, "filename": "rasa_nlu-0.10.1.tar.gz", "has_sig": false, "md5_digest": "6ab5533133176cf354a2e58311cea995", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45957, "upload_time": "2017-10-06T13:23:34", "url": "https://files.pythonhosted.org/packages/ff/52/82915a44a57407893b042298638cd73bff9c7ce9036214362c651027a85c/rasa_nlu-0.10.1.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "f4b8ae1b028116874e7f118d6eb806cb", "sha256": "5151c31ae0928f0f8bf8f956e1bed70a5a1cd6a789bffebb5fd6098b2cf07db1" }, "downloads": -1, "filename": "rasa_nlu-0.10.3.tar.gz", "has_sig": false, "md5_digest": "f4b8ae1b028116874e7f118d6eb806cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47210, "upload_time": "2017-10-26T09:00:55", "url": "https://files.pythonhosted.org/packages/1c/89/4ece10d816180c52971636e631214d57dcb0359c61d19993d451d812ac9c/rasa_nlu-0.10.3.tar.gz" } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "2f2a09717dd521c78520c67f7c0cb099", "sha256": "e2d6d80ce2684b26e54a8458a9fc7699338044cc61a1d6db4cf63387febb10c1" }, "downloads": -1, "filename": "rasa_nlu-0.10.4.tar.gz", "has_sig": false, "md5_digest": "2f2a09717dd521c78520c67f7c0cb099", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47438, "upload_time": "2017-10-27T16:37:53", "url": "https://files.pythonhosted.org/packages/58/e9/c4d8cc9fa3e305ab76dbdcfb266c9843bfb9da760210be1190bfd3f5ffb7/rasa_nlu-0.10.4.tar.gz" } ], "0.10.5": [ { "comment_text": "", "digests": { "md5": "afe110a8aee54f9c183732c7c0e02567", "sha256": "9a07fc616d1ce6598b7f55189797e0711c567b9ac1af3f43dc056b91a88b98b3" }, "downloads": -1, "filename": "rasa_nlu-0.10.5.tar.gz", "has_sig": false, "md5_digest": "afe110a8aee54f9c183732c7c0e02567", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48118, "upload_time": "2017-12-06T17:15:02", "url": "https://files.pythonhosted.org/packages/5f/ce/925277008c0095045b9728a1aa46f0374b784e0ec0897a6ab9e64b47be57/rasa_nlu-0.10.5.tar.gz" } ], "0.10.6": [ { "comment_text": "", "digests": { "md5": "8e0a78d0caf2579b88ec0a039846aca8", "sha256": "cd1336b23828c20c524dfda3fe23cb86be3daac961cb1da018a067bddc5b87da" }, "downloads": -1, "filename": "rasa_nlu-0.10.6.tar.gz", "has_sig": false, "md5_digest": "8e0a78d0caf2579b88ec0a039846aca8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52688, "upload_time": "2018-01-02T17:59:01", "url": "https://files.pythonhosted.org/packages/f7/8c/58c1e73be9a88a8df9b1393c051f8c17761fb33e25c937cf4f300b09c984/rasa_nlu-0.10.6.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "67d2bbd7a6b3be872cd655211e00405d", "sha256": "c4c4da1dc29127092e568883213e3237c844ac167d7ba4ba8a5ca7a8d43b087f" }, "downloads": -1, "filename": "rasa_nlu-0.11.0.tar.gz", "has_sig": false, "md5_digest": "67d2bbd7a6b3be872cd655211e00405d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55392, "upload_time": "2018-01-30T09:31:43", "url": "https://files.pythonhosted.org/packages/15/11/bd449cb41128e3127ed4a9b86f376a7706bf45a90fafe802db3609ba6be4/rasa_nlu-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "3147aff17263c876d91976411b054d9d", "sha256": "b107f54ef99ade3f86a6d78aaca8c425df7093aca45ebffd9cbdd98bc402e4d2" }, "downloads": -1, "filename": "rasa_nlu-0.11.1.tar.gz", "has_sig": false, "md5_digest": "3147aff17263c876d91976411b054d9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55382, "upload_time": "2018-02-02T11:40:20", "url": "https://files.pythonhosted.org/packages/3a/b1/5ab0a169eb4292ffca90db66de29a6f7cefa34a7c69f73d5dbe13bada560/rasa_nlu-0.11.1.tar.gz" } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "b7ccfe43ba220f2bc27bc5ad1d9de179", "sha256": "660dbe59973a2a94100551da939c0d741c946e616051babdf2ad99a369d65d53" }, "downloads": -1, "filename": "rasa_nlu-0.11.2.tar.gz", "has_sig": false, "md5_digest": "b7ccfe43ba220f2bc27bc5ad1d9de179", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55495, "upload_time": "2018-02-06T10:43:20", "url": "https://files.pythonhosted.org/packages/ba/92/dd31c95f177fdc3ff0d14f4f1e4bd8f641114f4256ba28e64d48311aa7a1/rasa_nlu-0.11.2.tar.gz" } ], "0.11.3": [ { "comment_text": "", "digests": { "md5": "3df08cb8e40cbd34cf5442f586afb3a6", "sha256": "07ac61ae475e27b4a314584e2c5f41885ac95ea6aff295714a6d9d5d0bf21821" }, "downloads": -1, "filename": "rasa_nlu-0.11.3.tar.gz", "has_sig": false, "md5_digest": "3df08cb8e40cbd34cf5442f586afb3a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55571, "upload_time": "2018-02-13T09:54:56", "url": "https://files.pythonhosted.org/packages/13/55/774c3f7ad14ee064f061abd3347ca55c1b7495d6b89e6f35b9a0bca0bdbe/rasa_nlu-0.11.3.tar.gz" } ], "0.11.4": [ { "comment_text": "", "digests": { "md5": "52988c5aa5d7b8539eb54fe8e2df30a3", "sha256": "aef669ee8065964d9229e67d04b3d4b9f9799777ef453ca1799fda4d9e1987e3" }, "downloads": -1, "filename": "rasa_nlu-0.11.4.tar.gz", "has_sig": false, "md5_digest": "52988c5aa5d7b8539eb54fe8e2df30a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55589, "upload_time": "2018-03-19T09:54:26", "url": "https://files.pythonhosted.org/packages/81/54/35d23918a264a99f7a9e235d8cc082a2ecae6b111cac9238c1664c280fd4/rasa_nlu-0.11.4.tar.gz" } ], "0.11.5": [ { "comment_text": "", "digests": { "md5": "5e073bf2040af5fd33fca8936817f099", "sha256": "1012139efc5c50e7d9bcb56cdaa1dea9b16627bdaa78b4fb7faf6cfc66961df3" }, "downloads": -1, "filename": "rasa_nlu-0.11.5.tar.gz", "has_sig": false, "md5_digest": "5e073bf2040af5fd33fca8936817f099", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55580, "upload_time": "2018-04-20T17:24:14", "url": "https://files.pythonhosted.org/packages/d7/3f/adc915f790d921c8fad828d6ca78ce9b28e79f5e8b180cb00db0b5960748/rasa_nlu-0.11.5.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "f3e5127c159e843cbcbba834478c8a0f", "sha256": "20a2c0b4ad03a45806c58c3c6bde6375b74b86abed1415182d6be43f29934f20" }, "downloads": -1, "filename": "rasa_nlu-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3e5127c159e843cbcbba834478c8a0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 132116, "upload_time": "2018-04-17T21:25:15", "url": "https://files.pythonhosted.org/packages/0e/ce/3eec9edc24275eb32592fc785a56f439ea594569c4247f05d2771747467c/rasa_nlu-0.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d7052a794b1b304099cb3b9aedfc8ff", "sha256": "1215e40e351fc6547285e410733290e93f0306c0d7028e311e233bb31ab9a45b" }, "downloads": -1, "filename": "rasa-nlu-0.12.0.tar.gz", "has_sig": false, "md5_digest": "1d7052a794b1b304099cb3b9aedfc8ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95348, "upload_time": "2018-04-17T21:25:16", "url": "https://files.pythonhosted.org/packages/24/59/a248af69dea756edd2995ae5866b69dca52d5eeb30b980c2c850207321b2/rasa-nlu-0.12.0.tar.gz" } ], "0.12.0a2": [ { "comment_text": "", "digests": { "md5": "c38502699908923daa29cfd167e8dd6e", "sha256": "de9cb20d250dbcf533a832f6047d4b3faae943fc63bee8a555430314b8787eab" }, "downloads": -1, "filename": "rasa_nlu-0.12.0a2.tar.gz", "has_sig": false, "md5_digest": "c38502699908923daa29cfd167e8dd6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78916, "upload_time": "2018-03-23T12:58:24", "url": "https://files.pythonhosted.org/packages/6b/c2/52f2cea11ab8e42b1f7143d706cbc1092017013066b6c7baca1b11014058/rasa_nlu-0.12.0a2.tar.gz" } ], "0.12.0a5": [ { "comment_text": "", "digests": { "md5": "3b295856f4bc905c115c4800324f4b8f", "sha256": "965a04865dd3486b3b1d0cec23ba3fc974df520bcf9dd02f2d2cae0f9a230809" }, "downloads": -1, "filename": "rasa_nlu-0.12.0a5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3b295856f4bc905c115c4800324f4b8f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 129512, "upload_time": "2018-04-16T14:13:07", "url": "https://files.pythonhosted.org/packages/61/bb/6f71e3bd5663772cc505243e86f8589395b6cd7b131aab6da7e14644b397/rasa_nlu-0.12.0a5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c03cba07cf18ab0334783e022c9aeb5f", "sha256": "76caea7ed9ef2d8340a778b162d40d4ab2860680ea33d1171a973497d4845700" }, "downloads": -1, "filename": "rasa-nlu-0.12.0a5.tar.gz", "has_sig": false, "md5_digest": "c03cba07cf18ab0334783e022c9aeb5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93689, "upload_time": "2018-04-16T14:13:09", "url": "https://files.pythonhosted.org/packages/ad/c9/f8c7867560a65cefb9517e5eb6576ef3c6ed7d850a8e9abe2b24882c1de6/rasa-nlu-0.12.0a5.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "3d6035883edcd53ba1c1f2a6a1cb32eb", "sha256": "d757db508312df4706bc05cdfac1343d55e4bfd0bfce474d827a3f7aacbf577a" }, "downloads": -1, "filename": "rasa_nlu-0.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d6035883edcd53ba1c1f2a6a1cb32eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 132132, "upload_time": "2018-04-18T17:08:55", "url": "https://files.pythonhosted.org/packages/d0/9e/b11ff86536814f6a138a827d4651459abbaacce5e1159156e5ffbaca5352/rasa_nlu-0.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7cfbe0b3c2484c5ca0ac0dd76e272e8c", "sha256": "69393b04156d0e90eab8d4117d8fd478f9219311eed0cc446e87da98d07da469" }, "downloads": -1, "filename": "rasa-nlu-0.12.1.tar.gz", "has_sig": false, "md5_digest": "7cfbe0b3c2484c5ca0ac0dd76e272e8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95380, "upload_time": "2018-04-18T17:08:57", "url": "https://files.pythonhosted.org/packages/da/2a/2ff51a2ec6c281409681f5c4097b0b6baa2c27a9b6d46014b381853db094/rasa-nlu-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "5e83e8c72a5c8b2d4fb75a5aba2267c8", "sha256": "cfd1e0fe1b1776bc8f304a98d9a2a231b1216ebfe21fb397ddbe0fc5cc7f5b9a" }, "downloads": -1, "filename": "rasa_nlu-0.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e83e8c72a5c8b2d4fb75a5aba2267c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 132124, "upload_time": "2018-04-20T10:59:01", "url": "https://files.pythonhosted.org/packages/39/e0/d4ecc4207b51e102b3d212c9501e3542a3c9ca7c0ac2727ff4e25b1a640f/rasa_nlu-0.12.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0380e53b26ade567db9d14dc25bcbf4", "sha256": "d5578ee83dfbd0a88af0bf53552ca2ef518431401d213ca317f67952ffa8a314" }, "downloads": -1, "filename": "rasa-nlu-0.12.2.tar.gz", "has_sig": false, "md5_digest": "d0380e53b26ade567db9d14dc25bcbf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95327, "upload_time": "2018-04-20T10:59:03", "url": "https://files.pythonhosted.org/packages/5c/52/0802561493b8c04f9967926d784398e161ca0d9772e92884723f4682243a/rasa-nlu-0.12.2.tar.gz" } ], "0.12.3": [ { "comment_text": "", "digests": { "md5": "769b0ea520e5d60b9f1a229e78acc46c", "sha256": "b745ffa8f99b85dd54f184223bef63c7c86403a1bb91db50faef0451a0eb4681" }, "downloads": -1, "filename": "rasa_nlu-0.12.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "769b0ea520e5d60b9f1a229e78acc46c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 131872, "upload_time": "2018-05-02T12:04:04", "url": "https://files.pythonhosted.org/packages/e7/24/9dacfae4525ea885c1d908878296ad705512eb6f72a95a51fbd728ea6fa8/rasa_nlu-0.12.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e84b05280fd39acb1372851e36fbf9fb", "sha256": "627d31ad1840f37a13297ecaec411b4727fa4c6996da43fb2a7f47069dd0473d" }, "downloads": -1, "filename": "rasa-nlu-0.12.3.tar.gz", "has_sig": false, "md5_digest": "e84b05280fd39acb1372851e36fbf9fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95514, "upload_time": "2018-05-02T12:04:05", "url": "https://files.pythonhosted.org/packages/18/0b/cc63911e5db166f2b42cb6c924d385ed7069f8227835434e281b4c4e596b/rasa-nlu-0.12.3.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "fc419a04ad29a13db3cb51c95b53d937", "sha256": "d99575fb9e77125cb8e018cc873047b40ce53bbe1e5067c8c215226d8dc5634e" }, "downloads": -1, "filename": "rasa_nlu-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc419a04ad29a13db3cb51c95b53d937", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138345, "upload_time": "2018-08-03T00:05:18", "url": "https://files.pythonhosted.org/packages/15/86/dbb399179cadba08624ce08012bcccddeaccdd25f1d024cb5540823d5266/rasa_nlu-0.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da4c0bfeacec89eece0e0235a16b9b8a", "sha256": "05c2fcb1f9d0549690f3557fdb69df69c861216d9fc969940c04c68ca5c12237" }, "downloads": -1, "filename": "rasa-nlu-0.13.0.tar.gz", "has_sig": false, "md5_digest": "da4c0bfeacec89eece0e0235a16b9b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101409, "upload_time": "2018-08-03T00:05:19", "url": "https://files.pythonhosted.org/packages/94/a4/93a01283d1f2bd6f83337d79778401401ab0c09841253e57f636e26b6571/rasa-nlu-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "72b56c00e10c1957da309e823f318fdb", "sha256": "d005fa1112f11d29ceb49f583a9d4d4f7d3d6fedecde1b6bd8f523e0b50e94c0" }, "downloads": -1, "filename": "rasa_nlu-0.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72b56c00e10c1957da309e823f318fdb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 138606, "upload_time": "2018-08-07T14:00:16", "url": "https://files.pythonhosted.org/packages/a7/62/5abd6379159c75d35cf4c6d05ed33dd1bb6738c45c95694a0af402d142ef/rasa_nlu-0.13.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "494a0d0ff9cb13be8245753090113b43", "sha256": "de8e30cb2bb589d6dfc0dd65a0dfff0e5fd60d8de7dc75e0c92186db9ffa5550" }, "downloads": -1, "filename": "rasa-nlu-0.13.1.tar.gz", "has_sig": false, "md5_digest": "494a0d0ff9cb13be8245753090113b43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101592, "upload_time": "2018-08-07T14:00:17", "url": "https://files.pythonhosted.org/packages/05/0e/79f6ba8ca05e2b1d28890b61aa1f43f53b1df73ac840315e3c0f721718cb/rasa-nlu-0.13.1.tar.gz" } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "db7db54ce2f53ac3c5059948919e8721", "sha256": "58a358110cd171b7ee1f7ba4ab7429e9dc5dd92d5e5fb8c6c6a89e7ca65dffca" }, "downloads": -1, "filename": "rasa_nlu-0.13.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db7db54ce2f53ac3c5059948919e8721", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139250, "upload_time": "2018-08-28T16:07:50", "url": "https://files.pythonhosted.org/packages/ca/02/ff29d7fcfa88e6132f8e69752fa7174bd9b7078f2dd74ea33f9e18acf89f/rasa_nlu-0.13.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c3a2882dcffbab761552753f5691eebe", "sha256": "065e495dfef85ccea3c8826283154df43aa8f13139ffc175a6c6988e6b097c06" }, "downloads": -1, "filename": "rasa-nlu-0.13.2.tar.gz", "has_sig": false, "md5_digest": "c3a2882dcffbab761552753f5691eebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102292, "upload_time": "2018-08-28T16:07:51", "url": "https://files.pythonhosted.org/packages/a5/9d/6095127c317f1fc2efafb06f340c8f3bbfe60dd12966eeeae9441702fdfa/rasa-nlu-0.13.2.tar.gz" } ], "0.13.3": [ { "comment_text": "", "digests": { "md5": "d5beda57e4fd1913e6b5d1fc536a78bb", "sha256": "9ef10836ebe5e7a4060b0f0de3a6ec154d5037fc48d0d85e3cf80257912f270b" }, "downloads": -1, "filename": "rasa_nlu-0.13.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d5beda57e4fd1913e6b5d1fc536a78bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 145016, "upload_time": "2018-09-13T12:47:30", "url": "https://files.pythonhosted.org/packages/a4/74/999ac0abd2248e28f80d7869a30abfee97677b7e5bd07c2fe2adca07e91e/rasa_nlu-0.13.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d557cbb0d195890aa2edd16bc0a7d219", "sha256": "ecd729e048f409aa465d7517d0f168b063f62dc3f4d14a9c936b79753e33fcc5" }, "downloads": -1, "filename": "rasa-nlu-0.13.3.tar.gz", "has_sig": false, "md5_digest": "d557cbb0d195890aa2edd16bc0a7d219", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107800, "upload_time": "2018-09-13T12:47:32", "url": "https://files.pythonhosted.org/packages/1c/45/2151c532c179830fd1139f4bf4e420a9ba72023da622e49f19d6771ed0f4/rasa-nlu-0.13.3.tar.gz" } ], "0.13.4": [ { "comment_text": "", "digests": { "md5": "53379dcdefa9c792aee09f2a0a0e57c1", "sha256": "e0b7a3f97282aaa4de426ee41cf5e3d42709432bdc49a0c4073c4f8736a537a7" }, "downloads": -1, "filename": "rasa_nlu-0.13.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53379dcdefa9c792aee09f2a0a0e57c1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 145007, "upload_time": "2018-09-19T12:34:43", "url": "https://files.pythonhosted.org/packages/98/10/04b19b2d29efc047a894b6ac3de7227839cab77afa2d68970a2dcb34d284/rasa_nlu-0.13.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5619bd7d54c3d84fb9f49213c8a2acd2", "sha256": "e26d68fc475ebd112adacbc205900d422c40eabf7aaaae709b5504f9a52b4718" }, "downloads": -1, "filename": "rasa-nlu-0.13.4.tar.gz", "has_sig": false, "md5_digest": "5619bd7d54c3d84fb9f49213c8a2acd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107783, "upload_time": "2018-09-19T12:34:45", "url": "https://files.pythonhosted.org/packages/a4/1f/9ef5c55dbc780a72b01d579e1a210da364495afcc7a268b996573ef8da32/rasa-nlu-0.13.4.tar.gz" } ], "0.13.5": [ { "comment_text": "", "digests": { "md5": "4e8fd370a14ea8a8c3f19a80f472fda7", "sha256": "f3bfaedb0d3a668649f331aef19eab3411192867d037fb6f331b0cce2f2ec664" }, "downloads": -1, "filename": "rasa_nlu-0.13.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4e8fd370a14ea8a8c3f19a80f472fda7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 145162, "upload_time": "2018-09-28T11:33:09", "url": "https://files.pythonhosted.org/packages/eb/dc/5f57e32d0c7d3238664365e6dad7ba0ca0b6d5b3d8257f274fe45e4d19bf/rasa_nlu-0.13.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da895bbe78d749d8686294f8984068c2", "sha256": "60ad1838d48e67ac32b3d82844141cc8d8854eb4a45a511412af43952fa82a90" }, "downloads": -1, "filename": "rasa-nlu-0.13.5.tar.gz", "has_sig": false, "md5_digest": "da895bbe78d749d8686294f8984068c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107899, "upload_time": "2018-09-28T11:33:10", "url": "https://files.pythonhosted.org/packages/de/4b/7c4103b15b1d3ac428e7bd5447ba74937b01b97b318486b25c6dd21ea27e/rasa-nlu-0.13.5.tar.gz" } ], "0.13.6": [ { "comment_text": "", "digests": { "md5": "594b456c3ee91a8da2c508fa833afe21", "sha256": "8587d9a0af4374b3b4fe64b742374da7a93035a4fda4759c7043187c7b1edce3" }, "downloads": -1, "filename": "rasa_nlu-0.13.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "594b456c3ee91a8da2c508fa833afe21", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 145315, "upload_time": "2018-10-04T12:28:47", "url": "https://files.pythonhosted.org/packages/11/29/f43bd557c30762a10d959a0e0e6c2c1881808dcb683b2ec7018c516e05ee/rasa_nlu-0.13.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5932360be63ae13f2008a8c49b79271b", "sha256": "a5aac6ea83567f093b8bcd47f72bbb4e4c082da470a5e6cfb56996a8f0898758" }, "downloads": -1, "filename": "rasa-nlu-0.13.6.tar.gz", "has_sig": false, "md5_digest": "5932360be63ae13f2008a8c49b79271b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108051, "upload_time": "2018-10-04T12:28:48", "url": "https://files.pythonhosted.org/packages/4f/47/b792cdb30a6d5326a19ed64399eec97f1eb90147a5df525e05d0b7f45378/rasa-nlu-0.13.6.tar.gz" } ], "0.13.7": [ { "comment_text": "", "digests": { "md5": "4fb3bfea913b6cbd6627033bf11d2605", "sha256": "41f9264e0dcc58f3c2ad26f1166973c8b33c96b0ddf40d02ba2f5f14908c0704" }, "downloads": -1, "filename": "rasa_nlu-0.13.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fb3bfea913b6cbd6627033bf11d2605", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 145347, "upload_time": "2018-10-11T09:02:31", "url": "https://files.pythonhosted.org/packages/38/3b/b6765d15c8d14d844b754f8693a2430fee72c06eb537ca44d31b8c783955/rasa_nlu-0.13.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ed79fc24d1bb34db6e3b5deb605308f", "sha256": "8c62ad16e9111cc9b95d99bc400f4440d5bcffd6a1b78b90cddc133576b535ff" }, "downloads": -1, "filename": "rasa-nlu-0.13.7.tar.gz", "has_sig": false, "md5_digest": "8ed79fc24d1bb34db6e3b5deb605308f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108079, "upload_time": "2018-10-11T09:02:33", "url": "https://files.pythonhosted.org/packages/17/3d/b711c640c18d24d12eed674f5b852e750003507ea184bd9bfbc513f66e11/rasa-nlu-0.13.7.tar.gz" } ], "0.13.8": [ { "comment_text": "", "digests": { "md5": "634dff8045e187f413228e508cc93214", "sha256": "58545afdf523714837f326c7fdeadb0c3e6ea8881f929214636cdead2871d528" }, "downloads": -1, "filename": "rasa_nlu-0.13.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "634dff8045e187f413228e508cc93214", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 145357, "upload_time": "2018-11-21T10:12:50", "url": "https://files.pythonhosted.org/packages/a5/d2/2e6a081f3d222df01a3d941d7029e52c20619d53d557e721f096962d7293/rasa_nlu-0.13.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43d9b4fc8afe004d3e36571890a0eeaf", "sha256": "4a4eed8d6a13f28b2e0531689d43a04ec3e232f5cf95ed63f211f4ef843cf773" }, "downloads": -1, "filename": "rasa-nlu-0.13.8.tar.gz", "has_sig": false, "md5_digest": "43d9b4fc8afe004d3e36571890a0eeaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108105, "upload_time": "2018-11-21T10:12:52", "url": "https://files.pythonhosted.org/packages/d0/cc/7325029eeeba4a0132e8113aed9bc350c6d2ed0633a7ac912f3a90ae102a/rasa-nlu-0.13.8.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "eb76553a51c16894b2d48c4f285f4e70", "sha256": "f310cfe1b6e61b0f98408784255034b60f62d45897e17b8086695afea5005453" }, "downloads": -1, "filename": "rasa_nlu-0.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eb76553a51c16894b2d48c4f285f4e70", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147274, "upload_time": "2019-01-23T13:08:38", "url": "https://files.pythonhosted.org/packages/4e/0f/cd7742792335f15e66bb1a11e3e095d6091308a355a00e46556455f116c4/rasa_nlu-0.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb949444ede6e1123c89b568b3e5602d", "sha256": "93343ac9fd08747f2f1adb8e38dc95592256f3803e4a2435cb56fbb9e9b71e4f" }, "downloads": -1, "filename": "rasa-nlu-0.14.0.tar.gz", "has_sig": false, "md5_digest": "cb949444ede6e1123c89b568b3e5602d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111351, "upload_time": "2019-01-23T13:08:40", "url": "https://files.pythonhosted.org/packages/37/53/1d384740cf92906a8801fc53bd26422da4611f66ec6e2fd592233fee6a12/rasa-nlu-0.14.0.tar.gz" } ], "0.14.0a1": [ { "comment_text": "", "digests": { "md5": "429f6c2d2985a0006cb18558b95668cd", "sha256": "f2a1bd92ec9d3d7f40521358da93ffd2d76665ac73f6f8a72dcbe63614a02f44" }, "downloads": -1, "filename": "rasa_nlu-0.14.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "429f6c2d2985a0006cb18558b95668cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 146924, "upload_time": "2018-11-21T08:46:09", "url": "https://files.pythonhosted.org/packages/9f/e2/6fe7ce9ef3227ecb3f13cf7a27446ef2204fc29ab8dbed82113c206abaa4/rasa_nlu-0.14.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f66ad268f96f2aa918c058f64c52462", "sha256": "bc3881be39406edb885a3a8fe8185325bf693047acec7b41f1ea876d2ebcf787" }, "downloads": -1, "filename": "rasa-nlu-0.14.0a1.tar.gz", "has_sig": false, "md5_digest": "6f66ad268f96f2aa918c058f64c52462", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109716, "upload_time": "2018-11-21T08:46:11", "url": "https://files.pythonhosted.org/packages/12/5b/08c599acca1262a3feb74f455f436b5f004763448b1de6eb8d99d77e9527/rasa-nlu-0.14.0a1.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "4145fc898bb11a2c07ab66c51a610c34", "sha256": "995f34fc12b7dab3c3a5a6e0e3a139307c52800bcb4f914e4141287e1c345357" }, "downloads": -1, "filename": "rasa_nlu-0.14.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4145fc898bb11a2c07ab66c51a610c34", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147267, "upload_time": "2019-01-23T15:26:59", "url": "https://files.pythonhosted.org/packages/5b/b7/e1211e256172284998fc0d86abb117e54110be54d646e3c7a3fadec6d0d0/rasa_nlu-0.14.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4ab1e509561c85397dde21c1a3fa50f", "sha256": "edc875d380aa4b1d994bb0a5a5f7fdb6850d07c00d6549f91eb82b5136138edb" }, "downloads": -1, "filename": "rasa-nlu-0.14.1.tar.gz", "has_sig": false, "md5_digest": "c4ab1e509561c85397dde21c1a3fa50f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111356, "upload_time": "2019-01-23T15:27:01", "url": "https://files.pythonhosted.org/packages/aa/6f/35ca24598be7cdf15b0b8077af98a503d68f264b3b1d6c261da52e4ea2e8/rasa-nlu-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "5b3569ed19495cfe78daa0231d58eed3", "sha256": "4b991b160236dcf38e8782693817423cfe99e5d3b1a79a74c21282cbbb4e256c" }, "downloads": -1, "filename": "rasa_nlu-0.14.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5b3569ed19495cfe78daa0231d58eed3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147625, "upload_time": "2019-01-30T16:15:31", "url": "https://files.pythonhosted.org/packages/1e/56/b7360b7357cb441cee0f3b0c8902a1de7e2a52089c50f4ebb8d85615731a/rasa_nlu-0.14.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e967849853f618c6294ae700a1fd66c4", "sha256": "bba948ab59edd799e0ab3be5ca69aa9c2f59ab26ffd6ba648669515f4d546516" }, "downloads": -1, "filename": "rasa-nlu-0.14.2.tar.gz", "has_sig": false, "md5_digest": "e967849853f618c6294ae700a1fd66c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111796, "upload_time": "2019-01-30T16:15:32", "url": "https://files.pythonhosted.org/packages/1e/ab/480bc281aab08e66c6f227b14549dd6104e5e518cfeee390e6b6cf6ee57d/rasa-nlu-0.14.2.tar.gz" } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "3d94f38fe9903016209974fd4c386fe6", "sha256": "b2a786b745f7c74a682589f3124f1ecdc78ef84f2c7e244860b0208347eff82f" }, "downloads": -1, "filename": "rasa_nlu-0.14.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d94f38fe9903016209974fd4c386fe6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147628, "upload_time": "2019-02-01T12:38:21", "url": "https://files.pythonhosted.org/packages/0a/44/d6bf2551d20de817889e21edb1e10a5b1342e8d96c03253dfe641eecc6df/rasa_nlu-0.14.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "938ad24f7ea77b1d926160daea1ae37d", "sha256": "1d605b98c1d5ce01e2c4861f122316b9a28ef5fc4b8123ba85de91d247d8d702" }, "downloads": -1, "filename": "rasa-nlu-0.14.3.tar.gz", "has_sig": false, "md5_digest": "938ad24f7ea77b1d926160daea1ae37d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111795, "upload_time": "2019-02-01T12:38:23", "url": "https://files.pythonhosted.org/packages/70/28/2d9a1d144ee2778a83a7fb91ee4bd7fab740375cfa31cf3b51db0023df6f/rasa-nlu-0.14.3.tar.gz" } ], "0.14.4": [ { "comment_text": "", "digests": { "md5": "db3046cf1825db7e70c19d35a1d4fca9", "sha256": "b9798331bbd2589638984b43c6d634d84f4da39d387bd5fd499fc9cd415991b2" }, "downloads": -1, "filename": "rasa_nlu-0.14.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db3046cf1825db7e70c19d35a1d4fca9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147648, "upload_time": "2019-02-26T16:23:01", "url": "https://files.pythonhosted.org/packages/bf/93/31de74dac069226dea39ff2c80a5ea7bee563f1bf3451cbb9c631f07c1b9/rasa_nlu-0.14.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9155d408472ab7d4d0fa6ea4dd33d8c7", "sha256": "31034ef708b2f67d6ef3ca7df4d5df1d2d19518f86532d1ae25778d7ffd05cd9" }, "downloads": -1, "filename": "rasa-nlu-0.14.4.tar.gz", "has_sig": false, "md5_digest": "9155d408472ab7d4d0fa6ea4dd33d8c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115644, "upload_time": "2019-02-26T16:23:04", "url": "https://files.pythonhosted.org/packages/ca/5c/61dc5ab66cf7cf82eeb8de5fcf7269f206c49968365de15b91d73dad4e88/rasa-nlu-0.14.4.tar.gz" } ], "0.14.5": [ { "comment_text": "", "digests": { "md5": "b9d4455a1e8ca473dbb0d4a73c2f9f3a", "sha256": "5537cfd6c910e500fe797beacfda9ff566dd44d886333002a07c10622f69e1f4" }, "downloads": -1, "filename": "rasa_nlu-0.14.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b9d4455a1e8ca473dbb0d4a73c2f9f3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147649, "upload_time": "2019-03-19T08:28:53", "url": "https://files.pythonhosted.org/packages/7e/82/0d22baadbd7f884d70f9270b86d66a4a8a4fca2be687179587dbb219db2a/rasa_nlu-0.14.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9d7709eec9969f157febd03bc2a0119", "sha256": "1cc3322eb1f4c395a466104f735edc67e1f879615b74b975d12846e1645edca9" }, "downloads": -1, "filename": "rasa-nlu-0.14.5.tar.gz", "has_sig": false, "md5_digest": "c9d7709eec9969f157febd03bc2a0119", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115660, "upload_time": "2019-03-19T08:28:55", "url": "https://files.pythonhosted.org/packages/a2/2f/fc4758747450dbb594b506f7ef19c464502ef6991b2502774c60e0dbe596/rasa-nlu-0.14.5.tar.gz" } ], "0.14.6": [ { "comment_text": "", "digests": { "md5": "a0d3410657cd15afcf96f46c1feded6f", "sha256": "106f10fdbce101a5e052ecf961715bf8e99db0d039902a4c0da6045ad629cbc8" }, "downloads": -1, "filename": "rasa_nlu-0.14.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a0d3410657cd15afcf96f46c1feded6f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 147649, "upload_time": "2019-03-20T09:54:14", "url": "https://files.pythonhosted.org/packages/d6/53/31b6b14e124fa916c10e8e58d650cff57ace0027a9e69a0788b1afcc26f4/rasa_nlu-0.14.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0bd5fd9a685d0d84a8d6563784de0cd9", "sha256": "64d8b89cb616eb80a93069db2ac1990b25a0b4944b11315759147a996dc97352" }, "downloads": -1, "filename": "rasa-nlu-0.14.6.tar.gz", "has_sig": false, "md5_digest": "0bd5fd9a685d0d84a8d6563784de0cd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115661, "upload_time": "2019-03-20T09:54:15", "url": "https://files.pythonhosted.org/packages/28/2e/07fcac2f55a4531ffa97fa5af872cd82b34553f431a074b263f9f1bdde4f/rasa-nlu-0.14.6.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "eb8d45db5ff064e122809fdb0d9d1ed6", "sha256": "c73fc4bddf47dd116e29112819db783a51122ab661eb00cb013296ae6a522ee4" }, "downloads": -1, "filename": "rasa_nlu-0.15.0-py3-none-any.whl", "has_sig": false, "md5_digest": "eb8d45db5ff064e122809fdb0d9d1ed6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 147108, "upload_time": "2019-04-23T08:35:20", "url": "https://files.pythonhosted.org/packages/93/31/d52f4b6353a930bc25dc97c3cfce525fe71f8a325b69261f77827ffe1136/rasa_nlu-0.15.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "38ddbaa708d16cd20ec87fe966c9ba59", "sha256": "c8a85ad0d2e559c0b6504baca7ae2804e37ae788cdfbc70c37eeaafaa977379b" }, "downloads": -1, "filename": "rasa-nlu-0.15.0.tar.gz", "has_sig": false, "md5_digest": "38ddbaa708d16cd20ec87fe966c9ba59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113436, "upload_time": "2019-04-23T08:35:21", "url": "https://files.pythonhosted.org/packages/dd/a4/60721401bc1c63423edb39a4ac0edc9209d2a1d994acdd85bc76600e0552/rasa-nlu-0.15.0.tar.gz" } ], "0.15.0a2": [ { "comment_text": "", "digests": { "md5": "cb35970631abf2f8caeb29ad29397f06", "sha256": "1da20362e068cc534a45be7c2f92b7210e8c6e955ac85dbe22b5b30cc24051d9" }, "downloads": -1, "filename": "rasa_nlu-0.15.0a2-py3-none-any.whl", "has_sig": false, "md5_digest": "cb35970631abf2f8caeb29ad29397f06", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 146338, "upload_time": "2019-03-04T13:11:29", "url": "https://files.pythonhosted.org/packages/90/a4/27bd96242e8139d2129df679a6a5a89be41146c8e9f6adacfcdfbbbac1e2/rasa_nlu-0.15.0a2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b49a173f124c14e3aa714375550c0ac", "sha256": "b671daec3b32cbfe8f054a2acbec3bf398969124ca344b99de184abdca493db7" }, "downloads": -1, "filename": "rasa-nlu-0.15.0a2.tar.gz", "has_sig": false, "md5_digest": "9b49a173f124c14e3aa714375550c0ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116888, "upload_time": "2019-03-04T13:11:31", "url": "https://files.pythonhosted.org/packages/91/28/5776ce99a9ff68ab0cdef3fe64e5c6bc320250ed20e0deed7a771c350ea9/rasa-nlu-0.15.0a2.tar.gz" } ], "0.15.0a3": [ { "comment_text": "", "digests": { "md5": "03b23879406cb65b187736da139fb42d", "sha256": "3268e5152c9205e3cd582f3e3589c7504b020c3c3bf68876f43d759a27a91cac" }, "downloads": -1, "filename": "rasa_nlu-0.15.0a3-py3-none-any.whl", "has_sig": false, "md5_digest": "03b23879406cb65b187736da139fb42d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 146708, "upload_time": "2019-03-06T13:43:49", "url": "https://files.pythonhosted.org/packages/e8/37/1495a3c3e892c70d8e3fabd3318c2c71a3cf98ef0b1cbb1df38ddc0cc4f0/rasa_nlu-0.15.0a3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd4d468b09c740ef5d195b502d65b1f3", "sha256": "30794a96b1760372cca0a99503bc01930d67204bfa6b0c9a46e4fbf254c35bdc" }, "downloads": -1, "filename": "rasa-nlu-0.15.0a3.tar.gz", "has_sig": false, "md5_digest": "fd4d468b09c740ef5d195b502d65b1f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117139, "upload_time": "2019-03-06T13:43:51", "url": "https://files.pythonhosted.org/packages/1f/0f/d671c330fb205594d9d6fbbc3df9b0f896d4952dc48525feb4ac96fe75d4/rasa-nlu-0.15.0a3.tar.gz" } ], "0.15.0a4": [ { "comment_text": "", "digests": { "md5": "911a4fe492c31951e6a027e91ce52f6d", "sha256": "7b9c90c467fe7773fd9500bdfacfef9a07c38e3050a5df20a4ab02061dd92ed4" }, "downloads": -1, "filename": "rasa_nlu-0.15.0a4-py3-none-any.whl", "has_sig": false, "md5_digest": "911a4fe492c31951e6a027e91ce52f6d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 146707, "upload_time": "2019-03-06T14:36:02", "url": "https://files.pythonhosted.org/packages/7f/77/98cb01c246cbad38ed3b4c230abdf14e714afcae8aa90eaba4490471a8d8/rasa_nlu-0.15.0a4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "058d57f134313f9b5eb6374dc7a9be9e", "sha256": "d9972f092d296e8edd79712ceed6394a6e5232205d9d7948bafd5d4357fd1a2f" }, "downloads": -1, "filename": "rasa-nlu-0.15.0a4.tar.gz", "has_sig": false, "md5_digest": "058d57f134313f9b5eb6374dc7a9be9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117139, "upload_time": "2019-03-06T14:36:04", "url": "https://files.pythonhosted.org/packages/ba/37/fcb05d3f5f828da9ca9aac84c2e2e60b263e17b615a0f0cc00cf2e9f86f7/rasa-nlu-0.15.0a4.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "f0449e255773390b816d6d6662a850d7", "sha256": "043f7c5bb3c10da9fdc92bc4a16a6d97c9a69177ad0031bd05142b5d52990fa9" }, "downloads": -1, "filename": "rasa_nlu-0.15.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f0449e255773390b816d6d6662a850d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 147122, "upload_time": "2019-06-04T17:37:51", "url": "https://files.pythonhosted.org/packages/19/c4/c6146c445a17b6ce414d773f93c941c44ca16720609000ae3d01409f9dfb/rasa_nlu-0.15.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "491d22a806d8368cdceb8fb9b5436884", "sha256": "69d8b788ea74f764343a2381228843d3dd8452636ba1441f0752ec695bb31cd6" }, "downloads": -1, "filename": "rasa-nlu-0.15.1.tar.gz", "has_sig": false, "md5_digest": "491d22a806d8368cdceb8fb9b5436884", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113457, "upload_time": "2019-06-04T17:37:53", "url": "https://files.pythonhosted.org/packages/98/00/9c11b64181bca244f75e4e81bf654c1e35287722dc24faddc93b831ea01f/rasa-nlu-0.15.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "f9cfc7009baf5f229522152dec0803f0", "sha256": "ec9205bbca23565b488391bf868d21b720bf7a749a0360f63d9b33e57528624b" }, "downloads": -1, "filename": "rasa_nlu-0.4.2.tar.gz", "has_sig": false, "md5_digest": "f9cfc7009baf5f229522152dec0803f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14167, "upload_time": "2016-12-08T16:39:29", "url": "https://files.pythonhosted.org/packages/29/94/c498567968363f71ade5bea9cb7eb1dad9d37392134ca27fbe636a593dd9/rasa_nlu-0.4.2.tar.gz" } ], "0.5.0.0": [ { "comment_text": "", "digests": { "md5": "e29144810c931d309d8d26a2dee3db83", "sha256": "d5503f6907a0b660e23fcaf3924cc8c9ecaf40ec541e94fe5df3f910041ecd57" }, "downloads": -1, "filename": "rasa_nlu-0.5.0.0.tar.gz", "has_sig": false, "md5_digest": "e29144810c931d309d8d26a2dee3db83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15535, "upload_time": "2017-01-10T09:48:30", "url": "https://files.pythonhosted.org/packages/bc/d9/70ebac3a1f170fbee30aa56d7d01f0b05ceaeaab4507c6f7f89b1c8795a5/rasa_nlu-0.5.0.0.tar.gz" } ], "0.6b0": [ { "comment_text": "", "digests": { "md5": "8fd198e16119e406b2b11b448a31aa88", "sha256": "e50b29be0c60e52a6bc9bbaf5bb5bb579217bbdac26661df2b0b57c3ec2b9c7c" }, "downloads": -1, "filename": "rasa_nlu-0.6b0.tar.gz", "has_sig": false, "md5_digest": "8fd198e16119e406b2b11b448a31aa88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15328, "upload_time": "2017-01-31T08:13:18", "url": "https://files.pythonhosted.org/packages/fc/b8/7f334f95824d4e5f3b0597eb0e46259603d7c2222c87af7ca3029fad6a3e/rasa_nlu-0.6b0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "6572a569fd1e2da79e1bbdf009a55f8e", "sha256": "ec991dbd2649dc580bfd3d293ace101636e372a89dffb0215dae2771ee954abe" }, "downloads": -1, "filename": "rasa_nlu-0.7.0-py2.7.egg", "has_sig": false, "md5_digest": "6572a569fd1e2da79e1bbdf009a55f8e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 82720, "upload_time": "2017-03-10T14:29:35", "url": "https://files.pythonhosted.org/packages/f4/c5/de86302e8eef4af009bcc1cbd62ff78a7be8cd04b68dffcc492333197ea5/rasa_nlu-0.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c6ab01019bc92042135f522bce86561c", "sha256": "35f885e1c3158ccb6e852528616ffdf67e2b391f1d3b362e1cced0621064f898" }, "downloads": -1, "filename": "rasa_nlu-0.7.0.tar.gz", "has_sig": false, "md5_digest": "c6ab01019bc92042135f522bce86561c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20618, "upload_time": "2017-03-10T14:29:37", "url": "https://files.pythonhosted.org/packages/82/ce/11bb5d990e49aa439a7c6073b811bd5bc6474a08642e7804b81a9faff837/rasa_nlu-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "1383d06da90c51fc30cce1c2bbbf8bad", "sha256": "d977e560749637cbbd27f9029b6fa6e95f31680a98525f0ae3c343a7b0d74e34" }, "downloads": -1, "filename": "rasa_nlu-0.7.1-py2.7.egg", "has_sig": false, "md5_digest": "1383d06da90c51fc30cce1c2bbbf8bad", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 82736, "upload_time": "2017-03-10T15:10:36", "url": "https://files.pythonhosted.org/packages/45/be/d612066628db5c72ca65bca65abade7d2c6ff4e47d76f218a02b1512b0e8/rasa_nlu-0.7.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "138a2721d0e10f1f34f0dab4aafcaf63", "sha256": "34ec1d4cce82435515e7b4bcecbd957a6048c7ba578ce3567a91d7334cc0d6b6" }, "downloads": -1, "filename": "rasa_nlu-0.7.1.tar.gz", "has_sig": false, "md5_digest": "138a2721d0e10f1f34f0dab4aafcaf63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20635, "upload_time": "2017-03-10T15:10:38", "url": "https://files.pythonhosted.org/packages/c2/31/fe01905b73ef8792c63989313a118a3bff65e52aeb21d2f0bbfc2139673f/rasa_nlu-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "72b35ac385885b7412f6525fa0b03e1c", "sha256": "39f8e9b22be4b8ee886d0367aac62802d38ffac65855bf8cac5c94b38538caf4" }, "downloads": -1, "filename": "rasa_nlu-0.7.2-py2.7.egg", "has_sig": false, "md5_digest": "72b35ac385885b7412f6525fa0b03e1c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 82744, "upload_time": "2017-03-13T16:11:57", "url": "https://files.pythonhosted.org/packages/fa/80/716950a6129561291ce9fda69063d5f3c73dfb8cd5584acb5eb53289bc5d/rasa_nlu-0.7.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b9a7507caf46a999700e81ec66d436d5", "sha256": "8375f17b2bf9c6951fa814c85bf7ac2af57e20625ca9e5f53a081e106bfd1a3c" }, "downloads": -1, "filename": "rasa_nlu-0.7.2.tar.gz", "has_sig": false, "md5_digest": "b9a7507caf46a999700e81ec66d436d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20628, "upload_time": "2017-03-13T16:11:59", "url": "https://files.pythonhosted.org/packages/a3/c4/6cb52f94ea53efe2b674526bc035487ab8a0a8870f564a977eadd5b7a01a/rasa_nlu-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "731e8c21c0ed4b5d88e01831438d6e59", "sha256": "18c6a6b5a529e35032f1cdebb5dae9cf7a0b07c3d6fd40462e411d912a5b325b" }, "downloads": -1, "filename": "rasa_nlu-0.7.3-py2.7.egg", "has_sig": false, "md5_digest": "731e8c21c0ed4b5d88e01831438d6e59", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 83410, "upload_time": "2017-03-16T13:53:27", "url": "https://files.pythonhosted.org/packages/d4/df/f3e3af799be7b344a055761296f4fce4ae392cd828b221bf79216431a8f8/rasa_nlu-0.7.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "07924996aab9bc4a3a43da1e0e5288f1", "sha256": "9ef368e416487645483c31f9cbdcc33085f0fed7f043b74a5f3f1bf49867d1f1" }, "downloads": -1, "filename": "rasa_nlu-0.7.3.tar.gz", "has_sig": false, "md5_digest": "07924996aab9bc4a3a43da1e0e5288f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20892, "upload_time": "2017-03-16T13:53:29", "url": "https://files.pythonhosted.org/packages/6b/84/d9942304393fcc378a80e0993b417d9e37f90d7361eca7022791ef1448ab/rasa_nlu-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "2ae22db32341ab8cdf319b633ea201b8", "sha256": "d7c1c0fa065e468731c7c7e0626d0a2a3fa524e29475622dc334b99ec7e49870" }, "downloads": -1, "filename": "rasa_nlu-0.7.4-py2.7.egg", "has_sig": false, "md5_digest": "2ae22db32341ab8cdf319b633ea201b8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 83361, "upload_time": "2017-03-27T13:51:32", "url": "https://files.pythonhosted.org/packages/92/76/6467ab0c20af31312cc893a72a67d8d77ea10f15e28ec56de05ba92006cf/rasa_nlu-0.7.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0ef9e79420b705c58594990a429d3bcf", "sha256": "a153dd21b3fbc06c858a240ba428340cfb56943bcb835161d8e2d44ea8d8be44" }, "downloads": -1, "filename": "rasa_nlu-0.7.4.tar.gz", "has_sig": false, "md5_digest": "0ef9e79420b705c58594990a429d3bcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20903, "upload_time": "2017-03-27T13:51:34", "url": "https://files.pythonhosted.org/packages/85/9f/1b805f1dad37346d9940660bf01513d92ae4650d495d85be2cb85b9c493a/rasa_nlu-0.7.4.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "40b6a49878b44cade5d073b794024bb6", "sha256": "174a3222a9cc351af6f8fe781f94fa9a6313e922399acac1f7bcaf3a60147a66" }, "downloads": -1, "filename": "rasa_nlu-0.8.0.tar.gz", "has_sig": false, "md5_digest": "40b6a49878b44cade5d073b794024bb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34824, "upload_time": "2017-05-08T13:26:43", "url": "https://files.pythonhosted.org/packages/18/71/584aae893e7a0ba89fe150352e9b4f52db795023a5909205d6db2ae22efd/rasa_nlu-0.8.0.tar.gz" } ], "0.8.10": [ { "comment_text": "", "digests": { "md5": "7bb0f3b288240d1da7d95606ea69ce60", "sha256": "d4e28d0131a61d59b28c0060701cd87bf7d77afcc592ca1e9ec0e36dda847a30" }, "downloads": -1, "filename": "rasa_nlu-0.8.10.tar.gz", "has_sig": false, "md5_digest": "7bb0f3b288240d1da7d95606ea69ce60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34834, "upload_time": "2017-05-31T10:05:13", "url": "https://files.pythonhosted.org/packages/29/03/78bd0a9ce215d3a986f06012d77daa66e742fffecafcd3f3fdf8a009d17c/rasa_nlu-0.8.10.tar.gz" } ], "0.8.11": [ { "comment_text": "", "digests": { "md5": "f9fcc8e662df1dbcbd100c056fa2d192", "sha256": "6d10d5d9c11f505dae46b473a51688e058f18a2828063d7b1314e7b76ebffc45" }, "downloads": -1, "filename": "rasa_nlu-0.8.11.tar.gz", "has_sig": false, "md5_digest": "f9fcc8e662df1dbcbd100c056fa2d192", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34841, "upload_time": "2017-06-07T10:13:00", "url": "https://files.pythonhosted.org/packages/bf/23/02fed1b81ff2de69013ebbf7cbdd4833e5003a7f3bd485b76133cd3898d7/rasa_nlu-0.8.11.tar.gz" } ], "0.8.12": [ { "comment_text": "", "digests": { "md5": "0692e02a974e165dbe1215e42d062775", "sha256": "299ee2fb907eec583594d012f00fbe0ae7bfb140c5e5eec0a5d5d9d2b9425c9e" }, "downloads": -1, "filename": "rasa_nlu-0.8.12.tar.gz", "has_sig": false, "md5_digest": "0692e02a974e165dbe1215e42d062775", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34600, "upload_time": "2017-06-29T09:26:40", "url": "https://files.pythonhosted.org/packages/c4/f1/850358c7b34b237836ec7fbdbf688666eab65031f9e5fe7c228bbd0d00a3/rasa_nlu-0.8.12.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "7c61dadbdde5c0dc057d78075165a436", "sha256": "ae50f3c6b869f165792b8fd98572252641385a9eda7f128b49c3ce0de50ab155" }, "downloads": -1, "filename": "rasa_nlu-0.8.2.tar.gz", "has_sig": false, "md5_digest": "7c61dadbdde5c0dc057d78075165a436", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34820, "upload_time": "2017-05-08T20:47:45", "url": "https://files.pythonhosted.org/packages/24/91/c42a745516b59ff6547d3fa0f8b50d492152eba81b20603023afe21e6463/rasa_nlu-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "2dfa7ebed3e2612c1a48b5ac72bc50f8", "sha256": "eccee713d222b93a7c1d0f0e8cf515865711162c26613bb8fde17e14992566f4" }, "downloads": -1, "filename": "rasa_nlu-0.8.3.tar.gz", "has_sig": false, "md5_digest": "2dfa7ebed3e2612c1a48b5ac72bc50f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34811, "upload_time": "2017-05-10T14:28:07", "url": "https://files.pythonhosted.org/packages/1d/27/b8e72a52e985f5a5d8b1fe2c63872c36a47c050ffa8a0d715fe0f1772fa5/rasa_nlu-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "1d9b8d64695b0cbb028063a5b8088b8b", "sha256": "bcec07faa0ce711c5d9bd61a5c2a80d40bff68204e0ea63fa50986b7d0cda079" }, "downloads": -1, "filename": "rasa_nlu-0.8.4.tar.gz", "has_sig": false, "md5_digest": "1d9b8d64695b0cbb028063a5b8088b8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34812, "upload_time": "2017-05-10T15:06:42", "url": "https://files.pythonhosted.org/packages/21/a7/c9f9a9da34ce930269ecdb153574bc2299b06a0eeee721e7a82f61f4037a/rasa_nlu-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "7a05e882394c15d34b2c54caddd48bee", "sha256": "e0f9a7bd3e9f754431009f6ccd59262923f3b0444db5da52620f782981bbcad2" }, "downloads": -1, "filename": "rasa_nlu-0.8.5.tar.gz", "has_sig": false, "md5_digest": "7a05e882394c15d34b2c54caddd48bee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34833, "upload_time": "2017-05-10T19:36:41", "url": "https://files.pythonhosted.org/packages/69/54/85e3f9b2b69b27f112804b7e7c227a9f6ea3d8a33bc4c6d0ed2f527a9676/rasa_nlu-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "4a88827b5966078f7fb6aba27ebb1cf3", "sha256": "e7aa112f791baf0849db7a43abfbe17c6a2575324b4348738f1ad94f9e71fc61" }, "downloads": -1, "filename": "rasa_nlu-0.8.6.tar.gz", "has_sig": false, "md5_digest": "4a88827b5966078f7fb6aba27ebb1cf3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34838, "upload_time": "2017-05-15T11:12:45", "url": "https://files.pythonhosted.org/packages/46/58/7ed76def18130eb77e392ecee80313e45752795c92a79f101cdc3da949f6/rasa_nlu-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "8fe087a2142a8e6274accaf102b96573", "sha256": "66fc6a34a84827c5c21872d6cfc786c561ebfd73bdda09d0539eef1c89246379" }, "downloads": -1, "filename": "rasa_nlu-0.8.7.tar.gz", "has_sig": false, "md5_digest": "8fe087a2142a8e6274accaf102b96573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34814, "upload_time": "2017-05-24T12:52:54", "url": "https://files.pythonhosted.org/packages/d6/ba/43c290025fb44136ded24e4df2cc99b014f431857842555d2a34bf890036/rasa_nlu-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "ef97a930bbb1a8bfdcdabdb7964781d9", "sha256": "cac51b4d62e494106f164c903b4e76545997930c38449c3945bcad354c4e79eb" }, "downloads": -1, "filename": "rasa_nlu-0.8.8.tar.gz", "has_sig": false, "md5_digest": "ef97a930bbb1a8bfdcdabdb7964781d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34822, "upload_time": "2017-05-26T08:51:39", "url": "https://files.pythonhosted.org/packages/1d/8d/5cf69141a281eea171e4b0ebcbacd541c7a75b0e06859c0d3b3fe3a0fe03/rasa_nlu-0.8.8.tar.gz" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "3585e65db882138e85e16d8f7fddc855", "sha256": "f46aefdbe17dc545c86c990b10a642582f308ba89890551faa6301bedd9e8af7" }, "downloads": -1, "filename": "rasa_nlu-0.8.9.tar.gz", "has_sig": false, "md5_digest": "3585e65db882138e85e16d8f7fddc855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34834, "upload_time": "2017-05-26T09:20:44", "url": "https://files.pythonhosted.org/packages/4b/62/fa041109bf2640e99675f8e64fc9f0fa8d4bf85629075a71b4f011669369/rasa_nlu-0.8.9.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "da1a6654ec368dfe99c32872699cb6ac", "sha256": "96417faab5684f1c58bc6f4df63d3d526d6e3359fe7014f076f48fa90a6b489d" }, "downloads": -1, "filename": "rasa_nlu-0.9.0.tar.gz", "has_sig": false, "md5_digest": "da1a6654ec368dfe99c32872699cb6ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39169, "upload_time": "2017-07-07T11:50:00", "url": "https://files.pythonhosted.org/packages/04/b4/9578214d3171e7c50d4b90bc0696f9f6bcceb63c29153f2612e65c90d009/rasa_nlu-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "798518364f98464c34d2c3e7e1efaa16", "sha256": "4368781af68bb317e076f26dbe7d1a49b3061f17f73848cdb35fb07cf185b0a7" }, "downloads": -1, "filename": "rasa_nlu-0.9.1.tar.gz", "has_sig": false, "md5_digest": "798518364f98464c34d2c3e7e1efaa16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39178, "upload_time": "2017-07-11T09:34:17", "url": "https://files.pythonhosted.org/packages/00/de/e449f6d63b6583f78afa69008afd35681cc79fc8e897505f9890a074ad8c/rasa_nlu-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "b11aa102e52e21a5840a60878d082076", "sha256": "bda36e8319d56cd0f9a16e9a5fb16085a151b3d10edbd212e28efec3f0aeb0ae" }, "downloads": -1, "filename": "rasa_nlu-0.9.2.tar.gz", "has_sig": false, "md5_digest": "b11aa102e52e21a5840a60878d082076", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39231, "upload_time": "2017-08-17T21:52:35", "url": "https://files.pythonhosted.org/packages/f0/d1/1aa03bd849ed40e8aa19228d3a8d620e934940a49902345731d484d1bc51/rasa_nlu-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f0449e255773390b816d6d6662a850d7", "sha256": "043f7c5bb3c10da9fdc92bc4a16a6d97c9a69177ad0031bd05142b5d52990fa9" }, "downloads": -1, "filename": "rasa_nlu-0.15.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f0449e255773390b816d6d6662a850d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 147122, "upload_time": "2019-06-04T17:37:51", "url": "https://files.pythonhosted.org/packages/19/c4/c6146c445a17b6ce414d773f93c941c44ca16720609000ae3d01409f9dfb/rasa_nlu-0.15.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "491d22a806d8368cdceb8fb9b5436884", "sha256": "69d8b788ea74f764343a2381228843d3dd8452636ba1441f0752ec695bb31cd6" }, "downloads": -1, "filename": "rasa-nlu-0.15.1.tar.gz", "has_sig": false, "md5_digest": "491d22a806d8368cdceb8fb9b5436884", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113457, "upload_time": "2019-06-04T17:37:53", "url": "https://files.pythonhosted.org/packages/98/00/9c11b64181bca244f75e4e81bf654c1e35287722dc24faddc93b831ea01f/rasa-nlu-0.15.1.tar.gz" } ] }