Spaces:
Sleeping
Sleeping
Update modules/__init__.py
Browse files- modules/__init__.py +22 -2
modules/__init__.py
CHANGED
|
@@ -23,6 +23,16 @@ def load_current_situation_functions():
|
|
| 23 |
)
|
| 24 |
from .studentact.current_situation_analysis import (
|
| 25 |
analyze_text_dimensions,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
create_vocabulary_network,
|
| 27 |
create_syntax_complexity_graph,
|
| 28 |
create_cohesion_heatmap
|
|
@@ -32,10 +42,20 @@ def load_current_situation_functions():
|
|
| 32 |
'display_current_situation_interface': display_current_situation_interface,
|
| 33 |
'display_current_situation_visual': display_current_situation_visual,
|
| 34 |
'show_recommendations': show_recommendations,
|
| 35 |
-
'analyze_text_dimensions': analyze_text_dimensions,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
'create_vocabulary_network': create_vocabulary_network,
|
| 37 |
'create_syntax_complexity_graph': create_syntax_complexity_graph,
|
| 38 |
-
'create_cohesion_heatmap': create_cohesion_heatmap
|
| 39 |
}
|
| 40 |
|
| 41 |
def load_database_functions():
|
|
|
|
| 23 |
)
|
| 24 |
from .studentact.current_situation_analysis import (
|
| 25 |
analyze_text_dimensions,
|
| 26 |
+
analyze_clarity,
|
| 27 |
+
analyze_reference_clarity,
|
| 28 |
+
analyze_vocabulary_diversity,
|
| 29 |
+
analyze_cohesion,
|
| 30 |
+
analyze_structure,
|
| 31 |
+
get_dependency_depths,
|
| 32 |
+
normalize_score,
|
| 33 |
+
generate_sentence_graphs,
|
| 34 |
+
generate_word_connections,
|
| 35 |
+
generate_connection_paths,
|
| 36 |
create_vocabulary_network,
|
| 37 |
create_syntax_complexity_graph,
|
| 38 |
create_cohesion_heatmap
|
|
|
|
| 42 |
'display_current_situation_interface': display_current_situation_interface,
|
| 43 |
'display_current_situation_visual': display_current_situation_visual,
|
| 44 |
'show_recommendations': show_recommendations,
|
| 45 |
+
'analyze_text_dimensions': analyze_text_dimensions ,
|
| 46 |
+
'analyze_clarity': analyze_clarity,
|
| 47 |
+
'analyze_reference_clarity': analyze_reference_clarity,
|
| 48 |
+
'analyze_vocabulary_diversity': analyze_vocabulary_diversity,
|
| 49 |
+
'analyze_cohesion': analyze_cohesion,
|
| 50 |
+
'analyze_structure': analyze_structure,
|
| 51 |
+
'get_dependency_depths': get_dependency_depths,
|
| 52 |
+
'normalize_score': normalize_score,
|
| 53 |
+
'generate_sentence_graphs': generate_sentence_graphs,
|
| 54 |
+
'generate_word_connections': generate_word_connections,
|
| 55 |
+
'generate_connection_paths': generate_connection_paths,
|
| 56 |
'create_vocabulary_network': create_vocabulary_network,
|
| 57 |
'create_syntax_complexity_graph': create_syntax_complexity_graph,
|
| 58 |
+
'create_cohesion_heatmap': create_cohesion_heatmap
|
| 59 |
}
|
| 60 |
|
| 61 |
def load_database_functions():
|