AI::Categorize::VectorBased - Base class for other algorithms


NAME

AI::Categorize::VectorBased - Base class for other algorithms


SYNOPSIS

  package Some::Other::Categorizer;
  use AI::Categorize::VectorBased;
  @ISA = qw(AI::Categorize::VectorBased);
  ...


DESCRIPTION

This class implements a few things that vector-based approaches to document categorization may need. It's not a complete categorization class in itself, but it can function as the parent for classes like AI::Categorize::kNN and AI::Categorize::SVM.

The rest of this document describes some of the implementation details of this class. Again, this is not useful in itself for categorization, but rather describes the shared interface between the parent and child classes.


METHODS

The following methods are provided.


AUTHOR

Ken Williams, ken@forum.swarthmore.edu


COPYRIGHT

Copyright 2000-2001 Ken Williams. All rights reserved.

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


SEE ALSO

AI::Categorize(3)

 AI::Categorize::VectorBased - Base class for other algorithms