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

MXNET-296 [Perl] Parity with Python Gluon Loss classes. #10555

Merged
merged 3 commits into from
Apr 18, 2018
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
3 changes: 3 additions & 0 deletions perl-package/AI-MXNet/Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Perl extension AI::MXNet

1.22 Sat Apr 14 17:51:55 PDT 2018
- Parity with Python Gluon Loss classes

1.21 Sun Apr 8 12:08:44 PDT 2018
- Support for linear algebra operations on symbols and ndarrays.

Expand Down
2 changes: 1 addition & 1 deletion perl-package/AI-MXNet/META.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@
}
},
"release_status" : "stable",
"version" : "1.21"
"version" : "1.22"
}
2 changes: 1 addition & 1 deletion perl-package/AI-MXNet/META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ requires:
Mouse: v2.1.0
PDL: '2.007'
PDL::CCS: '1.23.4'
version: '1.21'
version: '1.22'
2 changes: 1 addition & 1 deletion perl-package/AI-MXNet/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ my %WriteMakefileArgs = (
"GraphViz" => "2.14"
},
"TEST_REQUIRES" => {},
"VERSION" => "1.21",
"VERSION" => "1.22",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion perl-package/AI-MXNet/README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This archive contains the distribution AI-MXNet,
version 1.21:
version 1.22:

Perl interface to MXNet machine learning library

Expand Down
2 changes: 1 addition & 1 deletion perl-package/AI-MXNet/lib/AI/MXNet.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use AI::MXNet::AutoGrad;
use AI::MXNet::Gluon;
use AI::MXNet::NDArray::Sparse;
use AI::MXNet::Symbol::Sparse;
our $VERSION = '1.21';
our $VERSION = '1.22';

sub import
{
Expand Down
Loading