-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
55 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -259,8 +259,9 @@ <h6 class="d-block mb-3 text-primary">Secondary pages</h6> | |
</div> | ||
<div class="d-none d-lg-block"> | ||
<!-- <a href="#" target="_blank" class="btn btn-secondary btn-pricing-plan animate-up-2 mr-3"><i class="fab fa-github mr-2"></i> Repo (Coming soon)</a> --> | ||
<a href="#" target="_blank" class="btn btn-outline-white animate-up-2 mr-3"><i class="fab fa-github mr-2"></i> Code (Coming soon)</a> | ||
<a href="#" target="_blank" class="btn btn-outline-white btn-docs animate-up-2"><i class="fas fa-book mr-2"></i> Docs (Coming soon)</a> | ||
<a href="#" target="_blank" class="btn btn-outline-white animate-up-2 mr-3"><i class="fas fa-paperclip mr-2"></i>Paper</a> | ||
<a href="#" target="_blank" class="btn btn-outline-white animate-up-2 mr-3"><i class="fab fa-github mr-2"></i>Code (Coming soon)</a> | ||
<!-- <a href="#" target="_blank" class="btn btn-outline-white btn-docs animate-up-2"><i class="fas fa-book mr-2"></i> Docs (Coming soon)</a> --> | ||
</div> | ||
<div class="d-flex d-lg-none align-items-center ml-auto"> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar_global" aria-controls="navbar_global" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button> | ||
|
@@ -290,7 +291,7 @@ <h1 class="display-1 mb-4">Trace, the new Auto-Diff</h1> | |
<div class="d-flex flex-row justify-content-center"> | ||
<div class="input-group"> | ||
<input class="form-control form-control-xl border-light" placeholder="[email protected]" type="email" name="EMAIL" required=""> | ||
<div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_3941794c6b4e6156e45807fd7_60c13fc4cd" tabindex="-1" value=""></div> <div class="input-group-prepend"> | ||
<div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_3941794c6b4e6156e45807fd7_60c13fc4cd" tabindex="-1" value=""></div> <div class="input-group-prepend"> | ||
<button type="submit" class="btn btn-secondary rounded-right">Sign Up for Release</button> | ||
</div> | ||
</div> | ||
|
@@ -316,6 +317,57 @@ <h1 class="display-1 mb-4">Trace, the new Auto-Diff</h1> | |
</div> | ||
</div> | ||
</div> | ||
|
||
<section class="section section-lg pt-4 pb-6"> | ||
<div class="container"> | ||
<div class="row justify-content-center mb-5"> | ||
<div class="col-12 col-md-8 text-center"> | ||
<h2 class="h1 font-weight-bolder mb-4">What is Trace?</h2> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12 col-lg-4 mb-3"> | ||
<div class="card border-light shadow-soft p-4"> | ||
<div class="card-body text-center"> | ||
<div class="icon icon-lg icon-gray mb-4"> | ||
<span class="fas fa-cogs"></span> | ||
</div> | ||
<h4 class="mb-4">Chained End-to-End Optimization</h4> | ||
<p>A complex AI system has many modules. Some modules are pure Python programs. Some make calls to other APIs to retrieve or generate content. | ||
Trace allows you to specify tunable parts of your system and optimize your entire system end-to-end. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-12 col-lg-4 mb-3"> | ||
<div class="card border-light shadow-soft p-4"> | ||
<div class="card-body text-center"> | ||
<div class="icon icon-lg icon-gray mb-4"> | ||
<span class="fab fa-python"></span> | ||
</div> | ||
<h4 class="mb-4">Native Python Support</h4> | ||
<p>Trace aims to allow users to build flexible AI systems through two primitives: <code class="language-python">node</code> over Python basic types and | ||
<code class="language-python">@bundle</code> over Python functions. Trace supports heterogenous optimization of a mixture of <u>code</u>, | ||
<u>string</u>, <u>numbers</u> in one AI system. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-12 col-lg-4 mb-3"> | ||
<div class="card border-light shadow-soft p-4"> | ||
<div class="card-body text-center"> | ||
<div class="icon icon-lg icon-gray mb-4"> | ||
<span class="fas fa-project-diagram"></span> | ||
</div> | ||
<h4 class="mb-4">Trace Graph</h4> | ||
<p>Trace recreates the AI system's execution graph and preserves as much information as possible. It is an open platform to develop novel optimization algorithms.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section class="section section-lg pt-4 pb-6"> | ||
<div class="container"> | ||
<div class="row justify-content-center mb-5 mb-lg-7"> | ||
|