6 ms·
PyTorch: An Imperative Style, High-Performance Deep Learning Library [pdf]
- jspisak 7y agoFinally the solution to all of your PyTorch citation problems! :)
- crazypyro 7y agoRelevant Github issue: https://github.com/pytorch/pytorch/issues/4126 https://github.com/pytorch/pytorch/issues/4126
- godelski 7y agoIt is surprising to me that they don't put this in the README. (I do know it is in the root directory[0], it is just common practice to have it in the README. To be stupidly obvious) [0] https://github.com/pytorch/pytorch/blob/master/CITATION https://github.com/pytorch/pytorch/blob/master/CITATION
- amrrs 7y agoIf you want to read it online - https://www.arxiv-vanity.com/papers/1912.01703/ https://www.arxiv-vanity.com/papers/1912.01703/
- wjn0 7y agoah, yes, why squint at a PDF when you can squint at LaTeX compile errors instead
- scythe 7y agoMan it’s kinda sad as a Lua fan to see so much interest in a project where the main goal is just to not use Lua. I guess academics like familiarity and Lua insistently refuses to be like other languages (arrays and maps in one type, 1-based arrays, nonstandard builtin patterns, etc).
- uoaei 7y agoAcademics simply don't have the time to learn languages that do not have substantial ecosystems and relative ease-of-use.
- scythe 7y agoIt’s true - there have been attempts to fix it, but nobody has created something other people want to use. The Torch project largely replaced all of the then-popular Lua packages — wxLua was dropped for Torch’s internal qtLua, the Lua concurrency libraries (Lanes and luaproc) were ignored in favor of zeroMQ, LPeg and Lua patterns were generally less popular than PCRE and Re2 bindings, et cetera. Maybe Torch is to blame (NIH syndrome), maybe the Lua packages weren’t up to the task, maybe communication within the community is too hard (Lua lacks centralized discussion channels where experienced users are regularly active), but in the end, Lua didn’t come away looking good here. Learning a new language wasn’t too hard when that language was Python, after all.
- elcomet 7y ago> the main goal is just to not use Lua. I don't think that's accurate. People don't really care about Lua, they don't like or dislike it, they just don't know it. The goal of the project is to use python, because people care about Python. It just happened that porting (lua) torch to Python was chosen, but it could have been another framework.
- cfusting 7y agoIt's just about package support and the community. If researchers and practitioners were choosing a language based on merit alone it would probably be Julia for native speed and support for scientific computing. It's nice to have a toy language you appreciate but recall the goal is to write math into algorithms; the language is just tool.
- foxes 7y agoIt's a bit funny to call it imperative, when really at the end of the day, the objective is to get something where you have very little insight into what the neural net. is doing to the state.
- zapnuk 7y agoIs there a typo in Listing 1? The forward function of the conv net should use: t3 = self.fc(t2) instead of: t3 = self.fc(t1) AFAIK the nn.functional.relu function is NOT inplace by default [1] https://pytorch.org/docs/stable/nn.functional.html https://pytorch.org/docs/stable/nn.functional.html
- MiroF 7y agoyes that's a typo