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

close #2185 and close #4095 #4160

Merged
merged 1 commit into from
Dec 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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