Skip to content

Commit 9d354b1

Browse files
Added missing import for the communication style classifier
1 parent 2c80e77 commit 9d354b1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

classifiers/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
question_type_classifier
1414
)
1515

16+
from .communication_style import (
17+
communication_style_classifier
18+
)
19+
1620
from .reference_quality import (
1721
word_count_classifier,
1822
special_character_classifier,
@@ -70,7 +74,8 @@
7074
chunked_sentence_complexity,
7175
special_character_classifier,
7276
chunked_sentence_complexity,
73-
question_type_classifier
77+
question_type_classifier,
78+
communication_style_classifier
7479
]:
7580
module_name = module.__name__.split(".")[-1]
7681
model_name = (

0 commit comments

Comments
 (0)