David
David

Reputation: 55

Build MXNET library for R

I have used R and MXNET and I see that the version of MXNET from the repo is 0.7

I've built 0.93 from Git and I succeded. (adding lots of dependencies and missing libraries.

But the thing is that it did not create "mxnet.dll" for R

The only output I get is "libmxnet.dll" and R is not loading it. I believe the old mxnet.dll is not going to work with the new libmxnet.dll

Upvotes: 2

Views: 513

Answers (1)

Qiang Kou
Qiang Kou

Reputation: 522

We have provided the CPU and GPU pkgs for Windows.

For CPU-only pkg:

cran <- getOption("repos")
cran["dmlc"] <- "https://s3.amazonaws.com/mxnet-r/"
options(repos = cran)
install.packages("mxnet")

For GPU-enable pkg:

cran <- getOption("repos")
cran["dmlc"] <- "https://s3.amazonaws.com/mxnet-r/GPU"
options(repos = cran)
install.packages("mxnet")

Upvotes: 3

Related Questions