Algorithm-AM
view release on metacpan or search on metacpan
bin/analogize.pl view on Meta::CPAN
}
my ($train, $test);
if($args{exemplars}){
$train = dataset_from_file(
path => $args{exemplars},
format => $args{format});
}
if($args{test}){
$test = dataset_from_file(
path => $args{test},
format => $args{format});
}
if($args{project}){
$train = dataset_from_file(
path => path($args{project})->child('data'),
format => $args{format});
if(path($args{project})->child('test')->exists){
$test = dataset_from_file(
path => path($args{project})->child('test'),
format => $args{format});
}else{
$test = $train;
}
}
# default to leave-one-out if no test set specified
$test ||= $train;
my $count = 0;
my $batch = Algorithm::AM::Batch->new(
linear => $args{linear},
exclude_given => !$args{include_given},
exclude_nulls => !$args{include_nulls},
training_set => $train,
# print the result of each classification at the time it is provided
end_test_hook => sub {
my ($batch, $test_item, $result) = @_;
++$count if $result->result eq 'correct';
say $test_item->comment . ":\t" . $result->result . "\n";
for (@print_methods) {
if($_ eq 'gang_detailed'){
say ${ $result->gang_summary(1) };
}else{
say ${ $result->$_ };
}
}
}
);
$batch->classify_all($test);
say "$count out of " . $test->size . " correct";
return;
}
sub _validate_args {
my %args = @_;
if($args{help}){
pod2usage(1);
}
my $errors = '';
if(!$args{exemplars} and !$args{project}){
$errors .= "Error: need either --exemplars or --project parameters\n";
}elsif(($args{exemplars} or $args{test}) and $args{project}){
$errors .= "Error: --project parameter cannot be used with --exempalrs or --test\n";
}
if(!defined $args{format}){
$errors .= "Error: missing --format parameter\n";
}elsif($args{format} !~ m/^(?:no)?commas$/){
$errors .=
"Error: --format parameter must be either 'commas' or 'nocommas'\n";
}
if($args{print}){
my %allowed =
map {$_ => 1} qw(
config_info
statistical_summary
analogical_set_summary
gang_summary
gang_detailed
);
for my $param (split ',', $args{print}){
if(!exists $allowed{$param}){
$errors .= "Error: unknown print parameter '$param'\n";
}
}
}
if($errors){
$errors .= 'use "analogize --help" for detailed usage information';
chomp $errors;
pod2usage($errors);
}
}
__END__
=pod
=encoding UTF-8
=head1 NAME
analogize - classify data with AM from the command line
=head1 VERSION
version 3.13
=head1 SYNOPSIS
analogize --format <format> [--exemplars <file>] [--test <file>]
[--project <dir>] [--print <config_info,statistical_summary,
analogical_set_summary,gang_summary,gang_detailed>]
[--help]
=head1 DESCRIPTION
Classify data with analogical modeling from the command line.
Required arguments are B<format> and either B<exemplars> or
B<project>. You can use old AM::Parallel projects (a directory
containing C<data> and C<test> files) or specify individual data
and test files. By default, only the accuracy of the predicted
outcomes is printed. More detail may be printed using the B<print>
option.
=head1 OPTIONS
=over
=item B<format>
specify either commas or nocommas format for exemplar and test data files
(C<=> should be used for "null" variables). See L<Algorithm::AM::DataSet/dataset_from_file>
for details on the two formats.
=item C<exemplars>, C<data> or C<train>
path to the file containing the examplar/training data
=item C<project>
path to an AM::Parallel-style project (ignores 'outcome' file); this
should be a directory containing a file called C<data> containing known
exemplars and C<test> containing test exemplars. If the C<test> file does
not exist, then a leave-one-out scheme is used for testing using the
exemplars in the C<data> file.
=item C<test>
path to the file containing the test data. If none is specified,
performs leave-one-out classification with the exemplar set.
( run in 1.542 second using v1.01-cache-2.11-cpan-4991d5b9bd9 )