Skip to content

Commit dc6263b

Browse files
Yassine El KheirYassine El Kheir
authored andcommitted
Add Data Pipeline and Reproducibility features
1 parent 068c26f commit dc6263b

2 files changed

Lines changed: 86 additions & 0 deletions

File tree

assets/css/style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,43 @@ h3 {
7474
}
7575

7676

77+
7778
.gradient-text {
7879
background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
7980
-webkit-background-clip: text;
8081
background-clip: text;
8182
-webkit-text-fill-color: transparent;
8283
}
8384

85+
/* Utilities */
86+
.mt-4 {
87+
margin-top: 1.5rem;
88+
}
89+
90+
/* Hugging Face Section */
91+
.huggingface-section {
92+
padding: 80px 0;
93+
background: #fffcf4;
94+
border-top: 1px solid #fef3c7;
95+
}
96+
97+
.hf-text {
98+
color: #facc15;
99+
font-size: 1.2em;
100+
vertical-align: middle;
101+
}
102+
103+
.hf-card {
104+
background: white;
105+
border: 1px solid #fef3c7;
106+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
107+
}
108+
109+
.hf-card:hover {
110+
border-color: #facc15;
111+
}
112+
113+
84114

85115
/* Buttons */
86116
.btn {

index.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,24 @@ <h3>Standardized Metrics</h3>
116116
<p>Automatic tracking of EER, minDCF, and F1-score with integrated WandB logging and checkpointing.
117117
</p>
118118
</div>
119+
120+
<div class="card">
121+
<div class="icon-box purple">
122+
<i class="fas fa-layer-group"></i>
123+
</div>
124+
<h3>Smart Data Pipeline</h3>
125+
<p>Robust handling of variable-length audio with smart padding, unified dataset construction, and
126+
efficient collation.</p>
127+
</div>
128+
129+
<div class="card">
130+
<div class="icon-box blue">
131+
<i class="fas fa-list-check"></i>
132+
</div>
133+
<h3>Reproducible Research</h3>
134+
<p>Unified reporting protocols ensure every experiment is tractable, comparable, and fully
135+
reproducible.</p>
136+
</div>
119137
</div>
120138
</div>
121139
</section>
@@ -178,6 +196,44 @@ <h3>Optimizers</h3>
178196
</div>
179197
</section>
180198

199+
<!-- Hugging Face Section -->
200+
<section class="huggingface-section">
201+
<div class="container">
202+
<div class="section-header">
203+
<h2>DeepFense <span class="hf-text"></span> Hugging Face</h2>
204+
<p>Accelerate your research with our open-source model zoo and processed datasets.</p>
205+
</div>
206+
207+
<div class="grid-2">
208+
<div class="card hf-card">
209+
<div class="icon-box yellow">
210+
<i class="fas fa-boxes-stacked"></i>
211+
</div>
212+
<h3>Pre-trained Models</h3>
213+
<p>Access state-of-the-art checkpoints for WavLM, EAT, and AASIST. Ready for inference or
214+
fine-tuning on your own data.</p>
215+
<div class="mt-4">
216+
<a href="https://huggingface.co/deepfense" target="_blank" class="btn btn-outline">Visit Model
217+
Zoo</a>
218+
</div>
219+
</div>
220+
221+
<div class="card hf-card">
222+
<div class="icon-box yellow">
223+
<i class="fas fa-database"></i>
224+
</div>
225+
<h3>Processed Datasets</h3>
226+
<p>We host cleaned and aligned versions of major deepfake datasets (ASVspoof 2019/2021, In-the-wild)
227+
for immediate use.</p>
228+
<div class="mt-4">
229+
<a href="https://huggingface.co/deepfense" target="_blank" class="btn btn-outline">View
230+
Datasets</a>
231+
</div>
232+
</div>
233+
</div>
234+
</div>
235+
</section>
236+
181237
<!-- Quickstart Section -->
182238
<section id="quickstart" class="quickstart">
183239
<div class="container">

0 commit comments

Comments
 (0)