mxnet icon indicating copy to clipboard operation
mxnet copied to clipboard

Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more

Results 182 mxnet issues
Sort by recently updated
recently updated
newest added

Include FlexiBLAS as available vendor. Find BLAS libs to link on Flexiblas.

pr-awaiting-testing

## Description When I try to load [this linked model](https://1drv.ms/u/s!Aj77w7-uJZ_ld_Mle2nPiQXdJ2I?e=itWhbH) using the following lines of code: ```python from mxnet.contrib import onnx as onnx_mxnet onnx_model_file = "network.onnx" sym, arg, aux =...

Bug
needs triage

which cause node name not found ```bash File "/usr/local/lib/python2.7/dist-packages/mxnet/contrib/onnx/onnx2mx/import_onnx.py", line 115, in from_onnx inputs = [self._nodes[i] for i in node.input] KeyError: u'Input/sub/y:0' ``` The model is fine with onnxruntime Moreover,...

Bug
ONNX

## Description I had the same error as described in several issues here: #18923, #16590, #20317 and [here](https://github.com/onnx/onnx-mxnet/issues/54) By investigating the code, I came up with an idea that the...

Feature request

``` import mxnet as mx data = mx.np.array([[5, 8, 7, 3, 4]]) print("**************************** repeat with spec 3") print(mx.np.repeat(data, repeats=3, axis=1)) json = '{\"nodes\":[{\"op\":\"null\",\"name\":\"in\",\"inputs\":[]},{\"op\":\"_npi_repeats\",\"name\":\"_npi_repeats9\",\"attrs\":{\"axis\":\"1\",\"repeats\":\"(3,3,3,3,3)\"},\"inputs\":[[0,0,0]]}],\"arg_nodes\":[0],\"heads\":[[1,0,0]]}' sym = mx.sym.fromjson(json) cached_op = mx.ndarray.CachedOp(sym) print("****************************...

Bug
needs triage

There are small typos in: - docs/python_docs/python/tutorials/getting-started/crash-course/7-use-gpus.md - docs/static_site/src/pages/api/cpp/docs/tutorials/multi_threaded_inference.md - example/README.md Fixes: - Should read `specifying` rather than `specifieing`. - Should read `multi threaded` rather than `iultithreaded`. - Should read...

pr-awaiting-review

## Description (Brief description of the problem in no more than 2 sentences.) I use `pip install mxnet -v` but everywhere it can't be install every whl package have the...

Installation
Feature request

## Description ## This is the same as this https://github.com/apache/incubator-mxnet/pull/20559. The PR adds the support for fetching the gradients of intermediate variables in a gluon HybridizedBlock. This applies uniformly to...

pr-awaiting-testing

## Description Compile mxnetv2.0.0.beta0.rc1+ VS2019 + MKL ### Error Message link problem as below, ``` 1> 正在创建库 E:/vMxnet/mxnet200beta0rc1/dev/Debug/mxnet_86.lib 和对象 E:/vMxnet/mxnet200beta0rc1/dev/Debug/mxnet_86.exp 1>np_matrix_rank.cu.obj : error LNK2019: 无法解析的外部符号 "__int64 __cdecl mxnet::op::linalg_gesdd_workspace_query(__int64,__int64,struct mshadow::Tensor const...

Bug
needs triage

## Overview As MXNet development approaches its 2.0 major milestone, we would like to update our community on roadmap status, and highlight new and upcoming features. ### Motivation The deep...

RFC