Skip to content

Commit cbdf93c

Browse files
committed
Correction misspelling
1 parent 0b754c0 commit cbdf93c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ Also the options can be change:
8282
model.setOptions(options = {'multiH':True, 'scaleKernel':True, 'kernel':'epanechnikov2', 'powerList':[1/2, 2]})
8383
```
8484
#### Learning
85-
The method ```.learnModel``` runs the learn algorithmus. The method provieds also the option to update the learn options.
85+
The method ```.learnModel``` runs the learn algorithm. The method provides also the option to update the learn options.
8686

8787
```python
8888
model.learnModel(options = {'multiH':True, 'scaleKernel':False, 'kernel':'cauchy', 'powerList':[1]})
8989
```
9090

9191
#### Estimate values
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 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:
9393
* 'all': means all target will be estimated
9494
* number: means this target only, e.g: [1]
9595
* list: means all listed target only. e.g: [2,3]
@@ -99,14 +99,14 @@ estimatedTarget = model.estimateFunction(x = points, normalInput = False, normal
9999
```
100100

101101
#### Validate model
102-
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.
103103

104104
```python
105-
r2 = modell.goodnessOfFit(i_target = 1)
105+
r2 = model.goodnessOfFit(i_target = 1)
106106
```
107107

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.
109109

110110
```python
111-
modell.potRegression(dataset = [2,3], i_target = 2)
111+
model.potRegression(dataset = [2,3], i_target = 2)
112112
```

0 commit comments

Comments
 (0)