Update main.py
Browse files
main.py
CHANGED
|
@@ -166,7 +166,7 @@ def main():
|
|
| 166 |
|
| 167 |
# Build and display decision tree diagrams for each student
|
| 168 |
for index, row in student_metrics_df.iterrows():
|
| 169 |
-
tree_diagram =
|
| 170 |
st.graphviz_chart(tree_diagram.source)
|
| 171 |
|
| 172 |
# Prepare input for the language model
|
|
|
|
| 166 |
|
| 167 |
# Build and display decision tree diagrams for each student
|
| 168 |
for index, row in student_metrics_df.iterrows():
|
| 169 |
+
tree_diagram = visualization.build_tree_diagram(row)
|
| 170 |
st.graphviz_chart(tree_diagram.source)
|
| 171 |
|
| 172 |
# Prepare input for the language model
|