A Tour of the Top Algorithms for Machine Learning Newbies
towardsdatascience.com
A Tour of the Top Algorithms for Machine Learning Newbies
1–10 of 56 posts
Re: A Tour of the Top Algorithms for Machine Learning Newbies
#2The problem I have is that I have a large labeled data set of spoken words and phonemes from a single speaker. I'd like to train a model and generate new phonemes (of various pitches, speeds, and intonations) with which to build a concatenative speech engine.
What algorithms and models would I be looking to use? What are the primary techniques? Is this something I could quickly begin to see results in, or would it take months or years of tweaking?
To clarify what I'm doing, I own/built trumped.com, and I'm trying to improve the speech synthesis quality by generating better fitting units of speech.
Re: A Tour of the Top Algorithms for Machine Learning Newbies
#3Re: A Tour of the Top Algorithms for Machine Learning Newbies
#4Re: A Tour of the Top Algorithms for Machine Learning Newbies
#5Also dont get hung up about no free lunch theorem. That is a great result in computer science theory with little practical impact: just pick neural networks for unstructured and GBDT for structured data. For the vast majority of real-life problems (not all possible problems) these are the single best algorithms.
Re: A Tour of the Top Algorithms for Machine Learning Newbies
#6The image for logistic regression is hilariously wrong. It shows the sigmoid as a decision boundary. Also dont get hung up about no free lunch theorem. That is a great result in computer science theory with little practical impact: just pick neural networks for unstructured and GBDT for structured data. For the vast majority of real-life problems (not all possible problems) these are the single best algorithms.
Re: A Tour of the Top Algorithms for Machine Learning Newbies
#7The image for logistic regression is hilariously wrong. It shows the sigmoid as a decision boundary. Also dont get hung up about no free lunch theorem. That is a great result in computer science theory with little practical impact: just pick neural networks for unstructured and GBDT for structured data. For the vast majority of real-life problems (not all possible problems) these are the single best algorithms.
... except that NNs require a large amount of training data.
Re: A Tour of the Top Algorithms for Machine Learning Newbies
#8Also, in the SVM section, no mention of kernel methods? (yet the picture shows a windy boundary). Also odd.
Re: A Tour of the Top Algorithms for Machine Learning Newbies
#9Nice to see a roundup of ML that doesn't just go straight to Deep Learning for a change :-)
Re: A Tour of the Top Algorithms for Machine Learning Newbies
#10The image for logistic regression is hilariously wrong. It shows the sigmoid as a decision boundary. Also dont get hung up about no free lunch theorem. That is a great result in computer science theory with little practical impact: just pick neural networks for unstructured and GBDT for structured data. For the vast majority of real-life problems (not all possible problems) these are the single best algorithms.
There's a lot of value in all that. Especially if your deliverable is something that a business is going to use, and not just a Kaggle entry.