mosesdecoder/moses/Parameter.h

174 lines
5.9 KiB
C
Raw Permalink Normal View History

2013-09-23 18:30:28 +04:00
/// $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
***********************************************************************/
#ifndef moses_Parameter_h
#define moses_Parameter_h
#include <string>
#include <set>
#include <map>
#include <vector>
#include "TypeDef.h"
#include "Util.h"
#include <boost/program_options.hpp>
namespace Moses
{
2013-09-25 03:47:08 +04:00
typedef std::vector<std::string> PARAM_VEC;
typedef std::map<std::string, PARAM_VEC > PARAM_MAP;
typedef std::map<std::string, bool> PARAM_BOOL;
typedef std::map<std::string, std::string > PARAM_STRING;
/** Handles parameter values set in config file or on command line.
* Process raw parameter data (names and values as strings) for StaticData
2013-05-29 21:16:15 +04:00
* to parse; to get useful values, see StaticData.
2012-06-29 02:29:46 +04:00
*/
class Parameter
{
typedef boost::program_options::options_description options_description;
typedef boost::program_options::value_semantic value_semantic;
protected:
2013-05-29 21:16:15 +04:00
PARAM_MAP m_setting;
PARAM_BOOL m_valid;
PARAM_STRING m_abbreviation;
PARAM_STRING m_description;
PARAM_STRING m_fullname;
// std::map<char,std::set<std::string> > m_confusable;
// stores long parameter names that start with a letter that is also a short option.
options_description m_options;
std::map<std::string, std::vector<float> > m_weights;
std::string FindParam(const std::string &paramSwitch, int argc, char const* argv[]);
2015-11-12 03:00:40 +03:00
void OverwriteParam(const std::string &paramSwitch, const std::string &paramName,
int argc, char const* argv[]);
bool ReadConfigFile(const std::string &filePath );
bool FilesExist(const std::string &paramName, int fieldNo, std::vector<std::string> const& fileExtension=std::vector<std::string>(1,""));
bool isOption(const char* token);
bool Validate();
void
AddParam(options_description& optgroup,
2015-05-02 13:45:24 +03:00
value_semantic const* optvalue,
std::string const& paramName,
std::string const& description);
void
AddParam(options_description& optgroup,
2015-05-02 13:45:24 +03:00
std::string const &paramName,
std::string const &description);
void
AddParam(options_description& optgroup,
2015-05-02 13:45:24 +03:00
value_semantic const* optvalue,
std::string const& paramName,
std::string const& abbrevName,
std::string const& description);
void
AddParam(options_description& optgroup,
2015-05-02 13:45:24 +03:00
std::string const& paramName,
std::string const& abbrevName,
std::string const& description);
void PrintCredit();
void PrintFF() const;
void SetWeight(const std::string &name, size_t ind, float weight);
void SetWeight(const std::string &name, size_t ind, const std::vector<float> &weights);
void AddWeight(const std::string &name, size_t ind, const std::vector<float> &weights);
void ConvertWeightArgs();
void ConvertWeightArgsSingleWeight(const std::string &oldWeightName, const std::string &newWeightName);
2013-02-22 23:17:57 +04:00
void ConvertWeightArgsPhraseModel(const std::string &oldWeightName);
2013-04-26 22:39:29 +04:00
void ConvertWeightArgsLM();
void ConvertWeightArgsDistortion();
void ConvertWeightArgsGeneration(const std::string &oldWeightName, const std::string &newWeightName);
void ConvertWeightArgsPhrasePenalty();
void ConvertWeightArgsWordPenalty();
void ConvertPhrasePenalty();
void CreateWeightsMap();
2014-05-31 22:52:30 +04:00
void CreateWeightsMap(const PARAM_VEC &vec);
void WeightOverwrite();
2013-01-15 22:32:13 +04:00
void AddFeature(const std::string &line);
void AddFeaturesCmd();
public:
Parameter();
~Parameter();
bool LoadParam(int argc, char const* argv[]);
bool LoadParam(const std::string &filePath);
void Explain();
/** return a vector of strings holding the whitespace-delimited values on the ini-file line corresponding to the given parameter name */
const PARAM_VEC *GetParam(const std::string &paramName) const;
2014-11-20 18:02:05 +03:00
/** check if parameter is defined (either in moses.ini or as switch) */
bool isParamSpecified(const std::string &paramName) const {
return m_setting.find( paramName ) != m_setting.end();
}
2013-05-29 21:16:15 +04:00
void OverwriteParam(const std::string &paramName, PARAM_VEC values);
2013-11-11 19:32:58 +04:00
std::vector<float> GetWeights(const std::string &name);
2016-08-19 00:45:45 +03:00
const std::map<std::string, std::vector<float> > &GetAllWeights() const {
2014-05-19 17:34:27 +04:00
return m_weights;
}
std::set<std::string> GetWeightNames() const;
2013-05-29 21:16:15 +04:00
const PARAM_MAP &GetParams() const {
return m_setting;
}
void Save(const std::string path);
template<typename T>
2015-01-14 14:07:42 +03:00
void SetParameter(T &var, const std::string &name, const T &defaultValue) const {
const PARAM_VEC *params = GetParam(name);
if (params && params->size()) {
var = Scan<T>( params->at(0));
} else {
var = defaultValue;
}
}
void SetParameter(bool& var, std::string const& name);
bool SetBooleanSwitch(bool& val, std::string const name) {
// issues a warning if format is wrong
const PARAM_VEC *params = GetParam(name);
val = (params && params->size());
2015-11-02 03:00:37 +03:00
if (val && params->size() != 1) {
TRACE_ERR("ERROR: wrong format for switch -" << name);
return false;
}
return true;
}
2015-11-02 03:00:37 +03:00
};
template<>
void Parameter::SetParameter<bool>(bool &var, const std::string &name, const bool &defaultValue) const;
}
#endif