Talk:PyTorch

{{Old AfD multi |date=11 December 2017 |result=keep |page=PyTorch}}

{{WikiProject banner shell|class=C|

{{WikiProject Computing |importance=mid |free-software=yes |free-software-importance=low |software=yes }}

{{WikiProject Artificial Intelligence |importance=High}}

}}

{{annual readership}}

Removing examples and documentation

Is it necessary to have example code? This page contains some things which are more appropriate for the documentation. In general if people want to know this stuff they can read the Pytorch documentation, Wikipedia isn't really meant to be a hosting site for sample scripts — Preceding unsigned comment added by Gadget142 (talkcontribs) 00:16, 1 August 2023 (UTC)

Update release

The latest version is 1.7.1, while the article says 1.7.0. I want to update it, but it looks like this is using some template referring to wikidata.

Where can I edit the original data behind this template?

Thanks! Paritalo (talk) 11:43, 9 February 2021 (UTC)

Not sure if "See also" should feature Tensor

The mathematical and physical definition of tensor (with the latter being slightly different because it usually means tensor field) is not the same as the one used in Deep Learning. I think the link is both needlessly complicated and misleading, and therefore should be removed. --Svennik (talk) 10:30, 5 January 2022 (UTC)

: Done. --Svennik (talk) 10:33, 5 January 2022 (UTC)

Confirm BSD License

I've been trying to figure out the license of PyTorch, and can see it's listed as BSD in this article. I am unable to find any other source that confirms this. Is there a citation for this information? 134.7.210.134 (talk) 07:56, 14 July 2022 (UTC)

is it just me, or is this output wrong/inconsistent somehow?

from the current version of the page...

> a = torch.randn(2, 3, device=device, dtype=dtype)

> print(a) # Output of tensor A

> # Output: tensor([[-1.1884, 0.8498, -1.7129],

> # [-0.8816, 0.1944, 0.5847]])

[...]

> print(a.max()) # Output of the maximum value in tensor A

> # Output: tensor(-1.7129)

I think the above outputs were collected from separate runs wherein the randomized results were different. IMO this should be made internally consistent. Abe149 (talk) 03:38, 26 July 2023 (UTC)