You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: The EMNIST dataset is a set of handwritten character digits derived from the NIST Special Database 19 and converted to a 28x28 pixel image format and dataset structure that directly matches the MNIST dataset
4
+
Description: The EMNIST dataset is a set of handwritten character
5
+
digits derived from the NIST Special Database 19 and converted to
6
+
a 28x28 pixel image format and dataset structure that directly
7
+
matches the MNIST dataset
5
8
6
9
~~~ Important note ~~~
7
10
Please cite the following paper when using or referencing the dataset:
8
-
Cohen, G., Afshar, S., Tapson, J., & van Schaik, A. (2017). EMNIST: an extension of MNIST to handwritten letters. Retrieved from http://arxiv.org/abs/1702.05373
11
+
Cohen, G., Afshar, S., Tapson, J., & van Schaik, A. (2017). EMNIST:
Description: The data set contains 3 classes of 50 instances each, where each class refers to a type of iris plant.
4
+
Description: The data set contains 3 classes of 50 instances each, where
5
+
each class refers to a type of iris plant.
5
6
6
7
~~~ Important note ~~~
7
8
Please cite the following paper when using or referencing the dataset:
8
-
Fisher,R.A. "The use of multiple measurements in taxonomic problems" Annual Eugenics, 7, Part II, 179-188 (1936); also in "Contributions to Mathematical Statistics" (John Wiley, NY, 1950).
9
-
'''
9
+
Fisher,R.A. "The use of multiple measurements in taxonomic problems"
10
+
Annual Eugenics, 7, Part II, 179-188 (1936); also in "Contributions
11
+
to Mathematical Statistics" (John Wiley, NY, 1950).
12
+
"""
10
13
11
14
fromtensorflow.keras.utilsimportget_file
12
15
importnumpyasnp
13
16
importmath
14
17
15
-
defload_data(path='iris.npz', test_split=0.2):
16
-
'''Loads the Iris dataset.
17
-
# Arguments
18
-
path: path where to cache the dataset locally
19
-
(relative to ~/.keras/datasets).
20
-
test_split: percentage of data to use for testing (by default 20%)
21
-
# Returns
22
-
Tuple of Numpy arrays: `(input_train, target_train), (input_test, target_test)`.
0 commit comments