Skip to content
This repository has been archived by the owner on May 11, 2023. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-dodd authored Dec 16, 2022
1 parent 7af68c5 commit e7da960
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ print(f'The input dimension is {D.in_dim}')
print(f'The output dimension is {D.out_dim}')
print(f'The input data is {D.X}')
print(f'The output data is {D.y}')
print(f'The input data is supervised {D.is_supervised()}')
print(f'The input data is unsupervised {D.is_unsupervised()}')
print(f'The data is supervised {D.is_supervised()}')
print(f'The data is unsupervised {D.is_unsupervised()}')
```
```
The number of datapoints is 3
Expand All @@ -69,8 +69,8 @@ The input data is [[1. 2.]
The output data is [[7.]
[8.]
[9.]]
The input data is supervised True
The input data is unsupervised False
The data is supervised True
The data is unsupervised False
```

You can also add dataset together to concatenate them.
Expand All @@ -93,8 +93,8 @@ print(f'The input dimension is {D.in_dim}')
print(f'The output dimension is {D.out_dim}')
print(f'The input data is {D.X}')
print(f'The output data is {D.y}')
print(f'The input data is supervised {D.is_supervised()}')
print(f'The input data is unsupervised {D.is_unsupervised()}')
print(f'The data is supervised {D.is_supervised()}')
print(f'The data is unsupervised {D.is_unsupervised()}')
```

```
Expand All @@ -113,6 +113,6 @@ The output data is [[7.]
[7.]
[8.]
[9.]]
The input data is supervised True
The input data is unsupervised False
The data is supervised True
The data is unsupervised False
```

0 comments on commit e7da960

Please sign in to comment.