Return-Path: X-Original-To: apmail-mahout-user-archive@www.apache.org Delivered-To: apmail-mahout-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 86219CCF5 for ; Sat, 19 May 2012 07:41:24 +0000 (UTC) Received: (qmail 23999 invoked by uid 500); 19 May 2012 07:41:22 -0000 Delivered-To: apmail-mahout-user-archive@mahout.apache.org Received: (qmail 23596 invoked by uid 500); 19 May 2012 07:41:19 -0000 Mailing-List: contact user-help@mahout.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@mahout.apache.org Delivered-To: mailing list user@mahout.apache.org Received: (qmail 23549 invoked by uid 99); 19 May 2012 07:41:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 May 2012 07:41:17 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of iamzhanghc@gmail.com designates 209.85.160.42 as permitted sender) Received: from [209.85.160.42] (HELO mail-pb0-f42.google.com) (209.85.160.42) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 May 2012 07:41:10 +0000 Received: by pbbrp12 with SMTP id rp12so8584089pbb.1 for ; Sat, 19 May 2012 00:40:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; bh=lPlFyznWEXfgkLzeBkpDIPNjOI0enKAIUct3AtMleoE=; b=wCGi3zXvK0hmwZsgJpP1KAdqeaQfoTerBzLFzfeezVxvDTgav7R2wpA42eHplB8+IH ANB+LY2oNoIwfA2vkK/+smnjCqRXmmYLT5k8WxO0kXIXsIlvB+qhiEUHXi+RZbffFuvZ bb2rJytXHVV0B3Lg7xveLv8hAo+BXpQTBm+f0E0/rHc1P66juYZrPtidbKtwLVu28ddU +fiNH94AKkBVR/p9dkkYeyQgp92k4A0PEikM5antLUzjZyYLN/Jd7iphtdrO2Jp61hOF 5/Lrmg8I2U/rTSm6pjh5J3uU6ZuBvvWeIAFReGMBUj/2y89YxGRVrtArOngIr1v8cOJe j/pg== Received: by 10.68.231.40 with SMTP id td8mr19378954pbc.150.1337413248647; Sat, 19 May 2012 00:40:48 -0700 (PDT) Received: from [192.168.1.100] ([123.121.20.242]) by mx.google.com with ESMTPS id ql3sm15473650pbc.72.2012.05.19.00.40.45 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 19 May 2012 00:40:47 -0700 (PDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Apple Message framework v1251.1) Subject: Re: About Random walk with restart From: Huanchen Zhang In-Reply-To: Date: Sat, 19 May 2012 00:40:40 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <2F31442A-00A7-4BE2-BD52-BFD3850FE487@gmail.com> References: <201205171032575136225@gmail.com> <4FB4D70B.9020801@apache.org> <201205172157251644845@gmail.com> To: user@mahout.apache.org X-Mailer: Apple Mail (2.1251.1) Hi, Thank you. I will look into it.=20 Here I am a little confused: isn't Giraph also based on Hadoop? If so, = how Giraph solved the 'Hadoop lacks efficient execution of iterative = algorithms' problem ? I'm new to Hadoop .. Thank you ! Best, Huanchen On May 17, 2012, at 7:11 AM, Sebastian Schelter wrote: > It is usable but it is unfortunately very slow because Hadoop lacks > efficient execution of iterative algorithms. >=20 > Implementing RWR in Giraph is really simple, I can help you with that. > Am 17.05.2012 15:57 schrieb "huanchen" : >=20 >> Hi, >>=20 >> Is the RWR implementation in mahout 0.6 usable ? >>=20 >> Or what problem it has? >>=20 >> If this implementation is usable, I will avoid reimplement it... >>=20 >> Thank you ! >>=20 >> Best, >> Huanchen >>=20 >>=20 >> 2012-05-17 >>=20 >>=20 >>=20 >> huanchen >>=20 >>=20 >>=20 >> =E5=8F=91=E4=BB=B6=E4=BA=BA=EF=BC=9A Sebastian Schelter >> =E5=8F=91=E9=80=81=E6=97=B6=E9=97=B4=EF=BC=9A 2012-05-17 18:47:13 >> =E6=94=B6=E4=BB=B6=E4=BA=BA=EF=BC=9A user >> =E6=8A=84=E9=80=81=EF=BC=9A >> =E4=B8=BB=E9=A2=98=EF=BC=9A Re: About Random walk with restart >>=20 >> Hi, >> Unfortunately we chose to remove the graph algorithms from Mahout for >> the next version. You might want to have a look at Apache Giraph = which >> offers an easy way to implement graph algorithms. >> RandomWalkWithRestart is essentialy the same as PageRank with the >> difference that the teleportation will only hit the source vertex of = the >> walk not a random vertex in the graph. >> http://www.cs.cmu.edu/~ukang/papers/PegasusKAIS.pdf contains a short >> description. >> Best, >> Sebastian >> On 17.05.2012 04:33, huanchen wrote: >>> Hi, >>>=20 >>> I did not find any documentation about random walk with restart = which is >> implemented in mahout 0.6. >>>=20 >>> Any one has any experience with RWR ? >>>=20 >>> Specifically, how to set the weight of edges in the graph? >>>=20 >>> Any information would be helpful. >>> no random >>> Thank you ! >>>=20 >>> Best, >>> Huanchen >>>=20 >>> 2012-05-17 >>>=20 >>>=20 >>>=20 >>> huanchen >>>=20 >>=20