kheejay88 commited on
Commit
ceeb6ed
·
verified ·
1 Parent(s): d882877
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ from datasets import load_dataset
20
  @st.cache_data
21
  def load_data():
22
  train_df = load_dataset("kheejay88/phone_price_classification_train")["train"].to_pandas()
23
- test_df = load_dataset("kheejay88/phone_price_classification_test")["train"].to_pandas()
24
  return train_df, test_df
25
 
26
  train_df, test_df = load_data()
 
20
  @st.cache_data
21
  def load_data():
22
  train_df = load_dataset("kheejay88/phone_price_classification_train")["train"].to_pandas()
23
+ test_df = load_dataset("kheejay88/phone_price_classification_test")["test"].to_pandas()
24
  return train_df, test_df
25
 
26
  train_df, test_df = load_data()