Viewing profile — apaszke
apaszke
HN member- Joined
- Mon, Aug 17, 2015, 1:52 PM UTC
- HN karma
- 37
- Public activity
- 25 items
- HN profile
- View on Hacker News ↗
About apaszke
No profile information was provided.
Recent public activity
- story
-
comment
Comment #16425389
PyTorch was never a Chainer fork. The whole codebase are C libs from Lua Torch, and a bunch of Python code that was written entirely for this project. Chainer was an inspiration, b…
-
comment
Comment #15325324
PyTorch uses NVIDIA NCCL for multi-GPU communication (under BSD license). Gloo is only one of the three backends that can be used for distributed communication out of the box.
-
comment
Comment #15215434
It's not controlled by Facebook in any way. It's true that a large part of the core team works there, but development is public and guided by community needs first.
-
comment
Comment #15212872
It's not like you have to give up a lot - the graphs are simple data structures and creating them is not the expensive part of the training. The computation has to be re-done at ev…
-
comment
Comment #15212852
gloo is only one of the three currently supported backends. One can easily switch to MPI, and pick an implementation that comes with a license you want.
-
comment
Comment #13892737
It supports numpy, and conversion from PyTorch tensors to numpy arrays is a matter of calling the numpy() method.
-
comment
Comment #13876971
To not have the kernel launch overhead you'd need to stop launching GPU kernels but that's now how things work in any framework ;)
-
comment
Comment #13874380
These ops are just not needed in PyTorch. while is just a Python while loop. Scan is a for loop, map is a list comprehension that applies modules. No need for anything fancy.
-
comment
Comment #13455390
Yes! There's an issue on that, where we'll be coordinating the work: https://github.com/pytorch/pytorch/issues/494
-
comment
Comment #13455388
You save the parameters and the code of the model definition
-
comment
Comment #13431708
torch?
-
comment
Comment #13431700
But it is possible to write your model in purely functional style. Check out the PR to examples repo with functional ResNets https://github.com/pytorch/examples/pull/22 .
-
comment
Comment #13431693
torch.nn offers a very similar interface to Keras (e.g. see Alexnet definition at https://github.com/pytorch/vision/blob/master/torchvision/mo... ).
-
comment
Comment #13429536
No! Python 0 based indexing everywhere.
-
comment
Comment #13429113
The core libraries are the same as in Lua torch, but the interface is redesigned and new.
- story
- story
-
comment
Comment #10076842
I am aware of 'ul' conflict, but I haven't heard of it before, so I just hoped that it's not popular :x If you've found a bug in installation script then please post an issue at Gi…
-
comment
Comment #10076830
I am aware that there are lots of universal window managers, but I just wanted something simple that would have a terminal API. This is why I've created termtile
-
comment
Comment #10072996
I know that there are loads of universal window managers, but I wanted a one with a terminal API ;)
-
comment
Comment #10072978
Thanks! It's nice to hear that! What is the bug you're talking about?
-
comment
Comment #10072967
I didn't include it, because OS X can already make the window full screen. Do you think it would be useful just to resize the window without creating a new desktop?
-
comment
Comment #10072962
Hey guys, I'm a creator of termitile. Many of you have pointed out that there are lots of window managers for OS X and my intention wasn't to create just another one. What I really…
-
comment
Comment #10072943
I know about it, but I didn't have an 'll' alias so i picked it just to be consistent with 'rr'. If you wish you can configure the aliases in the install.sh file (if you decline to…