Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -27,6 +27,15 @@ from streamlit_extras.add_vertical_space import add_vertical_space
|
|
27 |
from streamlit_card import card
|
28 |
import pydeck as pdk
|
29 |
import math
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
# Page configuration with custom theme
|
32 |
st.set_page_config(
|
|
|
27 |
from streamlit_card import card
|
28 |
import pydeck as pdk
|
29 |
import math
|
30 |
+
from sklearn.ensemble import RandomForestClassifier, RandomForestRegressor
|
31 |
+
from sklearn.preprocessing import StandardScaler
|
32 |
+
from sklearn.model_selection import train_test_split
|
33 |
+
from sklearn.metrics import mean_squared_error, r2_score
|
34 |
+
import joblib
|
35 |
+
import cv2
|
36 |
+
from tensorflow.keras.models import load_model
|
37 |
+
import tensorflow as tf
|
38 |
+
from scipy.ndimage import gaussian_filter
|
39 |
|
40 |
# Page configuration with custom theme
|
41 |
st.set_page_config(
|