Vineedhar commited on
Commit
96e20c2
·
verified ·
1 Parent(s): 424e9e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
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
- # LICENSE.sklearn - https://github.com/scikit-learn/scikit-learn/blob/main/COPYING
 
 
 
 
 
 
 
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")