build based on 2e7971f

This commit is contained in:
autodocs 2017-01-18 02:29:40 +00:00
parent fce3ecd05e
commit 5c1ab87f47
7 changed files with 83 additions and 9 deletions

View File

@ -92,7 +92,7 @@ Contributing & Help
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/d86226cfaa6a3219ba239a26ffd8dde41b350d8c/docs/src/contributing.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/2e7971fb6d95f58de7b656acddb7ffade4b2ed16/docs/src/contributing.md">
<span class="fa">
</span>

View File

@ -92,7 +92,7 @@ Home
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/d86226cfaa6a3219ba239a26ffd8dde41b350d8c/docs/src/index.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/2e7971fb6d95f58de7b656acddb7ffade4b2ed16/docs/src/index.md">
<span class="fa">
</span>

View File

@ -56,7 +56,23 @@ Getting Started
<a class="toctext" href="basics.html">
Basics
</a>
<ul class="internal"></ul>
<ul class="internal">
<li>
<a class="toctext" href="#Installation-1">
Installation
</a>
</li>
<li>
<a class="toctext" href="#The-Model-1">
The Model
</a>
</li>
<li>
<a class="toctext" href="#An-MNIST-Example-1">
An MNIST Example
</a>
</li>
</ul>
</li>
<li>
<a class="toctext" href="custom.html">
@ -95,7 +111,7 @@ Basics
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/d86226cfaa6a3219ba239a26ffd8dde41b350d8c/docs/src/manual/basics.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/2e7971fb6d95f58de7b656acddb7ffade4b2ed16/docs/src/manual/basics.md">
<span class="fa">
</span>
@ -109,11 +125,45 @@ Basics
Basic Usage
</a>
</h1>
<h2>
<a class="nav-anchor" id="Installation-1" href="#Installation-1">
Installation
</a>
</h2>
<pre><code class="language-julia">Pkg.clone(&quot;https://github.com/MikeInnes/DataFlow.jl&quot;)
Pkg.clone(&quot;https://github.com/MikeInnes/Flux.jl&quot;)</code></pre>
<h2>
<a class="nav-anchor" id="The-Model-1" href="#The-Model-1">
The Model
</a>
</h2>
<p>
<em>
Charging Ion Capacitors
Charging Ion Capacitors...
</em>
</p>
<p>
The core concept in Flux is that of the
<em>
model
</em>
. A model is simply a function with parameters. In Julia, we might define the following function:
</p>
<pre><code class="language-julia">W = randn(3,5)
b = randn(3)
affine(x) = W*x + b
x1 = randn(5)
affine(x1)
&gt; 3-element Array{Float64,1}:
-0.0215644
-4.07343
0.312591</code></pre>
<h2>
<a class="nav-anchor" id="An-MNIST-Example-1" href="#An-MNIST-Example-1">
An MNIST Example
</a>
</h2>
<footer>
<hr/>
<a class="previous" href="../index.html">

View File

@ -95,7 +95,7 @@ Custom Layers
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/d86226cfaa6a3219ba239a26ffd8dde41b350d8c/docs/src/manual/custom.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/2e7971fb6d95f58de7b656acddb7ffade4b2ed16/docs/src/manual/custom.md">
<span class="fa">
</span>

View File

@ -95,7 +95,7 @@ Debugging
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/d86226cfaa6a3219ba239a26ffd8dde41b350d8c/docs/src/manual/debugging.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/2e7971fb6d95f58de7b656acddb7ffade4b2ed16/docs/src/manual/debugging.md">
<span class="fa">
</span>

View File

@ -95,7 +95,7 @@ Recurrence
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/d86226cfaa6a3219ba239a26ffd8dde41b350d8c/docs/src/manual/recurrent.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/2e7971fb6d95f58de7b656acddb7ffade4b2ed16/docs/src/manual/recurrent.md">
<span class="fa">
</span>

View File

@ -29,7 +29,31 @@ var documenterSearchIndex = {"docs": [
"page": "Basics",
"title": "Basic Usage",
"category": "section",
"text": "Charging Ion Capacitors"
"text": ""
},
{
"location": "manual/basics.html#Installation-1",
"page": "Basics",
"title": "Installation",
"category": "section",
"text": "Pkg.clone(\"https://github.com/MikeInnes/DataFlow.jl\")\nPkg.clone(\"https://github.com/MikeInnes/Flux.jl\")"
},
{
"location": "manual/basics.html#The-Model-1",
"page": "Basics",
"title": "The Model",
"category": "section",
"text": "Charging Ion Capacitors...The core concept in Flux is that of the model. A model is simply a function with parameters. In Julia, we might define the following function:W = randn(3,5)\nb = randn(3)\naffine(x) = W*x + b\n\nx1 = randn(5)\naffine(x1)\n> 3-element Array{Float64,1}:\n -0.0215644\n -4.07343 \n 0.312591"
},
{
"location": "manual/basics.html#An-MNIST-Example-1",
"page": "Basics",
"title": "An MNIST Example",
"category": "section",
"text": ""
},
{