Skip to content

Commit 506f314

Browse files
committed
update
1 parent f3b838a commit 506f314

1 file changed

Lines changed: 41 additions & 14 deletions

File tree

index.html

Lines changed: 41 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@
3737
<a href="#frontends">Frontends</a>
3838
<a href="#backends">Backends</a>
3939
<a href="#losses">Losses</a>
40+
<a href="#augmentations">Augmentations</a>
4041
</div>
4142
</div>
4243
<a href="#quickstart">Quickstart</a>
43-
44+
<a href="https://github.com/Yaselley/deepfense-framework/tree/master/recipes" target="_blank">Recipes</a>
4445
<a href="https://deepfense.readthedocs.io/" target="_blank">Docs</a>
4546
</div>
4647

@@ -86,7 +87,7 @@ <h2>Fundamental Building Blocks</h2>
8687
<i class="fas fa-cubes"></i>
8788
</div>
8889
<h3>Modular Design</h3>
89-
<p>Decoupled architecture allows you to swap Wav2Vec2 for WavLM or AASIST for ResNet with a single
90+
<p>Decoupled architecture allows you to swap Wav2Vec2 for WavLM or AASIST for MLP with a single
9091
line of config.</p>
9192
</div>
9293

@@ -104,8 +105,7 @@ <h3>Configuration-Driven</h3>
104105
<i class="fas fa-wave-square"></i>
105106
</div>
106107
<h3>Advanced Augmentations</h3>
107-
<p>Built-in pipelines for RawBoost, RIR reverb, Codec simulation, and noise addition to robustify
108-
your models.</p>
108+
<p>Built-in pipelines for RawBoost, RIR reverb, Codec simulation, Morph, AdditiveNoise, SpeedPerturb, AddBabble, DropFreq, DropChunk, and more to robustify your models.</p>
109109
</div>
110110

111111
<div class="card">
@@ -164,21 +164,23 @@ <h3>Frontends</h3>
164164
<h3>Backends</h3>
165165
<ul class="module-list">
166166
<li>AASIST</li>
167-
<li>ECAPA-TDNN</li>
167+
<li>ECAPA_TDNN</li>
168168
<li>RawNet2</li>
169-
<li>Res2Net</li>
170169
<li>MLP</li>
170+
<li>Pool</li>
171+
<li>Nes2Net</li>
172+
<li>TCM</li>
171173
</ul>
172174
</div>
173175

174176
<div id="losses" class="module-card">
175177
<div class="module-icon"><i class="fas fa-scale-balanced"></i></div>
176178
<h3>Loss Functions</h3>
177179
<ul class="module-list">
180+
<li>CrossEntropy</li>
178181
<li>OC-Softmax</li>
179182
<li>AM-Softmax</li>
180183
<li>A-Softmax</li>
181-
<li>Cross Entropy</li>
182184
</ul>
183185
</div>
184186

@@ -193,6 +195,23 @@ <h3>Optimizers</h3>
193195
<li>SAM</li>
194196
</ul>
195197
</div>
198+
199+
<div id="augmentations" class="module-card">
200+
<div class="module-icon"><i class="fas fa-magic"></i></div>
201+
<h3>Augmentations</h3>
202+
<ul class="module-list">
203+
<li>RawBoost</li>
204+
<li>RIR</li>
205+
<li>Codec</li>
206+
<li>Morph</li>
207+
<li>AdditiveNoise</li>
208+
<li>SpeedPerturb</li>
209+
<li>AddBabble</li>
210+
<li>DropFreq</li>
211+
<li>DropChunk</li>
212+
<li>DoClip</li>
213+
</ul>
214+
</div>
196215
</div>
197216
</div>
198217
</section>
@@ -227,7 +246,7 @@ <h3>Processed Datasets</h3>
227246
<p>We host cleaned and aligned versions of major deepfake datasets (ASVspoof 2019/2021, In-the-wild)
228247
for immediate use.</p>
229248
<div class="mt-4">
230-
<a href="https://huggingface.co/deepfense" target="_blank" class="btn btn-outline">View
249+
<a href="https://huggingface.co/DeepFense" target="_blank" class="btn btn-outline">View
231250
Datasets</a>
232251
</div>
233252
</div>
@@ -260,11 +279,17 @@ <h2>Installation</h2>
260279

261280
<div class="text-center mt-4">
262281
<p style="margin-bottom: 1rem; color: var(--text-light);">Want to learn more? Check out our step-by-step
263-
tutorials.</p>
264-
<a href="https://github.com/Yaselley/deepfense-framework/tree/master/docs" target="_blank"
265-
class="btn btn-outline">
266-
<i class="fab fa-github"></i> View Tutorials
267-
</a>
282+
tutorials and pre-configured recipes.</p>
283+
<div style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;">
284+
<a href="https://github.com/Yaselley/deepfense-framework/tree/master/docs" target="_blank"
285+
class="btn btn-outline">
286+
<i class="fab fa-github"></i> View Tutorials
287+
</a>
288+
<a href="https://github.com/Yaselley/deepfense-framework/tree/master/recipes" target="_blank"
289+
class="btn btn-outline">
290+
<i class="fas fa-book"></i> View Recipes
291+
</a>
292+
</div>
268293
</div>
269294
</div>
270295
</section>
@@ -290,8 +315,10 @@ <h2>Join the Community</h2>
290315
</div>
291316
<div class="footer-links">
292317
<a href="https://github.com/Yaselley/deepfense-framework">GitHub</a>
293-
<a href="https://deepfense-framework.readthedocs.io/">Documentation</a>
318+
<a href="https://deepfense.readthedocs.io/">Documentation</a>
294319
<a href="https://pypi.org/project/deepfense/">PyPI</a>
320+
<a href="https://huggingface.co/DeepFense">HuggingFace</a>
321+
<a href="https://github.com/Yaselley/deepfense-framework/tree/master/recipes">Recipes</a>
295322
</div>
296323
<div class="copyright">
297324
&copy; 2025 DeepFense Team. Licensed under Apache 2.0.

0 commit comments

Comments
 (0)