Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,12 +1,17 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
# LICENSE.streamlit - https://github.com/streamlit/streamlit/blob/develop/LICENSE
|
| 3 |
import pandas as pd
|
| 4 |
-
# LICENSE.pandas - https://github.com/pandas-dev/pandas/blob/main/LICENSE
|
| 5 |
from sklearn.model_selection import train_test_split
|
| 6 |
from sklearn.naive_bayes import GaussianNB
|
| 7 |
from sklearn.metrics import accuracy_score
|
| 8 |
from sklearn.preprocessing import LabelEncoder
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
# Title of the app
|
| 12 |
st.title("Scoring Engine")
|
|
|
|
| 1 |
import streamlit as st
|
|
|
|
| 2 |
import pandas as pd
|
|
|
|
| 3 |
from sklearn.model_selection import train_test_split
|
| 4 |
from sklearn.naive_bayes import GaussianNB
|
| 5 |
from sklearn.metrics import accuracy_score
|
| 6 |
from sklearn.preprocessing import LabelEncoder
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
# LICENSE.streamlit.Apachev2 - Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2024) (https://github.com/streamlit/streamlit/blob/develop/LICENSE)
|
| 10 |
+
|
| 11 |
+
# LICENSE.pandas.BSD-3 - Copyright (c) 2008-2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team (https://github.com/pandas-dev/pandas/blob/main/LICENSE)
|
| 12 |
+
|
| 13 |
+
# LICENSE.sklearn.BSD-3 - Copyright (c) 2007-2024 The scikit-learn developers (https://github.com/scikit-learn/scikit-learn/blob/main/COPYING)
|
| 14 |
+
|
| 15 |
|
| 16 |
# Title of the app
|
| 17 |
st.title("Scoring Engine")
|