Moses-support Digest, Vol 120, Issue 18

Send Moses-support mailing list submissions to
moses-support@mit.edu

To subscribe or unsubscribe via the World Wide Web, visit
http://mailman.mit.edu/mailman/listinfo/moses-support
or, via email, send a message with subject or body 'help' to
moses-support-request@mit.edu

You can reach the person managing the list at
moses-support-owner@mit.edu

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Moses-support digest..."


Today's Topics:

1. Word Alignment visualization tool (Nat Gillin)
2. Re: Word Alignment visualization tool (Nat Gillin)
3. Re: Word Alignment visualization tool (Hieu Hoang)
4. Re: Plans for the next release (Miriam K?shammer)
5. compile error for moses decoder (Camelia Ignat)


----------------------------------------------------------------------

Message: 1
Date: Mon, 17 Oct 2016 16:39:16 +0800
From: Nat Gillin <nat.gillin@gmail.com>
Subject: [Moses-support] Word Alignment visualization tool
To: moses-support@mit.edu
Message-ID:
<CAD2EOZixxeU+5qDtvZJEc9E661VNvPkg9ZK9fi_E_Y67tF6jSw@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Dear Moses community,

Are there any online demo or linux-able tool for word alignment
visualization?

I've tried several after some google search and they are either dead link
or non-working demos.

Regards,
Liling
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20161017/10b9c33b/attachment-0001.html

------------------------------

Message: 2
Date: Mon, 17 Oct 2016 16:41:45 +0800
From: Nat Gillin <nat.gillin@gmail.com>
Subject: Re: [Moses-support] Word Alignment visualization tool
To: moses-support@mit.edu
Message-ID:
<CAD2EOZhWiig_Gk97U_gqYcggO+cA6Q176O4dozyQd4Mh6J3WQQ@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Oh, it works: http://nlg.isi.edu/demos/picaro/
It wasn't working a while ago =)

Thanks in advance for more tips!

Regards,
Nat

On Mon, Oct 17, 2016 at 4:39 PM, Nat Gillin <nat.gillin@gmail.com> wrote:

> Dear Moses community,
>
> Are there any online demo or linux-able tool for word alignment
> visualization?
>
> I've tried several after some google search and they are either dead link
> or non-working demos.
>
> Regards,
> Liling
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20161017/26597cf3/attachment-0001.html

------------------------------

Message: 3
Date: Mon, 17 Oct 2016 09:44:32 +0100
From: Hieu Hoang <hieuhoang@gmail.com>
Subject: Re: [Moses-support] Word Alignment visualization tool
To: Nat Gillin <nat.gillin@gmail.com>
Cc: moses-support <moses-support@mit.edu>
Message-ID:
<CAEKMkbhhFJDc5cFY8VjcR3cek=_7adFLUt+ZmzYYGi58f-nw5w@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

there's 1 in moses, written by Jason Riesa
contrib/picaro

Hieu Hoang
http://www.hoang.co.uk/hieu

On 17 October 2016 at 09:39, Nat Gillin <nat.gillin@gmail.com> wrote:

> Dear Moses community,
>
> Are there any online demo or linux-able tool for word alignment
> visualization?
>
> I've tried several after some google search and they are either dead link
> or non-working demos.
>
> Regards,
> Liling
>
> _______________________________________________
> Moses-support mailing list
> Moses-support@mit.edu
> http://mailman.mit.edu/mailman/listinfo/moses-support
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20161017/639325d2/attachment-0001.html

------------------------------

Message: 4
Date: Mon, 17 Oct 2016 12:08:37 +0200
From: "Miriam K?shammer" <miriam.kaeshammer@gmx.de>
Subject: Re: [Moses-support] Plans for the next release
To: "Hieu Hoang" <hieuhoang@gmail.com>
Cc: moses mailinglist <moses-support@mit.edu>
Message-ID:
<trinity-0c4f3533-99e8-4275-8201-6a7089215080-1476698917734@3capp-gmx-bs25>

Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20161017/1e575603/attachment-0001.html

------------------------------

Message: 5
Date: Mon, 17 Oct 2016 16:46:30 +0200
From: Camelia Ignat <camelia.ignat@gmail.com>
Subject: [Moses-support] compile error for moses decoder
To: moses-support@mit.edu
Message-ID:
<CAAX4aoEZpBmCQMW4q--DyAzJ9aRrG1TD2t=ZK8EKPOJp2McJ7Q@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Hello,

I'm trying to build Moses (latest version) on CentOS 7.2 and I get a
compilation error (...failed gcc.link)

The libraries following have been built manually: boost_1_62_0, cmph-2.0
and xmlrpc-c-1.39.11.

Here are the commands used and the log is attached:
1. boost
cd $PREFIX/src
tar xvjf ../srcs/boost_1_62_0.tar.bz2
cd boost_1_62_0/
./bootstrap.sh
./b2 -a -j4 --prefix=$PREFIX/boost --libdir=$LIBDIR --layout=system
link=static install >log || echo FAILURE

2. cmph
cd $PREFIX/src
tar xvzf ../srcs/cmph.tar.gz
cd cmph-2.0/
./configure --prefix=$PREFIX/cmph --libdir=$LIBDIR
make >log || echo FAILURE
make install

3. xmlrpc-c
cd $PREFIX/src
tar xvzf ../srcs/xmlrpc-c-1.39.11.tgz
cd xmlrpc-c-1.39.11
./configure --prefix=$PREFIX/xmlrpc-c --libdir=$LIBDIR
make >log || echo FAILURE
make install


## MOSES DECODER

git clone https://github.com/moses-smt/mosesdecoder.git
cd $PREFIX/src/mosesdecoder

./bjam -j4 --prefix=$PREFIX/mosesdecoder --libdir=$LIBDIR
--with-boost=$PREFIX/boost --with-cmph=$PREFIX/cmph
--with-xmlrpc-c=$PREFIX/xmlrpc-c install >log || echo FAILURE

To get the log:
./bjam -j4 --prefix=/home/admin/ONTS/Server/onts/mosesdecoder
--libdir=/home/admin/ONTS/Server/onts/lib64
--with-boost=/home/admin/ONTS/Server/onts/boost
--with-cmph=/home/admin/ONTS/Server/onts/cmph
--with-xmlrpc-c=/home/admin/ONTS/Server/onts/xmlrpc-c install
--debug-configuration -d2 |gzip >build.log.gz


I would be very grateful for any help/hint/advice.

Kind regards,
Camelia Ignat
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20161017/ce89d6ab/attachment.html
-------------- next part --------------
A non-text attachment was scrubbed...
Name: build.log.gz
Type: application/x-gzip
Size: 8755 bytes
Desc: not available
Url : http://mailman.mit.edu/mailman/private/moses-support/attachments/20161017/ce89d6ab/attachment.gz

------------------------------

_______________________________________________
Moses-support mailing list
Moses-support@mit.edu
http://mailman.mit.edu/mailman/listinfo/moses-support


End of Moses-support Digest, Vol 120, Issue 18
**********************************************

0 Response to "Moses-support Digest, Vol 120, Issue 18"

Post a Comment