For questions about the concept of curve fitting in the context of machine learning and other related areas.
Questions tagged [curve-fitting]
4 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…
Igor
- 303
- 1
- 11
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…
mldichter
- 11
- 3
0
votes
1 answer
Can a neural network learn dependencies that can be expressed only by iterative approaches?
There are many relationships that cannot be described by a "static function" in N dimensions because relationships of the type I am talking about have an iterative element when one of the inputs of a function is its previous output.
Here is a…
Igor
- 303
- 1
- 11
0
votes
1 answer
Why Does the Model not Improve in PyTorch?
I have a simple curve fitting problem in hand. I wrote some code in PyTorch as follows:
class MyDatasetV1(torch.utils.data.Dataset):
def __init__(self, dataset):
# Initialize a dataset
assert isinstance(dataset, list), '"dataset" must…
bbk
- 21
- 6