forked from asteroid-team/asteroid-team.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
157 lines (116 loc) · 6.37 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Asteroid</title>
<meta name="description" content="The PyTorch-based audio source separation toolkit for researchers">
<meta name="author" content="Asteroid-Team">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top">
<!-- Asteroid welcome page
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-image-src="images/hero-bg-4.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=top>
<div class="home-content">
<div class="row home-content__main">
<img src="logos/asteroid_logo_dark.svg" alt="Homepage">
<p class="text-center">
The PyTorch-based audio source separation toolkit for researchers
</p>
</div>
</div>
<ul class="home-sidelinks">
<li><a class="smoothscroll" href="#about">About<span>know the project</span></a></li>
<li><a href="https://asteroid-team.github.io/asteroid/">Documentation <i class="fas fa-external-link-alt"></i><span>read the docs</span></a></li>
<li><a href="https://github.com/asteroid-team/asteroid">Github <i class="fab fa-github"></i></icon> <span>check out the repo</span></a></li>
<li><a href="https://zenodo.org/communities/asteroid-models?page=1&size=20">Models <span>use our pretrained models</span></a></li>
</ul>
<a href="#about" class="home-scroll smoothscroll">
<span class="home-scroll__icon"></span>
</a>
</section>
<!-- What is asteroid?
================================================== -->
<section id='about' class="s-services light-gray">
<div class="row section-header" data-aos="fade-up">
<div class="col-full text-center">
<h1 class="display-1">What is <img class="logo-inline" src="logos/asteroid_logo_dark.svg" alt="Asteroid?"> ?</h1>
</div>
</div>
<div class="row" data-aos="fade-up">
<div class="col-full text-center">
<p class="lead">
<img class="logo-inline-small" src="logos/asteroid_logo_dark.svg" alt="Asteroid"> is a Pytorch-based audio source separation toolkit that enables fast experimentation on common datasets. It comes with a source code thats supports a large range of datasets and architectures, and a set of recipes to reproduce some important papers.
</p>
</div>
</div>
<div class="row services-list block-1-3 block-m-1-2 block-tab-full">
<div class="col-block service-item text-center" data-aos="fade-up">
<div class="service-icon service-icon--brand-identity">
<i class="fas fa-object-group"></i>
</div>
<div class="service-text">
<h3 class="h4">Modularity</h3>
<p>
Building blocks are thought and designed to be seamlessly plugged together.
Filterbanks, encoders, maskers, decoders and losses are all common building blocks
that can be combined in a flexible way to create new systems.
</p>
</div>
</div>
<div class="col-block service-item text-center" data-aos="fade-up">
<div class="service-icon service-icon--illustration">
<i class="fas fa-puzzle-piece"></i>
</div>
<div class="service-text">
<h3 class="h4">Extensibility</h3>
<p>
Extending the toolkit with new features is simple. Add a new filterbank, separator architecture,
dataset or even recipe very easily.
</p>
</div>
</div>
<div class="col-block service-item text-center" data-aos="fade-up">
<div class="service-icon service-icon--web-design">
<i class="fas fa-exchange-alt"></i>
</div>
<div class="service-text">
<h3 class="h4">Reproducibility</h3>
<p>
Recipes provide an easy way to reproduce results with data preparation, system design,
training and evaluation in a single script. This is an essential tool for the community!
</p>
</div>
</div>
</div>
<div class="cl-go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon-arrow-up" aria-hidden="true"></i></a>
</div>
</section>
<div class="row text-center bg-setup">
<div class="col-full cl-copyright">
<span>
Copyright ©<script>document.write(new Date().getFullYear());</script>, asteroid-team. All rights reserved | Asteroid template by <a href="https://colorlib.com" target="_blank">Colorlib</a>
</span>
</div>
</div>
<!-- Loding
================================================== -->
<div id="preloader">
<div id="loader">
</div>
</div>
<!-- JS scripts
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>