-
Notifications
You must be signed in to change notification settings - Fork 513
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #199 from snipsco/release/0.3.4
Bump version number
- Loading branch information
Showing
31 changed files
with
1,032 additions
and
569 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.3.3 | ||
0.3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,33 @@ | ||
INTENT_NAME = u"intent_name" | ||
PROBABILITY = u"probability" | ||
PARSED_INTENT = u"intent" | ||
PARSED_SLOTS = u"slots" | ||
TEXT = u"text" | ||
AUTOMATICALLY_EXTENSIBLE = u"automatically_extensible" | ||
USE_SYNONYMS = u"use_synonyms" | ||
SYNONYMS = u"synonyms" | ||
DATA = u"data" | ||
INTENTS = u"intents" | ||
ENTITIES = u"entities" | ||
ENTITY = u"entity" | ||
SLOT_NAME = u"slot_name" | ||
UTTERANCES = u"utterances" | ||
ENGINE_TYPE = u"engineType" | ||
CUSTOM_ENGINE = u"regex" | ||
BUILTIN_ENGINE = u"tensorflow" | ||
LANGUAGE = u"language" | ||
MATCH_RANGE = u"range" | ||
VALUE = u"value" | ||
CUSTOM_PARSERS = u"custom_parsers" | ||
BUILTIN_PARSER = u"builtin_parser" | ||
BUILTIN_PATH = u"builtin_path" | ||
BUILTIN_BINARY = u"builtin_binary" | ||
LABEL = u"label" | ||
DUCKLING_DIM = u"duckling_dim" | ||
NGRAM = u"ngram" | ||
TOKEN_INDEXES = u"token_indexes" | ||
from __future__ import unicode_literals | ||
|
||
INTENT_NAME = "intent_name" | ||
PROBABILITY = "probability" | ||
PARSED_INTENT = "intent" | ||
PARSED_SLOTS = "slots" | ||
TEXT = "text" | ||
AUTOMATICALLY_EXTENSIBLE = "automatically_extensible" | ||
USE_SYNONYMS = "use_synonyms" | ||
SYNONYMS = "synonyms" | ||
DATA = "data" | ||
INTENTS = "intents" | ||
ENTITIES = "entities" | ||
ENTITY = "entity" | ||
SLOT_NAME = "slot_name" | ||
UTTERANCES = "utterances" | ||
ENGINE_TYPE = "engineType" | ||
CUSTOM_ENGINE = "regex" | ||
BUILTIN_ENGINE = "tensorflow" | ||
LANGUAGE = "language" | ||
MATCH_RANGE = "range" | ||
VALUE = "value" | ||
BUILTIN_PARSER = "builtin_parser" | ||
BUILTIN_PATH = "builtin_path" | ||
BUILTIN_BINARY = "builtin_binary" | ||
LABEL = "label" | ||
DUCKLING_DIM = "duckling_dim" | ||
NGRAM = "ngram" | ||
TOKEN_INDEXES = "token_indexes" | ||
GAZETTEERS = "gazetteers" | ||
STOP_WORDS = "stop_words" | ||
SUBTITLES = "subtitles" | ||
WORD_CLUSTERS = "word_clusters" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 0 additions & 31 deletions
31
snips_nlu/intent_classifier/intent_classifier_resources.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.