Skip to content

First issue pytorch #7195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Tags:
- 'Arrays'
- 'Deep Learning'
- 'TensorFlow'
- 'PyTorch'
CatalogContent:
- 'intro-to-py-torch-and-neural-networks'
- 'py-torch-for-classification'
Expand Down
2 changes: 1 addition & 1 deletion content/pytorch/pytorch.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PyTorch is widely adopted in both academia and industry, competing closely with
| Feature | Description |
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Dynamic Computational Graphs | PyTorch uses dynamic computation graphs, allowing for changes to network architecture during runtime. |
| Tensor Computation | PyTorch offers a comprehensive library for tensor operations, similar to [NumPy](https://www.codecademy.com/resources/docs/numpy), but with GPU acceleration. |
| Tensor Computations | PyTorch offers a comprehensive library for tensor operations, similar to [NumPy](https://www.codecademy.com/resources/docs/numpy), but with GPU acceleration. |
| Deep Learning Support | It includes modules for constructing deep learning models, such as CNNs, RNNs, and transformers. |
| Autograd | PyTorch's automatic differentiation library, Autograd, enables easy computation of gradients, essential for training neural networks. |
| Rich Ecosystem | PyTorch has a thriving ecosystem with numerous libraries and tools, such as TorchVision for computer vision, TorchText for natural language processing, etc. |
Expand Down