Skip to content

Commit bab25b1

Browse files
Add link to PIP to README
1 parent 22f2556 commit bab25b1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="assets/extra_k_logo_neg.png" width="300" style="border: 3px solid #f6f8fa;">
33
</p>
44

5-
Hi there, and welcome to the `extra_keras_datasets` module! This extension to the original `keras.datasets` module offers easy access to additional datasets, in ways almost equal to how you're currently importing them.
5+
Hi there, and welcome to the `extra-keras-datasets` module! This extension to the original `keras.datasets` module offers easy access to additional datasets, in ways almost equal to how you're currently importing them.
66

77
**Powered by MachineCurve at www.machinecurve.com**
88

@@ -28,14 +28,14 @@ Hi there, and welcome to the `extra_keras_datasets` module! This extension to th
2828
TODO.
2929

3030
### Installation procedure
31-
Installing is really easy, and can be done with PIP: `pip install extra-keras-datasets`.
31+
Installing is really easy, and can be done with [PIP](https://pypi.org/project/extra-keras-datasets/): `pip install extra-keras-datasets`.
3232

3333
## Datasets
3434

3535
### EMNIST-Balanced
3636

3737
```
38-
from extra_keras_datasets import emnist
38+
from extra-keras-datasets import emnist
3939
(input_train, target_train), (input_test, target_test) = emnist.load_data(type='balanced')
4040
```
4141

@@ -46,7 +46,7 @@ from extra_keras_datasets import emnist
4646
### EMNIST-ByClass
4747

4848
```
49-
from extra_keras_datasets import emnist
49+
from extra-keras-datasets import emnist
5050
(input_train, target_train), (input_test, target_test) = emnist.load_data(type='byclass')
5151
```
5252

@@ -57,7 +57,7 @@ from extra_keras_datasets import emnist
5757
### EMNIST-ByMerge
5858

5959
```
60-
from extra_keras_datasets import emnist
60+
from extra-keras-datasets import emnist
6161
(input_train, target_train), (input_test, target_test) = emnist.load_data(type='bymerge')
6262
```
6363

@@ -68,7 +68,7 @@ from extra_keras_datasets import emnist
6868
### EMNIST-Digits
6969

7070
```
71-
from extra_keras_datasets import emnist
71+
from extra-keras-datasets import emnist
7272
(input_train, target_train), (input_test, target_test) = emnist.load_data(type='digits')
7373
```
7474

@@ -79,7 +79,7 @@ from extra_keras_datasets import emnist
7979
### EMNIST-Letters
8080

8181
```
82-
from extra_keras_datasets import emnist
82+
from extra-keras-datasets import emnist
8383
(input_train, target_train), (input_test, target_test) = emnist.load_data(type='letters')
8484
```
8585

@@ -90,7 +90,7 @@ from extra_keras_datasets import emnist
9090
### EMNIST-MNIST
9191

9292
```
93-
from extra_keras_datasets import emnist
93+
from extra-keras-datasets import emnist
9494
(input_train, target_train), (input_test, target_test) = emnist.load_data(type='mnist')
9595
```
9696

@@ -101,7 +101,7 @@ from extra_keras_datasets import emnist
101101
### KMNIST-KMNIST
102102

103103
```
104-
from extra_keras_datasets import kmnist
104+
from extra-keras-datasets import kmnist
105105
(input_train, target_train), (input_test, target_test) = kmnist.load_data(type='kmnist')
106106
```
107107

@@ -112,7 +112,7 @@ from extra_keras_datasets import kmnist
112112
### KMNIST-K49
113113

114114
```
115-
from extra_keras_datasets import kmnist
115+
from extra-keras-datasets import kmnist
116116
(input_train, target_train), (input_test, target_test) = kmnist.load_data(type='k49')
117117
```
118118

0 commit comments

Comments
 (0)