We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a4ed65 commit 84ce114Copy full SHA for 84ce114
rasa/nlu/featurizers/count_vectors_featurizer.py
@@ -187,7 +187,9 @@ def _attributes(analyzer):
187
"""Create a list of attributes that should be featurized."""
188
189
# intents should be featurized only by word level count vectorizer
190
- return MESSAGE_ATTRIBUTES if analyzer == "word" else SPACY_FEATURIZABLE_ATTRIBUTES
+ return (
191
+ MESSAGE_ATTRIBUTES if analyzer == "word" else SPACY_FEATURIZABLE_ATTRIBUTES
192
+ )
193
194
def __init__(
195
self,
0 commit comments