targetidset.h
来自「基于稀疏网络的精选机器学习模型」· C头文件 代码 · 共 45 行
H
45 行
// -*-c++-*-//===========================================================//= University of Illinois at Urbana-Champaign =//= Department of Computer Science =//= Dr. Dan Roth - Cognitive Computation Group =//= =//= Project: SNoW =//= =//= Module: TargetIdSet.h =//= Version: 3.2.0 =//= Authors: Jeff Rosen, Andrew Carlson, Nick Rizzolo =//= Date: xx/xx/99 = //= =//= Comments: =//===========================================================#ifndef TARGETIDSET_H__#define TARGETIDSET_H__#include "SnowTypes.h"#if defined(HASH_SET) && !defined(WIN32)#include <hash_set>#else#include <set>#endifusing namespace std;#if defined(HASH_SET) && !defined(WIN32)class TargetIdSet : public hash_set<FeatureID>#elseclass TargetIdSet : public set<FeatureID>#endif{ public: bool Parse( const char* in ); // Information and debugging support void Show(ostream* out);};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?