Skip to content

Commit

Permalink
Fix wrong docs references (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonllao authored and akondas committed Apr 13, 2017
1 parent b27f08f commit c0463ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/machine-learning/datasets/demo/glass.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Samples per class:
To load Glass dataset simple use:

```
use Phpml\Dataset\Demo\Glass;
use Phpml\Dataset\Demo\GlassDataset;
$dataset = new Glass();
$dataset = new GlassDataset();
```

### Several samples example
Expand Down
4 changes: 2 additions & 2 deletions docs/machine-learning/datasets/demo/iris.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Most popular and widely available dataset of iris flower measurement and class n
To load Iris dataset simple use:

```
use Phpml\Dataset\Demo\Iris;
use Phpml\Dataset\Demo\IrisDataset;
$dataset = new Iris();
$dataset = new IrisDataset();
```

### Several samples example
Expand Down
4 changes: 2 additions & 2 deletions docs/machine-learning/datasets/demo/wine.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ These data are the results of a chemical analysis of wines grown in the same reg
To load Wine dataset simple use:

```
use Phpml\Dataset\Demo\Wine;
use Phpml\Dataset\Demo\WineDataset;
$dataset = new Wine();
$dataset = new WineDataset();
```

### Several samples example
Expand Down

0 comments on commit c0463ae

Please sign in to comment.