File size: 1,864 Bytes
69d2e5c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import streamlit as st 
import pandas as pd 
import numpy as np 
import pickle 
import json 
import joblib as jb

#load models
model = jb.load('model.pkl')

def run():
    with st.form('key=form_prediction') :
        age = st.number_input('Age', min_value=40, max_value=95, value= 60, step=1, help='Usia anda')
        anaemia = st.selectbox('Anemia',(0,1), index= 1)
        creatinine_phosphokinase= st.number_input('creatinine_phosphokinase', min_value=23, max_value=7861)
        diabetes = st.selectbox('Diabetes',(0,1), index= 1)
        ejection_fraction = st.number_input('ejection_fraction', min_value=14, max_value=80)
        high_blood_pressure = st.selectbox('Tekanan Darah',(0,1), index= 1) 
        platelets = st.number_input('platelets', min_value=25100, max_value=850000)
        serum_creatinine = st.number_input('serum creatinine',min_value=0.5,max_value=9.4)
        serum_sodium = st.number_input('serum_sodium',min_value=113, max_value=148)
        sex = st.selectbox('Jenis Kelamin',(0,1), index= 1) 
        smoking = st.selectbox('smoking',(0,1), index= 1)
        time =  st.slider('serum creatinine',4,135,285) 


        submitted = st.form_submit_button('Predict')

    data_inf = {
    'age': age,
    'anaemia': anaemia,
    'creatinine_phosphokinase':creatinine_phosphokinase,
    'diabetes':diabetes,
    'ejection_fraction': ejection_fraction,
    'high_blood_pressure': high_blood_pressure,
    'platelets' :platelets,
    'serum_creatinine' :serum_creatinine,
    'serum_sodium' :serum_sodium,
    'sex': sex,
    'smoking':smoking,
    'time': time
    }

    data_inf = pd.DataFrame([data_inf])
    st.dataframe(data_inf)

    if submitted:

        # Predict using bagging 
        y_pred_inf = model.predict(data_inf)

        st.write('# Death Prediction : ', str(int(y_pred_inf)))


if __name__=='__main__':
    run()