Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 4.85 KB

File metadata and controls

61 lines (38 loc) · 4.85 KB

Machine Learning and Deep Learning

Machine-Learning-Daily

A repository of my activities, jupyter notebooks, datasets used in machine learning algorithms for data science

Contents

Linear Regression

Linear regression is one of the most basic forms of machine learning and is used to predict numeric values. This section is based on the following documentation: https://www.tensorflow.org/tutorials/estimator/linear

  • California House Price Prediction - This project includes exploratory data analysis, intensive data visualization, data feature engineering, and selecting features based on the correlation of the features.

  • Simple Linear Regression from Scratch - Simple linear regression is an approach for predicting a response using a single feature. This project does not utilize machine learning libraries aside from computation libraries (numpy and pandas).

  • Stock Price Predictor - This project predicts stock prices of natural gas, facebook, and USD-PHP currency using linear regression. The datasets are from yahoo finance library.

Neural Networks

A neural network is a series of algorithms that endeavors to recognize underlying relationships in a set of data through a process that mimics the way the human brain operates.

Machine Learning in JavaScript

EDA

In statistics, exploratory data analysis is an approach of analyzing data sets to summarize their main characteristics, often using statistical graphics and other data visualization methods.

E2E Data Science Web App

Natural Language Processing

Classification

Classification is a process of categorizing a given set of data into classes, It can be performed on both structured or unstructured data. The process starts with predicting the class of given data points.