|
NAMEText::NSP::Measures::2D::MI - Perl module that provides error checks for Loglikelihood, Total Mutual Information, Pointwise Mutual Information and Poisson-Stirling Measure.SYNOPSISBasic Usageuse Text::NSP::Measures::2D::MI::ll; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $ll_value = calculateStatistic( n11=>$n11, n1p=>$n1p, np1=>$np1, npp=>$npp); if( ($errorCode = getErrorCode())) { print STDERR $errorCode." - ".getErrorMessage()."\n""; } else { print getStatisticName."value for bigram is ".$ll_value."\n""; } DESCRIPTIONThis module is the base class for the Loglikelihood, Total Mutual Information and the Pointwise Mutual Information measures. All these measure are similar. This module provides error checks specific for these measures, it also implements the computations that are common to these measures.
All these methods use the ratio of the observed values to expected values, for computations, and thus have common error checks, so they have been grouped together. Methods
AUTHORTed Pedersen, University of Minnesota Duluth <tpederse@d.umn.edu>Satanjeev Banerjee, Carnegie Mellon University <satanjeev@cmu.edu> Amruta Purandare, University of Pittsburgh <amruta@cs.pitt.edu> Bridget Thomson-McInnes, University of Minnesota Twin Cities <bthompson@d.umn.edu> Saiyam Kohli, University of Minnesota Duluth <kohli003@d.umn.edu> HISTORYLast updated: $Id: MI.pm,v 1.27 2008/03/26 17:18:26 tpederse Exp $BUGSSEE ALSO<http://groups.yahoo.com/group/ngram/><http://www.d.umn.edu/~tpederse/nsp.html> COPYRIGHTCopyright (C) 2000-2006, Ted Pedersen, Satanjeev Banerjee, Amruta Purandare, Bridget Thomson-McInnes and Saiyam KohliThis program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to The Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Note: a copy of the GNU General Public License is available on the web at <http://www.gnu.org/licenses/gpl.txt> and is included in this distribution as GPL.txt.
Visit the GSP FreeBSD Man Page Interface. |