-
Notifications
You must be signed in to change notification settings - Fork 0
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
9a3cd5b
commit ed9b83b
Showing
4 changed files
with
152 additions
and
21 deletions.
There are no files selected for viewing
Binary file not shown.
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
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,139 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link href="resources/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="./resources/bulma.min.css"> | ||
<link rel="stylesheet" href="./resources/bulma-carousel.min.css"> | ||
<link rel="stylesheet" href="./resources/bulma-slider.min.css"> | ||
<link rel="stylesheet" href="./resources/fontawesome.all.min.css"> | ||
<link rel="stylesheet" href="./resources/index.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"> | ||
|
||
|
||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<script defer src="./resources/fontawesome.all.min.js"></script> | ||
<script src="./resources/bulma-carousel.min.js"></script> | ||
<script src="./resources/bulma-slider.min.js"></script> | ||
<script src="./resources/index.js"></script> | ||
|
||
<title>Taming Data and Transformers for Audio Generation</title> | ||
|
||
<style> | ||
/* Hiding the default video controls */ | ||
#myVideo { | ||
outline: none; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<section class="jumbotron text-center"> | ||
<h1 class="publication-title">Taming Data and Transformers for Audio Generation</h1> | ||
|
||
<!-- <br/> | ||
<div class="conference"> | ||
<p>Arxiv 2024</p> | ||
</div> --> | ||
|
||
<br /> | ||
<div class="is-size-5 publication-authors"> | ||
<span class="author-block"> | ||
<p class="author"> | ||
<span class="author"><a target="_blank" href="https://moayedha.com/">Moayed | ||
Haji-Ali,</a> </span> | ||
<span class="author"><a target="_blank" href=https://www.willimenapace.com>Willi | ||
Menapace,</a> </span> | ||
<span class="author"><a target="_blank" | ||
href=https://aliaksandrsiarohin.github.io/aliaksandr-siarohin-website />Aliaksandr | ||
Siarohin,</a> </span> | ||
<span class="author"><a target="_blank" href=https://www.guhabalakrishnan.com>Guha | ||
Balakrishnan,</a> </span> | ||
<span class="author"><a target="_blank" href=http://www.stulyakov.com>Sergey | ||
Tulyakov,</a> </span> | ||
<span class="author"><a target="_blank" href="https://vislang.ai/">Vicente Ordonez</a> </span> | ||
</p> | ||
<span class="author-block"> | ||
</div> | ||
|
||
<div class="collabs" , align-items="center"> | ||
<img class="rice-icon" src="./assets/logos/rice.svg" alt="Rice University Logo" , height="10px"> | ||
<div class="snap"> | ||
<img src="./assets/logos/snap.png" alt="Snap Research Logo"> | ||
<span>Snap Research</span> | ||
</div> | ||
</div> | ||
|
||
|
||
<div id="fixed-nav"> | ||
<!-- Left-aligned content --> | ||
<div class="left-content"> | ||
<div class="nav-link" style="padding-right:0%"> | ||
<a href="./index.html"> | ||
<img src="assets/icons/sound-waves.png" alt="Waveform Icon" style="height: 60px; padding-right:0;"> <!-- Adjust the src and style as needed --> | ||
GenAU | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<!-- Right-aligned content --> | ||
<div class="right-content"> | ||
<div id="menu-button" class="nav-link" style="cursor: pointer;">☰</div> <!-- Menu icon --> | ||
<div id="nav-links" class="nav-links"> | ||
<div class="nav-link"><a href="assets/paper/taming_data_transformers.pdf">Paper</a></div> | ||
<div class="nav-link"><a href="https://github.com/snap-research/GenAU">Code</a></div> | ||
<div class="nav-link"><a href="#">Demo</a></div> | ||
<!-- <div class="nav-link"><a href="#samples">Samples</a></div> --> | ||
<div class="nav-link"><a href="comparisons.html">Comparisons</a></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<div class="resources", style="padding-top: 2%;"> | ||
<div class="resource-item"> | ||
<a class="paper-btn resource-text" href="assets/paper/taming_data_transformers.pdf"> | ||
<!-- <img src="./assets/icons/arxiv-logo.png" alt="Paper" class="resource-icon"> --> | ||
Paper | ||
</a> | ||
</div> | ||
<div class="resource-item"> | ||
<a class="paper-btn resource-text" href="#"> | ||
<!-- <img src="./assets/icons/github-mark.png" alt="Code" class="resource-icon"> --> | ||
Code (Coming soon!) | ||
</a> | ||
</div> | ||
|
||
<div class="resource-item resource-text"> | ||
<a class="paper-btn" href="#">Demo (Coming soon!)</a> | ||
</div> | ||
|
||
|
||
<!-- <div class="resource-item resource-text"> | ||
<a class="paper-btn" href="./samples.html">Ours Samples</a> | ||
</div> | ||
<div class="resource-item resource-text"> | ||
<a class="paper-btn" href=".">Comparisons</a> | ||
</div> --> | ||
|
||
</div> | ||
|
||
|
||
|
||
</section> | ||
|
||
|
||
|
||
|
||
</body> | ||
|
||
</html> |
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