Skip to content
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

deep-learning-v1 keras/tf student here, are the videos mostly the same? #414

Open
nyck33 opened this issue May 16, 2023 · 1 comment
Open

Comments

@nyck33
Copy link

nyck33 commented May 16, 2023

I took it a long time ago and we used Keras and TF but I want to learn Pytorch now.

Are the videos and curriculum mostly the same, just implementation is in Pytorch?

@Siddharth-Latthe-07
Copy link

Siddharth-Latthe-07 commented Jul 17, 2024

When transitioning from Keras and TensorFlow to PyTorch, the fundamental concepts of deep learning and neural networks remain the same, but the implementation details and some aspects of the workflow will differ.

key differences:-

  1. Syntax and API:
    Keras/TF: Keras is high-level and designed to be user-friendly, often allowing for quick model building with less code.
    PyTorch: PyTorch provides more control and flexibility, with a more explicit approach to building and training models.

  2. Dynamic vs. Static Graphs:
    Keras/TF: TensorFlow (especially in its early versions) used static computation graphs, which required defining the entire computation graph before running it.
    PyTorch: Uses dynamic computation graphs, allowing you to modify the graph on the fly. This can make debugging easier and more intuitive.

Hope, this helps
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants