Spaces:
Sleeping
Sleeping
Update modules/studentact/current_situation_interface.py
Browse files
modules/studentact/current_situation_interface.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
def display_current_situation_interface(lang_code, nlp_models, t):
|
| 2 |
"""
|
| 3 |
Interfaz simplificada para el análisis inicial, enfocada en recomendaciones directas.
|
|
|
|
| 1 |
+
# modules/studentact/current_situation_interface.py
|
| 2 |
+
|
| 3 |
+
import streamlit as st
|
| 4 |
+
import logging
|
| 5 |
+
from ..utils.widget_utils import generate_unique_key
|
| 6 |
+
from .current_situation_analysis import (
|
| 7 |
+
analyze_text_dimensions,
|
| 8 |
+
create_vocabulary_network,
|
| 9 |
+
create_syntax_complexity_graph,
|
| 10 |
+
create_cohesion_heatmap
|
| 11 |
+
)
|
| 12 |
+
|
| 13 |
+
logger = logging.getLogger(__name__)
|
| 14 |
+
|
| 15 |
def display_current_situation_interface(lang_code, nlp_models, t):
|
| 16 |
"""
|
| 17 |
Interfaz simplificada para el análisis inicial, enfocada en recomendaciones directas.
|