File tree Expand file tree Collapse file tree 3 files changed +208
-141
lines changed Expand file tree Collapse file tree 3 files changed +208
-141
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,14 @@ Function | Description
62
62
---------|-------------
63
63
[ ` download([dir]) ` ] (@ref SVHN2.download) | Trigger interactive download of the dataset
64
64
[ ` classnames() ` ] (@ref SVHN2.classnames) | Return the class names as a vector of strings
65
+ [ ` traintensor([T], [indices]; [dir]) ` ] (@ref SVHN2.traintensor) | Load the training images as an array of eltype ` T `
66
+ [ ` trainlabels([indices]; [dir]) ` ] (@ref SVHN2.trainlabels) | Load the labels for the training images
65
67
[ ` traindata([T], [indices]; [dir]) ` ] (@ref SVHN2.traindata) | Load images and labels of the training data
68
+ [ ` testtensor([T], [indices]; [dir]) ` ] (@ref SVHN2.testtensor) | Load the test images as an array of eltype ` T `
69
+ [ ` testlabels([indices]; [dir]) ` ] (@ref SVHN2.testlabels) | Load the labels for the test images
66
70
[ ` testdata([T], [indices]; [dir]) ` ] (@ref SVHN2.testdata) | Load images and labels of the test data
71
+ [ ` extratensor([T], [indices]; [dir]) ` ] (@ref SVHN2.extratensor) | Load the extra images as an array of eltype ` T `
72
+ [ ` extralabels([indices]; [dir]) ` ] (@ref SVHN2.extralabels) | Load the labels for the extra training images
67
73
[ ` extradata([T], [indices]; [dir]) ` ] (@ref SVHN2.extradata) | Load images and labels of the extra training data
68
74
69
75
This module also provides utility functions to make working with
@@ -107,18 +113,24 @@ SVHN2
107
113
### Trainingset
108
114
109
115
``` @docs
116
+ SVHN2.traintensor
117
+ SVHN2.trainlabels
110
118
SVHN2.traindata
111
119
```
112
120
113
121
### Testset
114
122
115
123
``` @docs
124
+ SVHN2.testtensor
125
+ SVHN2.testlabels
116
126
SVHN2.testdata
117
127
```
118
128
119
129
### Extraset
120
130
121
131
``` @docs
132
+ SVHN2.extratensor
133
+ SVHN2.extralabels
122
134
SVHN2.extradata
123
135
```
124
136
Original file line number Diff line number Diff line change @@ -17,12 +17,13 @@ additional to use as extra training data.
17
17
18
18
## Interface
19
19
20
- - [`SVHN2.traindata`](@ref)
21
- - [`SVHN2.testdata`](@ref)
22
- - [`SVHN2.extradata`](@ref)
20
+ - [`SVHN2.traintensor`](@ref), [`SVHN2.trainlabels`](@ref), [`SVHN2. traindata`](@ref)
21
+ - [`SVHN2.testtensor`](@ref), [`SVHN2.testlabels`](@ref), [`SVHN2. testdata`](@ref)
22
+ - [`SVHN2.extratensor`](@ref), [`SVHN2.extralabels`](@ref), [`SVHN2. extradata`](@ref)
23
23
24
24
## Utilities
25
25
26
+ - [`SVHN2.download`](@ref)
26
27
- [`SVHN2.classnames`](@ref)
27
28
- [`SVHN2.convert2features`](@ref)
28
29
- [`SVHN2.convert2image`](@ref)
@@ -40,6 +41,14 @@ module SVHN2
40
41
41
42
export
42
43
44
+ traintensor,
45
+ testtensor,
46
+ extratensor,
47
+
48
+ trainlabels,
49
+ testlabels,
50
+ extralabels,
51
+
43
52
traindata,
44
53
testdata,
45
54
extradata,
You can’t perform that action at this time.
0 commit comments