generated from Autumn-Coding/Devscript-website
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (60 loc) · 3.66 KB
/
about.html
File metadata and controls
65 lines (60 loc) · 3.66 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" />
<title>DevScript - About Us</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa&display=swap" rel="stylesheet">
</head>
<body>
<div id="header">
<h1 id="DevScript">DevScript</h1>
<nav>
<a href="/index.html">Home</a>
<a href="/about.html">About Us</a>
<a href="/faq.html">FAQ</a>
<a href="/contact.html">Contact</a>
<a href="/credit.html">Credit</a>
</nav>
</div>
<div class="page">
<div class="pageHeader"><h1>Global Conflict Forecasting Model</h1></div>
<div id="aboutContent" class="contentBoxSmall">
<div>
<div class="contentHeader"><h2>Introduction</h2></div>
<div class="contentHolder">
<p>This web application is a visual dashboard for our global conflict modeling capstone project. The goal for this project was to build an optimal and explainable forecasting model that uses data from the <a href="https://viewsforecasting.org/">Violence & Impacts Early-Warning System (VIEWS)</a> to predict global conflict and potential fatalities. </p>
</div>
</div>
<div>
<div class="contentHeader"><h2>Background</h2></div>
<div class="contentHolder">
<p>This project is inspired by the “Fast forward: Forecasting global emerging threats” challenge from the Department of National Defence and the Canadian Armed Forces (DND/CAF). The challenge was for Canadian companies to develop precision forecasting models to help the DND/CAF predict the emergence of future conflicts around the world. Though this was initially intended to be the objective, the project was branched off into a separate process due to an incompatibility with the structure of the expectations in the capstone, with the scope, goals, and constraints being adjusted accordingly. Our client initially developed an Adaptive Markov Model for Violence Extrapolation and Rationalization (AMMVER) for this challenge, which will be used purely for inspiration.</p>
</div>
</div>
<div>
<div class="contentHeader"><h2>Our Client</h2></div>
<div class="contentHolder">
<p> This project was commissioned by our client, VIMY Analytics, a Canadian software company that specializes in explainable AI solutions for aerospace and defence contractors. Aerospace and defence requires a high level of certainty through mathematical rigor, so their solutions aim to prioritise precision, explainability, and reliability. Some of their current projects include their Flight-Level Adaptive Routing Engine (FLARE) and their Strategic High-Latitude Integrated Vessel Emergency Routing (SHIVER).</p>
</div>
</div>
<div>
<div class="contentHeader"><h2>How to Navigate</h2></div>
<div class="contentHolder">
<ul>
<p>This web application has 4 main pages:</p>
<li>Home Page: an introduction to the project and a brief explanation of its background and how to navigate the site. You are here!</li>
<li>Map Page: an interactive heatmap of the world, with detailed prediction results for each country by year.</li>
<li>Data Page: the raw result data in table form. Also available for download.</li>
<li>Credits Page: the list of developers and a special thanks to our client and supervisor.</li>
</ul>
</div>
</div>
</div>
<div id="footer"><p>Copyright ©2021, Kate Yoshida, </p></div>
</div>
</body>
</html>