-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5355fd
commit 0d53866
Showing
7 changed files
with
445 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,198 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="description" | ||
content=""> | ||
<meta name="keywords" content="Federated Learning, Knowledge Distillation, Out-of-Distribution Detection"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Energy-based Knowledge Distillation for Communication-Efficient Federated Learning</title> | ||
|
||
<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="stylesheet" | ||
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"> | ||
<link rel="stylesheet" href="./static/css/index.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> | ||
<script defer src="./static/js/fontawesome.all.min.js"></script> | ||
<script src="./static/js/index.js"></script> | ||
</head> | ||
<body> | ||
|
||
<nav class="navbar" role="navigation" aria-label="main navigation"> | ||
<div class="navbar-brand"> | ||
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"> | ||
<span aria-hidden="true"></span> | ||
<span aria-hidden="true"></span> | ||
<span aria-hidden="true"></span> | ||
</a> | ||
</div> | ||
<div class="navbar-menu"> | ||
<div class="navbar-start" style="flex-grow: 1; justify-content: center;"> | ||
<a class="navbar-item" href="https://azu-kitsu.com"> | ||
<span class="icon"> | ||
<i class="fas fa-home"></i> | ||
</span> | ||
</a> | ||
|
||
<div class="navbar-item has-dropdown is-hoverable"> | ||
<a class="navbar-link"> | ||
More Research | ||
</a> | ||
<div class="navbar-dropdown"> | ||
<a class="navbar-item" href="/"> | ||
DSFL+ | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</nav> | ||
|
||
|
||
<section class="hero"> | ||
<div class="hero-body"> | ||
<div class="container is-max-desktop"> | ||
<div class="columns is-centered"> | ||
<div class="column has-text-centered"> | ||
<h1 class="title is-1 publication-title">Energy-based Knowledge Distillation for Communication-Efficient Federated Learning</h1> | ||
<div class="is-size-5 publication-authors"> | ||
<span class="author-block"> | ||
<a href="https://azu-kitsu.com">Kitsuya Azuma</a><sup>1</sup>,</span> | ||
<span class="author-block"> | ||
<a href="https://researchmap.jp/tomo_miyazaki">Tomo Miyazaki</a><sup>2</sup>,</span> | ||
<span class="author-block"> | ||
<a href="https://researchmap.jp/read0180306">Shinichiro Omachi</a><sup>2</sup>, | ||
</span> | ||
</div> | ||
|
||
<div class="is-size-5 publication-authors"> | ||
<span class="author-block"><sup>1</sup>School of Engineering, Tohoku University,</span> | ||
<span class="author-block"><sup>2</sup>Graduate School of Engineering, Tohoku University</span> | ||
</div> | ||
|
||
<div class="column has-text-centered"> | ||
<div class="publication-links"> | ||
<!-- Code Link. --> | ||
<span class="link-block"> | ||
<a href="https://github.com/Kitsuya0828/DSFLplus" | ||
class="external-link button is-normal is-rounded is-dark"> | ||
<span class="icon"> | ||
<i class="fab fa-github"></i> | ||
</span> | ||
<span>Code</span> | ||
</a> | ||
</span> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
<section class="section"> | ||
<div class="container is-max-desktop"> | ||
<!-- Abstract. --> | ||
<div class="columns is-centered has-text-centered"> | ||
<div class="column is-four-fifths"> | ||
<h2 class="title is-3">Abstract</h2> | ||
<div class="content has-text-justified"> | ||
<p> | ||
Federated Learning (FL) is a decentralized machine learning setting where many devices collaboratively train a global model without exposing their local training data. While the most used FL methods average clients' model parameters, several distillation-based methods have been proposed to aggregate model outputs for open unlabeled datasets and transfer the knowledge, which can significantly reduce the communication costs. | ||
</p> | ||
<p> | ||
In this study, we propose a new distillation-based method called DS-FL+, which focus on Energy score. The proposed method utilizes the Energy score used for out-of-distribution detection to perform thresholding, so that clients only send predictions to the server for relatively well-trained data. Further experiments were conducted under two different Non-IID settings to investigate the relationship between threshold value and convergence speed. | ||
</p> | ||
<p> | ||
Experimental results demonstrate our proposed DS-FL+ dramatically reduces the communication costs while accelerating the learning convergence under Non-IID settings. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<!--/ Abstract. --> | ||
</div> | ||
</section> | ||
|
||
<section class="section"> | ||
<div class="container is-max-desktop"> | ||
<!-- Abstract. --> | ||
<div class="columns is-centered has-text-centered"> | ||
<div class="column is-four-fifths"> | ||
<h2 class="title is-3">Method</h2> | ||
<div class="content has-text-justified"> | ||
<p> | ||
To be written. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<!--/ Abstract. --> | ||
</div> | ||
</section> | ||
|
||
<section class="section"> | ||
<div class="container is-max-desktop"> | ||
<!-- Abstract. --> | ||
<div class="columns is-centered has-text-centered"> | ||
<div class="column is-four-fifths"> | ||
<h2 class="title is-3">Results</h2> | ||
<div class="content has-text-justified"> | ||
<p> | ||
To be written. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<!--/ Abstract. --> | ||
</div> | ||
</section> | ||
|
||
|
||
<!-- | ||
<section class="section" id="BibTeX"> | ||
<div class="container is-max-desktop content"> | ||
<h2 class="title">BibTeX</h2> | ||
<pre><code>@article{park2021nerfies, | ||
author = {Park, Keunhong and Sinha, Utkarsh and Barron, Jonathan T. and Bouaziz, Sofien and Goldman, Dan B and Seitz, Steven M. and Martin-Brualla, Ricardo}, | ||
title = {Nerfies: Deformable Neural Radiance Fields}, | ||
journal = {ICCV}, | ||
year = {2021}, | ||
}</code></pre> | ||
</div> | ||
</section> --> | ||
|
||
|
||
<footer class="footer"> | ||
<div class="container"> | ||
<div class="content has-text-centered"> | ||
<!-- <a class="icon-link" | ||
href="./static/videos/nerfies_paper.pdf"> | ||
<i class="fas fa-file-pdf"></i> | ||
</a> --> | ||
<a class="icon-link" href="https://github.com/Kitsuya0828" class="external-link" disabled> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
</div> | ||
<div class="columns is-centered has-text-centered"> | ||
<div class="column is-8"> | ||
<div class="content"> | ||
<p> | ||
Thanks to <a href="https://github.com/nerfies/nerfies.github.io">Park, Keunhong</a> for the website template. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,157 @@ | ||
body { | ||
font-family: 'Noto Sans', sans-serif; | ||
} | ||
|
||
|
||
.footer .icon-link { | ||
font-size: 25px; | ||
color: #000; | ||
} | ||
|
||
.link-block a { | ||
margin-top: 5px; | ||
margin-bottom: 5px; | ||
} | ||
|
||
.dnerf { | ||
font-variant: small-caps; | ||
} | ||
|
||
|
||
.teaser .hero-body { | ||
padding-top: 0; | ||
padding-bottom: 3rem; | ||
} | ||
|
||
.teaser { | ||
font-family: 'Google Sans', sans-serif; | ||
} | ||
|
||
|
||
.publication-title { | ||
} | ||
|
||
.publication-banner { | ||
max-height: parent; | ||
|
||
} | ||
|
||
.publication-banner video { | ||
position: relative; | ||
left: auto; | ||
top: auto; | ||
transform: none; | ||
object-fit: fit; | ||
} | ||
|
||
.publication-header .hero-body { | ||
} | ||
|
||
.publication-title { | ||
font-family: 'Google Sans', sans-serif; | ||
} | ||
|
||
.publication-authors { | ||
font-family: 'Google Sans', sans-serif; | ||
} | ||
|
||
.publication-venue { | ||
color: #555; | ||
width: fit-content; | ||
font-weight: bold; | ||
} | ||
|
||
.publication-awards { | ||
color: #ff3860; | ||
width: fit-content; | ||
font-weight: bolder; | ||
} | ||
|
||
.publication-authors { | ||
} | ||
|
||
.publication-authors a { | ||
color: hsl(204, 86%, 53%) !important; | ||
} | ||
|
||
.publication-authors a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.author-block { | ||
display: inline-block; | ||
} | ||
|
||
.publication-banner img { | ||
} | ||
|
||
.publication-authors { | ||
/*color: #4286f4;*/ | ||
} | ||
|
||
.publication-video { | ||
position: relative; | ||
width: 100%; | ||
height: 0; | ||
padding-bottom: 56.25%; | ||
|
||
overflow: hidden; | ||
border-radius: 10px !important; | ||
} | ||
|
||
.publication-video iframe { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.publication-body img { | ||
} | ||
|
||
.results-carousel { | ||
overflow: hidden; | ||
} | ||
|
||
.results-carousel .item { | ||
margin: 5px; | ||
overflow: hidden; | ||
border: 1px solid #bbb; | ||
border-radius: 10px; | ||
padding: 0; | ||
font-size: 0; | ||
} | ||
|
||
.results-carousel video { | ||
margin: 0; | ||
} | ||
|
||
|
||
.interpolation-panel { | ||
background: #f5f5f5; | ||
border-radius: 10px; | ||
} | ||
|
||
.interpolation-panel .interpolation-image { | ||
width: 100%; | ||
border-radius: 5px; | ||
} | ||
|
||
.interpolation-video-column { | ||
} | ||
|
||
.interpolation-panel .slider { | ||
margin: 0 !important; | ||
} | ||
|
||
.interpolation-panel .slider { | ||
margin: 0 !important; | ||
} | ||
|
||
#interpolation-image-wrapper { | ||
width: 100%; | ||
} | ||
#interpolation-image-wrapper img { | ||
border-radius: 5px; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.