-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
25 lines (20 loc) · 1011 Bytes
/
app.py
File metadata and controls
25 lines (20 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import os
from dashboard_core import ProjectConfig, run_project_app
CONFIG = ProjectConfig(
key="Project 06",
title="Fraud Detection",
subtitle="Transaction anomaly and fraud risk intelligence",
icon="🕵️",
domain="FinTech security and transaction monitoring",
objective="Detect suspicious transactions using supervised and anomaly detection models.",
business_value="Reduces financial leakage and improves fraud operations response speed.",
prediction_label="Fraud Risk",
highlights=[
"Combines anomaly detection and predictive models for layered fraud defense.",
"Supports high-throughput transaction scoring with batch prediction mode.",
"Improves operational review focus by ranking suspicious activities.",
"Uses benchmark visibility to guide model tradeoff decisions by risk teams.",
"Delivers deployment-oriented UX aligned with fraud operations workflows.",
],
)
run_project_app(CONFIG, os.path.dirname(__file__))