forked from onnx/onnx.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
137 lines (122 loc) · 8.33 KB
/
about.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>ONNX | About</title>
<link rel="icon" href="./images/onnx-fevicon.png" type="image/gif" sizes="16x16">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i&display=swap">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body class="innerpage-main-wrapper">
<a class="skip-main" href="#skipMain">Skip to main content</a>
<!-- Partial header.html Start-->
<div w3-include-html="partials/navigation.html"></div>
<!-- Partial header.html End-->
<div class="main-wrapper">
<div class="top-banner-bg"></div>
<div id="skipMain" role="main" tabindex="-1">
<section class="blue-page-title-bar py-3 pb-3">
<div class="outer-container mx-auto">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h1 class="text-uppercase">About</h1>
</div>
</div>
</div>
</div>
</section>
<div class="outer-container mx-auto py-md-5 py-4">
<section class="blue-title-columns pb-md-5 pb-4">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-9">
<p class="mb-2">
We believe there is a need for greater interoperability in the AI tools community. Many people are working on great tools, but developers are often locked in to one framework or ecosystem. ONNX is the first step in enabling more of these tools to work together by allowing them to share models.
</p>
<p class="mb-0">
Our goal is to make it possible for developers to use the right combinations of tools for their project. We want everyone to be able to take AI from research to reality as quickly as possible without artificial friction from toolchains. We hope you'll join us in this mission!
</p>
</div>
<div class="col-12 col-md-3 d-none d-md-block text-center">
<img src="./images/icon/icon-ONNX-logo.svg" alt="ONNX Logo Icon" class="img-fluid img-about-onnx">
</div>
</div>
</div>
</section>
<hr class="border-top my-0 mx-15"/>
<section class="blue-title-columns">
<div class="container-fluid">
<div class="row py-4 py-md-5">
<div class="col-12 col-md-6 mb-4 mb-md-0 text-center pr-10">
<img src="./images/community.svg" alt="Community image" class="img-fluid img-community">
</div>
<div class="col-12 col-md-6 pr-10 justify-content-center align-self-center">
<h2>Community</h2>
<p>
ONNX is a community project. We encourage you to join the effort and contribute feedback, ideas and code.
</p>
<p>For more information, check out our <a href="https://github.com/onnx/onnx/blob/master/docs/CONTRIBUTING.md#development" target="_blank" class="link">contribution guide</a>, or join a <a target="_blank" href="https://github.com/onnx/onnx/blob/master/community/sigs.md#sigs---special-interest-groups" class="link">Special
Interest Group</a> (SIG) or <a href="https://github.com/onnx/onnx/blob/master/community/working-groups.md#working-groups" target="_blank" class="link">Working Group</a> today.</p>
</div>
</div>
</div>
</section>
<hr class="border-top my-0 mx-15"/>
<section class="py-md-5 py-4 bg-lightgray">
<div class="outer-container mx-auto">
<div class="container-fluid blue-title-columns">
<div class="row mb-4">
<div class="col-12">
<h2 class="text-center">Partners</h2>
<p class="text-center">ONNX is supported by a community of partners</p>
</div>
</div>
<!-- Partial partners.html Start-->
<div w3-include-html="partials/partners.html"></div>
<!-- Partial partners.html End-->
</div>
</div>
</section>
<hr class="border-top my-0 mx-15"/>
<section class="pt-md-5 pt-4 blue-title-columns">
<div class="container-fluid">
<div class="row ">
<div class="col-12 col-md-6 mb-4 mb-md-0 text-center pr-10 order-md-2">
<img src="./images/technical-design.svg" alt="Technical Design image" class="img-fluid img-tecnical-design">
</div>
<div class="col-12 col-md-6 pr-10 order-md-1 justify-content-center align-self-center">
<h2>Technical Design</h2>
<p>
ONNX provides a definition of an extensible computation graph model, as well as definitions of built-in operators and standard data types.
</p>
<p>Each computation dataflow graph is structured as a list of nodes that form an acyclic graph. Nodes have one or more inputs and one or more outputs. Each node is a call to an operator. The graph also has metadata to help document its purpose, author, etc.</p>
<p>
Operators are implemented externally to the graph, but the set of built-in operators are portable across frameworks. Every framework supporting ONNX will provide implementations of these operators on the applicable data types.
</p>
<p class="mb-0"><strong>More details can be found on</strong> <a href="https://github.com/onnx/" class="link" target="_blank">GitHub</a>.</p>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- Partial footer.html Start-->
<div w3-include-html="partials/footer.html"></div>
<!-- Partial footer.html End-->
<a id="back-to-top" href="#" class="btn btn-lg back-to-top" role="button" aria-label="Back to top"><span
class="fa fa-angle-up"></span></a>
</div>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<script>w3.includeHTML();</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="./js/custom.js"></script>
</body>
</html>