CristopherWVSU commited on
Commit
eceb2da
·
verified ·
1 Parent(s): 4ed9a17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -85,7 +85,10 @@ with app:
85
 
86
  # ---------------- MODEL EVALUATION TAB ---------------- #
87
  with model_eval:
88
- st.header("📊 Model Performance Metrics")
 
 
 
89
 
90
  # Sidebar to choose which model's evaluation to display
91
  eval_model_choice = st.sidebar.radio("Select Model for Evaluation", ["Isolation Forest", "One-Class SVM", "Local Outlier Factor"])
 
85
 
86
  # ---------------- MODEL EVALUATION TAB ---------------- #
87
  with model_eval:
88
+ st.header("Model Evaluation")
89
+ st.write("The Anomaly Detection model was trained to classify bank transactions as 'Anomalous' or 'Normal'. The dataset was taken from Kaggle.")
90
+ st.write("Dataset by Vala Khorasani : [Kaggle Link](https://www.kaggle.com/datasets/valakhorasani/bank-transaction-dataset-for-fraud-detection)")
91
+
92
 
93
  # Sidebar to choose which model's evaluation to display
94
  eval_model_choice = st.sidebar.radio("Select Model for Evaluation", ["Isolation Forest", "One-Class SVM", "Local Outlier Factor"])