-
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
Joa’s Mac
authored and
Joa’s Mac
committed
Oct 6, 2024
1 parent
fb2ba34
commit c376b5c
Showing
3 changed files
with
103 additions
and
59 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,90 @@ | ||
<html lang="en"><head> | ||
<meta charset="utf-8"> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport"> | ||
|
||
<title>LinguaNet: Neural Machine Translation from English to German</title> | ||
<meta content="" name="descriptison"> | ||
<meta content="" name="keywords"> | ||
|
||
<!-- Favicons --> | ||
<link href="../assets/img/favicon.png" rel="icon"> | ||
<link href="../assets/img/apple-touch-icon.png" rel="apple-touch-icon"> | ||
|
||
<!-- Google Fonts --> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet"> | ||
|
||
<!-- Vendor CSS Files --> | ||
<link href="../assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="../assets/vendor/icofont/icofont.min.css" rel="stylesheet"> | ||
<link href="../assets/vendor/remixicon/remixicon.css" rel="stylesheet"> | ||
<link href="../assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet"> | ||
<link href="../assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"> | ||
<link href="../assets/vendor/venobox/venobox.css" rel="stylesheet"> | ||
|
||
<!-- Template Main CSS File --> | ||
<link href="../assets/css/style.css" rel="stylesheet"> | ||
|
||
<!-- ======================================================= | ||
* Template Name: Personal - v2.2.0 | ||
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/ | ||
* Author: BootstrapMade.com | ||
* License: https://bootstrapmade.com/license/ | ||
======================================================== --> | ||
</head> | ||
|
||
<body data-gr-c-s-loaded="true"> | ||
|
||
<!-- ======= Portfolio Details ======= --> | ||
<main id="main"> | ||
<div id="portfolio-details" class="portfolio-details"> | ||
<div class="container"> | ||
|
||
<div class="row"> | ||
|
||
<div class="col-lg-12 portfolio-info"> | ||
<br> | ||
<h2 style="color:#12d640">LinguaNet: Neural Machine Translation from English to German</h2> | ||
<ul> | ||
<li><strong>Tech Stack</strong>: Python3, TensorFlow 2, Neural Networks</li> | ||
<li><strong>Github URL</strong>: <a href="https://github.com/Damien3008/LinguaNet" target="_blank">Project Link</a></li> | ||
</ul> | ||
|
||
<p> | ||
This project involves creating a neural network for translating text from English to German. It utilizes key machine learning concepts such as flexible model architectures, freezing layers for optimized training, and a comprehensive data processing pipeline. | ||
</p> | ||
|
||
<p> | ||
The translation system is built using Python3 and TensorFlow 2, employing an encoder-decoder architecture. The data processing pipeline transforms the text into token sequences suitable for the neural network, allowing it to learn language patterns and perform accurate translations. | ||
</p> | ||
|
||
<p> | ||
The focus of this project is on effective sequence modeling, optimizing layer performance, and processing data efficiently to achieve high-quality translations. The implementation showcases the power of neural networks in natural language processing tasks. | ||
</p> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</div><!-- End Portfolio Details --> | ||
</main><!-- End #main --> | ||
|
||
<!-- Vendor JS Files --> | ||
<script async="" src="//www.google-analytics.com/analytics.js"></script><script src="assets/vendor/jquery/jquery.min.js"></script> | ||
<script src="../assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script> | ||
<script src="../assets/vendor/jquery.easing/jquery.easing.min.js"></script> | ||
<script src="../assets/vendor/php-email-form/validate.js"></script> | ||
<script src="../assets/vendor/waypoints/jquery.waypoints.min.js"></script> | ||
<script src="../assets/vendor/counterup/counterup.min.js"></script> | ||
<script src="../assets/vendor/owl.carousel/owl.carousel.min.js"></script> | ||
<script src="../assets/vendor/isotope-layout/isotope.pkgd.min.js"></script> | ||
<script src="../assets/vendor/venobox/venobox.min.js"></script> | ||
|
||
<!-- Template Main JS File --> | ||
<script src="../assets/js/main.js"></script> | ||
|
||
<script>if( window.self == window.top ) { (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-55234356-4', 'auto'); ga('send', 'pageview'); } </script> | ||
|
||
</body> | ||
</html> | ||
|
||
|