-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Koorosh Aslansefat <[email protected]>
- Loading branch information
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="description" content="Explainability of Point Cloud Neural Networks Using SMILE"> | ||
<meta name="keywords" content="XAI, Explainability, SMILE, Point Cloud, SafeML"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Explainability with SMILE</title> | ||
|
||
<!-- Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PYVRSFMDRL"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){ dataLayer.push(arguments); } | ||
gtag('js', new Date()); | ||
gtag('config', 'G-PYVRSFMDRL'); | ||
</script> | ||
|
||
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro" rel="stylesheet"> | ||
<link rel="stylesheet" href="./static/css/bulma.min.css"> | ||
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css"> | ||
<link rel="icon" href="./static/images/favicon.svg"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
</head> | ||
<body> | ||
|
||
<nav class="navbar" role="navigation" aria-label="main navigation"> | ||
<div class="navbar-brand"> | ||
<a class="navbar-item" href="https://koo-ec.github.io/"> | ||
<i class="fas fa-home"></i> | ||
</a> | ||
</div> | ||
</nav> | ||
|
||
<section class="hero"> | ||
<div class="hero-body"> | ||
<div class="container"> | ||
<h1 class="title">Explainability of Point Cloud Neural Networks Using SMILE</h1> | ||
<p class="subtitle">Statistical Model-Agnostic Interpretability with Local Explanations</p> | ||
<div class="content"> | ||
<img src="https://github.com/koo-ec/xwhy/blob/main/docs/graphics/XWhy_Logo_v1.png" alt="XWhy Logo"> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section class="section"> | ||
<div class="container"> | ||
<h2 class="title is-3">Abstract</h2> | ||
<p>This study explores the implementation of SMILE for Point Cloud offering enhanced robustness and interpretability, particularly when Anderson-Darling distance is used. The approach demonstrates superior performance in terms of fidelity loss, R<sup>2</sup> scores, and robustness across various kernel widths, perturbation numbers, and clustering configurations.</p> | ||
<p>Additionally, a stability analysis using the Jaccard index establishes a benchmark for model stability in point cloud classification, identifying dataset biases crucial for safety-critical applications like autonomous driving.</p> | ||
</div> | ||
</section> | ||
|
||
<section class="section" id="BibTeX"> | ||
<div class="container"> | ||
<h2 class="title">BibTeX</h2> | ||
<pre><code> | ||
@article{aslansefat2024pointcloud, | ||
title={Explainability of Point Cloud Neural Networks Using SMILE: Statistical Model-Agnostic Interpretability with Local Explanations}, | ||
author={Aslansefat, Koorosh and others}, | ||
journal={IEEE Software}, | ||
year={2024}, | ||
publisher={IEEE} | ||
} | ||
</code></pre> | ||
</div> | ||
</section> | ||
|
||
<footer class="footer"> | ||
<div class="content has-text-centered"> | ||
<p>Licensed under <a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>. <a href="https://github.com/koo-ec/xwhy">Source Code</a>.</p> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
</html> |