-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
101 lines (78 loc) · 3.92 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Zion</title>
<!--Google Font-->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<!--CSSstylesheet-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<!--Font Awesome-->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</head>
<body>
<section id="title">
<div class="container-fluid">
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="#">Zion</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html">About Us</a>
</li>
</ul>
</div>
</nav>
<div class="row topic d-flex justify-content-center text-center">
<h1>Zion Technologies</h1>
<h3>WE SECURE YOUR AI APPLICATIONS!</h3>
<h4>Secret Computing for Privacy Protection:<br>
Using breakthrough cryptographic techniques, Zion enables any trained framework,
using any training method, to run AI tasks on encrypted user data.</h4>
</div>
</div>
</section>
<section id="features">
<h3>Privacy-preserving Machine Learning</h3>
<p>Key Technologies: <br>
<b>Federated Learning</b>: Enable collaborative machine learning without centralized training data. <br>
<b>Differential Privacy</b>: Provide quantifiable measurement on privacy-enhancing mechanisms. <br>
<b>Multi-party Computation</b>: Enable computation across multiple parties where no single party can see others' data. <br>
<b>Homomorphic Encryption</b>: Computation on encrypted data without decrypting it first. <br>
<h3>No leakage on sensitive data</h3>
<p>You will never need to upload your raw private data</p>
<h3>Easy to use</h3>
<p>Robust framework solution to embed into your product</p>
<h3>Research Powered</h3>
<p>Our publications including:</p>
One-Shot Federated Learning with Neuromorphic Processors <a href="https://arxiv.org/pdf/2011.01813.pdf">paper link</a>
</section>
<!-- Press
<section id="press">
<img src="images/techcrunch.png" alt="tc-logo">
<img src="images/tnw.png" alt="tnw-logo">
<img src="images/bizinsider.png" alt="biz-insider-logo">
<img src="images/mashable.png" alt="mashable-logo">
</section>
-->
<!-- Footer -->
<footer id="footer">
<div class="row" style="background-color:black; ">
<p>© Copyright 2021 Zion</p>
</div>
</footer>
</body>
</html>