Spaces:
Sleeping
Sleeping
| # modules/text_analysis/__init__.py | |
| from .morpho_analysis import ( | |
| perform_advanced_morphosyntactic_analysis, | |
| get_repeated_words_colors, | |
| highlight_repeated_words, | |
| generate_arc_diagram, | |
| get_detailed_pos_analysis, | |
| get_morphological_analysis, | |
| get_sentence_structure_analysis, | |
| POS_COLORS, | |
| POS_TRANSLATIONS | |
| ) | |
| __all__ = [ | |
| 'perform_advanced_morphosyntactic_analysis', | |
| 'get_repeated_words_colors', | |
| 'highlight_repeated_words', | |
| 'generate_arc_diagram', | |
| 'get_detailed_pos_analysis', | |
| 'get_morphological_analysis', | |
| 'get_sentence_structure_analysis', | |
| 'POS_COLORS', | |
| 'POS_TRANSLATIONS' | |
| ] |