You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To estimate values from the model some informations are needed. The main information are the points, where the model estimate the function. The point matrix have to be configurate like the input vector. To handle normalized and unnormalized data set the options ```normalInput=False``` and ```normalOutput=False```. To choose the targets use the option ```i_target = 'all'```. Valdi values for ```i_target``` are:
92
+
To estimate values from the model some informations are needed. The main information are the points, where the model estimate the function. The point matrix have to be configure like the input vector. To handle normalized and unnormalized data set the options ```normalInput=False``` and ```normalOutput=False```. To choose the targets use the option ```i_target = 'all'```. Valid values for ```i_target``` are:
Currently is one value and one graphical based method implemanted to validate the model. The method ```.goodnessOfFit``` calculates the goodness of fit based on the test subset. The option ```i_target = 'all'``` (equal as by the method ```.estimateFunction```) can be used to set the interesting targets. If more than one target is choosed, the returned goodness of fit represents the value ofer all choosed data.
102
+
Currently is one value and one graphical based method implemented to validate the model. The method ```.goodnessOfFit``` calculates the goodness of fit based on the test subset. The option ```i_target = 'all'``` (equal as by the method ```.estimateFunction```) can be used to set the interesting targets. If more than one target is chose, Nadaraya the returned goodness of fit represents the value offer all chose data.
103
103
104
104
```python
105
-
r2 =modell.goodnessOfFit(i_target=1)
105
+
r2 =model.goodnessOfFit(i_target=1)
106
106
```
107
107
108
-
The graphical method ```.plotRegression``` provides the option to plot the relation between the true and the estimated data. Also the gooddness of fit will be shown in the titel. As option the diffrent subsets ```dataset = 'all'``` and targets ```i_target = 'all'``` (equal as by the method ```.estimateFunction```) can be choose.
108
+
The graphical method ```.plotRegression``` provides the option to plot the relation between the true and the estimated data. Also the goodness of fit will be shown in the title. As option the different subsets ```dataset = 'all'``` and targets ```i_target = 'all'``` (equal as by the method ```.estimateFunction```) can be choose.
0 commit comments