Analyzing Communal Tag Relationships for Enhanced Navigation and User Modeling


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Analyzing Communal Tag Relationships for Enhanced Navigation and User Modeling
# 1  
Old 03-23-2008
Analyzing Communal Tag Relationships for Enhanced Navigation and User Modeling

HPL-2008-24 Analyzing Communal Tag Relationships for Enhanced Navigation and User Modeling - Simpson, Edwin; Butler, Mark H.
Keyword(s): Tagging, folksonomy, clustering, latent structure, navigation, visualization, recommendation, personalization, contextualization.
Abstract: The increasing amount of available information has created a demand for better, more automated methods of finding and organizing different types of information resource. This chapter investigates methods of improving navigation, personalization and recommendation of information resources using colla ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To search for a particular tag in xml and collate all similar tag values and display them count

I want to basically do the below thing. Suppose there is a tag called object1. I want to display an output for all similar tag values under heading of Object 1 and the count of the xmls. Please help File: <xml><object1>house</object1><object2>child</object2>... (9 Replies)
Discussion started by: srkmish
9 Replies

2. Shell Programming and Scripting

XML Parse between to tag with upper tag

Hi Guys Here is my Input : <?xml version="1.0" encoding="UTF-8"?> <xn:MeContext id="01736"> <xn:VsDataContainer id="01736"> <xn:attributes> <xn:vsDataType>vsDataMeContext</xn:vsDataType> ... (12 Replies)
Discussion started by: pareshkp
12 Replies

3. Shell Programming and Scripting

Search for a html tag and print the entire tag

I want to print from <fruits> to </fruits> tag which have <fruit> as mango. Also i want both <fruits> and </fruits> in output. Please help eg. <fruits> <fruit id="111">mango<fruit> . another 20 lines . </fruits> (3 Replies)
Discussion started by: Ashik409
3 Replies

4. Shell Programming and Scripting

How to retrieve the value from XML tag whose end tag is in next line

Hi All, Find the following code: <Universal>D38x82j1JJ </Universal> I want to retrieve the value of <Universal> tag as below: Please help me. (3 Replies)
Discussion started by: mjavalkar
3 Replies

5. Programming

how to add user defined tag in a mp3 file?

Hai all, Can anyone explain me about how to add an user defined tag in an mp3 file using MP3::Tag module in perl? (0 Replies)
Discussion started by: thillai_selvan
0 Replies

6. UNIX for Dummies Questions & Answers

Relationships between adjacent digits

I have a long list of numbers; let's call them integers. Here is an excerpt: 01072523 0371 037408 0382028 038224 01 I want to find integers that contain a certain pattern that I'll describe as a "relationship between adjacent digits". The pattern is a triplet: digit digit... (7 Replies)
Discussion started by: uiop44
7 Replies

7. SuSE

Navigation of Fedora Core 6

Hi. Not sure if this should go in the beginners section, so forgivness please if it's not correctly placed. I just installed Linux Fedora Core 6 on my home computer (and am very very new to this) so I can learn more about it. However, I am looking for the FC6 equivalent to the System Device... (2 Replies)
Discussion started by: Carl1976
2 Replies

8. Shell Programming and Scripting

Navigation Toolkit for BASH

UNIX Forum, Please see the latest version of my navigation toolkit for BASH. The project web-page on SourceForge can found here: Bash Navigator Home Page (SourceForge) I would appreciate any input you might have. Regards (2 Replies)
Discussion started by: rlandon@usa.net
2 Replies
Login or Register to Ask a Question
Agent::Tag(3pm) 					User Contributed Perl Documentation					   Agent::Tag(3pm)

NAME
Log::Agent::Tag - formats caller information SYNOPSIS
Intended to be inherited from DESCRIPTION
This class is meant to be inherited by all the classes implementing a log message tag. A message tag is a little string that is either appended or prepended to all log messages. For instance, and oversimplifying a bit, a tag meant to be prepended will be inserted in front of the current log message, separated by separator, which defaults to a single space: +------------+-----------+---------------------------------+ | tag string | separator | current log message | +------------+-----------+---------------------------------+ This operation is called tag insertion. The whole string then becomes the current log message, and can be the target of another tag insertion. The reality is a little bit more complex, to allow successive tags to be prepended or appended in the order they are specified, and not in reverse order as they would be if naively implemented. See Log::Agent::Message for the exact semantics of append() and prepend() operations. FEATURES
This section documents the interface provided to heirs, in case you wish to implement your own tag class. _init(name, postfix, separator) Initialization routine that should be called by all heirs during creation to initialize the common attributes. postfix When true, the tag is meant to be appended to the log message. Otherwise, it is prepended. name The name of this tag. It is meant to provide by-name access to tags, check whether a given tag is recorded, etc... The names "caller" and "priority" are architecturally defined to refer to "Log::Agent::Tag::Caller" and "Log::Agent::Tag::Priority" objects. NOTE: Currently unused by any client code. separator The sperating string inserted between the tag and the log message. It defaults to " " if not specified, i.e. left to "undef" when calling _init(). string() A deferred routine, to be implemented by heirs. Returns the tag string only, without the separator, since its exact placement depends on the value of the "postfix" attribute. insert(message) Insert this tag withing the "Log::Agent::Message" message, according to the tag specifications (placement, separator). Calls string() to produce the tag string. This routine is frozen and should not be redefined by heirs. STANDARD TAGGING CLASSES
Tagging classes define via their "string()" routine what is the string to be used as a tag. The insertion of the tag within the log message is done via a frozen routine from the "Log::Agent::Tag" ancestor. The following classes are provided by "Log::Agent": "Log::Agent::Tag::Callback" The "string()" routine invokes a user-supplied callback, given as a "Callback" object. You need the Callback module from CPAN if you wish to use this class. "Log::Agent::Tag::Caller" Used internally to compute the caller and format it according to user specifications. "Log::Agent::Tag::Priority" Used internally to format message priorities and add them to the log messages. "Log::Agent::Tag::String" Defines a constant tagging string that should be added in all the log messages, e.g. a web session ID. AUTHOR
Raphael Manfredi <Raphael_Manfredi@pobox.com> SEE ALSO
Log::Agent::Message(3). perl v5.10.0 2002-03-09 Agent::Tag(3pm)