-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_pycaret.py
67 lines (43 loc) · 1.69 KB
/
app_pycaret.py
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
# Imports
import pandas as pd
import streamlit as st
import xlsxwriter
from io import BytesIO
from pycaret.classification import load_model, predict_model
@st.cache_data
def convert_df(df):
return df.to_csv(index=False).encode('utf-8')
# Função para converter o df para excel
@st.cache_data
def to_excel(df):
output = BytesIO()
writer = pd.ExcelWriter(output, engine='xlsxwriter')
df.to_excel(writer, index=False, sheet_name='Sheet1')
writer.save()
processed_data = output.getvalue()
return processed_data
# Função principal da aplicação
def main():
# Configuração inicial da página da aplicação
st.set_page_config(page_title = 'PyCaret', \
layout="wide",
initial_sidebar_state='expanded'
)
# Título principal da aplicação
st.write("""## Escorando o modelo gerado no pycaret """)
st.markdown("---")
# Botão para carregar arquivo na aplicação
st.sidebar.write("## Suba o arquivo")
data_file_1 = st.sidebar.file_uploader("Bank Credit Dataset", type = ['csv','ftr'])
# Verifica se há conteúdo carregado na aplicação
if (data_file_1 is not None):
df_credit = pd.read_feather(data_file_1)
df_credit = df_credit.sample(50000)
model_saved = load_model(r'C:\Users\sann_\Documentos\curso\Projetos_CD\Git\Projeto-Credit-Score\Final LGBM Model 19mai2023')
predict = predict_model(model_saved, data=df_credit)
df_xlsx = to_excel(predict)
st.download_button(label='📥 Download',
data=df_xlsx ,
file_name= 'predict.xlsx')
if __name__ == '__main__':
main()