Markndrei commited on
Commit
1758206
·
verified ·
1 Parent(s): f252425

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -41,6 +41,8 @@ def get_random_choices(df, feature, num_choices=5):
41
 
42
  def main():
43
  st.title("💳 Credit Card Fraud Detection Application")
 
 
44
 
45
  with st.expander("🔍 **About This Application**", expanded=False):
46
  st.markdown("""
@@ -64,8 +66,7 @@ def main():
64
 
65
  ✅ Let's get started!
66
  """)
67
- st.write ("‼️NOTE: Data Loading would take time because it fetches data from huggingface and it has 2 million rows in it. ‼️")
68
-
69
  df = load_data()
70
  model = load_model()
71
  scaler = load_scaler()
 
41
 
42
  def main():
43
  st.title("💳 Credit Card Fraud Detection Application")
44
+ st.write ("‼️NOTE: Data Loading would take time because it has 2 million rows in it. ‼️")
45
+ st.write ("‼️Worry not, upon loading, the dataset and models are cached so that it would be faster loading next time. ‼️")
46
 
47
  with st.expander("🔍 **About This Application**", expanded=False):
48
  st.markdown("""
 
66
 
67
  ✅ Let's get started!
68
  """)
69
+
 
70
  df = load_data()
71
  model = load_model()
72
  scaler = load_scaler()