Spaces:
Running
Running
Update modules/text_analysis/morpho_analysis.py
Browse files
modules/text_analysis/morpho_analysis.py
CHANGED
|
@@ -236,4 +236,14 @@ def perform_advanced_morphosyntactic_analysis(text, nlp):
|
|
| 236 |
return None
|
| 237 |
|
| 238 |
# Al final del archivo morph_analysis.py
|
| 239 |
-
__all__ = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 236 |
return None
|
| 237 |
|
| 238 |
# Al final del archivo morph_analysis.py
|
| 239 |
+
__all__ = [
|
| 240 |
+
'perform_advanced_morphosyntactic_analysis',
|
| 241 |
+
'get_repeated_words_colors',
|
| 242 |
+
'highlight_repeated_words',
|
| 243 |
+
'generate_arc_diagram',
|
| 244 |
+
'get_detailed_pos_analysis',
|
| 245 |
+
'get_morphological_analysis',
|
| 246 |
+
'get_sentence_structure_analysis',
|
| 247 |
+
'POS_COLORS',
|
| 248 |
+
'POS_TRANSLATIONS'
|
| 249 |
+
]
|