Framework for Effective Representation of Wikipedia and Graph-based Distance Calculation

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Framework for Effective Representation of Wikipedia and Graph-based Distance Calculation
# 1  
Old 10-23-2010
Framework for Effective Representation of Wikipedia and Graph-based Distance Calculation

HPL-2010-153 Framework for Effective Representation of Wikipedia and Graph-based Distance Calculation - Ulanov, Alexander; Ryashchentsev, Dmitry
Keyword(s): Wikipedia, semantic similarity, effective graph representation
Abstract: We consider the problem of using Wikipedia as an external knowledge base in real-time applications. In particular, present tools don't allow making fast computations on Wikipedia graph. This is essential for such tasks as word sense disambiguation or term clustering. To address this issue we propose ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

finding distance between numbers

Hi, I have a file as ABC 1634230,1634284,1634349,1634468 1634272,1634301,1634356,1634534 What I want is to find distance between the numbers.. column 1 is the gene name and column 2 are starts and column 3 are their respective stops for the starts. So what I want is column 3 which has +1... (2 Replies)
Discussion started by: Diya123
2 Replies

2. Shell Programming and Scripting

Average calculation based on number of rows

Dear users, I need your support, I have a file like this: 272134.548 6680572.715 272134.545 6680572.711 272134.546 6680572.713 272134.548 6680572.706 272134.545 6680572.721 272134.543 6680572.710 272134.544 6680572.715 272134.543 6680572.705 272134.540 6680572.720 272134.544... (10 Replies)
Discussion started by: Gery
10 Replies

3. UNIX for Dummies Questions & Answers

How to make a distance matrix

Hi, I'm trying to generate a distance matrix between sample pairs for use in a tree-drawing program (example below). The example below demonstrates what I'd like to get out of the data - essentially, to calculate the proportion of positions where two samples differ. Any help much appreciated!... (1 Reply)
Discussion started by: auburn
1 Replies

4. Shell Programming and Scripting

Calculate distance and azimuth

Hi all, I have a data file like this lat lon lat lon 12.000 25.125 14.235 25.012 14.200 81.000 25.584 25.014 45.023 25.365 25.152 35.222 I want to calculate distance and azimuth between this points eg:- 12.000,25.125 and 14.235,25.012 I want to use awk programming... (3 Replies)
Discussion started by: chamara
3 Replies

5. Programming

Converting distance list to distance matrix in R

Hi power user, I have this type of data (distance list): file1 A B 10 B C 20 C D 50I want output like this # A B C D A 0 10 30 80 B 10 0 20 70 C 30 20 0 50 D 80 70 50 0 Which is a distance matrix I have tried... (0 Replies)
Discussion started by: anjas
0 Replies

6. Shell Programming and Scripting

Lat/Long Distance Calculation

I amtrying to write a script that would compute the distance between an "x" number of points. This is what I have come up with so far and it is not working. Can anyone modify it to make it work? A=34.16597 B=-84.33244 C=34.2344 D=-84.29189 test "$A" -eq "$C" -o "$B" -eq "$D" then echo... (3 Replies)
Discussion started by: Ernst
3 Replies
Login or Register to Ask a Question
Graph::Writer::GraphViz(3pm)				User Contributed Perl Documentation			      Graph::Writer::GraphViz(3pm)

NAME
Graph::Writer::GraphViz - GraphViz Writer for Graph object SYNOPSIS
my @v = qw/Alice Bob Crude Dr/; my $g = Graph->new(@v); my $wr = Graph::Writer::GraphViz->new(-format => 'dot'); $wr->write_graph($g,'/tmp/graph.simple.dot'); my $wr_png = Graph::Writer::GraphViz->new(-format => 'png'); $wr_png->write_graph($g,'/tmp/graph.simple.png'); Graph::Writer::GraphViz->new( -format => 'png', -layout => 'twopi', -ranksep => 1.5, -fontsize => 8 -edge_color => 'grey', -node_color => 'black', )->write_graph($g,'/tmp/graph.png'); DESCRIPTION
Graph::Writer::GraphViz is a class for writing out a Graph object with GraphViz module. All GraphViz formats should be supported without a problem. METHODS
new() Unlike other Graph::Writer modules, this module provide an extra parameter '-format' to new() method, in order to save different format. Other supported GraphViz parameters are -layout, -ranksep, -shape, -fontsize, -arrowsize. Please see the SYNOPSIS for example usage. Valid format depends on those GraphViz as_fmt methods on your system, like, 'gif' if you have 'as_gif', 'text' if you can do 'as_text'. SEE ALSO
Graph, Graph::Writer, GraphViz CREDITS
Thanks for RURBAN@cpan.org for noticing tests failure on different platforms. COPYRIGHT
Copyright 2004 by Kang-min Liu <gugod@gugod.org>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.12.4 2011-10-16 Graph::Writer::GraphViz(3pm)