Azure Machine Learning
Bernard Adabankah

Deploy Productionalise Azure Machine Learning Algorithm Using Python

This is a script to consume Azure Machine Learning Model which you build using Azure ML Studio. So basically this is a Request-Response Service (RRS)  according to Microsoft. This was a Boosted Decision Tree Algorithm build with Census Adult Data which is available as one of the Sample DataSet in Azure ML. You can adapt the

Read More »
Business Intelligence - BI
datapandasadmin

Superset Heroku Installation – Microsoft SQL Server Database Connection on Windows PC

 Clone this github repository into YOUR OWN repository and Edit the link in the  Readme.md file from https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/dugjason/superset-on-heroku to the link in YOUR OWN CLONED repository eg. https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/benadaba/hrmr Now scroll down and COMMIT (save) the changes ALSO edit the requirements.txt file and include any database requirements you want installed . eg pymssql==2.1.3, pyodbc==4.0.21 (this version was generating an

Read More »

WindowsError: [Error 5] Access is denied: Anaconda Python Pip Installs and Upgrade

I was trying to run a pip install ( pip install scikit-learn) and I encountered this error: C:\Users\adaba>pip install -U scikit-learn Collecting scikit-learn Using cached scikit_learn-0.18.1-cp27-cp27m-win_amd64.whl Installing collected packages: scikit-learn Found existing installation: scikit-learn 0.17.1 DEPRECATION: Uninstalling a distutils installed project (scikit-learn) has been deprecated and will be removed in a future version. This is

Read More »

Quick Example and Walk-Through JSON with Python

This is a quick to create a dictionary object , write it to a JSON file and then read back the file and convert it to a dictionary and access the items in the dictionary. Credit to : codebasics.  You can check him out on Youtube In [3]: # lets create a dictionary of books book

Read More »