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
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Similar to the issue with NDArray and optimizer: #12829 or the IO API: #12854
Can this be fixed by something like #12886 ?
Or maybe being specific like in this PR: #12871 ?
Errors:
/home/ubuntu/incubator-mxnet/python/mxnet/rnn/rnn_cell.py:docstring of mxnet.rnn.FusedRNNCell.unfuse:None: WARNING: more than one target found for cross-reference u'SequentialRNNCell': mxnet.gluon.rnn.SequentialRNNCell, mxnet.rnn.SequentialRNNCell
/home/ubuntu/incubator-mxnet/python/mxnet/rnn/rnn.py:docstring of mxnet.rnn.save_rnn_checkpoint:None: WARNING: more than one target found for cross-reference u'RNNCell': mxnet.rnn.RNNCell, mxnet.gluon.rnn.RNNCell
/home/ubuntu/incubator-mxnet/python/mxnet/rnn/rnn.py:docstring of mxnet.rnn.load_rnn_checkpoint:None: WARNING: more than one target found for cross-reference u'RNNCell': mxnet.rnn.RNNCell, mxnet.gluon.rnn.RNNCell
/home/ubuntu/incubator-mxnet/python/mxnet/rnn/rnn.py:docstring of mxnet.rnn.do_rnn_checkpoint:None: WARNING: more than one target found for cross-reference u'RNNCell': mxnet.rnn.RNNCell, mxnet.gluon.rnn.RNNCell
Description
Sphinx is getting confused with the multiple entries for
SequentialRNNCellandRNNCell. There's one inmxnet.gluon.rnnand one inmxnet.rnn.https://mxnet.incubator.apache.org/api/python/symbol/rnn.html?highlight=fusedrnncell.unfuse#mxnet.rnn.FusedRNNCell.unfuse
I think there's a question as to which
SequentialRNNCellis being referred to here.And for
rnn.save_rnn_checkpointas to whichRNNCellit refers to.https://mxnet.incubator.apache.org/api/python/symbol/rnn.html?highlight=rnn.save_rnn_checkpoint#mxnet.rnn.save_rnn_checkpoint
Similar to the issue with NDArray and optimizer: #12829 or the IO API: #12854
Can this be fixed by something like #12886 ?
Or maybe being specific like in this PR: #12871 ?
Errors: