mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
27 lines
786 B
C++
27 lines
786 B
C++
#include "moses/PP/OrientationPhraseProperty.h"
|
|
#include <iostream>
|
|
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
void OrientationPhraseProperty::ProcessValue(const std::string &value)
|
|
{
|
|
// bidirectional MSLR phrase orientation with 2x4 orientation classes:
|
|
// mono swap dleft dright
|
|
|
|
std::istringstream tokenizer(value);
|
|
|
|
try {
|
|
if (! (tokenizer >> m_l2rMonoProbability >> m_l2rSwapProbability >> m_l2rDleftProbability >> m_l2rDrightProbability
|
|
>> m_r2lMonoProbability >> m_r2lSwapProbability >> m_r2lDleftProbability >> m_r2lDrightProbability)) {
|
|
UTIL_THROW2("OrientationPhraseProperty: Not able to read value. Flawed property?");
|
|
}
|
|
} catch (const std::exception &e) {
|
|
UTIL_THROW2("OrientationPhraseProperty: Read error. Flawed property?");
|
|
}
|
|
};
|
|
|
|
} // namespace Moses
|
|
|