Spaces:
Sleeping
Sleeping
Update modules/text_analysis/__init__.py
Browse files
modules/text_analysis/__init__.py
CHANGED
|
@@ -6,6 +6,7 @@ logging.basicConfig(
|
|
| 6 |
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
| 7 |
)
|
| 8 |
|
|
|
|
| 9 |
from .morpho_analysis import (
|
| 10 |
perform_advanced_morphosyntactic_analysis,
|
| 11 |
get_repeated_words_colors,
|
|
@@ -18,34 +19,11 @@ from .morpho_analysis import (
|
|
| 18 |
POS_TRANSLATIONS
|
| 19 |
)
|
| 20 |
|
|
|
|
| 21 |
from .semantic_analysis import (
|
| 22 |
create_concept_graph,
|
| 23 |
visualize_concept_graph,
|
| 24 |
-
identify_key_concepts
|
| 25 |
-
get_stopwords
|
| 26 |
)
|
| 27 |
|
| 28 |
-
from .discourse_analysis import perform_discourse_analysis
|
| 29 |
-
|
| 30 |
-
__all__ = [
|
| 31 |
-
'perform_discourse_analysis',
|
| 32 |
-
'create_concept_graph',
|
| 33 |
-
'visualize_concept_graph',
|
| 34 |
-
'identify_key_concepts',
|
| 35 |
-
'get_stopwords'
|
| 36 |
-
]
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
__all__ = [
|
| 40 |
-
'perform_advanced_morphosyntactic_analysis',
|
| 41 |
-
'get_repeated_words_colors',
|
| 42 |
-
'highlight_repeated_words',
|
| 43 |
-
'generate_arc_diagram',
|
| 44 |
-
'get_detailed_pos_analysis',
|
| 45 |
-
'get_morphological_analysis',
|
| 46 |
-
'get_sentence_structure_analysis',
|
| 47 |
-
'POS_COLORS',
|
| 48 |
-
'POS_TRANSLATIONS'
|
| 49 |
-
]
|
| 50 |
-
|
| 51 |
|
|
|
|
| 6 |
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
| 7 |
)
|
| 8 |
|
| 9 |
+
# Importaciones de morpho_analysis
|
| 10 |
from .morpho_analysis import (
|
| 11 |
perform_advanced_morphosyntactic_analysis,
|
| 12 |
get_repeated_words_colors,
|
|
|
|
| 19 |
POS_TRANSLATIONS
|
| 20 |
)
|
| 21 |
|
| 22 |
+
# Importaciones de semantic_analysis
|
| 23 |
from .semantic_analysis import (
|
| 24 |
create_concept_graph,
|
| 25 |
visualize_concept_graph,
|
| 26 |
+
identify_key_concepts
|
|
|
|
| 27 |
)
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|