![]() |
We will briefly summarize Linear Regression before implementing it using TensorFlow. Since we will not get into the details of either Linear Regression or Tensorflow, please read the following articles for more details:
Brief Summary of Linear RegressionLinear Regression is a very common statistical method that allows us to learn a function or relationship from a given set of continuous data. For example, we are given some data points of x and corresponding y and we need to learn the relationship between them which is called a hypothesis. In the case of Linear regression, the hypothesis is a straight line, i.e, All we need to do is estimate the value of w and b from the given set of data such that the resultant hypothesis produces the least cost J which is defined by the following cost function For finding the optimized value of the parameters for which J is minimum, we will be using a commonly used optimizer algorithm called Gradient Descent. Following is the pseudo-code for Gradient Descent: Repeat until Convergence { w = w – α * δJ/δw b = b – α * δJ/δb}where α is a hyperparameter called the Learning Rate. Linear regression is a widely used statistical method for modeling the relationship between a dependent variable and one or more independent variables. TensorFlow is a popular open-source software library for data processing, machine learning, and deep learning applications. Here are some advantages and disadvantages of using Tensorflow for linear regression: Advantages: Scalability: Tensorflow is designed to handle large datasets and can easily scale up to handle more data and more complex models.
Complexity: Tensorflow has a steep learning curve and requires a good understanding of machine learning and deep learning concepts. TensorflowTensorflow is an open-source computation library made by Google. It is a popular choice for creating applications that require high-end numerical computations and/or need to utilize Graphics Processing Units for computation purposes. These are the main reasons due to which Tensorflow is one of the most popular choices for Machine Learning applications, especially Deep Learning. It also has APIs like Estimator which provide a high level of abstraction while building Machine Learning Applications. In this article, we will not be using any high-level APIs, rather we will be building the Linear Regression model using low-level Tensorflow in the Lazy Execution Mode during which Tensorflow creates a Directed Acyclic Graph or DAG which keeps track of all the computations, and then executes all the computations done inside a Tensorflow Session. ImplementationWe will start by importing the necessary libraries. We will use Numpy along with Tensorflow for computations and Matplotlib for plotting. Python3
In order to make the random numbers predictable, we will define fixed seeds for both Numpy and Tensorflow. Python3
Now, let us generate some random data for training the Linear Regression Model. Python3
Let us visualize the training data. Python3
Output: Now we will start creating our model by defining the placeholders X and Y, so that we can feed our training examples X and Y into the optimizer during the training process. Python3
Now we will declare two trainable Tensorflow Variables for the Weights and Bias and initializing them randomly using np.random.randn(). Python3
Now we will define the hyperparameters of the model, the Learning Rate and the number of Epochs. Python3
Now, we will be building the Hypothesis, the Cost Function, and the Optimizer. We won’t be implementing the Gradient Descent Optimizer manually since it is built inside Tensorflow. After that, we will be initializing the Variables. Python3
Now we will begin the training process inside a Tensorflow Session. Python3
Output: Now let us look at the result. Python3
Output: Note that in this case both the Weight and bias are scalars. This is because, we have considered only one dependent variable in our training data. If we have m dependent variables in our training dataset, the Weight will be an m-dimensional vector while bias will be a scalar. Finally, we will plot our result. Python3
Output: |
Reffered: https://www.geeksforgeeks.org
Computer Subject |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 10 |