Live data from Hacker News

PyTorch – Tensors and Dynamic neural networks in Python

pytorch.org

11–20 of 91 posts

Re: PyTorch – Tensors and Dynamic neural networks in Python

#11

Is this related to lua's Torch at all? http://torch.ch/

They don't seem to explicitly say it, but it might be using the same core code given the structure of the framework and their mentioning that it's a mature codebase several years old. The license file also goes back to NYU before being taken over by Facebook, similar to Torch.

Re: PyTorch – Tensors and Dynamic neural networks in Python

#13
post #6

I am confused with the license file. What does it mean? Some rights reserved and copyright... Doesnt look like a real open source project.

Copyrights are appropriate, they make it explicit who produced the work and make it easier to enforce the license. This license follows the general form of the BSD-style license [1].

[1] https://opensource.org/licenses/BSD-3-Clause

Re: PyTorch – Tensors and Dynamic neural networks in Python

#14
post #6

I am confused with the license file. What does it mean? Some rights reserved and copyright... Doesnt look like a real open source project.

It is a standard 3-clause BSD license. The "All rights reserved" portion definitely adds ambiguity (and only exists in the BSD license out of all major OSS licenses). There is StackExchange answer that goes into the history of it[1].

[1] http://opensource.stackexchange.com/questions/2121/mit-licen...

Re: PyTorch – Tensors and Dynamic neural networks in Python

#18
post #6

I am confused with the license file. What does it mean? Some rights reserved and copyright... Doesnt look like a real open source project.

It is a standard 3-clause BSD license. The "All rights reserved" portion definitely adds ambiguity (and only exists in the BSD license out of all major OSS licenses). There is StackExchange answer that goes into the history of it[1]. [1] http://opensource.stackexchange.com/questions/2121/mit-licen...

Got it. It makes sense now.

Re: PyTorch – Tensors and Dynamic neural networks in Python

#20
post #16

I've never fiddled with machine learning thing so don't know anything about it. I am wondering if CUDA is mandatory for torch installation ? I use a Macbook air which doesn't have graphics card, so not sure if torch can be installed and used on my machine.

I believe that's a "no". I was able to set up a docker'ized Deep Style on my Macbook Pro, although it takes for bloody ever to do a single image. CUDA is, AFAIK, a substantial speed boost, but not a requirement.
Post reply on HN