deep learning notes.pdf
19.1 MB
Deep Learning Notes
Data_Science_from_Scratch_First_Principles_with_Python_by_Joel_Grus.pdf
10.8 MB
Data Science from Scratch First Principles with Python by Joel Grus z lib
👍3
Hi Guys,
Here are some of the telegram channels which may help you in data analytics journey 👇👇
SQL: https://t.iss.one/sqlanalyst
Power BI & Tableau: https://t.iss.one/PowerBI_analyst
Excel: https://t.iss.one/excel_data
Python: https://t.iss.one/dsabooks
Jobs: https://t.iss.one/datasciencej
Data Science: https://t.iss.one/datasciencefree
Artificial intelligence: https://t.iss.one/aiindi
Data Analysts: https://t.iss.one/sqlspecialist
Hope it helps :)
Here are some of the telegram channels which may help you in data analytics journey 👇👇
SQL: https://t.iss.one/sqlanalyst
Power BI & Tableau: https://t.iss.one/PowerBI_analyst
Excel: https://t.iss.one/excel_data
Python: https://t.iss.one/dsabooks
Jobs: https://t.iss.one/datasciencej
Data Science: https://t.iss.one/datasciencefree
Artificial intelligence: https://t.iss.one/aiindi
Data Analysts: https://t.iss.one/sqlspecialist
Hope it helps :)
👍7
Three different learning styles in machine learning algorithms:
1. Supervised Learning
Input data is called training data and has a known label or result such as spam/not-spam or a stock price at a time.
A model is prepared through a training process in which it is required to make predictions and is corrected when those predictions are wrong. The training process continues until the model achieves a desired level of accuracy on the training data.
Example problems are classification and regression.
Example algorithms include: Logistic Regression and the Back Propagation Neural Network.
2. Unsupervised Learning
Input data is not labeled and does not have a known result.
A model is prepared by deducing structures present in the input data. This may be to extract general rules. It may be through a mathematical process to systematically reduce redundancy, or it may be to organize data by similarity.
Example problems are clustering, dimensionality reduction and association rule learning.
Example algorithms include: the Apriori algorithm and K-Means.
3. Semi-Supervised Learning
Input data is a mixture of labeled and unlabelled examples.
There is a desired prediction problem but the model must learn the structures to organize the data as well as make predictions.
Example problems are classification and regression.
Example algorithms are extensions to other flexible methods that make assumptions about how to model the unlabeled data.
1. Supervised Learning
Input data is called training data and has a known label or result such as spam/not-spam or a stock price at a time.
A model is prepared through a training process in which it is required to make predictions and is corrected when those predictions are wrong. The training process continues until the model achieves a desired level of accuracy on the training data.
Example problems are classification and regression.
Example algorithms include: Logistic Regression and the Back Propagation Neural Network.
2. Unsupervised Learning
Input data is not labeled and does not have a known result.
A model is prepared by deducing structures present in the input data. This may be to extract general rules. It may be through a mathematical process to systematically reduce redundancy, or it may be to organize data by similarity.
Example problems are clustering, dimensionality reduction and association rule learning.
Example algorithms include: the Apriori algorithm and K-Means.
3. Semi-Supervised Learning
Input data is a mixture of labeled and unlabelled examples.
There is a desired prediction problem but the model must learn the structures to organize the data as well as make predictions.
Example problems are classification and regression.
Example algorithms are extensions to other flexible methods that make assumptions about how to model the unlabeled data.
👍4