Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linked gan algo #150

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs/algorithms/generative-adversarial-networks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,36 @@
</div>
</a>

<!--BASIC GAN -->
<a href="basic-gan" style="padding: 0 2px 0 16px; background-color: rgba(39, 39, 43, 0.4); border: 1px solid rgba(76, 76, 82, 0.4); border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.2s; display: flex; align-items: center;">
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20231122180335/gans_gfg-(1).jpg" alt="" style="width: 300px; height: 150px; object-fit: cover; border-radius: 10px;" />
<div style="padding: 15px;">
<h2 style="margin: 0; font-size: 20px;">Basic Generative Adversarial Network</h2>
<p style="font-size: 16px;">Hand writing digit resembler from MNIST dataset</p>
<p style="font-size: 12px;">📅 2025-01-15 | ⏱️ 4 mins</p>
</div>
</a>

<!--CONDITIONAL GAN -->
<a href="c-gan" style="padding: 0 2px 0 16px; background-color: rgba(39, 39, 43, 0.4); border: 1px solid rgba(76, 76, 82, 0.4); border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.2s; display: flex; align-items: center;">
<img src="https://db0dce98.rocketcdn.me/en/files/2023/09/cgan-1.webp" alt="" style="width: 300px; height: 150px; object-fit: cover; border-radius: 10px;" />
<div style="padding: 15px;">
<h2 style="margin: 0; font-size: 20px;">Conditional Generative Adversarial Network</h2>
<p style="font-size: 16px;">Controlled Image synthesis</p>
<p style="font-size: 12px;">📅 2025-01-15 | ⏱️ 4 mins</p>
</div>
</a>

<!-- EB GAN -->
<a href="eb-gan" style="padding: 0 2px 0 16px; background-color: rgba(39, 39, 43, 0.4); border: 1px solid rgba(76, 76, 82, 0.4); border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.2s; display: flex; align-items: center;">
<img src="https://image.slidesharecdn.com/ebgan-181209142411/75/Ebgan-6-2048.jpg" alt="" style="width: 300px; height: 150px; object-fit: cover; border-radius: 10px;" />
<div style="padding: 15px;">
<h2 style="margin: 0; font-size: 20px;">Energy Based Generative Adversarial Network</h2>
<p style="font-size: 16px;">Minimize the energy functiom to more stable training process.</p>
<p style="font-size: 12px;">📅 2025-01-15 | ⏱️ 4 mins</p>
</div>
</a>



</div>
Loading