A0

Labels

4) An Overview on Logistic Regression in ML

 An Overview on Logistic Regression in MLIntroduction:                               This is a supervised ML algorithm and also known to solve the binary classification problems. Binary means two and classification means natures and this means that we use it, to predict the nature between two natures.  In simple words here we have two classes it can be true(presence)...

More operators, order, between, in, like and where clause

 In this blog we will talk about some more operators which we can use in oracle SQL e.g not, or, and, >=, <=, <, >, =, <> etc. These are some more operators and how we can use them now we will understand this.Before learning about these operators we should understand about where clause. As this name is showing the qualities of this clause that it uses when we want to filter the result also this we can use only with the select...

3) Multiple Linear Regression

 Multiple Linear RegressionHere we have multiple features such as (x1,x2,x3...) instead of one feature (x1) and after feed these features to model we can get the output (y). Before proceeding away we should understand some of the terminologies which we use for ML. let's assume a[i][j] here will the help of j we can proceed toward columns and with the help of i we can proceed toward rows. Furthermore, n is the total number features.How Model...

2) Linear Regression Model

 Linear Regression ModelThis is the type of Supervised Learning Algorithms. Here we will predict a value after getting some inputs. We have some features x (if you have multiple features then x will become x1, x2, x3 and so on)as input. We will take these features and feed them to a trained model and our model will predict a value as output. In this way linear Regression Model works. Now let’s try to go in depth of model.If we break the model...

1) Machine Learning

 Machine LearningIntroduction:Machine Learning is the subset of Artificial Intelligence. Now a days this is very buzz word. If you ask from anyone what do you want to become than most of the people answer it as Machine Learning Engineer. This is not easy as sound like here you have a huge grip on Math and stats to become a good ML Engineer. Actually, This is explicit program which Help us to get label or predict label, recommend videos to anyone...

Operation of Hello World c++

 [C++ is case sensitive language means if we will use upper case letter at the place of lower letter in the syntax then program will generate the error.] Here is the article related to c++ programming. Firstly we will check the simple Hello World program and then break that program into pieces and then check the every line and its use in the program #include<iostream> using namespace std; int main() { cout<<"Hello World"<<endl; return 0;This is the program which will display the message "Hello World". Now we...

How to develop logic?

 Logic DevelopmentHave you heard programmer is nothing without logic? If yes then you should definitely read this article to which can help you in development of logics.Before some practices we should understand what is logic? can you answer this question? you should answer if you don't know then don't worry I will answer you. "The ability to solve any problem". If you know better answer then you can comment below this will also increase my...