Jason Kuen
f2c1071c33
Adaptive max and average pooling (1D & 2D) ( #1084 )
2017-03-26 17:09:28 +02:00
Edgar Riba
63f6c0d692
add Pairwise distance ( #835 )
2017-03-24 11:29:40 -04:00
ngimel
b3ab4b1094
Check torch.backends.cudnn.enabled, padding, and output_padding ( #996 )
...
* Check torch.backends.cudnn.enabled
* Don't allow negative padding and output_padding values
2017-03-22 19:42:11 -04:00
Kentaro Wada
7654b3f49e
Add function to compute cross_entropy for 2D image ( #802 )
2017-03-16 17:34:04 +01:00
Soumith Chintala
13b1580613
add F.pad to docs
2017-03-15 00:09:14 -04:00
Sam Gross
34ce58c909
Parallelize backwards
2017-03-03 11:26:00 -08:00
Sergey Zagoruyko
12efd53dba
ConstantPad2d and F.pad ( #856 )
2017-03-01 19:39:44 +01:00
Ofir Press
5e1d6a3691
Update functional.py ( #862 )
...
Fixed documentation error in conv3d
2017-02-27 10:42:02 -05:00
陈云
838842d4b2
fix documentation error. [issue #790 ]( https://github.com/pytorch/pytorch/issues/790 ) ( #831 )
2017-02-23 08:59:29 +01:00
Joo-Kyung Kim
336eeee895
kernel_size as the default stride for avg_pool1d ( #744 )
...
Following the documentation, let stride to be kernel_size if stride is not provided.
2017-02-15 13:12:18 +05:30
Soumith Chintala
d4c9a3782b
billinear -> bilinear, docs for upsampling, improved docs for Unpooling, pep8 tests fix ( #617 )
...
* billinear -> bilinear, docs for upsampling, improved docs for Unpooling, pep8 tests fix
2017-01-30 05:08:48 +05:30
Luke Yeager
3ed720079e
[pep8] Fix most remaining lint manually
2017-01-28 01:15:51 +01:00
Luke Yeager
e7c1e6a8e3
[pep8] Fix most lint automatically with autopep8
...
Here's the command I used to invoke autopep8 (in parallel!):
git ls-files | grep '\.py$' | xargs -n1 -P`nproc` autopep8 -i
Several rules are ignored in setup.cfg. The goal is to let autopep8
handle everything which it can handle safely, and to disable any rules
which are tricky or controversial to address. We may want to come back
and re-enable some of these rules later, but I'm trying to make this
patch as safe as possible.
Also configures flake8 to match pep8's behavior.
Also configures TravisCI to check the whole project for lint.
2017-01-28 01:15:51 +01:00
Adam Paszke
f8d4f980b3
Add upsampling modules and functions
2017-01-24 17:30:50 -05:00
Alykhan Tejani
f8e89fbe11
fix docs for torch.nn.functional.conv1d ( #536 )
2017-01-21 10:41:52 -05:00
Adam Paszke
ee4c77c59f
Docs improvements ( #512 )
...
* Always compile .numpy() for all types
* Add torch.nn.functional docs and hidden headers
* Use sphinx to generate torchvision docs
* Remove unused import in ffi utils
2017-01-19 17:28:49 -05:00
Sergey Zagoruyko
9c218b419f
kl_div and docs ( #429 )
2017-01-17 19:24:01 -05:00
Adam Paszke
1dbf44c00d
Add SmoothL1Loss to functional
2017-01-16 12:59:47 -05:00
Sam Gross
3a07228509
Add ConvTranspose1d module ( #449 )
2017-01-13 15:22:57 -05:00
Sam Gross
24a2f2e3a0
Add MaxUnpool1d module ( #447 )
2017-01-13 14:36:25 -05:00
Sam Gross
d5e45b2278
Add AvgPool1d which just uses AvgPool2d implementation ( #439 )
2017-01-12 15:07:11 -05:00
Sam Gross
fd92470e23
Add cuDNN bindings for BatchNorm ( #421 )
2017-01-07 15:35:24 -05:00
Adam Paszke
483490cc25
Move PixelShuffle implementation to functional
2016-12-30 23:02:57 +01:00
Adam Paszke
8d60e39fdc
Rename torch.nn.functions to torch.nn._functions
2016-12-30 23:02:57 +01:00
Sam Gross
c367e0b64e
Support dilated 1d and 3d convolutions ( #372 )
...
Fixes #367
2016-12-29 18:20:32 -05:00
Sergey Zagoruyko
62af45d99f
Basic functional interface ( #354 )
2016-12-29 22:53:57 +01:00