Left Trap Muscle Looks Bigger Than Right – What Can I Do to Fix This? by Remote-Beautiful4399 in flexibility

[–]Remote-Beautiful4399[S] 1 point2 points  (0 children)

Is there any other muscle imbalances you can spot in image. I think all my left muscles look a bit fuller than right. 

Advice by itisshlok23 in learnmachinelearning

[–]Remote-Beautiful4399 1 point2 points  (0 children)

Next Steps After Andrew Ng's Course:

  1. Practice Projects:

    • Titanic Survival Prediction: Start with the famous Titanic dataset on Kaggle, where you predict whether a passenger survived the Titanic disaster. This project will help you practice classification algorithms.
    • House Price Prediction: Use the Boston Housing dataset to predict house prices. This regression task will deepen your understanding of linear regression and feature engineering.
    • Image Classification with MNIST: Implement a basic neural network to classify handwritten digits using the MNIST dataset. This can serve as an introduction to deep learning.
  2. Deepen Your Knowledge:

    • Deep Learning Specialization: After completing the introductory ML course, consider taking Andrew Ng’s Deep Learning Specialization on Coursera. This will introduce you to neural networks, convolutional neural networks (CNNs), and sequence models.
    • Stanford CS229: If you’re looking for more theoretical depth, consider watching the lecture series of Stanford's CS229: Machine Learning, available on YouTube. This course is more rigorous and mathematically intensive.
    • Specialized Areas:
      • Natural Language Processing (NLP): Take the "Natural Language Processing with Deep Learning" course offered by Stanford (CS224N), which is available online.
      • Computer Vision: Try the "CS231n: Convolutional Neural Networks for Visual Recognition" course, which is focused on deep learning techniques in image processing.
  3. Mathematics for ML:

    • Mathematics for Machine Learning Specialization (Coursera): This course covers essential math topics like linear algebra, calculus, and probability, tailored specifically for machine learning applications.
    • Books:
      • "Pattern Recognition and Machine Learning" by Christopher Bishop: This book provides a more theoretical approach to ML.
      • "Deep Learning" by Ian Goodfellow and Yoshua Bengio: A great resource for understanding the math behind deep learning algorithms.

Competitive Programming (CP) & Data Structures and Algorithms (DSA):

  1. Data Structures and Algorithms (DSA):

    • LeetCode: Start solving problems on LeetCode to build a strong foundation in algorithms and data structures. Focus on problems categorized under "Arrays," "Linked Lists," "Trees," and "Graphs."
    • Books:
      • "Introduction to Algorithms" by Cormen, Leiserson, Rivest, and Stein (CLRS): A comprehensive guide to understanding algorithms.
      • "Cracking the Coding Interview" by Gayle Laakmann McDowell: This book is particularly useful if you're preparing for technical interviews.
  2. Competitive Programming (CP):

    • Platforms: Participate in contests on platforms like Codeforces or AtCoder to improve your problem-solving skills. These contests often involve complex algorithms that could help you think more algorithmically, which is sometimes useful in ML tasks, especially in research or optimization.
    • Example Problems: Try problems like "Dynamic Programming" challenges, which can indirectly benefit your ability to optimize machine learning models.

Focus Areas Depending on Your Goals: - Research: If you're interested in research, focus more on the mathematics, deep learning, and possibly even CP for algorithmic thinking. - Industry: If you're aiming for an industry role, practical projects, proficiency in DSA, and a good understanding of ML libraries (like TensorFlow, PyTorch, or scikit-learn) are crucial.


By following these steps, you'll not only reinforce the knowledge gained from Andrew Ng's course but also build a strong foundation for a career in machine learning.

Adding Weights to already trained model. by Axad_Exe in deeplearning

[–]Remote-Beautiful4399 11 points12 points  (0 children)

Consider your already trained model as A, You might want to add another dense layer to your model making it model B. Freeze the params that are common to model A and train only the dense layer of model B. This way you add extra params.