On the Helmholtz Principle for Data Mining

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News On the Helmholtz Principle for Data Mining
# 1  
Old 10-08-2010
On the Helmholtz Principle for Data Mining

HPL-2010-133 On the Helmholtz Principle for Data Mining - Balinsky, Alexander; Balinsky, Helen; Simske, Steven
Keyword(s): extraction, feature extraction, unusual behavior detection, Helmholtz principle, mining textual and unstructured datasets
Abstract: We present novel algorithms for feature extraction and change detection in unstructured data, primarily in ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Principle of inet_addr and inet_ntoa

hello, i have just started Socket programming and i come across functions inet_addr() which converts IP address to unsigned long and inet_ntoa() which converts unsigned long to IP address but dont understand on what formula/principle they do these conversions say for a given ip address can... (0 Replies)
Discussion started by: juststarted
0 Replies

2. Shell Programming and Scripting

Data mining a text file.

I'm auditing UID consistency across our hosts, and have created the following datafile, consisting of four fields. I would like to get a count of the combination of the last two fields. ie: I would like to find out how many instances there are of "root 0" and how many of "uucp 5", for every line... (3 Replies)
Discussion started by: akbar
3 Replies
Login or Register to Ask a Question
Data::Phrasebook::Plain(3pm)				User Contributed Perl Documentation			      Data::Phrasebook::Plain(3pm)

NAME
Data::Phrasebook::Plain - The Simple Phrasebook Model. SYNOPSIS
use Data::Phrasebook; my $q = Data::Phrasebook->new( class => 'Plain', loader => 'Text', file => 'phrases.txt', ); my $r = Data::Phrasebook->new( file => 'phrases.txt' ); # simple keyword to phrase mapping my $phrase = $q->fetch($keyword); # keyword to phrase mapping with parameters $q->delimiters( qr{ [% s* (w+) s* %] }x ); my $phrase = $q->fetch($keyword,{this => 'that'}); DESCRIPTION
This module is the fallback or default phrasebook class. It doesn't do much except act as a very simple templating facility. METHODS
fetch Retrieves the specified "template" and substitutes any "keywords" for "values". Thus, given: hello=Hello [% where %]! And code: my $text = $q->fetch( 'hello', { where => 'world' } ); Return value is: Hello world! The delimiters are deliberately taken from Template Toolkit. SEE ALSO
Data::Phrasebook, Data::Phrasebook::Generic. SUPPORT
Please see the README file. AUTHOR
Original author: Iain Campbell Truskett (16.07.1979 - 29.12.2003) Maintainer: Barbie <barbie@cpan.org> since January 2004. for Miss Barbell Productions <http://www.missbarbell.co.uk>. COPYRIGHT AND LICENSE
Copyright (C) 2003 Iain Truskett. Copyright (C) 2004-2010 Barbie for Miss Barbell Productions. This module is free software; you can redistribute it and/or modify it under the Artistic Licence v2. perl v5.10.1 2010-08-31 Data::Phrasebook::Plain(3pm)