AXL14 commited on
Commit
d51b408
·
1 Parent(s): a5b0a3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -27,7 +27,7 @@ from sklearn.decomposition import PCA
27
  ########################################################################################################################
28
  start_time = time.time()
29
  # Title for the webpage
30
- tit1, tit2 = st.beta_columns((4, 1))
31
  tit1.markdown("<h1 style='text-align: center;'><u>Activity/ Pain Prediction With Wearable Technology Data</u> </h1>",
32
  unsafe_allow_html=True)
33
  st.sidebar.title("Dataset and ML Classifiers")
@@ -73,7 +73,7 @@ X, Y = selected_dataset(dataset_select)
73
 
74
  # Charts
75
  def plot_op(dataset_select):
76
- col1, col2 = st.beta_columns((1, 5))
77
  plt.figure(figsize=(12, 3))
78
  plt.title("Classes in 'Y'")
79
  if dataset_select == "AppleWatch Data":
 
27
  ########################################################################################################################
28
  start_time = time.time()
29
  # Title for the webpage
30
+ tit1, tit2 = st.columns((4, 1))
31
  tit1.markdown("<h1 style='text-align: center;'><u>Activity/ Pain Prediction With Wearable Technology Data</u> </h1>",
32
  unsafe_allow_html=True)
33
  st.sidebar.title("Dataset and ML Classifiers")
 
73
 
74
  # Charts
75
  def plot_op(dataset_select):
76
+ col1, col2 = st.columns((1, 5))
77
  plt.figure(figsize=(12, 3))
78
  plt.title("Classes in 'Y'")
79
  if dataset_select == "AppleWatch Data":