Zeel commited on
Commit
b283e2a
1 Parent(s): 81bca1f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -52,4 +52,10 @@ hide_streamlit_style = """
52
  subheader {alignment: center;}
53
  </style>
54
  """
55
- st.markdown(hide_streamlit_style, unsafe_allow_html=True)
 
 
 
 
 
 
 
52
  subheader {alignment: center;}
53
  </style>
54
  """
55
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
56
+
57
+ st.markdown("""
58
+ There are several points to note on the effect of K on the quality of model fit:
59
+ * Models with extremely small values of K learn the local patterns and do not generalize well thus they have a high variance or overfitting effect.
60
+ * Models with extremely high values of K suffer from averaging effect over the entire space and thus do not do well even on the train points. This is known as a high bias or underfitting effect.
61
+ """)