HawkClaws commited on
Commit
0ed90e0
1 Parent(s): 8b5c657

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -58,16 +58,16 @@ if model_id1 and model_id2:
58
  st.write("### Comparison Result")
59
  if not diff_found:
60
  st.success("The model structures are identical.")
61
- else:
62
- col1, col2 = st.columns([1.5, 1.5]) # Adjust the ratio to make columns wider
63
 
64
- with col1:
65
- st.write("### Model 1")
66
- st.markdown(left_html, unsafe_allow_html=True)
67
 
68
- with col2:
69
- st.write("### Model 2")
70
- st.markdown(right_html, unsafe_allow_html=True)
71
 
72
  # Apply custom CSS for wider layout
73
  st.markdown(
 
58
  st.write("### Comparison Result")
59
  if not diff_found:
60
  st.success("The model structures are identical.")
61
+
62
+ col1, col2 = st.columns([1.5, 1.5]) # Adjust the ratio to make columns wider
63
 
64
+ with col1:
65
+ st.write("### Model 1")
66
+ st.markdown(left_html, unsafe_allow_html=True)
67
 
68
+ with col2:
69
+ st.write("### Model 2")
70
+ st.markdown(right_html, unsafe_allow_html=True)
71
 
72
  # Apply custom CSS for wider layout
73
  st.markdown(