Spaces:
Running
Running
Update modules/__init__.py
Browse files- modules/__init__.py +16 -16
modules/__init__.py
CHANGED
|
@@ -27,22 +27,22 @@ def load_current_situation_functions():
|
|
| 27 |
suggest_improvement_tools
|
| 28 |
)
|
| 29 |
|
| 30 |
-
from .studentact.current_situation_analysis import (
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
|
| 47 |
return {
|
| 48 |
'display_current_situation_interface': display_current_situation_interface,
|
|
|
|
| 27 |
suggest_improvement_tools
|
| 28 |
)
|
| 29 |
|
| 30 |
+
from .studentact.current_situation_analysis import (
|
| 31 |
+
correlate_metrics,
|
| 32 |
+
analyze_text_dimensions,
|
| 33 |
+
analyze_clarity,
|
| 34 |
+
analyze_vocabulary_diversity,
|
| 35 |
+
analyze_cohesion,
|
| 36 |
+
analyze_structure,
|
| 37 |
+
get_dependency_depths,
|
| 38 |
+
normalize_score,
|
| 39 |
+
generate_sentence_graphs,
|
| 40 |
+
generate_word_connections,
|
| 41 |
+
generate_connection_paths,
|
| 42 |
+
create_vocabulary_network,
|
| 43 |
+
create_syntax_complexity_graph,
|
| 44 |
+
create_cohesion_heatmap
|
| 45 |
+
)
|
| 46 |
|
| 47 |
return {
|
| 48 |
'display_current_situation_interface': display_current_situation_interface,
|