-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<title>Determinator - AI Image Identification</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
p {
font-size: 16px;
line-height: 1.5;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
a {
text-decoration: none;
color: #1520A6;
transition: color 0.3s;
}
a:hover {
color: #007bff;
}
</style>
</head>
<body>
<header>
<h1>Determinator - AI Image Identification</h1>
</header>
<div class="container">
<p>Welcome to Determinator - an AI-powered image identification platform. This tool is designed with rest APIs to accept image urls and process them via different Deep Learning classification models. The api then returns a Darwin-Core compliant JSON string with the identification information.</p>
<h2>Quick Links:</h2>
<ul>
<li><a href="5sp.php">Five Species</a> - the first model trained which incorporates 5 carabid taxa</li>
<li><a href="jorn14.php">JORN - 14</a></li> - 14 species from Jornada (New Mexico) that had enough specimens in the Biorepository
<li><a href="#">Learn More</a></li>
</ul>
</div>
</body>
</html>