Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,10 @@ with app:
|
|
85 |
|
86 |
# ---------------- MODEL EVALUATION TAB ---------------- #
|
87 |
with model_eval:
|
88 |
-
st.header("
|
|
|
|
|
|
|
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"])
|