TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

PyTorch: An Imperative Style, High-Performance Deep Learning Library [pdf]

113 点作者 stablemap超过 5 年前

5 条评论

jspisak超过 5 年前
Finally the solution to all of your PyTorch citation problems! :)
评论 #21725952 未加载
scythe超过 5 年前
Man 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.<p>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).
评论 #21727314 未加载
评论 #21728172 未加载
评论 #21728179 未加载
评论 #21727248 未加载
amrrs超过 5 年前
If you want to read it online - <a href="https:&#x2F;&#x2F;www.arxiv-vanity.com&#x2F;papers&#x2F;1912.01703&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.arxiv-vanity.com&#x2F;papers&#x2F;1912.01703&#x2F;</a>
评论 #21726517 未加载
zapnuk超过 5 年前
Is there a typo in Listing 1?<p>The forward function of the conv net should use:<p>t3 = self.fc(t2)<p>instead of:<p>t3 = self.fc(t1)<p>AFAIK the nn.functional.relu function is NOT inplace by default [1]<p><a href="https:&#x2F;&#x2F;pytorch.org&#x2F;docs&#x2F;stable&#x2F;nn.functional.html" rel="nofollow">https:&#x2F;&#x2F;pytorch.org&#x2F;docs&#x2F;stable&#x2F;nn.functional.html</a>
评论 #21728860 未加载
foxes超过 5 年前
It&#x27;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.