build based on 7e4cb63
This commit is contained in:
parent
9d5798e145
commit
a83e0b1733
@ -53,10 +53,18 @@ Getting Started
|
||||
</span>
|
||||
<ul>
|
||||
<li class="current">
|
||||
<a class="toctext" href="mnist.html">
|
||||
<a class="toctext" href="basics.html">
|
||||
Basics
|
||||
</a>
|
||||
<ul class="internal"></ul>
|
||||
<ul class="internal">
|
||||
<li>
|
||||
<a class="toctext" href="#*Charging-Ion-Capacitors*-1">
|
||||
<em>
|
||||
Charging Ion Capacitors
|
||||
</em>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -70,12 +78,12 @@ Basics
|
||||
Getting Started
|
||||
</li>
|
||||
<li>
|
||||
<a href="mnist.html">
|
||||
<a href="basics.html">
|
||||
Basics
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/66b9a6c6221070b1ed91b2b65c736ce1d34e27a1/docs/src/mnist.md">
|
||||
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e4cb63967bb912b92cf990deabb45a56207e433/docs/src/basics.md">
|
||||
<span class="fa">
|
||||
|
||||
</span>
|
||||
@ -85,10 +93,17 @@ Basics
|
||||
<hr/>
|
||||
</header>
|
||||
<h1>
|
||||
<a class="nav-anchor" id="MNIST-1" href="#MNIST-1">
|
||||
MNIST
|
||||
<a class="nav-anchor" id="Basic-Usage-1" href="#Basic-Usage-1">
|
||||
Basic Usage
|
||||
</a>
|
||||
</h1>
|
||||
<h2>
|
||||
<a class="nav-anchor" id="*Charging-Ion-Capacitors*-1" href="#*Charging-Ion-Capacitors*-1">
|
||||
<em>
|
||||
Charging Ion Capacitors
|
||||
</em>
|
||||
</a>
|
||||
</h2>
|
||||
<footer>
|
||||
<hr/>
|
||||
<a class="previous" href="index.html">
|
@ -46,13 +46,7 @@ Version
|
||||
<a class="toctext" href="index.html">
|
||||
Home
|
||||
</a>
|
||||
<ul class="internal">
|
||||
<li>
|
||||
<a class="toctext" href="#Charging-Ion-Capacitors-1">
|
||||
Charging Ion Capacitors
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="internal"></ul>
|
||||
</li>
|
||||
<li>
|
||||
<span class="toctext">
|
||||
@ -60,7 +54,7 @@ Getting Started
|
||||
</span>
|
||||
<ul>
|
||||
<li>
|
||||
<a class="toctext" href="mnist.html">
|
||||
<a class="toctext" href="basics.html">
|
||||
Basics
|
||||
</a>
|
||||
</li>
|
||||
@ -78,7 +72,7 @@ Home
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/66b9a6c6221070b1ed91b2b65c736ce1d34e27a1/docs/src/index.md">
|
||||
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e4cb63967bb912b92cf990deabb45a56207e433/docs/src/index.md">
|
||||
<span class="fa">
|
||||
|
||||
</span>
|
||||
@ -92,23 +86,25 @@ Home
|
||||
Flux
|
||||
</a>
|
||||
</h1>
|
||||
<h2>
|
||||
<a class="nav-anchor" id="Charging-Ion-Capacitors-1" href="#Charging-Ion-Capacitors-1">
|
||||
Charging Ion Capacitors
|
||||
</a>
|
||||
</h2>
|
||||
<p>
|
||||
Flux is a high-level API for machine learning, implemented in Julia.
|
||||
Flux is a high-level interface for machine learning, implemented in Julia.
|
||||
</p>
|
||||
<p>
|
||||
Flux aims to provide a concise and expressive syntax for architectures that are hard to express within other frameworks. The notation should be familiar and extremely close to what you'd find in a paper or description of the model.
|
||||
Flux aims to be intuitive and powerful notation close to the mathematics, while providing advanced features like auto-unrolling and closures. Simple models are trivial, and the most complex architectures are tractable, taking orders of magnitude less code than in other frameworks. Meanwhile, the Flux compiler provides excellent error messages and tools for debugging when things go wrong.
|
||||
</p>
|
||||
<p>
|
||||
The current focus is on ANNs with TensorFlow or MXNet as a backend.
|
||||
So what's the catch? Flux is at an early "working prototype" stage; many things work but the API is still in a state of- well, it might change.
|
||||
</p>
|
||||
<p>
|
||||
If you're interested to find out what
|
||||
<em>
|
||||
does
|
||||
</em>
|
||||
work, read on...
|
||||
</p>
|
||||
<footer>
|
||||
<hr/>
|
||||
<a class="next" href="mnist.html">
|
||||
<a class="next" href="basics.html">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
|
@ -53,7 +53,7 @@ Getting Started
|
||||
</span>
|
||||
<ul>
|
||||
<li>
|
||||
<a class="toctext" href="mnist.html">
|
||||
<a class="toctext" href="basics.html">
|
||||
Basics
|
||||
</a>
|
||||
</li>
|
||||
|
@ -13,19 +13,11 @@ var documenterSearchIndex = {"docs": [
|
||||
"page": "Home",
|
||||
"title": "Flux",
|
||||
"category": "section",
|
||||
"text": ""
|
||||
"text": "Flux is a high-level interface for machine learning, implemented in Julia.Flux aims to be intuitive and powerful notation close to the mathematics, while providing advanced features like auto-unrolling and closures. Simple models are trivial, and the most complex architectures are tractable, taking orders of magnitude less code than in other frameworks. Meanwhile, the Flux compiler provides excellent error messages and tools for debugging when things go wrong.So what's the catch? Flux is at an early \"working prototype\" stage; many things work but the API is still in a state of- well, it might change.If you're interested to find out what does work, read on..."
|
||||
},
|
||||
|
||||
{
|
||||
"location": "index.html#Charging-Ion-Capacitors-1",
|
||||
"page": "Home",
|
||||
"title": "Charging Ion Capacitors",
|
||||
"category": "section",
|
||||
"text": "Flux is a high-level API for machine learning, implemented in Julia.Flux aims to provide a concise and expressive syntax for architectures that are hard to express within other frameworks. The notation should be familiar and extremely close to what you'd find in a paper or description of the model.The current focus is on ANNs with TensorFlow or MXNet as a backend."
|
||||
},
|
||||
|
||||
{
|
||||
"location": "mnist.html#",
|
||||
"location": "basics.html#",
|
||||
"page": "Basics",
|
||||
"title": "Basics",
|
||||
"category": "page",
|
||||
@ -33,9 +25,17 @@ var documenterSearchIndex = {"docs": [
|
||||
},
|
||||
|
||||
{
|
||||
"location": "mnist.html#MNIST-1",
|
||||
"location": "basics.html#Basic-Usage-1",
|
||||
"page": "Basics",
|
||||
"title": "MNIST",
|
||||
"title": "Basic Usage",
|
||||
"category": "section",
|
||||
"text": ""
|
||||
},
|
||||
|
||||
{
|
||||
"location": "basics.html#*Charging-Ion-Capacitors*-1",
|
||||
"page": "Basics",
|
||||
"title": "Charging Ion Capacitors",
|
||||
"category": "section",
|
||||
"text": ""
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user