Robin kumarthecoderbro.hashnode.net·Jul 25, 2022K-Nearest Neighbors algorithm(KNN)Hey again! we’ll start learning about Machine Learning algorithms. And in this blog, we will be talking about one of the commonly used classification algorithms, KNN algorithm. K-Nearest Neighbors is one of the easiest to understand, yet very import...Discuss·1 likeMachine Learning with Python Course,
Deepraj Vadhwanedeeprajvadhwane.hashnode.net·Jan 20, 2023Supervised LearningIntroduction to supervised Machine Learning What is machine learning? Types of Machine learning Algorithms Supervised Machine Learning Classification vs Regression What is machine learning? Machine learning is a subfield of artificial intellige...Discuss·1 like·61 readsMachine Learning
Harsh Rajdragon9.hashnode.net·Feb 16, 2023How to Become a Machine Learning EngineerThe term "machine learning engineer" denotes a technical programmer. Machine learning engineers design, research, and build the software that executes automatically to the models predictive. They build the artificial intelligence system, open a large...Discuss·1 likeMachine Learning
Rahul Shashidhartopg.hashnode.net·Apr 11, 2023Machine LearningIntroduction Machine learning is a branch of artificial intelligence (AI) that enables computers to learn and improve from experience without being explicitly programmed. It is a powerful tool that has transformed various industries, from healthcare ...DiscussMachine Learning
Jishnu Prasad Samaljishnuprs.hashnode.net·Apr 10, 2023Build a Linear Regression ModelLinear Regression is one of the oldest and widely used Machine Learning algorithm which is used to train a model against two variables - Independent Variable and Dependent (Target) Variable. If you wish to learn more about AI and Machine Learning, yo...Discussai
Yaswanth Teja Yarlagaddayaswanthteja.hashnode.net·Mar 27, 2023A Beginner’s Guide To Machine LearningMachine Learning (ML) is a powerful subset of Artificial Intelligence (AI) that enables machines to learn from data and make predictions or decisions without being explicitly programmed. It has been a game changer in many fields, from finance and hea...DiscussMachine Learning
Harsh Rajdragon9.hashnode.net·Feb 16, 2023How to Become a Machine Learning EngineerThe term "machine learning engineer" denotes a technical programmer. Machine learning engineers design, research, and build the software that executes automatically to the models predictive. They build the artificial intelligence system, open a large...Discuss·1 likeMachine Learning
Deepraj Vadhwanedeeprajvadhwane.hashnode.net·Jan 20, 2023Supervised LearningIntroduction to supervised Machine Learning What is machine learning? Types of Machine learning Algorithms Supervised Machine Learning Classification vs Regression What is machine learning? Machine learning is a subfield of artificial intellige...Discuss·1 like·61 readsMachine Learning
yoonminrollingdev.hashnode.net·Aug 22, 2022Ensemble LearningGet in mind that I'm using... from sklearn.model_selection import train_test_split x_train, x_test, y_train, y_test = train_test_split( data, target, test_size=0.2, random_state=42 ) note that cross_validate() is for option. alternatively, grid...DiscussDataMachine Learning with Python Course,
yoonminrollingdev.hashnode.net·Aug 19, 2022Decision TreeDecision Tree doesn't need scaled data first phrase : condition gini : impurity score samples : total sample size in this node value : [negative sample size, positive sample size] Left child : positive, Right child : negative Impurity Gini impu...DiscussDataMachine Learning with Python Course,
yoonminrollingdev.hashnode.net·Aug 17, 2022Logistic RegressionGet in mind that I'm using... from sklearn.model_selection import train_test_split x_train, x_test, y_train, y_test = train_test_split(data, target, random_state=42) from sklearn.preprocessing import StandardScaler ss = StandardScaler() ss.fit(x_tra...DiscussDataMachine Learning with Python Course,
Robin kumarthecoderbro.hashnode.net·Jul 25, 2022K-Nearest Neighbors algorithm(KNN)Hey again! we’ll start learning about Machine Learning algorithms. And in this blog, we will be talking about one of the commonly used classification algorithms, KNN algorithm. K-Nearest Neighbors is one of the easiest to understand, yet very import...Discuss·1 likeMachine Learning with Python Course,