Questions tagged [non-linear-regression]

In statistics, nonlinear regression is a form of regression analysis in which observational data are modeled by a function which is a nonlinear combination of the model parameters and depends on one or more independent variables. The data are fitted by a method of successive approximations. It is used in place when the data shows a curvy trend, and linear regression would not produce very accurate results when compared to non-linear regression.

13 questions
6
votes
1 answer

What is the difference between neural networks and other ways of curve fitting?

For simplicity, let's assume we want to solve a regression problem, where we have one independent variable and one dependent variable, which we want to predict. Let's also assume that there is a nonlinear relationship between the independent and…
3
votes
3 answers

Is Deep Learning the repeated application of Linear Regression?

Is Deep Learning the repeated application of Linear Regression?
2
votes
0 answers

Regularization of non-linear parameters?

I was wondering whether it is possible to regularize (L1 or L2) non-linear parameters in a general regression model. Say, I have the following non-linear least squares cost function, where $p$ is a $3d$ vector of fitting parameters: $cost(p_i) = (…
David
  • 21
  • 1
2
votes
1 answer

What is the difference between linear and non-linear regression?

In machine learning, I understand that linear regression assumes that parameters or weights in equation should be linear. For Example: $$y = w_1x_1 + w_2x_2$$ is a linear equation where $x_1$ and $x_2$ are feature variables and $w_1$ and $w_2$ are…
1
vote
1 answer

Optimizing a blackbox function with binary states

I have a non-linear black box function, which inputs a vector(size=250) and outputs a scalar value; f(x) = value. The x variable is a vector of size 250 and has binary elements, e.g.: x = [0, 1, 1, 1, 0, 0, ...] The result is just a scalar value…
1
vote
0 answers

Active Learning regression with Random Forest

I have a dataset of about 8k points and I am trying to employ active learning with the random forest regressor. I have split the dataset to train and test with train being around 20 points. The test serves as the unlabelled pool (although I have the…
1
vote
1 answer

Does a second-order fully-connected layer have any uses?

I was thinking about implementing second-order regression via a fully-connected layer, and I came up with this: $X$ is the input data, shaped $(features, batch\_number)$. $w0$ is the bias, shaped $(output\_dims,)$. $w1$ and $w2$ are the weights,…
1
vote
0 answers

Neural Network for Picking Parameters of a Nonlinear Function to Data Points

I'm trying to make a neural network in pytorch that picks the parameters of a nonlinear function, the radius and (x,y) center of a circle in the example below, based on a sample of values from the nonlinear function. More concretely, the neural…
1
vote
1 answer

When are multiple hidden layers necessary?

I know that my question probably seems like being asked many times, but Ill try to be more speciffic: Limitations to my question: I am NOT asking about convolutional neural networks, so please, try not to mention this as an example or as an answer…
1
vote
1 answer

If features are always positives, why do we use RELU activation functions?

When does it happen that a layer (either first or hidden) outputs negative values in order to justify the use of RELU? As far as I know, features are never negative or converted to negative in any other type of layer. Is it that we can use the…
1
vote
1 answer

solving xor function using a neural network with no hidden layers

xor is a non-linear dataset. It cannot be solved with any number of perceptron based neural network but when the perceptions are applied the sigmoid activation function, we can solve the xor dataset. But I came across a source where the following…
Hrushi
  • 159
  • 10
1
vote
2 answers

Which AI technique is best suited to discovering non-linear relationships in data?

I am interested in exploring whether AI techniques can derive hidden patterns of relationships in a data set. For example, from among house size, lot size, age of house and asking price, what formula best predicts selling price? In explorations…
0
votes
3 answers

What ML algorithm should I use that suits this data?

What if I have some data, let's say I'm trying to answer if education level and IQ affect earnings, and I want to analyze this data and put in a regression model to predict earnings based on the IQ and education level. My confusion is, what if the…