Skip to content

Instantly share code, notes, and snippets.

View analyticsindiamagazine's full-sized avatar
:octocat:

Analytics India Magazine analyticsindiamagazine

:octocat:
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@analyticsindiamagazine
analyticsindiamagazine / ucb_bandits.ipynb
Last active June 7, 2019 10:33
Implementing UCB in Python
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@analyticsindiamagazine
analyticsindiamagazine / Object_Detection.ipynb
Created August 8, 2019 12:07
Object detection code on Live stream using webcam
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@analyticsindiamagazine
analyticsindiamagazine / Predict_The_Book_Price_Solution.ipynb
Created October 4, 2019 10:58
MachineHack recently launched its latest hackathon called Predict The Price Of Books. This article is a complete step by step guide to the solution.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@analyticsindiamagazine
analyticsindiamagazine / CreatingTabularList.py
Created October 21, 2019 11:24
CreatingTabularList.py
#Defining the keyword arguments for fastai's TabularList
#Path / default location for saving/loading models
path = ''
#The dependent variable/target
dep_var = 'Price'
#The list of categorical features in the dataset
cat_names = ['Brand', 'Model', 'Location', 'Fuel_Type', 'Transmission', 'Owner_Type']
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@analyticsindiamagazine
analyticsindiamagazine / Model_Eager_Execution_Enabled.ipynb
Created October 22, 2019 07:15
Even without training, call the model and inspect the output in eager execution.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.