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

📄 back_topology.h

📁 预测神经网络
💻 H
字号:
// Back_Topology.h: interface for the Back_Topology class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BACK_TOPOLOGY_H__9BE8DF61_EE51_11D6_A51F_00000E98E3F5__INCLUDED_)
#define AFX_BACK_TOPOLOGY_H__9BE8DF61_EE51_11D6_A51F_00000E98E3F5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include"Hidden_layer.h"
#include"Output_units.h"
#include"NormalizeInfo.h"
class Back_Topology
{
public:// 
	bool realtesting;
	void coverme(const Back_Topology & bp);
//	char  samplefilename[100];
	char bpfilename[100];
	char bpforlookfilename[100];
	int savebptoSee;
	int hidenode[2];
  void upload_network();
  Back_Topology();
  Hidden_layer  hidden_layer_number[2];
  Output_units *node_in_output_layer;
  CNormalizeInfo *pNormalizeInfo;
  //int number_of_hidden_layers;
  int activation_function_for_hidden_layer;
  int nodes_in_output_layer;
  int activation_function_for_output_layer;
  int signal_dimensions;
  //int number_of_tests;
  void construct_and_initialize_backprop_network(void);
  void savenet(void);
 Back_Topology::~Back_Topology();
 Back_Topology(const Back_Topology &);

};

#endif // !defined(AFX_BACK_TOPOLOGY_H__9BE8DF61_EE51_11D6_A51F_00000E98E3F5__INCLUDED_)

⌨️ 快捷键说明

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