Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
@@ -8,5 +8,83 @@ sdk_version: 4.13.0
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
11 |
+
<html>
|
12 |
+
<head>
|
13 |
+
<title>FraudSenseXAI</title>
|
14 |
+
<style>
|
15 |
+
body {
|
16 |
+
font-family: 'Arial', sans-serif;
|
17 |
+
margin: 0;
|
18 |
+
padding: 0 0 100px; /* Adjust bottom padding */
|
19 |
+
background-color: #f4f4f4;
|
20 |
+
color: #333;
|
21 |
+
line-height: 1.6;
|
22 |
+
}
|
23 |
+
.container {
|
24 |
+
width: 80%;
|
25 |
+
margin: auto;
|
26 |
+
overflow: hidden;
|
27 |
+
padding-bottom: 120px; /* Additional padding to push content up */
|
28 |
+
}
|
29 |
+
h1, h2 {
|
30 |
+
color: #0056b3;
|
31 |
+
}
|
32 |
+
h1 {
|
33 |
+
font-size: 2.5em;
|
34 |
+
margin-bottom: 10px;
|
35 |
+
}
|
36 |
+
h2 {
|
37 |
+
font-size: 1.8em;
|
38 |
+
margin-top: 30px;
|
39 |
+
}
|
40 |
+
p {
|
41 |
+
font-size: 1.1em;
|
42 |
+
}
|
43 |
+
ul {
|
44 |
+
list-style-type: none;
|
45 |
+
padding: 0;
|
46 |
+
}
|
47 |
+
ul li {
|
48 |
+
background: #e9ecef;
|
49 |
+
padding: 10px;
|
50 |
+
margin-bottom: 10px;
|
51 |
+
border-radius: 5px;
|
52 |
+
}
|
53 |
+
ul li strong {
|
54 |
+
color: #007bff;
|
55 |
+
}
|
56 |
+
footer {
|
57 |
+
background-color: #333;
|
58 |
+
color: #fff;
|
59 |
+
text-align: center;
|
60 |
+
padding: 10px;
|
61 |
+
position: fixed;
|
62 |
+
left: 0;
|
63 |
+
bottom: 0;
|
64 |
+
width: 100%;
|
65 |
+
}
|
66 |
+
</style>
|
67 |
+
</head>
|
68 |
+
<body>
|
69 |
+
<div class="container">
|
70 |
+
<h1>FraudSenseXAI</h1>
|
71 |
+
<h2>Overview</h2>
|
72 |
+
<p><strong>FraudSenseXAI</strong> is an innovative Machine Learning (ML) and Explainable Artificial Intelligence (XAI) application, developed as a part of an MSc final project by Othniel Obasi. This application is dedicated to detecting and analyzing fraudulent activities, with a strong emphasis on the interpretability and transparency of its AI models.</p>
|
73 |
+
<h2>Key Features</h2>
|
74 |
+
<ul>
|
75 |
+
<li><strong>Robust Fraud Detection:</strong> Utilizes advanced ML techniques to identify fraudulent transactions accurately.</li>
|
76 |
+
<li><strong>Explainable AI Elements:</strong> Employs XAI approaches to provide clear insights into the decision-making processes of the AI.</li>
|
77 |
+
<li><strong>Interactive Web Interface:</strong> Features a user-friendly web application for easy access and interpretation of results.</li>
|
78 |
+
<li><strong>Dynamic Visualizations:</strong> Integrates Plotly for interactive and insightful data visualizations.</li>
|
79 |
+
<li><strong>Applicability Across Sectors:</strong> Suitable for use in finance, e-commerce, digital banking, and other sectors.</li>
|
80 |
+
</ul>
|
81 |
+
<h2>About the Author</h2>
|
82 |
+
<p>This project is an MSc Dissertation on the XAI Application of Fraud Detection, authored by Othniel Obasi. It represents a significant contribution to the field of AI, offering practical solutions and valuable insights for the detection of fraudulent activities using AI.</p>
|
83 |
+
</div>
|
84 |
+
<footer>
|
85 |
+
<p>FraudSenseXAI © 2024</p>
|
86 |
+
</footer>
|
87 |
+
</body>
|
88 |
+
</html>
|
89 |
|
90 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|