-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (124 loc) · 5 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
<!DOCTYPE HTML>
<html>
<head>
<title>Wafer Defect Classifier</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="homepage is-preload">
<div id="page-wrapper">
<!-- Header -->
<div id="header">
<!-- Inner -->
<div class="inner">
<header>
<h1><a href="index.html" id="logo">Wafer Defect Classifier</a></h1>
<hr />
<p>Learn how we can automate your defect classification</p>
</header>
<footer>
<a href="#banner" class="button circled scrolly">Start</a>
</footer>
</div>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Project</a></li>
<li><a href="yield-value.html">Value Proposition</a></li>
<li><a href="description.html">Model Description</a></li>
<li><a href="demo.html">Demonstration</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</nav>
</div>
<!-- Banner -->
<section id="banner">
<header>
<h2>Welcome to <strong>Wafer Defect Classifier</strong></h2>
<p>
Our product accepts wafer probe maps and automates classification of defects on wafers into different groupings. This provides important information for your engineers to identify defect patterns and root cause of defects causing die failures during your semiconductor manufacturing processes, leading to improved efficiency and yield.
</p>
</header>
</section>
<!-- Carousel -->
<section class="carousel">
<div class="reel">
<article>
<header>
<h3><a href="about.html">About Project</a></h3>
</header>
<p>Detailed description of purpose of our tool, users who can benefit from the tool, and the data used to train and develop the model.</p>
<a href="about.html" class="image featured"><img src="images/pic01.png" alt="" /></a>
</article>
<article>
<header>
<h3><a href="yield-value.html">Value Proposition</a></h3>
</header>
<p>Understand the value of this tool to engineers and semiconductor manufacturers for overall yield and efficiency improvement.</p>
<a href="yield-value.html" class="image featured"><img src="images/pic02.png" alt="" /></a>
</article>
<article>
<header>
<h3><a href="description.html">Model Description</a></h3>
</header>
<p>Science and details behind the model and how it works including data requirements, model inputs, data augmentation, and expected outcome.</p>
<a href="description.html" class="image featured"><img src="images/pic03.png" alt="" /></a>
</article>
<article>
<header>
<h3><a href="demo.html">Demonstration</a></h3>
</header>
<p>Test your live data against our developed algorithm. You can submit an individual wafer or a set of wafers to the model to see results.</p>
<a href="demo.html" class="image featured"><img src="images/pic04.png" alt="" /></a>
</article>
<article>
<header>
<h3><a href="contact-us.html">Contact Us!</a></h3>
</header>
<p>If you have more questions about the model or would like to understand details about the model, please connect with the developers.</p>
<a href="contact-us.html" class="image featured"><img src="images/pic05.jpg" alt="" /></a>
</article>
</div>
</section>
<!-- Main -->
<div class="wrapper style2">
<article id="main" class="container special">
<header>
<h2><a href="#">Increase your rate of Yield Learning through AI</a></h2>
<p>
Recently a McKinsey study stated that only 30% of Semiconductor companies are generating value through AI/ML. Blah Blah Blah
</p>
</header>
<p>
More Blah blah blah.....
</p>
<footer>
<a href="https://www.mckinsey.com/industries/semiconductors/our-insights/scaling-ai-in-the-sector-that-enables-it-lessons-for-semiconductor-device-makers" class="button">Continue Reading</a>
</footer>
</article>
</div>
<!-- Footer -->
<div id="footer">
<!-- Contact -->
<section class="contact">
<header>
<h3>Want more information? <a href="contact-us.html">Contact Us.</a> </h3>
</header>
</section>
</div>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>