AI-ConfusionMatrix
view release on metacpan or search on metacpan
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
LICENSE
MANIFEST
META.json
META.yml
Makefile.PL
README.md
dist.ini
lib/AI/ConfusionMatrix.pm
t/01_csv.t
t/02_cmData.t
test.csv
test.pl
xt/author/pod-syntax.t
},
"runtime" : {
"requires" : {
"Carp" : "0",
"Exporter" : "0",
"Tie::File" : "0",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"File::Temp" : "0",
"Test::More" : "0"
}
}
},
"provides" : {
"AI::ConfusionMatrix" : {
"file" : "lib/AI/ConfusionMatrix.pm",
"version" : "0.010"
Makefile.PL view on Meta::CPAN
"Exporter" => 0,
"Tie::File" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"File::Temp" => 0,
"Test::More" => 0
},
"VERSION" => "0.010",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Carp" => 0,
"Exporter" => 0,
"File::Temp" => 0,
"Test::More" => 0,
use Test::More tests => 13;
require_ok( 'AI::ConfusionMatrix' );
use AI::ConfusionMatrix;
use Tie::File;
use File::Temp 'tempfile';
my $hash = {
1978 => {
1978 => 5,
1974 => 1,
t/02_cmData.t view on Meta::CPAN
use Test::More tests => 6;
require_ok( 'AI::ConfusionMatrix' );
use AI::ConfusionMatrix;
my $hash = {
1978 => {
1978 => 5,
1974 => 1,
},
2005 => {
( run in 0.360 second using v1.01-cache-2.11-cpan-87723dcf8b7 )