File size: 675 Bytes
6eb2dc3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import streamlit as st
from PIL import Image

def run():
    # Add Picture
    image = Image.open('cc.jpeg')
    st.image(image, caption=None, width=700)
    # Title
    st.title('ABOUT THIS PROJECT')
    st.markdown('---')
    st.write('###### This project aims to create a model with Random Forest Classifier and GradientBoost Classifier algorithms to predict whether a patient will die or not due to heart failure.')
    st.markdown('---')
    
    st.write('Feel free to contact me on:')
    st.write('[GITHUB](https://github.com/theonugraha)')
    st.write('or')
    st.write('[LINKEDIN](https://www.linkedin.com/in/nugrahatheo/)')


if __name__ == '__main__':
    run()