📄 testing.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -