2011-11-21 20:21:04 +04:00
|
|
|
/***********************************************************************
|
|
|
|
Moses - statistical machine translation system
|
|
|
|
Copyright (C) 2006-2011 University of Edinburgh
|
2013-05-29 21:16:15 +04:00
|
|
|
|
2011-11-21 20:21:04 +04:00
|
|
|
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.
|
2013-05-29 21:16:15 +04:00
|
|
|
|
2011-11-21 20:21:04 +04:00
|
|
|
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.
|
2013-05-29 21:16:15 +04:00
|
|
|
|
2011-11-21 20:21:04 +04:00
|
|
|
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 <map>
|
|
|
|
#include <ostream>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-06-01 16:23:25 +03:00
|
|
|
#include "ParseTree.h"
|
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
namespace Moses
|
|
|
|
{
|
2012-05-15 23:00:38 +04:00
|
|
|
|
|
|
|
class OutputFileStream;
|
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
namespace GHKM
|
|
|
|
{
|
2011-11-21 20:21:04 +04:00
|
|
|
|
2012-05-05 13:51:12 +04:00
|
|
|
struct Options;
|
2011-11-21 20:21:04 +04:00
|
|
|
|
|
|
|
class ExtractGHKM
|
|
|
|
{
|
2013-05-29 21:16:15 +04:00
|
|
|
public:
|
2015-03-11 00:25:32 +03:00
|
|
|
|
2011-11-21 20:21:04 +04:00
|
|
|
ExtractGHKM() : m_name("extract-ghkm") {}
|
2013-05-29 21:16:15 +04:00
|
|
|
const std::string &GetName() const {
|
|
|
|
return m_name;
|
|
|
|
}
|
2011-11-21 20:21:04 +04:00
|
|
|
int Main(int argc, char *argv[]);
|
2015-03-11 00:25:32 +03:00
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
private:
|
2015-03-11 00:25:32 +03:00
|
|
|
|
2011-11-21 20:21:04 +04:00
|
|
|
void Error(const std::string &) const;
|
|
|
|
void OpenInputFileOrDie(const std::string &, std::ifstream &);
|
|
|
|
void OpenOutputFileOrDie(const std::string &, std::ofstream &);
|
2012-05-15 23:00:38 +04:00
|
|
|
void OpenOutputFileOrDie(const std::string &, OutputFileStream &);
|
2011-11-21 20:21:04 +04:00
|
|
|
void RecordTreeLabels(const ParseTree &, std::set<std::string> &);
|
|
|
|
void CollectWordLabelCounts(ParseTree &,
|
2012-12-17 23:43:42 +04:00
|
|
|
const Options &,
|
2011-11-21 20:21:04 +04:00
|
|
|
std::map<std::string, int> &,
|
|
|
|
std::map<std::string, std::string> &);
|
2012-12-17 23:02:30 +04:00
|
|
|
void WriteUnknownWordLabel(const std::map<std::string, int> &,
|
|
|
|
const std::map<std::string, std::string> &,
|
|
|
|
const Options &,
|
2014-06-11 22:27:18 +04:00
|
|
|
std::ostream &,
|
2015-03-11 00:25:32 +03:00
|
|
|
bool writeCounts=false) const;
|
2014-03-24 18:46:51 +04:00
|
|
|
void WriteUnknownWordSoftMatches(const std::set<std::string> &,
|
2015-03-11 00:25:32 +03:00
|
|
|
std::ostream &) const;
|
2011-11-21 20:21:04 +04:00
|
|
|
void WriteGlueGrammar(const std::set<std::string> &,
|
2012-04-23 17:24:54 +04:00
|
|
|
const std::map<std::string, int> &,
|
2014-06-11 22:27:18 +04:00
|
|
|
const std::map<std::string,size_t> &,
|
|
|
|
const Options &,
|
2015-03-11 00:25:32 +03:00
|
|
|
std::ostream &) const;
|
2014-06-11 22:27:18 +04:00
|
|
|
void WriteSourceLabelSet(const std::map<std::string,size_t> &,
|
2015-03-11 00:25:32 +03:00
|
|
|
std::ostream &) const;
|
|
|
|
void StripBitParLabels(const std::set<std::string> &labelSet,
|
|
|
|
const std::map<std::string, int> &topLabelSet,
|
|
|
|
std::set<std::string> &outLabelSet,
|
|
|
|
std::map<std::string, int> &outTopLabelSet) const;
|
|
|
|
|
2014-06-11 22:27:18 +04:00
|
|
|
std::vector<std::string> ReadTokens(const std::string &) const;
|
|
|
|
std::vector<std::string> ReadTokens(const ParseTree &root) const;
|
2013-05-29 21:16:15 +04:00
|
|
|
|
2011-11-21 20:21:04 +04:00
|
|
|
void ProcessOptions(int, char *[], Options &) const;
|
|
|
|
|
|
|
|
std::string m_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace GHKM
|
|
|
|
} // namespace Moses
|
|
|
|
|