⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pulse.h

📁 C++编写的机器学习算法 Lemga is a C++ package which consists of classes for several learning models and gener
💻 H
字号:
// -*- C++ -*-#ifndef __LEMGA_PULSE_H__#define __LEMGA_PULSE_H__/** @file *  @brief @link lemga::Pulse Pulse function@endlink class * *  $Id: pulse.h 2501 2005-11-14 07:10:45Z ling $ */#include <vector>#include "learnmodel.h"namespace lemga {/** @brief Multi-transition pulse functions (step functions). *  @todo Documentation */class Pulse : public LearnModel {    UINT idx;               ///< which dimenstion?    std::vector<REAL> th;   ///< transition points    bool dir;               ///< @c true: start with -1    UINT max_l;             ///< Maximal # of transitionspublic:    explicit Pulse (UINT n_in = 0) : LearnModel(n_in, 1), idx(0), max_l(1) {}    explicit Pulse (std::istream& is) { is >> *this; }    virtual const id_t& id () const;    virtual Pulse* create () const { return new Pulse(); }    virtual Pulse* clone () const { return new Pulse(*this); }    /** @return The dimension picked for classification. */    UINT index () const { return idx; }    /// Set the dimension picked for classification.    void set_index (UINT i) { assert(i < n_input()); idx = i; }    /** @return a vector of transition points. */    const std::vector<REAL>& threshold () const { return th; }    /// Set the transition points.    void set_threshold (const std::vector<REAL>&);    /** @return @c true if the pulse starts with -1. */    bool direction () const { return dir; }    /// Set the pulse direction (true if starting with -1).    void set_direction (bool d) { dir = d; }    /** @return the maximal number of transitions the pulse can have. */    UINT max_transitions () { return max_l; }    /// Set the maximal number of transitions the pulse can have.    void set_max_transitions (UINT ml) { max_l = ml; }    // TODO: resize th?    virtual bool support_weighted_data () const { return true; }    virtual REAL train ();    virtual Output operator() (const Input&) const;protected:    virtual bool serialize (std::ostream&, ver_list&) const;    virtual bool unserialize (std::istream&, ver_list&,                              const id_t& = empty_id);};} // namespace lemga#ifdef  __PULSE_H__#warning "This header file may conflict with another `pulse.h' file."#endif#define __PULSE_H__#endif

⌨️ 快捷键说明

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