Clustering Tags in Enterprise and Web Folksonomies


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Clustering Tags in Enterprise and Web Folksonomies
# 1  
Old 03-06-2008
Clustering Tags in Enterprise and Web Folksonomies

HPL-2008-18 Clustering Tags in Enterprise and Web Folksonomies - Simpson, Edwin
Keyword(s): tagging, folksonomy, clustering, similarity, navigation
Abstract: Tags lack organizational structure limiting their utility for navigation. We present two clustering algorithms that improve this by organizing tags automatically. We apply the algorithms to two very different datasets, visualize the results and propose future improvements. ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. HP-UX

HP-UX Clustering

Hello guys, I would like to ask for your assistance, since i am new to HP-UX. Please give me some documentation about clustering in HP-UX. More precisely design,architecture, configuring etc. I am working on my master thesis right now and would like to include some guidance about that.... (1 Reply)
Discussion started by: bazillion
1 Replies

2. Solaris

Java web console Vs Web-Based Enterprise Management(WBEM)

Java web console Vs Web-Based Enterprise Management(WBEM) 1. I like to understand the difference in purpose of using java web console and Web-Based Enterprise Management (WBEM) 2. As per CIS benchmark, both of them has to be disabled when not used for increased security. Solaris admin(s) -... (0 Replies)
Discussion started by: cyberidude
0 Replies

3. Shell Programming and Scripting

remove large portion of web page code between two tags

Hi everybody, I am trying to remove bunch of lines from web pages between two tags: one is <h1> and the other is <table it looks like <h1>Anniversary cards roses</h1> many lines here <table summary="Free anniversary greeting cards." cellspacing="8" cellpadding="8" width="70%">my goal... (5 Replies)
Discussion started by: georgi58
5 Replies

4. Red Hat

Clustering Red Hat Enterprise linux Advanced Platform 5.2 (x86-64 bit)

Hello Professionals, We have high-end HP rack servers. We need to provide application fail-over for business continuity. We have done benchmarking of the application on RHEL 5.2 on HP servers to estimate the hardware requirement so as to meet next 3-5 years business growth. Presently we... (1 Reply)
Discussion started by: kgayyar
1 Replies

5. UNIX for Dummies Questions & Answers

Clustering or not

I woulld like to use the JDE newest version, but I am considering whether using 2 X Wintel server with clustering or 1 Unix server without clustering. Is Unix stable enough to except the clustering? (0 Replies)
Discussion started by: superlouis
0 Replies
Login or Register to Ask a Question
Template::Declare::TagSet(3pm)				User Contributed Perl Documentation			    Template::Declare::TagSet(3pm)

NAME
Template::Declare::TagSet - Base class for tag sets used by Template::Declare::Tags SYNOPSIS
package My::TagSet; use base 'Template::Declare::TagSet'; # returns an array ref for the tag names sub get_tag_list { [ qw( html body tr td table base meta link hr )] } # prevents potential naming conflicts: sub get_alternate_spelling { my ($self, $tag) = @_; return 'row' if $tag eq 'tr'; return 'cell' if $tag eq 'td'; } # Specifies whether "<tag></tag>" can be # combined to "<tag />": sub can_combine_empty_tags { my ($self, $tag) = @_; $tag =~ /^ (?: base | meta | link | hr ) $/x; } DESCRIPTION
Template::Declare::TagSet is the base class for declaring packages of Template::Delcare tags. If you need to create new tags for use in your templates, this is the base class for you! Review the source code of Template::Declare::TagSet::HTML for a useful example. METHODS
new( PARAMS ) my $tag_set = Template::Declare::TagSet->new({ package => 'Foo::Bar', namespace => undef, }); Constructor created by "Class::Accessor::Fast", accepting an optional hash reference of parameters. get_tag_list my $list = $tag_set->get_tag_list(); Returns an array ref for the tag names offered by a tag set. get_alternate_spelling( TAG ) $bool = $obj->get_alternate_spelling($tag); Returns true if a tag has an alternative spelling. Basically it provides a way to work around naming conflicts. For example, the "tr" tag in HTML conflicts with Perl's "tr" operator, and the "template" tag in XUL conflicts with the "template" sub exported by "Template::Declare::Tags". can_combine_empty_tags( TAG ) $bool = $obj->can_combine_empty_tags($tag); Specifies whether "<tag></tag>" can be combined into a single token, "<tag />". By default, all tags can be combined into a single token; override in a subclass to change this value where appropriate. For example, "Template::Declare::TagSet::HTML->can_combine_empty_tags('img')" returns true since "<img src="..." />" is always required for HTML pages. "Template::Declare::TagSet::HTML->can_combine_empty_tags('script')", on the other hand, returns false, since some browsers can't handle a single script token. ACCESSORS
This class has two read-only accessors: package my $package = $obj->package(); Retrieves the value of the "package" option set via the constructor. namespace my $namespace = $obj->namespace(); Retrieves the value of the "namespace" option set via the constructor. AUTHOR
Agent Zhang <agentzh@yahoo.cn>. SEE ALSO
Template::Declare::TagSet::HTML, Template::Declare::TagSet::XUL, Template::Declare::Tags, Template::Declare. perl v5.10.1 2010-12-08 Template::Declare::TagSet(3pm)