GGenric_Coderinnewbielearner.hashnode.dev·Jun 5, 2024 · 3 min readAn Overview Of Naive Bayes AlgorithmIntroduction: Naive bayes is a supervised machine learning algorithm that can be used to solve classification problem, it is a probabilistic classifier that means it predicts on the basis of probability of an object. Let's breakdown the meaning the n...00
GGenric_Coderinnewbielearner.hashnode.dev·Jun 4, 2024 · 2 min readRandom Forest For Complete BeginnersRandom Forest Algorithm is a supervised machine learning algoroithm that helps in both classification and regression problems, random forest is a classifier that contains various decision trees on several subsets of dataset and take average of that d...00
GGenric_Coderinnewbielearner.hashnode.dev·Jun 2, 2024 · 2 min readLinear RegressionToday we will see what linear regression is all about, linear regression is used to find a relationship between two variables that one independent and one dependent variable these that using linear regression we we find out the intercept and slope th...00
GGenric_Coderinnewbielearner.hashnode.dev·Oct 10, 2023 · 3 min readThread Synchronization in Java!!!What are threads? A thread is a very light-weight process or we can say the smallest part of the process that allows the program to run efficiently. What is thread synchronization? Often threads need to share data but they shouldn't try to change and...00
GGenric_Coderinnewbielearner.hashnode.dev·Oct 4, 2023 · 1 min readWhat is multithreading??? (Java)When two or more parts of a program run simultaneously it is called multithreading and each such program is called a thread. We achieve maximum utilization of CPU through multithreading. Threads can be created using two methods. Extending the thread...00