📄 ebmtest.h
字号:
#ifndef EBMTEST_H_#define EBMTEST_H_#include <cppunit/extensions/HelperMacros.h>#include "libeblearn.h"//! Test class for Ebm classclass EbmTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE(EbmTest); CPPUNIT_TEST(test_clayer_fprop); CPPUNIT_TEST(test_full_table); CPPUNIT_TEST(test_slayer); CPPUNIT_TEST(test_softmax); CPPUNIT_TEST(test_state_copy); CPPUNIT_TEST_SUITE_END();private: // member variablespublic: //! This function is called before each test function is called. void setUp(); //! This function is called after each test function is called. void tearDown(); // Test functions void test_clayer_fprop(); void test_full_table(); void test_slayer(); void test_softmax(); void test_state_copy();};#endif /* EBMTEST_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -