-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
113 lines (100 loc) · 6.56 KB
/
services.html
File metadata and controls
113 lines (100 loc) · 6.56 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EventHorizonAI Services</title>
<link rel="stylesheet" href="static/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
</head>
<body class="services">
<div class="background-layer"></div>
<nav class="navbar">
<div class="nav-center">
<ul class="nav-links">
<li>
<a href="index.html" class="logo-link">
<img src="static/EH_logo_circle.png" alt="EventHorizonAI Logo" style="height: 40px; vertical-align: middle;" />
</a>
</li>
<li><a href="services.html">Mission</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">Crew</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<main class="content-wrapper">
<div class="mission-banner">
<h2>Our Mission</h2>
<p style="font-family: Verdana, sans-serif;">Our mission is twofold: empower clients with advanced AI solutions and invest in our own breakthrough technologies for sustainable future value.</p>
</div>
<section class="services-container">
<h1>Our Services</h1>
<div class="service"><img src="static/services2.jpg"><div><h2>State Of The Art License-Free Object Detection Models</h2><p>Highly accurate real-time object
detection models that can handle different frame rates. We can achieve up to 124 FPS on a NVIDIA T4 GPU. We also offer precision real-time object tracking and counting for applications such as traffic surveillance. We create
the model and you own it. No strings-attached.</p></div></div>
<div class="service"><img src="static/car_parts_2.png"><div><h2>Precision Instance Segmentation License-Free Models</h2><p>End-to-end development of accurate real-time segmentation models that are license-free. You own it.
Important for medical imaging and diagnostics, defect detection, waste sorting, and much more. We can also extract text from documents via OCR. </p></div></div>
<div class="service"><img src="static/neural_net_changed.png"><div><h2>Data Science & Analytics</h2><p>We integrate the scientific method with cutting edge
AI tools To analyze data to uncover meaningful insights. Allow us to extract order from chaos to facilitate the best decisions for your business or project.</p></div></div>
<div class="service"><img src="static/GNN_image.png"><div><h2>Graph Neural Networks</h2><p>If you are working with a graphical database, allow us to build powerful
decision based tools using complex and powerful graphical neural nets. We believe that these models are often overlooked, as they are often difficult to implement. Great for recommendation systems!</p></div></div>
<div class="service"><img src="static/NEW_GA_MODIFIED.png"><div><h2>Genetic Algorithms</h2><p>Some optimization problems do not lend themselves well to gradient descent.
For complex problems where common solutions fail, allow us to take a crack at it.</p></div></div>
<div class="service"><img src="static/stock_prediction.png"><div><h2>Deep Learning for Time Series Forcasting</h2><p>We construct powerful
models for stock trend prediction, weather prediction, sales prediction, and much more.
Tailored for your niche.</p></div></div>
<div class="service"><img src="static/website_upgrade.png"><div><h2>Software Upgrades</h2><p>We have built our own proprietary system for upgrading your business software. We can update your old software and create beautiful and responsive
web, desktop, or mobile applications. If your company is new, we can develop large-scale systems for business operations rapidly and securely at a low cost.</p></div></div>
<div class="service"><img src="static/minitimecube.png"><div><h2>Advanced Sensor System R&D</h2><p>Consultation for research and design for novel sensor systems. We have experience developing integrated systems for diverse applications, including health, autonomous driving, and photonic integrated circuits.</p></div></div>
<div class="service"><img src="static/particle_spray.png"><div><h2>Mathematical & Physical Simulations</h2><p>We develop Monte-Carlo based simulations for your custom
project, providing valuable insights into risks and uncertainties for better decision-making. For particle physics projects, we offer advanced Geant4-based models.</p></div></div>
</section>
<div class="mission-banner bottom">
<h2>Own Your IP</h2>
<p style="margin-top: 30px">Empowering You With Ownership Of Cutting-Edge AI</p>
</div>
<footer-scroll class="fade-in delay-3">
<p>© 2025 EventHorizonAI. All rights reserved.</p>
<p>EventHorizonAI™ and the EventHorizonAIU logo are trademarks of EventHorizonAI Inc.</p>
</footer-scroll>
<footer-scroll class="fade-in delay-3" style="text-align: right;">
<p>Original Base Images Of Penguin And Car Obtained From https://universe.roboflow.com/</p>
<p>Neural Net Image Design Inspired By https://arxiv.org/abs/1811.05875</p>
<p>Sensor System Citation: https://pubs.aip.org/aip/rsi/article/87/2/021301/1019437/Invited-Article-miniTimeCube</p>
</footer-scroll>
</main>
<script>
window.addEventListener('DOMContentLoaded', () => {
const bgLayer = document.querySelector('.background-layer');
const contentWrapper = document.querySelector('.content-wrapper');
// Determine the correct background image based on body class
let bgImageSrc = '';
if (document.body.classList.contains('home')) {
bgImageSrc = 'backgrounds/BH.png';
} else {
bgImageSrc = 'backgrounds/space.png';
}
// Preload the background image
const bgImage = new Image();
bgImage.src = bgImageSrc;
bgImage.onload = () => {
// Background is ready; apply visible class
if (bgLayer) bgLayer.classList.add('visible');
// Fade in content shortly after
setTimeout(() => {
if (contentWrapper) contentWrapper.classList.add('visible');
}, 300); // Optional shorter delay
};
// Fallback if image doesn't load after 3 seconds
setTimeout(() => {
if (!bgLayer.classList.contains('visible')) {
bgLayer.classList.add('visible');
contentWrapper.classList.add('visible');
}
}, 500);
});
</script>
</body>
</html>