This repository was archived by the owner on Nov 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +63
-13
lines changed
python/mxnet/gluon/contrib/data Expand file tree Collapse file tree 2 files changed +63
-13
lines changed Original file line number Diff line number Diff line change @@ -24,22 +24,60 @@ In the rest of this document, we list routines provided by the `gluon.contrib` p
24
24
25
25
## Contrib
26
26
27
+ ### Neural network
28
+
29
+ ``` eval_rst
30
+ .. currentmodule:: mxnet.gluon.contrib.nn
31
+
32
+ .. autosummary::
33
+ :nosignatures:
34
+
35
+ Concurrent
36
+ HybridConcurrent
37
+ Identity
38
+ ```
39
+
40
+ ### Recurrent neural network
41
+
42
+ ``` eval_rst
43
+ .. currentmodule:: mxnet.gluon.contrib.rnn
44
+
45
+ .. autosummary::
46
+ :nosignatures:
47
+
48
+ VariationalDropoutCell
49
+ Conv1DRNNCell
50
+ Conv2DRNNCell
51
+ Conv3DRNNCell
52
+ Conv1DLSTMCell
53
+ Conv2DLSTMCell
54
+ Conv3DLSTMCell
55
+ Conv1DGRUCell
56
+ Conv2DGRUCell
57
+ Conv3DGRUCell
58
+ ```
59
+
60
+ ### Data
61
+
27
62
``` eval_rst
28
- .. currentmodule:: mxnet.gluon.contrib
63
+ .. currentmodule:: mxnet.gluon.contrib.data
29
64
30
65
.. autosummary::
31
66
:nosignatures:
32
67
33
- rnn.VariationalDropoutCell
34
- rnn.Conv1DRNNCell
35
- rnn.Conv2DRNNCell
36
- rnn.Conv3DRNNCell
37
- rnn.Conv1DLSTMCell
38
- rnn.Conv2DLSTMCell
39
- rnn.Conv3DLSTMCell
40
- rnn.Conv1DGRUCell
41
- rnn.Conv2DGRUCell
42
- rnn.Conv3DGRUCell
68
+ IntervalSampler
69
+ ```
70
+
71
+ #### Text dataset
72
+
73
+ ``` eval_rst
74
+ .. currentmodule:: mxnet.gluon.contrib.data.text
75
+
76
+ .. autosummary::
77
+ :nosignatures:
78
+
79
+ WikiText2
80
+ WikiText103
43
81
```
44
82
45
83
## API Reference
@@ -52,10 +90,22 @@ In the rest of this document, we list routines provided by the `gluon.contrib` p
52
90
:members:
53
91
:imported-members:
54
92
93
+ .. automodule:: mxnet.gluon.contrib.nn
94
+ :members:
95
+ :imported-members:
96
+
55
97
.. automodule:: mxnet.gluon.contrib.rnn
56
98
:members:
57
99
:imported-members:
58
100
101
+ .. automodule:: mxnet.gluon.contrib.data
102
+ :members:
103
+ :imported-members:
104
+
105
+ .. automodule:: mxnet.gluon.contrib.data.text
106
+ :members:
107
+ :imported-members:
108
+
59
109
```
60
110
61
111
<script >auto_index (" api-reference" );</script >
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ class WikiText2(_WikiText):
108
108
109
109
Parameters
110
110
----------
111
- root : str, default '~/.mxnet/datasets/cifar10 '
111
+ root : str, default '~/.mxnet/datasets/wikitext-2 '
112
112
Path to temp folder for storing data.
113
113
segment : str, default 'train'
114
114
Dataset segment. Options are 'train', 'validation', 'test'.
@@ -146,7 +146,7 @@ class WikiText103(_WikiText):
146
146
147
147
Parameters
148
148
----------
149
- root : str, default '~/.mxnet/datasets/cifar10 '
149
+ root : str, default '~/.mxnet/datasets/wikitext-103 '
150
150
Path to temp folder for storing data.
151
151
segment : str, default 'train'
152
152
Dataset segment. Options are 'train', 'validation', 'test'.
You can’t perform that action at this time.
0 commit comments