testing.h
来自「预测神经网络」· C头文件 代码 · 共 29 行
H
29 行
// Testing.h: interface for the Testing class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TESTING_H__F4259244_EE47_11D6_A51F_00000E98E3F5__INCLUDED_)
#define AFX_TESTING_H__F4259244_EE47_11D6_A51F_00000E98E3F5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Training.h"
class Testing : public Training
{
public:
bool testCanGo;
Testing();
bool testHasEnd;
float* targetoutput;
float* netoutput;
int testsampleNum;
void request_testing_data(); // Function to request data for testing
float average_squared_error;
};
#endif // !defined(AFX_TESTING_H__F4259244_EE47_11D6_A51F_00000E98E3F5__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?