Spaces:
Sleeping
Sleeping
Update modules/text_analysis/discourse_analysis.py
Browse files
modules/text_analysis/discourse_analysis.py
CHANGED
|
@@ -12,14 +12,14 @@ logger = logging.getLogger(__name__)
|
|
| 12 |
from .semantic_analysis import (
|
| 13 |
create_concept_graph,
|
| 14 |
visualize_concept_graph,
|
| 15 |
-
identify_key_concepts
|
| 16 |
-
get_stopwords,
|
| 17 |
-
POS_COLORS,
|
| 18 |
-
POS_TRANSLATIONS,
|
| 19 |
-
ENTITY_LABELS
|
| 20 |
)
|
| 21 |
|
| 22 |
-
from .stopwords import
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
#####################
|
| 25 |
# Define colors for grammatical categories
|
|
|
|
| 12 |
from .semantic_analysis import (
|
| 13 |
create_concept_graph,
|
| 14 |
visualize_concept_graph,
|
| 15 |
+
identify_key_concepts
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
)
|
| 17 |
|
| 18 |
+
from .stopwords import (
|
| 19 |
+
get_custom_stopwords,
|
| 20 |
+
process_text,
|
| 21 |
+
get_stopwords_for_spacy
|
| 22 |
+
)
|
| 23 |
|
| 24 |
#####################
|
| 25 |
# Define colors for grammatical categories
|