Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
close #2185 and close #4095 (#4160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiang Kou (KK) authored and piiswrong committed Dec 29, 2016
1 parent 6b91837 commit 5ee2c21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Description: MXNet is a deep learning framework designed for both efficiency
and flexibility. It allows you to mix the flavours of deep learning programs
together to maximize the efficiency and your productivity.
License: BSD
URL: https://github.com/dmlc/mxnet/R-package
URL: https://github.com/dmlc/mxnet/tree/master/R-package
BugReports: https://github.com/dmlc/mxnet/issues
Imports:
methods,
Expand Down
2 changes: 1 addition & 1 deletion R-package/src/ndarray.cc
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ void NDArray::Save(const Rcpp::List& data_lst,
const std::string& filename) {
std::vector<std::string> lst_names;
if (HasName(data_lst)) {
lst_names = data_lst.names();
lst_names = Rcpp::as<std::vector<std::string> >(data_lst.names());
}
size_t num_args = data_lst.size();
std::vector<NDArrayHandle> handles(num_args);
Expand Down

0 comments on commit 5ee2c21

Please sign in to comment.