azizalto commited on
Commit
cd61b8e
1 Parent(s): b0174c1

page header

Browse files
Files changed (1) hide show
  1. forecast/page_config.py +15 -3
forecast/page_config.py CHANGED
@@ -23,12 +23,24 @@ def APP_PAGE_HEADER():
23
 
24
 
25
  def HEADER():
26
- st_ = st.columns(3)
27
- st_[0].markdown("> ## Simple Time-Series Forecast")
28
  today = date.today()
 
 
 
 
29
 
 
 
 
 
 
 
 
 
30
  st_[1].image(
31
  "./assets/logo.png",
32
- caption=f"{today.strftime('%B %d, %Y')}",
33
  use_column_width=True,
34
  )
 
 
 
 
23
 
24
 
25
  def HEADER():
 
 
26
  today = date.today()
27
+ st_ = st.columns(2)
28
+ st_[0].markdown("## Simple Time-Series Forecasting")
29
+ st_[0].markdown("By [Aziz Alto](https://twitter.com/AzizAlto) on 11-14-2021")
30
+ st_[0].caption(f"Today is {today.strftime('%B %d, %Y')}")
31
 
32
+ review = """
33
+ > _"Facebook's Prophet package aims to provide a simple, automated approach to prediction of a large number of different time series. The package employs an easily interpreted, three component additive model whose Bayesian posterior is sampled using STAN. In contrast to some other approaches, the user of Prophet might hope for good performance without tweaking a lot of parameters. Instead, hyper-parameters control how likely those parameters are a priori, and the Bayesian sampling tries to sort things out when data arrives.
34
+ Judged by popularity, this is surely a good idea. Facebook's prophet package has been downloaded 13,698,928 times according to pepy. It tops the charts, or at least the one I compiled here where hundreds of Python time series packages were ranked by monthly downloads. Download numbers are easily gamed and deceptive but nonetheless, the Prophet package is surely the most popular standalone Python library for automated time series analysis."_
35
+
36
+ continue reading [here](https://www.microprediction.com/blog/prophet).
37
+ """
38
+
39
+ st_[1].caption(f"For now - based fbprophet forecaster only.",)
40
  st_[1].image(
41
  "./assets/logo.png",
 
42
  use_column_width=True,
43
  )
44
+ with st_[1].expander("about the model"):
45
+ st.markdown(review, unsafe_allow_html=True)
46
+ st.markdown("---")