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
Audio::File::Tag(3pm)					User Contributed Perl Documentation				     Audio::File::Tag(3pm)

NAME
Audio::File::Tag - abstracts the tag of an audio file DESCRIPTION
Audio::File::Tag is the base class for other file format independant tag classes like Audio::File::Flac::Tag or Audio::File::Ogg::Tag. You shouldn't use this class yourself exept you're writing an own file format dependant subclass. METHODS
new Constructor. Creates a new Audio::File::Tag object. You shouldn't use this method yourself. It is called by the filetype-dependant subclasses of Audio::File::Type automatically. init Initializes the object. It's called by the constructor and empty by default. It's ought to be overwritten by subclasses. title Using title() you can get or set the tags title field. If called without any argument it'll return the current content of the title field. If you call title() with an scalar argument it will set the title field to what the argument contains. The methods artist(), album(), comment(), genre(), year(), track() and total() are called in the same way. artist Set/get the artist field in the files tag. album Set/get the album field in the files tag. comment Set/get the comment field in the files tag. genre Set/get the genre field in the files tag. year Set/get the year field in the files tag. track Set/get the track field in the files tag. total Set/get the total number of tracks. all Set/get all tags. To set the tags pass a hash reference with the names of the tags as keys and the tag values as hash values. Returns a hash reference if no argument is specified. is_empty Returns whether all tag fields are empty or not. save Saves the changed tag information. Not yet implemented. TODO
Implement writing tags AUTHOR
Florian Ragwitz <flora@cpan.org> COPYRIGHT AND LICENSE
Copyright (C) Florian Ragwitz This 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 Library 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. perl v5.10.0 2005-02-18 Audio::File::Tag(3pm)