Spaces:
Runtime error
Runtime error
Update
Browse files- scripts/app.py +4 -1
scripts/app.py
CHANGED
@@ -1,13 +1,16 @@
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
import numpy as np
|
4 |
-
import
|
|
|
|
|
5 |
import time
|
6 |
import plotly.express as px
|
7 |
from Univariate import Univariate_Models
|
8 |
|
9 |
st.set_page_config(layout="wide")
|
10 |
|
|
|
11 |
|
12 |
def GetFile():
|
13 |
uploaded_file = st.file_uploader("", type=["csv", 'json'])
|
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
import numpy as np
|
4 |
+
import sklearn4
|
5 |
+
import os
|
6 |
+
import matplotlib
|
7 |
import time
|
8 |
import plotly.express as px
|
9 |
from Univariate import Univariate_Models
|
10 |
|
11 |
st.set_page_config(layout="wide")
|
12 |
|
13 |
+
os.environ['MPLCONFIGDIR'] = os.getcwd() + "/configs/"
|
14 |
|
15 |
def GetFile():
|
16 |
uploaded_file = st.file_uploader("", type=["csv", 'json'])
|