bfgsmap.cc

来自「Amis - A maximum entropy estimator 一个最大」· CC 代码 · 共 19 行

CC
19
字号
#include <amis/BFGSMAP.h>#include <amis/BFGSMAPLauncherItem.h>namespace {  using namespace amis;  BFGSMAPLauncherItem< BFGSMAP< BinaryFeature > > bfgs_binary( "BFGSMAP", "Amis", "binary", "Limited-memory BFGS method with MAP estimation (binary feature)" );  BFGSMAPLauncherItem< BFGSMAP< IntegerFeature > > bfgs_integer( "BFGSMAP", "Amis", "integer", "Limited-memory BFGS method with MAP estimation (integer feature)" );  BFGSMAPLauncherItem< BFGSMAP< RealFeature > > bfgs_real( "BFGSMAP", "Amis", "real", "Limited-memory BFGS method with MAP estimation (real feature)" );  BFGSMAPLauncherItem< BFGSMAPJoint< BinaryFeature > > bfgsjoint_binary( "BFGSMAPJoint", "Amis", "binary", "Limited-memory BFGS method with MAP and joint probability estimation (binary feature)" );  BFGSMAPLauncherItem< BFGSMAPJoint< IntegerFeature > > bfgsjoint_integer( "BFGSMAPJoint", "Amis", "integer", "Limited-memory BFGS method with MAP and joint probability estimation (integer feature)" );  BFGSMAPLauncherItem< BFGSMAPJoint< RealFeature > > bfgsjoint_real( "BFGSMAPJoint", "Amis", "real", "Limited-memory BFGS method with MAP and joint probability estimation (real feature)" );};// end of BFGSMAP.cc

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?