roxxhub

What is Socket programming ? Demonstration using python

Definition of socket programming Socket programming refers to the way of establishing a connection between two different end points (nodes). These two end points are actually one of the 65,535 ports found in a computer. These ports can be found in a single computer, or could belong to two different computers. Each port specifies a … Read more

CNN: Python implementation

Convolutional Neural Network (CNN) is a class of artificial neural network which is specifically used for image and videos related problems. Generally image or video classification. Before jumping into how we implement CNN using python, you might wanna read about the basics of CNN first. In this tutorial we are going to use a framework … Read more