-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequirements.html
43 lines (41 loc) · 1.89 KB
/
requirements.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
<html>
<head>
<title>cafe-predicting project</title>
<link rel="stylesheet" type="text/css" href="css/layout.css" />
<link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
<script src="jquery/jquery-1.11.2.min.js"></script>
<script src="jquery/jquery-ui.min.js"></script>
<script>
$(function(){
$("#header").load("header.html");
});
$(function(){
$("#menu").load("menu.html");
});
$(function(){
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="header"></div>
<div id="menu"></div>
<div id="main">
<div class="content">
<h2>Project Requirements</h2>
<ul>
<li><p>The product will offer an interactive dashboard which depicts and predicts customer activity at a given café over a user-modifiable time scale and customer demographic range.</p></li>
<li><p>The dashboard will feature a sign-in page for security purposes.</p></li>
<li><p>The display of the dashboard will be non-technical and user-friendly, able to be understood by a layperson.</p></li>
<li><p>The product will provide prediction models for at least three aspects of customer activity, possibly including customer population, demographics, and product purchases based on time of day, day of week, or weather patterns.</p></li>
<li><p>During development, each team member will generate a prediction model using machine learning algorithms of his/her choice, focusing on a unique aspect of customer activity.</p></li>
<li><p>Only the most accurate model will need to be included in the final product.</p></li>
<li><p>Each model will achieve at least 80% accuracy in its predictions.</p></li>
<li><p>The software will allow for new prediction models to be easily included in the future.</p></li>
</ul>
<p>All requirements reviewed and agreed to by customer.</p>
</div>
</div>
<div id="footer"></div>
</body>
</html>