Skip to content

Commit d46ccee

Browse files
committed
set default value for weight_sparsity in response selector to 0
1 parent 77e97de commit d46ccee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rasa/nlu/selectors/response_selector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def required_components(cls) -> List[Type[Component]]:
171171
# The scale of regularization
172172
REGULARIZATION_CONSTANT: 0.002,
173173
# Sparsity of the weights in dense layers
174-
WEIGHT_SPARSITY: 0.8,
174+
WEIGHT_SPARSITY: 0.0,
175175
# The scale of how important is to minimize the maximum similarity
176176
# between embeddings of different labels.
177177
NEGATIVE_MARGIN_SCALE: 0.8,

0 commit comments

Comments
 (0)