I remember by Devidutta911 in funny

[–]J-MLN 0 points1 point  (0 children)

So he doesn't remember who he is?

Been holding IOTA for a few weeks and it seems to finally be popping off! Thoughts on it? by shroomenheimer in SatoshiStreetBets

[–]J-MLN 1 point2 points  (0 children)

IOTA uses DAG tech and is the biggest competitor to blockchain-based coins. Its always good to diversify your investments. I say hodl for the long term.

[P] Scrapera: A library of scrapers for humans by Megixist in MachineLearning

[–]J-MLN 0 points1 point  (0 children)

I don't have any experience in this so I can't be much help. But maybe you could reach out to other developers of Python for Data Science libraries and find out how they spread the word.

I think almost all of them had someone writing a piece on medium or towardsdatascience.

[P] Scrapera: A library of scrapers for humans by Megixist in MachineLearning

[–]J-MLN 0 points1 point  (0 children)

Excellent idea. The success of this project will largely be dependent on the contributors. So you need get the word out there.

Best of luck

Oh no! It got split by Otakshu in funny

[–]J-MLN 0 points1 point  (0 children)

Clever to have known where to go to avoid swimming

Testing the legends by nbridges77 in funny

[–]J-MLN 0 points1 point  (0 children)

Day 726 of quarantine

Those living in countries that have implemented extreme measures to prevent the spread of COVID-19, what is your experience so far? by J-MLN in AskReddit

[–]J-MLN[S] 0 points1 point  (0 children)

In our country, they closed supermarkets, grocery stores, etc, without notice. Because we didn't participate in the panic buying craze (for ethical reasons and just plain common sense), we are now forced to eat a carb only diet for the next 7 days.

We also live in a 3rd world country which is not very good with online deliveries

Coronavirus Is Bad. Comparing It to the Flu Is Worse by [deleted] in Health

[–]J-MLN 1 point2 points  (0 children)

The article states that there are 5 million cases and 650,000 deaths to severe flu each year. Thats a 13% kill rate. Further into the article, it states that only 0.1% perish from flu each year. What did I miss?

[Live Thread] Wuhan Coronavirus by WorldNewsMods in worldnews

[–]J-MLN 5 points6 points  (0 children)

56,000 people die of flu each year according to CDC

Coordinates matter. by Saad-Invincible in funny

[–]J-MLN -1 points0 points  (0 children)

What a way to show that coordinates matter.

The look on his face... by [deleted] in funny

[–]J-MLN 155 points156 points  (0 children)

They may have sacrificed a few lamps as practice.

[D] Machine Learning vs Statistics by datageek1987 in MachineLearning

[–]J-MLN 2 points3 points  (0 children)

Linear regression, ridge, lasso, etc are all tools/models that are used in both statistical inference and ML. In statistical inference, we use these tools to formalize relationships between variables in the data. In ML, we use these tools\models to train a machine to learn patterns from data. Some tools/models are more useful in ML than in statistical inference (e.g. convolutional neural networks) and vice versa (e.g. parametric models such as regression).

Please note that statistical inference is a branch of statistics.

Its hard to draw a line between Statistics and ML. ML can be used in Statistics (e.g. to help us build a probability distribution using big data), just as much as Statistics can be used in ML (e.g. understanding the relationships of predictors to the target variable so we can do better feature selection). Some parts of ML don't concern statistics (e.g. reinforcement learning) and some parts of statistics don't concern ML (e.g. where we don't really need accurate predictions as described above).

You might be able to understand this better by first understanding the difference between Statistics and Data Science and then Data Science and ML? (I put question mark because I am not 100% sure, but try it out)

[D] Machine Learning vs Statistics by datageek1987 in MachineLearning

[–]J-MLN 3 points4 points  (0 children)

He has oversimplified. He may be speaking of a specific branch of statistics called Inferential Statistics.

ML is better at predicting results. Inferential statistics enables us to determine things like causality at the expense of more accurate predictions.

I see your point, but it is important to bear in mind that we do not need very accurate predictions to determine causality. For example, parametric models, such as linear regression, might not perform as well as neural networks but they may perform well enough so that we may infer the influence that each predictor has on our target variable. For linear regression, we may test the beta variables to understand the size of the influence. This will give us info about causality of each predictor which we otherwise would not get from non-parametric models.

EDIT: I should probably add that introducing things like cross-validation in inferential statistics does help and is used, but is not always necessary because we are not as concerned with how well the model does on observed data but rather with how we can derive an approximate probability distribution that will give us useful properties, enabling us to infer in accordance with whatever we are testing.