Posts

Recent Posts

How to run Jupyter Notebooks in Cloud

 Hello all, In this article, I explained on how to open and run Jupyter notebooks in Cloud/Server. As most of cloud machines prefer Ubuntu or other Linux operating systems, we may only be able to access virtual machine in cloud using command line interface (CLI). In that case, it would be a challenge to open Jupyter notebooks as we usually access it through a browser. I would like to take an example of Azure VM for explaination but this would be valid for most of cloud platforms. Login to VM Use the following command to login to your VM thru ssh ssh username@ipaddress In case if you dont have a VM, you can create one by logging onto Azure Portal and following the steps mentioned in this Azure VM Documentation Using TMUX Tmux is very useful tool which will allow to run multiple terminal sessions within terminal and also let the code running even though you closed the terminal Use tmux ls for list of open tmux sessions Use tmux to create a new session Use tmux attach to go to alrea...

How I got Machine Learning Job

This is first article in Machine Learning Series. I would like to give an introduction on how i have learnt ML and moved to ML job position from other working profile.I would like to share with you on how i have learnt ML through Online Courses, Projects and other materials. I am going you share you those links as well. My First ML Course ¶ I completed my Masters in Control Systems in 2014 and started my professional career in an Automotive Company. I have no background of Machine Learning till then. But, both of my roommates are placed in DataScience companies and they started discussing on how amazing Machine Learning is and all the wonders it would be able to do. This has motivated me to learn Machine Learning and when i asked them, they suggested an Online Course Machine Learning by Andrew NG which is available on Coursera. https://www.coursera.org/learn/machine-learning? Andrew NG is a well known Professor in this field and his lectures , in this cou...

GUI Programming using Tkinter Python

Image
Hello all, This is the eleventh article in the series  Python for Data Science . If you are new to this series, we would recommend you to read our previous articles Python for Data Science Series - Part 1 Python for Data Science Series - Part 2 Using Numpy in Python Using Pandas in Python Data Visualization using Matplotlib Python Parsing XML file in python Parsing Json file in python Interactive Data Visualization using Plotly in Python Logging in Python Read and Write operations on Images using OpenCV Python Tkinter is Python library which can be used to make GUI Application in Python. This is available in python by default. In this article, we would explain the various functionalities available in Tkinter and also create a sample GUI Application which would look like below Please refer the videos below for detailed explanation on how to use Tkinter to create GUI elements in Python We have taken article from following webpage as reference Please refer the following code to unders...

Project: Implementation of Label Editor

Image
 This is second article in Python Projects Series. This article includes the explanation and instructions of demo of this project. We also touch up on the topics like design and implementation of this project. This Python code works as a label editor through which you can draw bounding boxes and label them. CSV file shall be generated from this tool which contains information about your labelling. In case if you are new to this series, Please visit our previous article in this series. 1.  Project : Implementation of Block Jump Game 2.  Project: Implementation of Car Lane Change Game   In case if you are new to Python, Please visit the following articles in series  Python for Data Science . Python for Data Science Series - Part 1 Python for Data Science Series - Part 2 Using Numpy in Python Using Pandas in Python Data Visualization using Matplotlib Python Parsing XML file in python Parsing Json file in python Interactive Data Visualization using Plotly in Python ...

Project: Implementation of Car Lane Change Game

Image
This is second article in Python Projects Series. This article includes the explanation and instructions of demo of this project. We also touch up on the topics like design and implementation of this project. In case if you are new to this series, Please visit our previous article in this series. 1. Project : Implementation of Block Jump Game In case if you are new to Python, Please visit the following articles in series  Python for Data Science . Python for Data Science Series - Part 1 Python for Data Science Series - Part 2 Using Numpy in Python Using Pandas in Python Data Visualization using Matplotlib Python Parsing XML file in python Parsing Json file in python Interactive Data Visualization using Plotly in Python Logging in Python Read and Write Images in Python 1. Setup Project Environment:     Code can be obtained from our git repository by using following command git clone  https://github.com/RajuSaladi/CustomizableSimulationEnvironments.git   ...

Project: Implementation of BlockJump Game

Image
This is first article in Python Projects Series. This article includes the explanation and instructions of demo of this project. We also touch up on the topics like design and implementation of this project. In case if you are new to Python, Please visit the following articles in series  Python for Data Science . Python for Data Science Series - Part 1 Python for Data Science Series - Part 2 Using Numpy in Python Using Pandas in Python Data Visualization using Matplotlib Python Parsing XML file in python Parsing Json file in python Interactive Data Visualization using Plotly in Python Logging in Python Read and Write Images in Python 1. Setup Project Environment:     Code can be obtained from our git repository by using following command git clone  https://github.com/RajuSaladi/CustomizableSimulationEnvironments.git     Go to " CustomizableSimulationEnvironments" Folder using following command cd CustomizableSimulationEnvironments     ...

Read and Write operations on Images using OpenCV Python

Image
Hello all, This is the tenth article in the series  Python for Data Science . If you are new to this series, we would recommend you to read our previous articles Python for Data Science Series - Part 1 Python for Data Science Series - Part 2 Using Numpy in Python Using Pandas in Python Data Visualization using Matplotlib Python Parsing XML file in python Parsing Json file in python Interactive Data Visualization using Plotly in Python Logging in Python To Install OpenCV Library in your python environment by using the following command pip install opencv-contrib-python Please refer the videos below for detailed explanation on how to use opencv to Read and Write Images in Python Please refer the following code to understand on how to read and write image files in python In [1]: import cv2 import os main_folder_path = r "E:\openknowledgeshare.blogspot.com\Python\Data" image_file_path = os . path . join ( main_folder_path , "IMG_20180116_130048.jpg...