Commit ·
cab2c2a
1
Parent(s): 8683d51
Update app.py
Browse files
app.py
CHANGED
|
@@ -52,7 +52,7 @@ def main():
|
|
| 52 |
st.session_state.B_degree_threshold = B_degree_threshold
|
| 53 |
st.session_state.B = build_graph(st.session_state.results, B_degree_threshold)
|
| 54 |
|
| 55 |
-
st.sidebar.write(f"There are {len(st.session_state.B)}
|
| 56 |
|
| 57 |
# Filter out model nodes and lora nodes
|
| 58 |
model_nodes = {n for n, d in st.session_state.B.nodes(data=True) if d['bipartite']==0}
|
|
|
|
| 52 |
st.session_state.B_degree_threshold = B_degree_threshold
|
| 53 |
st.session_state.B = build_graph(st.session_state.results, B_degree_threshold)
|
| 54 |
|
| 55 |
+
st.sidebar.write(f"There are {len(st.session_state.B)} nodes analyzed.")
|
| 56 |
|
| 57 |
# Filter out model nodes and lora nodes
|
| 58 |
model_nodes = {n for n, d in st.session_state.B.nodes(data=True) if d['bipartite']==0}
|