File size: 488 Bytes
f17f319
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st
import pickle

st.title('Tecrübe, Yazılı ve Sözlü Sınava Göre Maaş Tahmin Eden Model :heavy_dollar_sign:')
model = pickle.load(open('maas.pkl', 'rb'))
tecrube = st.number_input('Tecrübe', 1, 10)
yazili = st.number_input('Yazılı', 1, 10)
mulakat = st.number_input('Mülakat', 1, 10)

if st.button('Tahmin Et'):
    tahmin = model.predict([[tecrube, yazili, mulakat]])
    tahmin = round(tahmin[0], 2)
    st.success(f'Maaş Tahmini: {tahmin}')