Skip to content

Commit 25325b3

Browse files
authored
Updated import path for SVR example (#217)
There is no `Rubix\ML\Classifiers\SVR`
1 parent 37a4a58 commit 25325b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/regressors/svr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ public load(string $path) : void
3333

3434
## Example
3535
```php
36-
use Rubix\ML\Classifiers\SVR;
36+
use Rubix\ML\Regressors\SVR;
3737
use Rubix\ML\Kernels\SVM\RBF;
3838

3939
$estimator = new SVR(1.0, 0.03, new RBF(), true, 1e-3, 256.0);
4040
```
4141

4242
## References
4343
[^1]: C. Chang et al. (2011). LIBSVM: A library for support vector machines.
44-
[^2]: A. Smola et al. (2003). A Tutorial on Support Vector Regression.
44+
[^2]: A. Smola et al. (2003). A Tutorial on Support Vector Regression.

0 commit comments

Comments
 (0)