bfgstree.cc
来自「Amis - A maximum entropy estimator 一个最大」· CC 代码 · 共 20 行
CC
20 行
#include <amis/BFGSTree.h>#include <amis/BFGSLauncherItem.h>namespace { using namespace amis; BFGSLauncherItem< BFGSTree< BinaryFeature > > bfgs_binary( "BFGS", "AmisTree", "binary", "Limited-memory BFGS method for feature forest model (binary feature)" ); BFGSLauncherItem< BFGSJointTree< BinaryFeature > > bfgsjoint_binary( "BFGSJoint", "AmisTree", "binary", "Limited-memory BFGS method for feature forest model with joint probability estimation (binary feature)" ); BFGSLauncherItem< BFGSTree< IntegerFeature > > bfgs_integer( "BFGS", "AmisTree", "integer", "Limited-memory BFGS method for feature forest model (integer feature)" ); BFGSLauncherItem< BFGSJointTree< IntegerFeature > > bfgsjoint_integer( "BFGSJoint", "AmisTree", "integer", "Limited-memory BFGS method for feature forest model with joint probability estimation (integer feature)" ); BFGSLauncherItem< BFGSTree< RealFeature > > bfgs_real( "BFGS", "AmisTree", "real", "Limited-memory BFGS method for feature forest model (real feature)" ); BFGSLauncherItem< BFGSJointTree< RealFeature > > bfgsjoint_real( "BFGSJoint", "AmisTree", "real", "Limited-memory BFGS method for feature forest model with joint probability estimation (real feature)" );};// end of BFGSTree.cc
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?