https://github.com/codewhiteweb/machine-learning-starter-guide
This is a starting point for my ( and can be yours ) Machine Learning journey, This Repo consist all the Prerequisites and Resource Links you need to master ML
https://github.com/codewhiteweb/machine-learning-starter-guide
ai-learning deep-learning machine machine-learning machine-learning-tutorials ml ml-learning
Last synced: 9 months ago
JSON representation
This is a starting point for my ( and can be yours ) Machine Learning journey, This Repo consist all the Prerequisites and Resource Links you need to master ML
- Host: GitHub
- URL: https://github.com/codewhiteweb/machine-learning-starter-guide
- Owner: CodeWhiteWeb
- Created: 2023-06-21T05:51:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-10T13:34:38.000Z (over 2 years ago)
- Last Synced: 2025-02-04T13:39:40.343Z (12 months ago)
- Topics: ai-learning, deep-learning, machine, machine-learning, machine-learning-tutorials, ml, ml-learning
- Homepage: http://codewhiteweb.thedev.id/Machine-Learning-Starter-Guide/
- Size: 4.88 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Goal: Machine Learning
To achieve proficiency in data science and machine learning, follow this structured learning path:
- [1. Getting started](#1-getting-started)
- [1.1. **Prerequesties**](#11-prerequesties)
- [1.1.1. **Mathematics Fundamentals:**](#111-mathematics-fundamentals)
- [1.1.2. **Programming with Python and Libraries:**](#112-programming-with-python-and-libraries)
- [1.1.3. **Machine Learning Algorithms:**](#113-machine-learning-algorithms)
- [1.1.4. **Data Preprocessing:**](#114-data-preprocessing)
- [1.1.5. **Machine Learning Libraries:**](#115-machine-learning-libraries)
- [1.1.6. **Practical Experience:**](#116-practical-experience)
- [1.2. *Resources:*](#12-resources)
# 1. Getting started
## 1.1. **Prerequesties**
### 1.1.1. **Mathematics Fundamentals:**
- Algebra
- Variables, coefficients, and functions
- Linear equations
- Logarithms
- Sigmoid function
- Linear Algebra
- tensor and tensor rank
- matrix multiplication
- Trigonometry
- tanh (discussed as an activation function; no prior knowledge needed)
- Statistics
- mean, median, outliers, and standard deviation
- ability to read a histogram
- Calculus *(Optional, for advanced topics)*
- concept of a derivative (you won't have to actually calculate derivatives)
- gradient or slope
- partial derivatives (which are closely related to gradients)
- chain rule (for a full understanding of the backpropagation algorithm for training neural networks)
### 1.1.2. **Programming with Python and Libraries:**
- Learn Python and mainly [these things](https://developers.google.com/machine-learning/crash-course/prereqs-and-prework#python-programming)
- libraries like **NumPy** and **Pandas**.
### 1.1.3. **Machine Learning Algorithms:**
- Understand supervised, unsupervised, and reinforcement learning.
- Study algorithms such as Linear Regression, Logistic Regression, Clustering, KNN, SVM, Decision Trees, Random Forests.
- Explore concepts like overfitting, underfitting, regularization, gradient descent, and confusion matrix.
### 1.1.4. **Data Preprocessing:**
- Handle null values.
- Standardize data.
- Deal with categorical values and perform one-hot encoding.
- Apply feature scaling.
### 1.1.5. **Machine Learning Libraries:**
- Get familiar with popular libraries like **scikit-learn**, **Matplotlib**, and **TensorFlow**.
### 1.1.6. **Practical Experience:**
- Participate in Kaggle competitions and practice on real-world datasets.
- Explore projects on GitHub for learning from others' code.
## 1.2. *Resources:*
- **Maths:**
- Linear Algebra notes by P. J. Cameron ([Link](http://www.maths.qmul.ac.uk/~pjc/notes/linalg.pdf))
- Statistics and Probability resource ([Link](https://www.mathsbox.org.uk/twi/astats.pdf))
- YouTube playlist on Maths ([Link](https://www.youtube.com/playlist?list=PLLy_2iUCG87D1CXFxE-SxCFZUiJzQ3IvE))
- Mathematics for Machine Learning ([link](https://mml-book.github.io/))
- **Machine Learning:**
- **Google's Machine Learning Crash Course ([Link](https://developers.google.com/machine-learning/crash-course))** - This is a great resource for learning the fundamentals of machine learning. It's a free course that covers the theory and practice of ML, including basic concepts like loss function and gradient descent, and also more advanced concepts like training neural networks and recommender systems.
- Coursera: Machine Learning by Andrew Ng (Stanford University) ([Link](https://www.coursera.org/learn/machine-learning))
- Made With ML ([Link](https://madewithml.com/))
- Machine Learning Mastery ([Link](https://machinelearningmastery.com/))
- **Data Preprocessing:**
- Data Preprocessing in Machine Learning ([Link](https://www.javatpoint.com/data-preprocessing-machine-learning))
- **Machine Learning Libraries:**
- scikit-learn documentation ([Link](https://scikit-learn.org/stable/))
- TensorFlow documentation ([Link](https://www.tensorflow.org/))
- **Practice Platforms:**
- Kaggle ([Link](https://www.kaggle.com/))
- **Other prerequesties**
To run the programming exercises on your local machine or in a cloud console, you should be comfortable working on the command line:
- [Bash Reference Manual](https://tiswww.case.edu/php/chet/bash/bashref.html)
- [Bash Cheatsheet](https://github.com/LeCoupa/awesome-cheatsheets/blob/master/languages/bash.sh)
- [Learn Shell](http://www.learnshell.org/)
- [Deep Learning](https://www.deeplearningbook.org/)
> Follow this roadmap, practice consistently, and explore projects to develop your skills in data science and machine learning. Good luck on your learning journey!
> This readme was created by [@CodeWhiteWeb](https://github.com/codewhiteweb) after contacting many professionals in this field.
---