Posts

SVM IN REAL LIFE

Image
         Fig1(a) and (b) :  Intro-image   Introduction:         Support Vector Machines (SVM) stand as stalwarts in the realm of machine learning, often revered for their versatility and robustness. Originally developed by Vladimir Vapnik and his colleagues in the 1990s, SVM has found its way into a plethora of real-world applications, solving intricate problems with finesse. In this exploration, we delve into the practical domains where SVM shines, illuminating its efficacy in diverse fields. What Is SVM: Before we embark on our journey through real-life applications, let’s briefly revisit the essence of Support Vector Machines. At its core, SVM is a supervised learning model used for classification and regression analysis. It works by finding the optimal hyperplane that best divides a dataset into classes, aiming to maximize the margin between the classes. This intrinsic quality makes SVM particularly adept at handling c...

Sorting Techniques

Image
     Wh at is Sorting? A.       Sorting Sorting means arranging the objects or anything in some specified manner, when concerned with the data structures, sorting is arranging data in a specified manner i.e., data placed in order with some condition or it may also be w.r.t a category like, 1.               Sorting data or objects in ascending or descending order based on some parameter like height, etc. 2.                Sorting objects on category and so on. Sorting w.r.t data structures as mentioned earlier refers to arranging of data in some pattern. Now we will see, everything about sorting w.r.t data structures only,   S orting Techniques Sorting techniques refers to the different ways of sorting the data in the specified manner. In data structures there are many ways of sorting data, each of them has their own advantages and disadvantages. So, le...