Mike J Innes
aea1e73cde
scalar gradients
2018-06-21 13:12:42 +01:00
Avik Pal
91850a8baf
Add missing path to curnn.jl
2018-06-20 18:46:42 +05:30
Avik Pal
a4e35e9e91
Adjust atol in tests
2018-06-20 16:22:25 +05:30
Avik Pal
deb4950261
Make cuDNN take only 4D arrays
2018-06-20 15:54:38 +05:30
Avik Pal
3339ad5181
Integrate cudnn BatchNorm with Flux
2018-06-20 15:50:30 +05:30
Avik Pal
714ca23aba
Change default value of epsilon to prevent CuDNN BatchNorm warnings
2018-06-20 12:11:22 +05:30
Avik Pal
185f34d9fe
Add working backward pass
2018-06-20 12:09:54 +05:30
Avik Pal
bc47d02b3f
Remove uncessary imports
2018-06-17 12:40:01 +05:30
Avik Pal
af5ab7f9ef
Fix Tensor Descriptor Bug
2018-06-17 12:28:02 +05:30
Avik Pal
c6dcf079ce
Update file structure and make function calls correct
2018-06-17 11:47:49 +05:30
Mike J Innes
ac1448f677
Update README.md
2018-06-13 11:13:48 +01:00
Avik Pal
24d13ac326
Fix missing parenthesis
2018-06-12 21:32:56 +05:30
Avik Pal
f12e367cab
Adding untested backward pass code
2018-06-12 18:26:09 +05:30
Avik Pal
a83e5d696d
Typo
2018-06-12 17:51:52 +05:30
Avik Pal
d4b066fdf9
Forward Pass for BatchNorm Added
2018-06-12 17:49:21 +05:30
Mike J Innes
8f7ee76752
Merge pull request #290 from tejank10/patch-1
...
Default value of dilation
2018-06-09 08:55:35 +01:00
Tejan Karmali
d20771d6be
Default value of dilation
...
dilation should be 1 by default
2018-06-09 02:29:46 +05:30
Mike J Innes
9345607c38
Merge pull request #224 from tejank10/nadam-opt
...
NADAM optimizer
2018-06-08 12:28:07 +01:00
Tejan Karmali
4a24b69976
Merge branch 'master' into nadam-opt
2018-06-08 16:54:41 +05:30
Mike J Innes
4915b0c8dd
Merge pull request #268 from staticfloat/patch-2
...
Add `dilation` kwarg to `Conv`
2018-06-07 13:49:02 +01:00
Mike J Innes
af8f3348eb
Merge pull request #270 from staticfloat/sf/tracked_repeat
...
Add `TrackedArray` support for `repeat(x; inner, outer)`
2018-06-06 17:34:58 +01:00
Mike J Innes
422b31c8f7
Merge pull request #276 from kleskjr/patch-1
...
Solves Issue #262
2018-06-06 17:33:49 +01:00
Mike Innes
2370bdbe91
see #205
2018-06-06 17:01:28 +01:00
kleskjr
dd3af0c9f7
add 'using Flux: crossentropy'
...
Following the suggestion from MikeInnes to use 'using Flux: crossentropy' instead 'Flux.crossentropy'
2018-06-05 14:30:14 +02:00
Mike J Innes
1105e3ac20
Merge pull request #266 from jekbradbury/patch-1
...
Use broadcast for dropout
2018-05-31 17:18:53 +01:00
kleskjr
3a73902379
Solves Issue #262
...
Makes the running of the basic examples smoother (Issue #262 ).
crossentropy is not exported by Flus so, either explicit reference or explicit export should be add to run the examples.
2018-05-25 13:54:17 +02:00
staticfloat@gmail.com
f390a39d77
Add TrackedArray
support for repeat(x; inner, outer)
2018-05-22 17:41:05 -07:00
Elliot Saba
e6efca4bf4
Add dilation
kwarg to Conv
...
Now that we have dilated convolution support in `NNlib`, this is enables support in Flux's `Conv` layer.
2018-05-21 13:44:13 -07:00
James Bradbury
af12f006f2
Use broadcast for dropout
...
Should be fast enough on GPU now that it's not going to be an optimization target again for a while. Hopefully isn't meaningfully slower on CPU?
2018-05-20 04:04:33 -07:00
staticfloat@gmail.com
9fdbe843ef
Check for Inf
and NaN
within back!(::TrackedReal)
...
This is often checked for within user code, no reason to do that, let's
do it for them within `back!(::TrackedReal)`
2018-05-07 15:30:44 -07:00
Mike J Innes
e92f840510
Merge pull request #255 from FluxML/ad-docs
...
AD Docs
2018-05-07 16:14:25 +01:00
Mike Innes
5685df1691
tracker docs
2018-05-07 16:12:55 +01:00
Mike J Innes
24ad384a38
Merge pull request #243 from gustafsson/catdim
...
Support for hcat and cat
2018-05-07 13:04:31 +01:00
Mike Innes
ef9077d9fa
style
2018-05-07 13:03:52 +01:00
Mike Innes
b59161a41e
export Tracker again
2018-05-05 17:15:18 +01:00
Mike Innes
b35b27be6e
doc fix
2018-05-04 15:05:02 +01:00
Mike J Innes
2d3f00da29
Update README.md
2018-05-03 18:50:28 +01:00
Mike J Innes
180c2433fe
Update README.md
2018-05-03 18:34:03 +01:00
Mike J Innes
cfbead633d
Update README.md
2018-05-03 14:14:53 +01:00
Johan Gustafsson
5fc6190956
RowVector tests
2018-05-02 16:10:39 +02:00
Johan Gustafsson
94bb064a0f
more tests of array promotion for concatenation
...
# Conflicts:
# test/tracker.jl
2018-05-02 16:00:29 +02:00
Johan Gustafsson
cfdb16e609
vcat test #213
...
Co-authored-by: improbable22 <improbable+github@gmail.com>
2018-05-02 16:00:29 +02:00
Johan Gustafsson
1c189c62ed
cat with multiple dims #156
...
Co-authored-by: americast <sayan.sinha@iitkgp.ac.in>
2018-05-02 15:59:46 +02:00
Johan Gustafsson
fb68529169
define back function right after forward function
2018-05-02 15:59:46 +02:00
Johan Gustafsson
509a2e59f6
cat promotions and mixed ranks
2018-05-02 15:59:46 +02:00
Johan Gustafsson
eaaf5fd34c
vcat arrays with ndims>2
2018-05-02 15:59:46 +02:00
Johan Gustafsson
bcef5c4ab5
Support hcat and cat
2018-05-02 15:59:46 +02:00
Johan Gustafsson
13daaec1cb
Refactored tests
2018-05-02 15:59:57 +02:00
Johan Gustafsson
59324c0f91
hcat tests #194
...
Co-authored-by: Elliot Saba <staticfloat@gmail.com>
2018-05-02 15:59:46 +02:00
Johan Gustafsson
51e7e1b40f
cat tests #184
...
Co-authored-by: pevnak <pevnak@gmail.com>
2018-05-02 15:59:46 +02:00