build based on 7e5669d

This commit is contained in:
autodocs 2017-05-03 19:17:54 +00:00
parent 16e6c85c6a
commit ad82417a24
13 changed files with 17 additions and 17 deletions

View File

@ -150,7 +150,7 @@ Backends
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/apis/backends.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/apis/backends.md">
<span class="fa">
</span>

View File

@ -155,7 +155,7 @@ Batching
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/apis/batching.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/apis/batching.md">
<span class="fa">
</span>

View File

@ -139,7 +139,7 @@ Storing Models
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/apis/storage.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/apis/storage.md">
<span class="fa">
</span>

View File

@ -136,7 +136,7 @@ Contributing &amp; Help
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/contributing.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/contributing.md">
<span class="fa">
</span>

View File

@ -139,7 +139,7 @@ Char RNN
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/examples/char-rnn.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/examples/char-rnn.md">
<span class="fa">
</span>

View File

@ -139,7 +139,7 @@ Simple MNIST
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/examples/logreg.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/examples/logreg.md">
<span class="fa">
</span>

View File

@ -147,7 +147,7 @@ Home
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/index.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/index.md">
<span class="fa">
</span>
@ -167,10 +167,10 @@ Flux
</em>
</p>
<p>
Flux is a machine learning library, implemented in Julia. In a nutshell, it simply lets you run normal Julia code on a backend like TensorFlow. It also provides many conveniences for doing deep learning.
Flux is a library for machine learning, implemented in Julia. In a nutshell, it simply lets you run normal Julia code on a backend like TensorFlow. It also provides many conveniences for doing deep learning.
</p>
<p>
This gives you great flexibility. You can use a convenient Keras-like API if you want something simple, but you can also drop down to straight mathematics, or build your own abstractions. You can even use Flux&#39;s utilities (like optimisers) with a completely different backend (like
Flux is very flexible. You can use a convenient Keras-like API if you want something simple, but you can also drop down to straight mathematics, or build your own abstractions. You can even use Flux&#39;s utilities (like optimisers) with a completely different backend (like
<a href="https://github.com/denizyuret/Knet.jl">
Knet
</a>

View File

@ -136,7 +136,7 @@ Internals
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/internals.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/internals.md">
<span class="fa">
</span>

View File

@ -170,7 +170,7 @@ Model Building Basics
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/models/basics.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/models/basics.md">
<span class="fa">
</span>
@ -347,7 +347,7 @@ Dressed like a model
<p>
We noted above that a model is a function with trainable parameters. Normal functions like
<code>exp</code>
are actually models too, that happen to have 0 parameters. Flux doesn&#39;t care, and anywhere that you use one, you can use the other. For example,
are actually models too they just happen to have 0 parameters. Flux doesn&#39;t care, and anywhere that you use one, you can use the other. For example,
<code>Chain</code>
will happily work with regular functions:
</p>

View File

@ -139,7 +139,7 @@ Debugging
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/models/debugging.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/models/debugging.md">
<span class="fa">
</span>

View File

@ -139,7 +139,7 @@ Recurrence
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/models/recurrent.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/models/recurrent.md">
<span class="fa">
</span>

View File

@ -155,7 +155,7 @@ Model Templates
</a>
</li>
</ul>
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/1bba9631a2b912e69a305fc33446f9a0e29aeb7a/docs/src/models/templates.md">
<a class="edit-page" href="https://github.com/MikeInnes/Flux.jl/tree/7e5669d2f60edb9cc56d3498b22999c09a387960/docs/src/models/templates.md">
<span class="fa">
</span>

View File

@ -13,7 +13,7 @@ var documenterSearchIndex = {"docs": [
"page": "Home",
"title": "Flux",
"category": "section",
"text": "... Initialising Photon Beams ...Flux is a machine learning library, implemented in Julia. In a nutshell, it simply lets you run normal Julia code on a backend like TensorFlow. It also provides many conveniences for doing deep learning.This gives you great flexibility. You can use a convenient Keras-like API if you want something simple, but you can also drop down to straight mathematics, or build your own abstractions. You can even use Flux's utilities (like optimisers) with a completely different backend (like Knet) or mix and match approaches.Note that Flux is in alpha. Many things work but the API is still in a state of... well, it might change.Note: If you're using Julia v0.5 please see this version of the docs instead."
"text": "... Initialising Photon Beams ...Flux is a library for machine learning, implemented in Julia. In a nutshell, it simply lets you run normal Julia code on a backend like TensorFlow. It also provides many conveniences for doing deep learning.Flux is very flexible. You can use a convenient Keras-like API if you want something simple, but you can also drop down to straight mathematics, or build your own abstractions. You can even use Flux's utilities (like optimisers) with a completely different backend (like Knet) or mix and match approaches.Note that Flux is in alpha. Many things work but the API is still in a state of... well, it might change.Note: If you're using Julia v0.5 please see this version of the docs instead."
},
{
@ -93,7 +93,7 @@ var documenterSearchIndex = {"docs": [
"page": "Model Building Basics",
"title": "Dressed like a model",
"category": "section",
"text": "We noted above that a model is a function with trainable parameters. Normal functions like exp are actually models too, that happen to have 0 parameters. Flux doesn't care, and anywhere that you use one, you can use the other. For example, Chain will happily work with regular functions:foo = Chain(exp, sum, log)\nfoo([1,2,3]) == 3.408 == log(sum(exp([1,2,3])))"
"text": "We noted above that a model is a function with trainable parameters. Normal functions like exp are actually models too they just happen to have 0 parameters. Flux doesn't care, and anywhere that you use one, you can use the other. For example, Chain will happily work with regular functions:foo = Chain(exp, sum, log)\nfoo([1,2,3]) == 3.408 == log(sum(exp([1,2,3])))"
},
{