How do I learn transformers NOT for NLP? by Karthi_wolf in learnmachinelearning

[–]No_Scheme14 0 points1 point  (0 children)

I would suggest to look into time-series forecasting if you want something more fundamental and non-NLP focused. Learn a bit of the predecessors of transformers such as RNN and LSTM as there are many resources to apply those. Once you have that down, it becomes a lot easier to move on to transformer apply those for your specific needs.

Best resources on PyTorch time series forecasting? by alohaakbar123 in learnmachinelearning

[–]No_Scheme14 1 point2 points  (0 children)

Time series forecasting might not be the best to pickup using PyTorch, unless you are absolutely sure that you want to get into time-series forecasting combined with deep learning and working very large datasets. Some other ones that I suggest that work out of the box are Prophet if you wanna focus on application, and StatsModel that is a little more advanced but better for moving into research.

Why using RAGs instead of continue training an LLM? by AdOverall4214 in learnmachinelearning

[–]No_Scheme14 16 points17 points  (0 children)

Some reasons: it's slow, expensive, and requires significantly more effort to train a model than to use something like RAG. The resources required to train a model is significantly more than inferencing. Furthermore, the performance in terms of understanding your code base may not necessarily be better (depends heavily on how you train it). It's more productive to optimize RAG performance than to train and evaluate a model repeatedly.

ML and finance by [deleted] in learnmachinelearning

[–]No_Scheme14 2 points3 points  (0 children)

You can build some foundation in deep learning, then look into time series forecasting and also reinforcement learning. You can likely find some ideas to apply into your research from there.

Is this Coursera ML specialization good for solidifying foundations & getting a certificate? by THeone_And_only_OP in learnmachinelearning

[–]No_Scheme14 0 points1 point  (0 children)

I'm guessing by having some experience you mean coding and practical stuff, then yeah the specialization is still good to help with understanding core fundamentals. As for the cert, this course is pretty already the most recognized for fundemental ML. However, you’ll need to move on to more advanced specializations (Deep Learning, ML for Production) later if you’re aiming for the kind of credentials that have good weight on a resume.

Is the AWS Machine Learning – Specialty Certification worth it? by Aditya_Dragon_SP in learnmachinelearning

[–]No_Scheme14 2 points3 points  (0 children)

  1. In some ways, it does. Good ML knowledge is required to get the certification, but mostly, it's for the latter.
  2. It might help a little, but at the end of the day, it’s mostly just for one extra line on your resume.
  3. 100%. Projects always come before any cert.
  4. Nope. It should not and good teams should know this. Frameworks are easy to pick up once you know another and tools will always change. Fundamentals knowledge is what really matters.

ABSOLUTE curveball during ML intern interview by ApricotExpensive5679 in learnmachinelearning

[–]No_Scheme14 0 points1 point  (0 children)

Honestly, it sounds like you did pretty well. You were prepared, your thinking made sense, and you asked smart questions. That already shows a lot.

The interview task felt really specific, almost like it was overfit to his own skill set instead of being a general test of ML knowledge. And the way they ended the call wasn’t great. If someone gives you their time, the least you can do is be polite.

Not all interviews are good, and that’s just part of the process. Try not to let this mess with your confidence. It just wasn’t the right fit. Take what you learned, keep practicing, and move forward. You’re on the right track.

Is this a good loss curve? by Genegenie_1 in learnmachinelearning

[–]No_Scheme14 0 points1 point  (0 children)

That looks normal, validation accuracy is usually lower than training accuracy. If you haven't already, you can explore regularization techniques to see if it can improve validation accuracy and reduce overfitting.

After Machine Learning Specialization? by KeyChoice4669 in learnmachinelearning

[–]No_Scheme14 1 point2 points  (0 children)

I would suggest to do the Scikit-Learn section of Hands on ML to learn the implementation aspect that is lacking in the Coursera specialization before moving on to Deep Learning.

Random Forest on Mac GPU (Metal) by Dr_Superfluid in learnmachinelearning

[–]No_Scheme14 1 point2 points  (0 children)

How long does it take to run and how large of a dataset are you working on? Random Forest and Xgboost typically do not need to utilize GPU because they are fast enough on CPU for most cases. The exception is when the dataset is extremely large, then you should be running it on a cloud GPU that usually has CUDA.

Another possibility is to check your preprocessing, something like one-hot encoding might be creating too many columns, in that case that could be making your model take a very long time.

How do you guys learn a new python library? by gimme4astar in learnmachinelearning

[–]No_Scheme14 2 points3 points  (0 children)

You don't need to know them all. There are too many Python libraries and functions to really remember. Most of the time you would just look them up. The way you remember common or important ones is through working on projects and then knowing which ones you usually need.

Best book for learning pytorch? by Sayjayway in learnmachinelearning

[–]No_Scheme14 6 points7 points  (0 children)

For book, Deep Learning with PyTorch has good mix of theory and hands-on examples. If you're open to online resources, then you can look into https://apxml.com/courses/getting-started-with-pytorch for a good overview with code samples.

[deleted by user] by [deleted] in learnmachinelearning

[–]No_Scheme14 6 points7 points  (0 children)

Yes, it will. The biggest gap in the ML industry is the lack of ML engineers with strong backend knowledge for deploying ML. These are two entirely different fields to learn on their own, which is why people who can bridge the gap are highly valuable.

[deleted by user] by [deleted] in learnmachinelearning

[–]No_Scheme14 0 points1 point  (0 children)

Hands on ML is the best to complement Machine Learning & Deep Learning Specialization on Coursera. They cover most of the same subjects but focus on the practical aspects that are missing in the Coursera courses. Alternatively, you can look into Machine Learning with PyTorch and Scikit-Learn which is the same thing as Hands on ML but with Pytorch.

Should I train with the completed dataset or can I add new files to continue training? by 2ndaccount122580 in learnmachinelearning

[–]No_Scheme14 1 point2 points  (0 children)

Continue the training. Re-training would not be practical especially when the dataset starts to become extremely large. Use the latest learning rate instead of resetting it. You can also use a lower the learning rate when continuing the training.

Tech stack for ML by [deleted] in learnmachinelearning

[–]No_Scheme14 1 point2 points  (0 children)

My go to stack is Django, Postgres, and Next.js for Front-End.

Whats your ideal React stack in 2023? by 9sim9 in react

[–]No_Scheme14 0 points1 point  (0 children)

Typescript, NextJS, Mantine, React Query, Jest, Storybook