Commit ·
347fdb7
1
Parent(s): 658a429
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Load the data
|
| 2 |
df = pd.read_csv('insurance_data.csv')
|
| 3 |
|
|
|
|
| 1 |
+
import pandas as pd
|
| 2 |
+
from sklearn.linear_model import LinearRegression
|
| 3 |
+
from sklearn.preprocessing import LabelEncoder
|
| 4 |
+
import gradio as gr
|
| 5 |
+
import numpy as np
|
| 6 |
+
|
| 7 |
+
|
| 8 |
# Load the data
|
| 9 |
df = pd.read_csv('insurance_data.csv')
|
| 10 |
|