Spaces:
Running
Running
Update modules/studentact/current_situation_interface.py
Browse files
modules/studentact/current_situation_interface.py
CHANGED
|
@@ -4,10 +4,19 @@ 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
create_syntax_complexity_graph,
|
| 10 |
-
create_cohesion_heatmap
|
| 11 |
)
|
| 12 |
|
| 13 |
logger = logging.getLogger(__name__)
|
|
|
|
| 4 |
import logging
|
| 5 |
from ..utils.widget_utils import generate_unique_key
|
| 6 |
from .current_situation_analysis import (
|
| 7 |
+
analyze_text_dimensions,
|
| 8 |
+
analyze_clarity,
|
| 9 |
+
analyze_vocabulary_diversity,
|
| 10 |
+
analyze_cohesion,
|
| 11 |
+
analyze_structure,
|
| 12 |
+
get_dependency_depths,
|
| 13 |
+
normalize_score,
|
| 14 |
+
generate_sentence_graphs,
|
| 15 |
+
generate_word_connections,
|
| 16 |
+
generate_connection_paths,
|
| 17 |
+
create_vocabulary_network,
|
| 18 |
create_syntax_complexity_graph,
|
| 19 |
+
create_cohesion_heatmap,
|
| 20 |
)
|
| 21 |
|
| 22 |
logger = logging.getLogger(__name__)
|