-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsam.html
56 lines (52 loc) · 3.47 KB
/
sam.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.png" type="image/x-icon">
<title>Artificial Intelligence</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="topnav">
<a href="index.html">Home Page</a>
<a href="liam.html">Virtual Reality</a>
<a class="active" href="sam.html">Artificial Intelligence</a>
<a href="Tom.html">Media Manipulation</a>
<a href="Harrison.html">Educational Uses</a>
</div>
<h1>Uses of Artificial Intelligence</h1>
<div class="container">
<div class="row">
<div class="col">
<div class="container"><h3>Extra-Sensory Perception AI</h3></div>
<div class="container">A 2018 paper from MIT, discusses using AI for signals processing to accurately detect a human's pose, which to the suprise of the researchers worked through walls despite never being trained on such scenarios</div>
</div>
<div class="col">
<div class="container"><h3>OpenCog AGI Framework</h3></div>
<div class="container">OpenCog is a project aiming to build an open source AI framework intended for broad-based AGI research. OpenCog Prime is an architecture for robot and virtual embodied cognition designed to create general intelligence as an emergent phenomenon of the whole system.</div>
</div>
<div class="col">
<div class="container"><h3>AI in Breast Cancer Image Recognition</h3></div>
<div class="container">Recent research of using AI in medicine have revealed promising insights into how AI can prove more effective at detecting breast cancer in mammography screenings</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="container"><h3>AI in the Search For New Particles</h3></div>
<div class="container">Particle physicists have been increasingly using AI for data analysis in an attempt to discover new particles. Processing large amounts of data gathered from experiments on particle collisons is something AI excels at and there is a lot of promise for its use in the field.</div>
</div>
<div class="col">
<div class="container"><h3>AI in Warehouses</h3></div>
<div class="container">AI has been appearing in robotics used in warehouses by Amazon, Ocado and other online retailers. It has improved productivity, accuracy and safety in the work place.</div>
</div>
<div class="col">
<div class="container"><h3>AI in Self-Driving Cars</h3></div>
<div class="container">Research on self driving cars is dependent on AI. The field uses the AIs ability to recognise patterns in visual data to guide automated driving decision-making for a potentially safer driving experience.</div>
</div>
</div>
</div>
<figcaption style="margin-top: 3%;">Authored by Sam: <a href="https://github.com/Samwise-B">Github</a></figcaption>
</body>
</html>