OOPs in Python
- Naveen
- 0
Object-oriented programming (OOP) is a programming paradigm based on the concept of objects which contains data or attributes and code or methods. Major oops concepts include Class, Object, Inheritance, Polymorphism, Data Abstraction, Encapsulation. Class Class is the user defined data type and it is defined using class keyword. It is a collection of similar type…
Read MoreComputer Vision for Beginners – Part 5
- Naveen
- 0
What is Edge detection? Edge detection is a computer vision technique that uses the edges of an image to find and extract objects. It is widely used in a variety of fields such as photography, video and computer vision. it is used in many ways in computer vision, including image segmentation, which divides an image…
Read MoreComputer Vision for Beginners – Part 4
- Naveen
- 0
In this article, I will be discussing about various algorithms of image feature detection, description using OpenCV. Introduction What do humans typically do when they see the image? He will be able to recognize the faces which are there inside the images. So, in a simple form, computer vision is what allows computers to see…
Read MoreComputer Vision for Beginners – Part 3
- Naveen
- 0
You may be already familiar with the word ‘contour.’ I’ve used this term several times in previous posts. A contour line is a curved line representing values. It is a very simple type of map that outlines the changes in an area, typically separating the different landforms. But then you may ask this. The terms ‘edges’…
Read MoreComputer Vision for Beginners – Part 2
- Naveen
- 0
Today we’re going to talk about how to manipulate images. These are preprocessing steps. When it comes to detecting edges and contours, noise plays a major role in the accuracy of the detection process. -The model needs to focus on the general details of their images in order to produce higher accuracies. -Blurring, thresholding, and…
Read MoreComputer Vision for Beginners – Part 1
- Naveen
- 0
Image Processing is used to perform some operations on images in order to animate them, develop videos, or generate graphics. To get started with data analysis, you can use image preprocessing feature engineering. It’s not difficult to extract useful information from images – this is accomplished via image processing methods. Reduction of noise, adjustment of…
Read MoreWhat is doc2vec and word2vec in NLP?
- Naveen
- 0
Doc2vec is a technique that extracts semantic information from documents and then uses that information to classify the documents. By applying Doc2vec to existing documents, it becomes possible for AI software to rapidly identify similar topics in a large collection of text without having to read the entire corpus. This technique has been used in…
Read MoreWhat is GD, Batch GD, SGD, Mini-Batch GD?
- Naveen
- 0
What is Gradient Descent, Batch Gradient Descent, Stochastic Gradient Descent, Mini-Batch Gradient Descent? Gradient Descent This algorithm is a general algorithm that is used for optimization and for providing the optimal solution for various problems. It takes parameters in an iterative way and makes the cost function as simple as possible. 1) Define a cost…
Read MoreLoss Functions and optimizers and its type?
- Naveen
- 0
With modelling, there’s a particular goal that the model needs to achieve. It’s just as important to achieve the best possible values of the model parameters as it is to find out what each parameter means in terms of that goal. The loss function (cost function) is minimized, therefore getting unknown values for weight and…
Read MorePython functions, Parameters, Arguments, args and kwargs
- Naveen
- 0
Python functions A function is a construct that helps us perform some action using a block of code (the body of the function), sometime based on input parameters. These functions can take different forms and can do a lot to allow your functional code base to be effective, To define a function, you use the…
Read More