Tongzhou Wang
c681b03d37
Add determinant function on variable; Add backward on svd ( #3816 )
...
* determinant on variable
* svd bwd
2017-12-01 13:22:46 -05:00
Tzu-Wei Huang
80c8635a7e
fix math notation ( #3962 )
2017-12-01 10:15:10 -05:00
Richard Zou
2b5a38b1a8
Add missing trtrs, orgqr, ormqr docs ( #3720 )
...
* trtrs docs
* orgqr and ormqr docs
2017-11-15 15:37:34 -05:00
Ozan Çağlayan
dd6d04ddf2
doc: Normalize all true/false in docstrings to `True|False` ( #3593 )
...
* doc: Normalize all true/false in docstrings to ``True|False``
This makes them more apparent in the documentation.
* doc: fix flake8
2017-11-09 08:12:29 -05:00
Dhanton
74d1bb54e6
Add single argument version of torch.arange ( #3494 )
2017-11-06 12:26:04 -05:00
Sam Gross
7c0b16c140
Add torch.take and Tensor.put_ ( #3263 )
...
* Add torch.take and Tensor.put_
These are similar to numpy.take and numpy.put. The take function allows
you to linearly index into a tensor without viewing it as a 1D tensor
first. The output has the same shape as the indices. The put function
copies value into a tensor also using linear indices.
2017-11-01 06:04:44 -04:00
Gökçen Eraslan
d4a0ec62dc
Typo fix in torch.median ( #3399 )
2017-10-31 17:19:40 -04:00
IraKorshunova
2b9765ad02
Erf and erfinv ( #2799 )
2017-09-20 21:23:45 -04:00
Allen Ye
bfbd1bbb50
Update torch.triu/torch.tril doc ( #2619 )
2017-09-05 00:05:44 -04:00
Zhou Mo
2c07f88ea3
Fix typos.
2017-08-25 14:27:07 -04:00
Taehoon Lee
61e4723132
Fix typos ( #2472 )
2017-08-25 14:13:38 -04:00
Alykhan Tejani
eb58740651
add ones_like and zeros_like
2017-08-25 14:11:04 -04:00
Allen Ye
a32e98b700
Add documentation for std/var unbiased argument ( #2509 )
2017-08-22 03:45:54 -04:00
Gregory Chanan
50c208a50b
Revert "Fix typos."
...
This reverts commit 4622b33952 .
2017-08-10 13:57:00 -04:00
Zhou Mo
4622b33952
Fix typos.
2017-08-08 11:05:38 -04:00
Soumith Chintala
8983bf13f4
fix max and min docs
2017-07-13 03:03:27 -04:00
Soumith Chintala
58e4caf80f
add missing docs
2017-07-13 01:01:04 -04:00
Leonid Vlasenkov
46a868dab7
[Ready] Limit docs line length ( #1900 )
...
* some docs are ready
* docs
* docs
* fix some more
* fix some more
2017-07-10 10:24:54 -04:00
Soumith Chintala
1aaa24d99b
add medianall prototype to docs
2017-07-04 16:52:36 -04:00
Luca Antiga
05c2bafc9d
Have median reduce over all dims and return just the value when dim is not provided
2017-07-04 14:55:37 -04:00
Gregory Chanan
bb3779efe8
Add broadcasting to masked_select.
2017-06-24 09:45:21 -04:00
Brandon Amos
497db732fc
btrifact: Make pivoting optional.
2017-06-22 12:45:14 -04:00
gchanan
a64560c22e
Remove flattening for torch.dot ( #1781 )
2017-06-16 02:15:33 +02:00
Thomas Viehmann
97f50edf46
Add documentation for Cholesky lapack functions ( #1816 )
2017-06-16 02:10:56 +02:00
Sam Gross
9c53c6dcb9
Fix errors and warnings when building docs ( #1806 )
2017-06-14 13:50:14 -04:00
Gregory Chanan
7da46097fe
Fix lint errors.
2017-06-11 05:37:59 -04:00
Gregory Chanan
a36f95fe26
Add broadcast support for fused-matmul broadcasting. Functions are: addmm, addbmm, addr, addmv, baddbmm.
2017-06-11 05:37:59 -04:00
Gregory Chanan
d279c6e099
Docs for addcdiv, addcmul
2017-06-11 05:37:59 -04:00
Gregory Chanan
e96f854ce2
Implement/test broadcasting semantics for comparison ops.
2017-06-11 05:37:59 -04:00
Gregory Chanan
471dfe9791
Add documentation including links to numpy broadcasting semantics.
2017-06-11 05:37:59 -04:00
Gregory Chanan
9087624634
Revert "Restore examples with keepdim=True default."
...
This reverts commit 6fab62173e .
2017-06-11 05:37:58 -04:00
Gregory Chanan
e772a440cb
Revert "Change keepdim default to False."
...
This reverts commit e124790cb2 .
Note the original commit message is incorrect; this changes keepdim
back to false.
2017-06-11 05:37:58 -04:00
Liang Shuailong
4eb448a051
Fix simple typo
...
Dimension a bit wrong
2017-05-28 18:53:04 +02:00
gchanan
46ee1e4687
Clarify definition of gather function in docs. ( #1652 )
2017-05-25 11:06:28 -04:00
gchanan
9a497f824b
Add size/dimensionality documentation for torch.gather. ( #1645 )
2017-05-24 20:42:18 -04:00
Kai Arulkumaran
feaee29bfe
Add argmax and argmin to docs
2017-05-20 18:56:20 +02:00
Ronny Restrepo
8aa011f52a
minor typo and style changes to _torch_docs.py ( #1559 )
2017-05-15 15:32:56 +02:00
Rudy Bunel
6fc9130052
Adapt documentation to reflect new supported argument ( #1548 )
...
Reflect the changes of #1323
2017-05-13 21:09:34 -06:00
Xinwei Geng
28f4f6db2c
typo error for torch.addr ( #1547 )
...
fix the typo error in the example for torch.addr
2017-05-13 08:53:05 -07:00
Gregory Chanan
6fab62173e
Restore examples with keepdim=True default.
2017-05-09 14:49:55 -07:00
Gregory Chanan
e124790cb2
Change keepdim default to False.
2017-05-09 14:49:21 -07:00
Gregory Chanan
be5191a00b
Add documentation for keepdim.
2017-05-09 14:16:42 -07:00
gchanan
7d40140bfb
Document squeeze behavior on 1-dimensional tensors of size 1. ( #1470 )
2017-05-04 16:54:22 +02:00
gchanan
574cfe3cf3
Improve kthvalue documentation. ( #1448 )
...
1) Fix "kth" attr specification -- I can't get sphinx to generate `k`th,
but `k` th works with a space, unlike now where the highlighting continues
until the next attr.
2) Specify the size of the return tensors.
3) Add an example of the return tensor sizes with more than 1 dimension.
2017-05-02 17:22:02 -04:00
gchanan
5aa1f769d3
Fix torch.dist documentation: function returns a float. ( #1440 )
2017-05-02 14:38:48 -04:00
Rudy Bunel
28a7fbbdf5
Documentation fix for torch.gather
2017-04-28 22:45:14 +02:00
Adam Paszke
afeeb81e79
Add support for keyword arguments in torch.cat
2017-04-11 14:48:54 -07:00
albanD
f0c7124420
Allow support for negative dimension argument for all functions
2017-04-06 16:37:00 -07:00
Brandon Amos
d122b4e4ec
Update btrisolve docs to the newest interface.
2017-04-04 15:21:16 -04:00
Adam Paszke
91c4ba7980
Add torch.arange and deprecate torch.range
2017-04-03 10:38:58 -04:00