Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'moses/src/PhraseDictionary.h')
-rwxr-xr-xmoses/src/PhraseDictionary.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/moses/src/PhraseDictionary.h b/moses/src/PhraseDictionary.h
deleted file mode 100755
index bd5536a19..000000000
--- a/moses/src/PhraseDictionary.h
+++ /dev/null
@@ -1,71 +0,0 @@
-// $Id$
-
-/***********************************************************************
-Moses - factored phrase-based language decoder
-Copyright (C) 2006 University of Edinburgh
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-***********************************************************************/
-
-#pragma once
-
-#include "PhraseDictionaryBase.h"
-#include "PhraseDictionaryNode.h"
-
-class PhraseDictionary : public PhraseDictionaryBase
-{
- typedef PhraseDictionaryBase MyBase;
- friend std::ostream& operator<<(std::ostream&, const PhraseDictionary&);
-
-protected:
- PhraseDictionaryNode m_collection;
- // 1st = source
- // 2nd = target
-
- bool Contains(const std::vector< std::vector<std::string> > &phraseVector
- , const std::list<Phrase> &inputPhraseList
- , const std::vector<FactorType> &inputFactorType);
- TargetPhraseCollection *CreateTargetPhraseCollection(const Phrase &source);
-public:
- PhraseDictionary(size_t noScoreComponent)
- : MyBase(noScoreComponent)
- {
- }
- virtual ~PhraseDictionary();
-
- void Load(const std::vector<FactorType> &input
- , const std::vector<FactorType> &output
- , FactorCollection &factorCollection
- , const std::string &filePath
- , const std::string &hashFilePath
- , const std::vector<float> &weight
- , size_t maxTargetPhrase
- , bool filter
- , const std::list< Phrase > &inputPhraseList
- , const LMList &languageModels
- , float weightWP
- , const StaticData& staticData);
-
- const TargetPhraseCollection *GetTargetPhraseCollection(const Phrase &source) const;
-
- void AddEquivPhrase(const Phrase &source, const TargetPhrase &targetPhrase);
-
- // for mert
- void SetWeightTransModel(const std::vector<float> &weightT);
-
- TO_STRING;
-
-};
-