You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2020/08/24 15:34:48 UTC

[GitHub] [incubator-mxnet] DNXie opened a new issue #19001: Documentation bug: mxnet.ndarray.contrib.foreach doesn't accept `name`

DNXie opened a new issue #19001:
URL: https://github.com/apache/incubator-mxnet/issues/19001


   ## Description
   This is a documentation bug. In the document of `mxnet.ndarray.contrib.foreach`, the **Parameter** section stated a parameter `name`. But it is not in the signature and not accepted by the function. 
   
   Link to the document: https://mxnet.apache.org/versions/1.6/api/python/docs/api/ndarray/contrib/index.html#mxnet.ndarray.contrib.foreach
   
   ![image](https://user-images.githubusercontent.com/24580222/91064712-9f47f080-e5fd-11ea-9459-84f0c8d68f52.png)
   
   
   ### Error Message
   ~~~python
   Traceback (most recent call last):
     File "<stdin>", line 1, in <module>
   TypeError: foreach() got an unexpected keyword argument 'name'
   ~~~
   
   ## To Reproduce
   ~~~python
   import mxnet as mx
   step = lambda data, states: (data + states[0], [states[0] * 2])
   data = mx.nd.random.uniform(shape=(2, 10))
   states = [mx.nd.random.uniform(shape=(10))]
   outs, states = mx.nd.contrib.foreach(step, data, states, name='op')
   ~~~
   
   
   ## Environment
   
   We recommend using our script for collecting the diagnositc information. Run the following command and paste the outputs below:
   ```
   curl --retry 10 -s https://raw.githubusercontent.com/dmlc/gluon-nlp/master/tools/diagnose.py | python
   
   # paste outputs here
   ```
   OS: ubuntu 18.04
   Python: 3.7.6
   pip: 20.0.2
   numpy: 1.18.5
   mxnet: 1.6.0


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-mxnet] szha commented on issue #19001: Documentation bug: mxnet.ndarray.contrib.foreach doesn't accept `name`

Posted by GitBox <gi...@apache.org>.
szha commented on issue #19001:
URL: https://github.com/apache/incubator-mxnet/issues/19001#issuecomment-679420337


   This looks like a copy-paste error. The place for fixing it is here:
   https://github.com/apache/incubator-mxnet/blob/3c4ac19daa3e645d918692b864ea19640f7e0314/python/mxnet/ndarray/contrib.py#L178-L179


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-mxnet] vijaya-lakshmi-venkatraman commented on issue #19001: Documentation bug: mxnet.ndarray.contrib.foreach doesn't accept `name`

Posted by GitBox <gi...@apache.org>.
vijaya-lakshmi-venkatraman commented on issue #19001:
URL: https://github.com/apache/incubator-mxnet/issues/19001#issuecomment-1046942866


   Hello,
   I see a PR merged for this issue.
   Is this still open?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org