Spaces:
Sleeping
Sleeping
eaglelandsonce
commited on
Commit
•
3f25d71
1
Parent(s):
15970bc
Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
# app.py
|
2 |
-
import sklearn
|
3 |
import streamlit as st
|
4 |
import pandas as pd
|
5 |
import numpy as np
|
6 |
-
from
|
7 |
-
from
|
8 |
-
from
|
9 |
-
from
|
10 |
import matplotlib.pyplot as plt
|
11 |
import seaborn as sns
|
12 |
|
|
|
1 |
# app.py
|
2 |
+
import sklearn
|
3 |
import streamlit as st
|
4 |
import pandas as pd
|
5 |
import numpy as np
|
6 |
+
from sklearn.ensemble import RandomForestClassifier
|
7 |
+
from sklearn.model_selection import train_test_split
|
8 |
+
from sklearn.metrics import accuracy_score, roc_curve, auc
|
9 |
+
from sklearn.decomposition import PCA
|
10 |
import matplotlib.pyplot as plt
|
11 |
import seaborn as sns
|
12 |
|