Update modules/morphosyntax/morphosyntax_process.py
Browse files
modules/morphosyntax/morphosyntax_process.py
CHANGED
@@ -2,16 +2,13 @@
|
|
2 |
import streamlit as st
|
3 |
|
4 |
from ..text_analysis.morpho_analysis import (
|
5 |
-
process_morphosyntactic_input,
|
6 |
-
highlight_repeated_words,
|
7 |
-
generate_arc_diagram,
|
8 |
get_repeated_words_colors,
|
|
|
|
|
9 |
get_detailed_pos_analysis,
|
10 |
get_morphological_analysis,
|
11 |
get_sentence_structure_analysis,
|
12 |
-
perform_advanced_morphosyntactic_analysis
|
13 |
-
POS_COLORS,
|
14 |
-
POS_TRANSLATIONS
|
15 |
)
|
16 |
|
17 |
# Re-exportar las funciones y constantes necesarias
|
|
|
2 |
import streamlit as st
|
3 |
|
4 |
from ..text_analysis.morpho_analysis import (
|
|
|
|
|
|
|
5 |
get_repeated_words_colors,
|
6 |
+
highlight_repeated_word,
|
7 |
+
generate_arc_diagram,
|
8 |
get_detailed_pos_analysis,
|
9 |
get_morphological_analysis,
|
10 |
get_sentence_structure_analysis,
|
11 |
+
perform_advanced_morphosyntactic_analysis
|
|
|
|
|
12 |
)
|
13 |
|
14 |
# Re-exportar las funciones y constantes necesarias
|