Spaces:
Sleeping
Sleeping
ryantrisnadi
commited on
Commit
•
07a979f
1
Parent(s):
59ecefa
Update app.py
Browse files
app.py
CHANGED
@@ -2,64 +2,37 @@ import streamlit as st
|
|
2 |
import pandas as pd
|
3 |
import joblib
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
st.write(
|
19 |
-
|
20 |
-
st.
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
'hsc_p': hsc,
|
38 |
-
'hsc_s': hsc_s,
|
39 |
-
'degree_p': degree_p,
|
40 |
-
'degree_t': degree_t,
|
41 |
-
'workex': workex,
|
42 |
-
'etest_p': etest_p,
|
43 |
-
'specialisation':spec,
|
44 |
-
'mba_p': mba_p
|
45 |
-
}
|
46 |
-
features = pd.DataFrame(data, index=[0])
|
47 |
-
return features
|
48 |
-
|
49 |
-
|
50 |
-
input = user_input()
|
51 |
-
|
52 |
-
st.subheader('User Input')
|
53 |
-
st.write(input)
|
54 |
-
|
55 |
-
load_model = joblib.load("model.pkl")
|
56 |
-
|
57 |
-
prediction = load_model.predict(input)
|
58 |
-
|
59 |
-
if prediction == 1:
|
60 |
-
prediction = 'Placed'
|
61 |
else:
|
62 |
-
|
63 |
-
|
64 |
-
st.write('Based on user input, the placement model predicted: ')
|
65 |
-
st.write(prediction)
|
|
|
2 |
import pandas as pd
|
3 |
import joblib
|
4 |
|
5 |
+
import streamlit as st
|
6 |
+
import eda
|
7 |
+
import models
|
8 |
+
|
9 |
+
|
10 |
+
page = st.sidebar.selectbox(label='Select Page:', options=['Home Page', 'Exploration Data Analysis', 'Model Prediksi'])
|
11 |
+
|
12 |
+
if page == 'Home Page':
|
13 |
+
st.header('Welcome Page')
|
14 |
+
st.write('')
|
15 |
+
st.write('Milestone 2')
|
16 |
+
st.write('Nama : Ryan Trisnadi')
|
17 |
+
st.write('Batch : ')
|
18 |
+
st.write('Tujuan Milestone : Prediksi harga rumah di Melbourne')
|
19 |
+
st.write('')
|
20 |
+
st.caption('Silahkan pilih menu lain di Select Box pada sebelah kiri layar anda untuk memulai!')
|
21 |
+
st.write('')
|
22 |
+
st.write('')
|
23 |
+
with st.expander("Latar Belakang"):
|
24 |
+
st.caption('Proyek ini dibuat untuk mengilustrasikan dan memproyek kedepan harga rumah di kota Melbourne, Australia. Kita akan menguji dengan Linear regression
|
25 |
+
dengan beberapa test algorithma seperti SVM, Decision Tree, Random Forest, dan Boosting. Oleh karena itu, kita akan memilih variable "price" atau harga
|
26 |
+
rumah sebagai target. Dengan mengunakan Pipeline di setiap proses dari Feature Engineering, kita bisa membuat proses lebih efisien dan mencegah data leak.
|
27 |
+
Dataset tersebut memiliki beberapa faktor seperti alamat, kode pos, harga rumah, lokasi lingkungan, kamar, kamar mandi, garasi, besar tanah, umur dan
|
28 |
+
lain-lain'.)
|
29 |
+
|
30 |
+
with st.expander("Tujuan"):
|
31 |
+
st.caption('Untuk prediksi harga rata-rata rumah di Melbourne satu tahun kemudian')
|
32 |
+
|
33 |
+
with st.expander("Kesimpulan"):
|
34 |
+
st.caption('lorem ipsum')
|
35 |
+
elif page == 'Exploration Data Analysis':
|
36 |
+
eda.run()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
else:
|
38 |
+
models .run()
|
|
|
|
|
|