Spaces:
Runtime error
Runtime error
commit
Browse files- eda.py +1 -5
- prediction.py +1 -4
eda.py
CHANGED
@@ -1,12 +1,8 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
import pandas as pd
|
3 |
import seaborn as sns
|
4 |
import matplotlib.pyplot as plt
|
5 |
-
import plotly.express as px
|
6 |
-
from PIL import Image
|
7 |
-
import numpy as np
|
8 |
-
import joblib
|
9 |
-
import json
|
10 |
|
11 |
st.set_page_config(
|
12 |
page_title='Model EDA',
|
|
|
1 |
import streamlit as st
|
2 |
+
from PIL import Image
|
3 |
import pandas as pd
|
4 |
import seaborn as sns
|
5 |
import matplotlib.pyplot as plt
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
st.set_page_config(
|
8 |
page_title='Model EDA',
|
prediction.py
CHANGED
@@ -1,12 +1,9 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
import pandas as pd
|
3 |
import seaborn as sns
|
4 |
import matplotlib.pyplot as plt
|
5 |
-
import plotly.express as px
|
6 |
-
from PIL import Image
|
7 |
-
import numpy as np
|
8 |
import joblib
|
9 |
-
import json
|
10 |
|
11 |
# Load All Files
|
12 |
with open('model.pkl', 'rb') as file_1:
|
|
|
1 |
import streamlit as st
|
2 |
+
from PIL import Image
|
3 |
import pandas as pd
|
4 |
import seaborn as sns
|
5 |
import matplotlib.pyplot as plt
|
|
|
|
|
|
|
6 |
import joblib
|
|
|
7 |
|
8 |
# Load All Files
|
9 |
with open('model.pkl', 'rb') as file_1:
|