Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,12 +9,13 @@ import gradio as gr
|
|
| 9 |
|
| 10 |
import pandas as pd
|
| 11 |
from math import sqrt;
|
|
|
|
| 12 |
from sklearn import preprocessing
|
| 13 |
from sklearn.ensemble import RandomForestClassifier
|
| 14 |
from sklearn.linear_model import LogisticRegression;
|
| 15 |
from sklearn.metrics import accuracy_score, r2_score, confusion_matrix, mean_absolute_error, mean_squared_error, f1_score, log_loss
|
| 16 |
from sklearn.model_selection import train_test_split
|
| 17 |
-
|
| 18 |
import matplotlib.pyplot as plt
|
| 19 |
import seaborn as sns
|
| 20 |
import joblib
|
|
|
|
| 9 |
|
| 10 |
import pandas as pd
|
| 11 |
from math import sqrt;
|
| 12 |
+
import numpy as np
|
| 13 |
from sklearn import preprocessing
|
| 14 |
from sklearn.ensemble import RandomForestClassifier
|
| 15 |
from sklearn.linear_model import LogisticRegression;
|
| 16 |
from sklearn.metrics import accuracy_score, r2_score, confusion_matrix, mean_absolute_error, mean_squared_error, f1_score, log_loss
|
| 17 |
from sklearn.model_selection import train_test_split
|
| 18 |
+
|
| 19 |
import matplotlib.pyplot as plt
|
| 20 |
import seaborn as sns
|
| 21 |
import joblib
|