Moses-support Digest, Vol 97, Issue 95

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. bjam error (iamzcy_hit iamzcy_hit)
2. Re: bjam error (Raj Dabre)
3. Tree-to-tree rule table definition (Ben Ao)
4. CFP: EBECEGC2015 | Dubai | Electrical and Bio-medical
Engineering, Clean Energy and Green Computing (Hazel Ann)


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

Message: 1
Date: Fri, 28 Nov 2014 14:31:21 +0800
From: iamzcy_hit iamzcy_hit <iamzcyhit@gmail.com>
Subject: [Moses-support] bjam error
To: moses-support@mit.edu
Message-ID:
<CAGLowv+jVtrJVOV8GSbVhsbUvDg6QUD9z2_VzAG8Rr-xv60=iQ@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

hi,all
I just downloaded the latest Moses source code from github and tried to
install it. After running ?./bjam ?j8?, I got the error messages as follows:
-----------------------------------
[cyzhang@mit108 mosesdecoder-master]$ ./bjam -j8
/home/cyzhang/Moses/mosesdecoder-master/jam-files/sanity.jam:168: in boost
*** argument error
* rule constant ( name : value + )
* called with: ( BOOST-VERSION : )
* missing argument value
/home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:1006:see
definition of rule 'constant' being called
Jamroot:81: in modules.load
/home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:317:
in load-jamfile
/home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:62:
in load
/home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:168:
in project.find
/home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build-system.jam:570:
in load
./jam-files/boost-build/kernel/modules.jam:283: in import
./jam-files/boost-build/kernel/bootstrap.jam:142: in boost-build
./jam-files/boost-build/boost-build.jam:8: in module scope
-------------------------------------------------
So I checked the sanity.jam and tried to debug it according the error
hints. I found this line code
```
168: constant BOOST-VERSION : [ MATCH "#define BOOST_VERSION ([0-9]*)" :
$(boost-shell[1]) ] ;
```
was very strange. It seems that the BOOST-VERSION was not assigned any
value according to error messages.
However, I echo the ?boost-shell[1]? and got
```
#define BOOST_VERSION_HPP
#define BOOST_VERSION 105400
#define BOOST_LIB_VERSION "1_54"
0
```
It shows that my boost environment was right, and the "MATCH" command
didn't match the value of BOOST-VERSION.
So where should I change in order to install Moses?
And what's the MATCH there? is it a function in JAM language?
Best regards.

--
???????????????.....
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20141128/654b300a/attachment-0001.htm

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

Message: 2
Date: Fri, 28 Nov 2014 15:40:56 +0900
From: Raj Dabre <prajdabre@gmail.com>
Subject: Re: [Moses-support] bjam error
To: iamzcy_hit iamzcy_hit <iamzcyhit@gmail.com>
Cc: "moses-support@mit.edu" <moses-support@mit.edu>
Message-ID:
<CAB3gfjBDzpjVNPdPqLbGoq8A0bFY_JWoq24HSWiF-FOkXRZZnw@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Hey,

Have you tried downloading and installing boost as a standalone:

wget http://downloads.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fboost%2Ffiles%2Fboost%2F1.55.0%2F&ts=1389613041&use_mirror=kent
tar zxvf boost_1_55_0.tar.gz
cd boost_1_55_0/
./bootstrap.sh
./b2 -j8 --prefix=$PWD --libdir=$PWD/lib64 --layout=system link=static
install || echo FAILURE

And then do:
./bjam -j8 --with-boost=<path to boost installation which contains the
folder lib64>

This should work.




On Fri, Nov 28, 2014 at 3:31 PM, iamzcy_hit iamzcy_hit <iamzcyhit@gmail.com>
wrote:

> hi,all
> I just downloaded the latest Moses source code from github and tried to
> install it. After running ?./bjam ?j8?, I got the error messages as follows:
> -----------------------------------
> [cyzhang@mit108 mosesdecoder-master]$ ./bjam -j8
> /home/cyzhang/Moses/mosesdecoder-master/jam-files/sanity.jam:168: in boost
> *** argument error
> * rule constant ( name : value + )
> * called with: ( BOOST-VERSION : )
> * missing argument value
> /home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:1006:see
> definition of rule 'constant' being called
> Jamroot:81: in modules.load
> /home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:317:
> in load-jamfile
> /home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:62:
> in load
> /home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build/project.jam:168:
> in project.find
> /home/cyzhang/Moses/mosesdecoder-master/jam-files/boost-build/build-system.jam:570:
> in load
> ./jam-files/boost-build/kernel/modules.jam:283: in import
> ./jam-files/boost-build/kernel/bootstrap.jam:142: in boost-build
> ./jam-files/boost-build/boost-build.jam:8: in module scope
> -------------------------------------------------
> So I checked the sanity.jam and tried to debug it according the error
> hints. I found this line code
> ```
> 168: constant BOOST-VERSION : [ MATCH "#define BOOST_VERSION ([0-9]*)" :
> $(boost-shell[1]) ] ;
> ```
> was very strange. It seems that the BOOST-VERSION was not assigned any
> value according to error messages.
> However, I echo the ?boost-shell[1]? and got
> ```
> #define BOOST_VERSION_HPP
> #define BOOST_VERSION 105400
> #define BOOST_LIB_VERSION "1_54"
> 0
> ```
> It shows that my boost environment was right, and the "MATCH" command
> didn't match the value of BOOST-VERSION.
> So where should I change in order to install Moses?
> And what's the MATCH there? is it a function in JAM language?
> Best regards.
>
> --
> ???????????????.....
>
> _______________________________________________
> Moses-support mailing list
> Moses-support@mit.edu
> http://mailman.mit.edu/mailman/listinfo/moses-support
>
>


--
Raj Dabre.
Research Student,
Graduate School of Informatics,
Kyoto University.
CSE MTech, IITB., 2011-2014
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20141128/6884da97/attachment-0001.htm

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

Message: 3
Date: Fri, 28 Nov 2014 14:44:40 +0800
From: Ben Ao <lobichai@hotmail.com>
Subject: [Moses-support] Tree-to-tree rule table definition
To: <moses-support@mit.edu>
Message-ID: <COL129-DS13CE550184615E41610C0C47E0@phx.gbl>
Content-Type: text/plain; charset="gb2312"

Dear all,



I have some doubts about the rule table definition when perform the
tree-to-tree training.

I had read the description at
http://www.statmt.org/moses/?n=Moses.SyntaxTutorial

For the string-to-tree training, the rule-table is:

gibt [X] ||| gives [ADJ] ||| 1.0 ||| ||| 3 5

The last part is represented as frequency counts of source & target phrase.



But for the tree-to-tree training, it is totally different, the last part
look like some probabilities.

One of the rule from the rule-table is shown as the following:

[NP][NP] ???? ???? ?? [CP] ||| of [NP][NP] [PP] ||| 0.00133849 0.177556 1 3.
12588e-07 2.718 ||| 0-1 3-0 ||| 498.074 0.666666 0.666666

Anyone can tell me what is the meaning for the last part (498.074 0.666666
0.666666) in the rule table??



Too many thanks for answering this question.



Regards,

Ben

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20141128/9b911e2e/attachment-0001.htm

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

Message: 4
Date: Thu, 27 Nov 2014 23:06:45 -0800
From: Hazel Ann <hazel.sdiwc@gmail.com>
Subject: [Moses-support] CFP: EBECEGC2015 | Dubai | Electrical and
Bio-medical Engineering, Clean Energy and Green Computing
To: moses-support@mit.edu
Message-ID:
<CACpAG8HT30V6q6dKMiEEjfDG3pXYyCUNCUGR2FHv+cpnJb1F1g@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

The International Conference on Electrical and Bio-medical Engineering,
Clean Energy and Green Computing (EBECEGC2015)

January 28-30, 2015 ? Dubai, UAE

http://sdiwc.net/conferences/ebecegc2015/

ebecegc15@sdiwc.net

All registered papers will be included in SDIWC Digital Library
==============================================================

The conference aims to enable researchers build connections between
different digital applications. The event will be held over three days,
with presentations delivered by researchers from the international
community, including presentations from keynote speakers and
state-of-the-art lectures.

RESEARCH TOPICS ARE NOT LIMITED TO:

***Electrical/ Bio-medical Engineering
-Robotics and Atomization Engineering
-Signal Integrity Design for High-Speed Digital Systems
-Speech Recognition, Analysis and Synthesis
-Mobile Communication Technology and Wireless Sensor Networks
-Computer-Aided Surgery
-Data Compression and Watermarking
-Health Care Information Systems
-Healthcare Information Systems, Telemedicine
-Image Processing
-Information Security and Cryptography
-Expert Systems Internet and Web Solutions for Healthcare
-Mobile Computing and Security
-Modeling, Simulation, Systems and Control
-Modulation, Coding, and Channel Analysis
-Multimedia Signal Processing
-Natural Language Processing
-Neural Networks
-Parallel Programming & Processing
-Artificial Intelligence
-Pattern Analysis for Biomedical applications
-Neuroimaging
-Biochemical Engineering and Applications
-Bio-medical Electronics
-Computer Aided and Automated Diagnosis
-Brain-Computer Interfaces
-Nanotechnology for Biomedical Applications
-Bionics and Biological Cybernetics
-Bioinformatics & Biomedical Imaging
-Biomedical Signal Processing
-Brain-Computer Interfacing and Human?Computer
-Interfacing
-Bioinstrumentation: Sensors, Micro, Nano and Wearable Technologies

***Clean Energy/Green Computing
-Biofuel and Energy from Waste Materials
-Bioinformatics and Scientific Computing
-Climate and Eco System Monitoring
-Data Modeling for Cloud-Based Networks
-Efficient Energy generation and distribution
-Electrical Vehicles and Smart Grid
-Energy Efficiency
-Energy Minimization in Cluster-Based Wireless Sensor Networks
-Energy Usage of High Performance System
-Energy and Environmental Sustainability in Information Systems and Network
-Hydrogen and Energy Storage
-Life Cycle Analysis of IT Equipment
-Low-power Electronics and Systems
-Memory Energy Optimizations in Smartphones
-Power Efficient Hardware
-Power and Energy Profiling and Metrics
-Power-Aware Algorithms and Protocols
-Power-Aware Software and Hardware
-Reducing Energy Consumption in Wireless Sensor Network
-Renewable Energy and Transport
-Renewable Energy models and Prediction
-Smart Grids and Micro Grids
-Smart Transportation and Manufacturing
-Smart Buildings and Urban Development
-Solar Power Generation
-Thermal-Aware Power Optimization Techniques for Servers and Data Centers
-Using IT to reduce Carbon Emissions
-Wind Power Generation
-Wind, Wave, and Solar Energy
-Zero Carbon Urban design

Researchers are encouraged to submit their work electronically. All papers
will be fully refereed by a minimum of two specialized referees. Before
final acceptance, all referees comments must be considered.

Best selected papers will be published in one of the following special
issues provided that the author do major improvements and extension within
the time frame that will be set by the conference and his/her paper is
approved by the chief editor:

International Journal of New Computer Architectures and their Applications
(IJNCAA)
International Journal of Digital Information and Wireless Communications
(IJDIWC)
International Journal of Cyber-Security and Digital Forensics (IJCSDF)
International Journal of E-Learning and Educational Technologies in the
Digital Media (IJEETDM)

PAPER SUBMISSION GUIDELINES:

- Researchers are encouraged to submit their work electronically. Full
paper must be submitted (Abstracts are not acceptable).
- Submitted paper should not exceed 15 pages, including illustrations. All
papers must be without page numbers.
- Papers should be submitted electronically as pdf format without author(s)
name.
- Paper submission link:
http://sdiwc.net/conferences/ebecegc2015/openconf/openconf.php

IMPORTANT DATES:

Submission Deadline The submission is open from now until Jan. 08,
2015
Notification of Acceptance 2-3 weeks from the submission date
Camera Ready Submission Open from now until Jan. 18, 2015
Registration Deadline Open from now until Jan. 18, 2015
Conference Dates January 28-30, 2015
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/mailman/private/moses-support/attachments/20141127/091b9194/attachment.htm

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

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


End of Moses-support Digest, Vol 97, Issue 95
*********************************************

0 Response to "Moses-support Digest, Vol 97, Issue 95"

Post a Comment