AI::CBR - Framework for Case-Based Reasoning


AI-CBR documentation Contained in the AI-CBR distribution.

Index


Code Index:

NAME

Top

AI::CBR - Framework for Case-Based Reasoning

VERSION

Top

Version 0.02

SYNOPSIS

Top

    use AI::CBR::Sim qw(sim_eq ...);
    use AI::CBR::Case;
    use AI::CBR::Retrieval;

    my $case = AI::CBR::Case->new(...);
    my $r = AI::CBR::Retrieval->new($case, \@case_base);
    ...




DESCRIPTION

Top

Framework for Case-Based Reasoning in Perl. For an overview, please see my slides from YAPC::EU 2009.

In brief, you need to specifiy an AI::CBR::Case with the help of similarity functions from AI::CBR::Sim. Then you can find similar cases from a case-base with AI::CBR::Retrieval.

The technical documentation can be found in the individual modules of this distribution.

SEE ALSO

Top

* AI::CBR::Sim
* AI::CBR::Case
* AI::CBR::Case::Compound
* AI::CBR::Retrieval

AUTHOR

Top

Darko Obradovic, <dobradovic at gmx.de>

BUGS

Top

Please report any bugs or feature requests to bug-ai-cbr at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=AI-CBR. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc AI::CBR




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=AI-CBR

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/AI-CBR

* CPAN Ratings

http://cpanratings.perl.org/d/AI-CBR

* Search CPAN

http://search.cpan.org/dist/AI-CBR

COPYRIGHT & LICENSE

Top


AI-CBR documentation Contained in the AI-CBR distribution.
package AI::CBR;

use warnings;
use strict;


our $VERSION = '0.02';


1; # End of AI::CBR::Case