mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 05:14:36 +03:00
13 lines
676 B
C++
13 lines
676 B
C++
// -*- c++ -*-
|
|
// Phrase scoring functions for suffix array-based phrase tables
|
|
// written by Ulrich Germann
|
|
#pragma once
|
|
#include "sapt_pscore_unaligned.h" // count # of unaligned words
|
|
#include "sapt_pscore_provenance.h" // reward for joint phrase occ. per corpus
|
|
#include "sapt_pscore_rareness.h" // penalty for rare occurrences (global?)
|
|
#include "sapt_pscore_logcnt.h" // logs of observed counts
|
|
#include "sapt_pscore_lex1.h" // plain vanilla Moses lexical scores
|
|
#include "sapt_pscore_pfwd.h" // fwd phrase prob
|
|
#include "sapt_pscore_pbwd.h" // bwd phrase prob
|
|
#include "sapt_pscore_coherence.h" // coherence feature: good/sample-size
|