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.

Day: March 27, 2021

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…

Back to top