Moses-support Digest, Vol 84, Issue 45

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. Re: incremental training (Read, James C)
2. Re: TM only (Read, James C)
3. Re: TM only (Barry Haddow)
4. Re: TM only (Hieu Hoang)


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

Message: 1
Date: Wed, 30 Oct 2013 12:09:57 +0000
From: "Read, James C" <jcread@essex.ac.uk>
Subject: Re: [Moses-support] incremental training
To: Barry Haddow <bhaddow@staffmail.ed.ac.uk>
Cc: "moses-support@mit.edu" <moses-support@mit.edu>
Message-ID:
<F00840E41983C645928E21E3C35F4EB1012CF34D75@mbx1-node2.essex.ac.uk>
Content-Type: text/plain; charset="us-ascii"

Thanks for that Barry. I wonder if the stats come out the same as retraining a new system from scratch.
________________________________________
From: Barry Haddow [bhaddow@staffmail.ed.ac.uk]
Sent: 30 October 2013 09:26
To: Read, James C
Cc: moses-support@mit.edu
Subject: Re: [Moses-support] incremental training

You mean this?
http://www.statmt.org/moses/?n=Moses.AdvancedFeatures#ntoc33

On 29/10/13 22:24, Read, James C wrote:
> Hi,
>
> does anybody know if Moses currently has support for incremental training?
>
> James
>
> _______________________________________________
> Moses-support mailing list
> Moses-support@mit.edu
> http://mailman.mit.edu/mailman/listinfo/moses-support
>


--
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.




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

Message: 2
Date: Wed, 30 Oct 2013 12:11:57 +0000
From: "Read, James C" <jcread@essex.ac.uk>
Subject: Re: [Moses-support] TM only
To: Barry Haddow <bhaddow@staffmail.ed.ac.uk>
Cc: "moses-support@mit.edu" <moses-support@mit.edu>
Message-ID:
<F00840E41983C645928E21E3C35F4EB1012CF34D80@mbx1-node2.essex.ac.uk>
Content-Type: text/plain; charset="us-ascii"

Thanks. Sooner or later I'm going to need to figure out which parts of the code handle the TM because in addition to isolating the TM I also wish to make some experiments with modifying the way the TM works.

James

________________________________________
From: Barry Haddow [bhaddow@staffmail.ed.ac.uk]
Sent: 30 October 2013 09:28
To: Read, James C
Cc: moses-support@mit.edu
Subject: Re: [Moses-support] TM only

Hi James

You can configure the features in moses.ini. Try leaving out the
language model and see what happens,

cheers - Barry

On 29/10/13 22:26, Read, James C wrote:
> Hi,
>
> for experimental purposes I'm trying to modify the source of Moses so that it uses a TM only (no LM and no reordering). Does anybody know the source code well enough to give me a hint where I should start?
>
> thanks,
> James
>
> _______________________________________________
> Moses-support mailing list
> Moses-support@mit.edu
> http://mailman.mit.edu/mailman/listinfo/moses-support
>


--
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.




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

Message: 3
Date: Wed, 30 Oct 2013 13:17:12 +0000
From: Barry Haddow <bhaddow@staffmail.ed.ac.uk>
Subject: Re: [Moses-support] TM only
To: "Read, James C" <jcread@essex.ac.uk>
Cc: "moses-support@mit.edu" <moses-support@mit.edu>
Message-ID: <527106D8.3000406@staffmail.ed.ac.uk>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hi James

Start off in the moses/TranslationModel subdirectory of the source tree.
PhraseDictionary.h contains the abstract base class,
with PhraseDictionaryMemory and PhraseDictionaryTreeAdaptor the two main
implementations used in phrase-based Moses,

cheers - Barry

On 30/10/13 12:11, Read, James C wrote:
> Thanks. Sooner or later I'm going to need to figure out which parts of the code handle the TM because in addition to isolating the TM I also wish to make some experiments with modifying the way the TM works.
>
> James
>
> ________________________________________
> From: Barry Haddow [bhaddow@staffmail.ed.ac.uk]
> Sent: 30 October 2013 09:28
> To: Read, James C
> Cc: moses-support@mit.edu
> Subject: Re: [Moses-support] TM only
>
> Hi James
>
> You can configure the features in moses.ini. Try leaving out the
> language model and see what happens,
>
> cheers - Barry
>
> On 29/10/13 22:26, Read, James C wrote:
>> Hi,
>>
>> for experimental purposes I'm trying to modify the source of Moses so that it uses a TM only (no LM and no reordering). Does anybody know the source code well enough to give me a hint where I should start?
>>
>> thanks,
>> James
>>
>> _______________________________________________
>> Moses-support mailing list
>> Moses-support@mit.edu
>> http://mailman.mit.edu/mailman/listinfo/moses-support
>>
>
> --
> The University of Edinburgh is a charitable body, registered in
> Scotland, with registration number SC005336.
>
>


--
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.



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

Message: 4
Date: Wed, 30 Oct 2013 16:58:58 +0000
From: Hieu Hoang <Hieu.Hoang@ed.ac.uk>
Subject: Re: [Moses-support] TM only
To: Barry Haddow <bhaddow@staffmail.ed.ac.uk>
Cc: "moses-support@mit.edu" <moses-support@mit.edu>
Message-ID:
<CAEKMkbgzrK2OUcUocpVUiRU3CMd_sp_PACTg7xVK0Zn_DXx-PA@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

there's a class called
SkeletonPt
which is a very simple phrase table implementation. You can make a copy of
that and make any changes to it.

I've created a video that tell you how to add new feature functions.
http://www.statmt.org/~s0565741/download/video/
adding a new phrase table is pretty much the same thing




On 30 October 2013 13:17, Barry Haddow <bhaddow@staffmail.ed.ac.uk> wrote:

> Hi James
>
> Start off in the moses/TranslationModel subdirectory of the source tree.
> PhraseDictionary.h contains the abstract base class,
> with PhraseDictionaryMemory and PhraseDictionaryTreeAdaptor the two main
> implementations used in phrase-based Moses,
>
> cheers - Barry
>
> On 30/10/13 12:11, Read, James C wrote:
> > Thanks. Sooner or later I'm going to need to figure out which parts of
> the code handle the TM because in addition to isolating the TM I also wish
> to make some experiments with modifying the way the TM works.
> >
> > James
> >
> > ________________________________________
> > From: Barry Haddow [bhaddow@staffmail.ed.ac.uk]
> > Sent: 30 October 2013 09:28
> > To: Read, James C
> > Cc: moses-support@mit.edu
> > Subject: Re: [Moses-support] TM only
> >
> > Hi James
> >
> > You can configure the features in moses.ini. Try leaving out the
> > language model and see what happens,
> >
> > cheers - Barry
> >
> > On 29/10/13 22:26, Read, James C wrote:
> >> Hi,
> >>
> >> for experimental purposes I'm trying to modify the source of Moses so
> that it uses a TM only (no LM and no reordering). Does anybody know the
> source code well enough to give me a hint where I should start?
> >>
> >> thanks,
> >> James
> >>
> >> _______________________________________________
> >> Moses-support mailing list
> >> Moses-support@mit.edu
> >> http://mailman.mit.edu/mailman/listinfo/moses-support
> >>
> >
> > --
> > The University of Edinburgh is a charitable body, registered in
> > Scotland, with registration number SC005336.
> >
> >
>
>
> --
> The University of Edinburgh is a charitable body, registered in
> Scotland, with registration number SC005336.
>
> _______________________________________________
> Moses-support mailing list
> Moses-support@mit.edu
> http://mailman.mit.edu/mailman/listinfo/moses-support
>



--
Hieu Hoang
Research Associate
University of Edinburgh
http://www.hoang.co.uk/hieu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20131030/173df7c6/attachment-0001.htm

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

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


End of Moses-support Digest, Vol 84, Issue 45
*********************************************

0 Response to "Moses-support Digest, Vol 84, Issue 45"

Post a Comment