My Brain Cells

Easiest (and best) learning materials for anyone with a curiosity for machine learning and artificial intelligence, Deep learning, Programming, and other fun life hacks.

Author: Anthony

Tableau

  Tableau Desktop is an awesome data analysis and data visualization tool. It allows you to see your data immediately (with a few drag and drops). The “Show Me” feature is extremely helpful especially…

import pandas as pdfrom fbprophet import Prophetdf = pd.read_csv(‘./data/footfall.csv’) DataFrame for footfall count with dates We’ll rename the columns to ‘ds’ and ‘y’ as required by the FbProphet. We’ll use the built-in weekly and yearly seasonalities and add…

logistic regression

  Logistic Regression is a Machine Learning algorithm that is used for classification problems, it is a predictive analysis algorithm and based on the concept of probability Cost Function  cost function represents an optimization objective i.e….

Back to top