ALBD

 view release on metacpan or  search on metacpan

FDL.txt  view on Meta::CPAN

or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text.  A copy that is not "Transparent" is called "Opaque".

Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input format, SGML
or XML using a publicly available DTD, and standard-conforming simple
HTML, PostScript or PDF designed for human modification.  Examples of
transparent image formats include PNG, XCF and JPG.  Opaque formats
include proprietary formats that can be read and edited only by
proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the
machine-generated HTML, PostScript or PDF produced by some word
processors for output purposes only.

The "Title Page" means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page.  For works in
formats which do not have any title page as such, "Title Page" means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.

A section "Entitled XYZ" means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following

utils/datasetCreator/applyMaxThreshold.pl  view on Meta::CPAN

	    #update the unique co-occurrence counts
	    $count{$cui1}++;
	}
	else {
	    #update the cooccurrence count
	    chomp $val; #I'm not sure if this is necassary...probably not
	    $count{$cui1}+=$val;
	}
	
	#NOTE: do not update counts for $2, because in the case where order 
	#does not matter, the matrix will have been pre-processed to ensure 
	#the second cui will appear first in the key. In the case where order 
	#does matter we just shouldnt be counting it anyway
    }
    close IN;

    return \%count;
}

#applies a maxThreshold, $countRef is the output of getStats
sub applyMaxThreshold {

utils/datasetCreator/dataStats/getCUICooccurrences.pl  view on Meta::CPAN

    #split the line
    ($cui1, $cui2, $val) = split(/\t/,$line);

    #update the cooccurrence count
    $coCount{$cui1}+=$val;
    
    #update the unique co-occurrence counts
    $ucoCount{$cui1}++;

    #NOTE: do not update counts for 2, because in the case where order 
    #does not matter, the matrix will have been pre-processed to ensure 
    #the second cui will appear first in the key. In the case where order 
    #does matter we just shouldnt be counting it anyway
}
close IN;

print "Outputting Results\n";
#output the co-occurrence counts, sorted by number of unique
# co-occurrences (descending)
foreach my $cui(sort {$ucoCount{$b}<=>$ucoCount{$a}} keys %ucoCount) {
    #coCount and ucoCount will have the same keys (see above loop)



( run in 0.281 second using v1.01-cache-2.11-cpan-8d75d55dd25 )