The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

AI::CBR - Framework for Case-Based Reasoning

VERSION

Version 0.02

SYNOPSIS

    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

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

AUTHOR

Darko Obradovic, <dobradovic at gmx.de>

BUGS

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

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

    perldoc AI::CBR

You can also look for information at:

COPYRIGHT & LICENSE

Copyright 2009 Darko Obradovic, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.