Coder commited on
Commit
0c92419
·
1 Parent(s): 9eb841a

adding footer

Browse files
Files changed (1) hide show
  1. app.py +20 -0
app.py CHANGED
@@ -138,6 +138,26 @@ def main():
138
  st.markdown(f'- **Root Mean Squared Error (RMSE):** {RMSE:.2f} - :{rmsecolor}[{"Good" if evaluation["RMSE"] == "Good" else "Not good"}] ')
139
  st.markdown("(The square root of MSE, which is more interpretable in the same units as the target variable.)")
140
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
 
142
 
143
 
 
138
  st.markdown(f'- **Root Mean Squared Error (RMSE):** {RMSE:.2f} - :{rmsecolor}[{"Good" if evaluation["RMSE"] == "Good" else "Not good"}] ')
139
  st.markdown("(The square root of MSE, which is more interpretable in the same units as the target variable.)")
140
 
141
+ # Footer
142
+ st.markdown("""
143
+ <style>
144
+ .footer {
145
+ position: fixed;
146
+ left: 0;
147
+ bottom: 0;
148
+ width: 100%;
149
+ background-color: #f8f9fa;
150
+ color: black;
151
+ text-align: center;
152
+ padding: 10px 0;
153
+ font-size: 14px;
154
+ }
155
+ </style>
156
+ <div class="footer">
157
+ "The best investment you can make is an investment in yourself." - Warren Buffett <br>
158
+ Made by Mohsin <3
159
+ </div>
160
+ """, unsafe_allow_html=True)
161
 
162
 
163