Zeel commited on
Commit
186ab80
·
1 Parent(s): daa8cf6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -56,4 +56,9 @@ hide_streamlit_style = """
56
  footer {visibility: hidden;}
57
  </style>
58
  """
59
- st.markdown(hide_streamlit_style, unsafe_allow_html=True)
 
 
 
 
 
 
56
  footer {visibility: hidden;}
57
  </style>
58
  """
59
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
60
+ st.markdown("""
61
+ The above visualization shows the joint effect of data and prior on the posterior. There are some interesting observations here:
62
+ * When prior is Beta(1, 1), it becomes Uniform prior and thus uninformative. In this case, posterior matches with likelihood.
63
+ * With an increase in the number of samples, the posterior gets closer to the likelihood. Thus, when the number of samples is less, prior plays an important role.
64
+ """)