Adding Pytorch: deep learning framework that puts Python first.#826
Merged
vinta merged 2 commits intovinta:masterfrom Jan 31, 2017
Merged
Adding Pytorch: deep learning framework that puts Python first.#826vinta merged 2 commits intovinta:masterfrom
vinta merged 2 commits intovinta:masterfrom
Conversation
vinta
requested changes
Jan 31, 2017
README.md
Outdated
| * [Neupy](http://neupy.com/pages/home.html) - Running and testing different Artificial Neural Networks algorithms. | ||
| * [TensorFlow](https://github.com/tensorflow/tensorflow) - The most popular Deep Learning framework created by Google. | ||
| * [Theano](https://github.com/Theano/Theano) - A library for fast numerical computation. | ||
| * [Pytorch](http://pytorch.org/) - Tensors and Dynamic neural networks in Python with strong GPU acceleration. |
Owner
There was a problem hiding this comment.
Would you mind sorting it in the alphabetical order?
Contributor
Author
There was a problem hiding this comment.
@vinta I sorted it! Thanks for review it.
vinta
approved these changes
Jan 31, 2017
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is this Python project?
PyTorch is a deep learning framework that puts Python first with two level features:
Tensor computation (like numpy) with strong GPU acceleration.
Deep Neural Networks built on a tape-based autograd system.
What's the difference between this Python project and similar ones?
It uses dynamic graph creation, which enables more flexibility in computation.
Extensions without pain: you can reuse your favorite python packages such as numpy, scipy and Cython to extend PyTorch when needed.
Fast and Lean.
--
Anyone who agrees with this pull request could vote for it by adding a 👍 to it, and usually, the maintainer will merge it when votes reach 20.