Spaces:
Sleeping
Sleeping
Update app.py
Browse filesAdded licenses
app.py
CHANGED
@@ -1,9 +1,12 @@
|
|
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 |
# Title of the app
|
9 |
st.title("Scoring Engine")
|
|
|
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 |
+
# LICENSE.sklearn - https://github.com/scikit-learn/scikit-learn/blob/main/COPYING
|
10 |
|
11 |
# Title of the app
|
12 |
st.title("Scoring Engine")
|