├── .gitignore ├── 2016-12-built-in-intents ├── README.md └── benchmark_data.json ├── 2017-06-custom-intent-engines ├── AddToPlaylist │ ├── Alexa_metrics.json │ ├── Luis_metrics.json │ ├── Snips_metrics.json │ ├── Snips_metrics_full.json │ ├── Wit_metrics.json │ ├── api.ai_metrics.json │ ├── train_AddToPlaylist.json │ ├── train_AddToPlaylist_full.json │ └── validate_AddToPlaylist.json ├── BookRestaurant │ ├── Alexa_metrics.json │ ├── Luis_metrics.json │ ├── Snips_metrics.json │ ├── Snips_metrics_full.json │ ├── Wit_metrics.json │ ├── api.ai_metrics.json │ ├── train_BookRestaurant.json │ ├── train_BookRestaurant_full.json │ └── validate_BookRestaurant.json ├── GetWeather │ ├── Alexa_metrics.json │ ├── Luis_metrics.json │ ├── Snips_metrics.json │ ├── Snips_metrics_full.json │ ├── Wit_metrics.json │ ├── api.ai_metrics.json │ ├── train_GetWeather.json │ ├── train_GetWeather_full.json │ └── validate_GetWeather.json ├── PlayMusic │ ├── Alexa_metrics.json │ ├── Luis_metrics.json │ ├── Snips_metrics.json │ ├── Snips_metrics_full.json │ ├── Wit_metrics.json │ ├── api.ai_metrics.json │ ├── train_PlayMusic.json │ ├── train_PlayMusic_full.json │ └── validate_PlayMusic.json ├── README.md ├── RateBook │ ├── Alexa_metrics.json │ ├── Luis_metrics.json │ ├── Snips_metrics.json │ ├── Snips_metrics_full.json │ ├── Wit_metrics.json │ ├── api.ai_metrics.json │ ├── train_RateBook.json │ ├── train_RateBook_full.json │ └── validate_RateBook.json ├── SearchCreativeWork │ ├── Alexa_metrics.json │ ├── Luis_metrics.json │ ├── Snips_metrics.json │ ├── Snips_metrics_full.json │ ├── Wit_metrics.json │ ├── api.ai_metrics.json │ ├── train_SearchCreativeWork.json │ ├── train_SearchCreativeWork_full.json │ └── validate_SearchCreativeWork.json └── SearchScreeningEvent │ ├── Alexa_metrics.json │ ├── Luis_metrics.json │ ├── Snips_metrics.json │ ├── Snips_metrics_full.json │ ├── Wit_metrics.json │ ├── api.ai_metrics.json │ ├── train_SearchScreeningEvent.json │ ├── train_SearchScreeningEvent_full.json │ └── validate_SearchScreeningEvent.json ├── 2018-01-Braun-et-al-extension ├── README.md └── results │ ├── chatbot │ ├── rasa_paper_metrics.json │ ├── rasa_spacy_metrics.json │ └── snips_metrics.json │ ├── ubuntu │ ├── rasa_mitie_metrics.json │ ├── rasa_mitie_sklearn_metrics.json │ ├── rasa_spacy_metrics.json │ └── snips_metrics.json │ └── web_application │ ├── rasa_mitie_metrics.json │ ├── rasa_mitie_sklearn_metrics.json │ ├── rasa_spacy_metrics.json │ └── snips_metrics.json ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /2016-12-built-in-intents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2016-12-built-in-intents/README.md -------------------------------------------------------------------------------- /2016-12-built-in-intents/benchmark_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2016-12-built-in-intents/benchmark_data.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/Alexa_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/Alexa_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/Luis_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/Luis_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/Snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/Snips_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/Snips_metrics_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/Snips_metrics_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/Wit_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/Wit_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/api.ai_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/api.ai_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/train_AddToPlaylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/train_AddToPlaylist.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/train_AddToPlaylist_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/train_AddToPlaylist_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/AddToPlaylist/validate_AddToPlaylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/AddToPlaylist/validate_AddToPlaylist.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/Alexa_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/Alexa_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/Luis_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/Luis_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/Snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/Snips_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/Snips_metrics_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/Snips_metrics_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/Wit_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/Wit_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/api.ai_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/api.ai_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/train_BookRestaurant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/train_BookRestaurant.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/train_BookRestaurant_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/train_BookRestaurant_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/BookRestaurant/validate_BookRestaurant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/BookRestaurant/validate_BookRestaurant.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/Alexa_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/Alexa_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/Luis_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/Luis_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/Snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/Snips_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/Snips_metrics_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/Snips_metrics_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/Wit_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/Wit_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/api.ai_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/api.ai_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/train_GetWeather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/train_GetWeather.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/train_GetWeather_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/train_GetWeather_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/GetWeather/validate_GetWeather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/GetWeather/validate_GetWeather.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/Alexa_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/Alexa_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/Luis_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/Luis_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/Snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/Snips_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/Snips_metrics_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/Snips_metrics_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/Wit_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/Wit_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/api.ai_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/api.ai_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/train_PlayMusic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/train_PlayMusic.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/train_PlayMusic_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/train_PlayMusic_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/PlayMusic/validate_PlayMusic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/PlayMusic/validate_PlayMusic.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/README.md -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/Alexa_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/Alexa_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/Luis_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/Luis_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/Snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/Snips_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/Snips_metrics_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/Snips_metrics_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/Wit_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/Wit_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/api.ai_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/api.ai_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/train_RateBook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/train_RateBook.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/train_RateBook_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/train_RateBook_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/RateBook/validate_RateBook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/RateBook/validate_RateBook.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/Alexa_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/Alexa_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/Luis_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/Luis_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/Snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/Snips_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/Snips_metrics_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/Snips_metrics_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/Wit_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/Wit_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/api.ai_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/api.ai_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/train_SearchCreativeWork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/train_SearchCreativeWork.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/train_SearchCreativeWork_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/train_SearchCreativeWork_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchCreativeWork/validate_SearchCreativeWork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchCreativeWork/validate_SearchCreativeWork.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/Alexa_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/Alexa_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/Luis_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/Luis_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/Snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/Snips_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/Snips_metrics_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/Snips_metrics_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/Wit_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/Wit_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/api.ai_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/api.ai_metrics.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/train_SearchScreeningEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/train_SearchScreeningEvent.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/train_SearchScreeningEvent_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/train_SearchScreeningEvent_full.json -------------------------------------------------------------------------------- /2017-06-custom-intent-engines/SearchScreeningEvent/validate_SearchScreeningEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2017-06-custom-intent-engines/SearchScreeningEvent/validate_SearchScreeningEvent.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/README.md -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/chatbot/rasa_paper_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/chatbot/rasa_paper_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/chatbot/rasa_spacy_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/chatbot/rasa_spacy_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/chatbot/snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/chatbot/snips_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/ubuntu/rasa_mitie_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/ubuntu/rasa_mitie_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/ubuntu/rasa_mitie_sklearn_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/ubuntu/rasa_mitie_sklearn_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/ubuntu/rasa_spacy_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/ubuntu/rasa_spacy_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/ubuntu/snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/ubuntu/snips_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/web_application/rasa_mitie_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/web_application/rasa_mitie_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/web_application/rasa_mitie_sklearn_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/web_application/rasa_mitie_sklearn_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/web_application/rasa_spacy_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/web_application/rasa_spacy_metrics.json -------------------------------------------------------------------------------- /2018-01-Braun-et-al-extension/results/web_application/snips_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/2018-01-Braun-et-al-extension/results/web_application/snips_metrics.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonos/nlu-benchmark/HEAD/README.md --------------------------------------------------------------------------------