Compute_Result.h
上传用户:sanxfzhen
上传日期:2014-12-28
资源大小:2324k
文件大小:1k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // Compute_Result.h: interface for the CCompute_Result class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_COMPUTE_RESULT_H__45E1A883_9CBE_475E_AAB4_2A394A3C2142__INCLUDED_)
  5. #define AFX_COMPUTE_RESULT_H__45E1A883_9CBE_475E_AAB4_2A394A3C2142__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CCompute_Result  
  10. {
  11. public:
  12. CCompute_Result();
  13. public:
  14. double train_error;
  15. double max_difference;
  16. double precision;
  17. double recall;
  18. int train_number;
  19. int support_number;
  20. int test_number;
  21. int train_misclassify;
  22. int test_misclassify;
  23. long kernel_cache_statistic;
  24. virtual ~CCompute_Result();
  25. };
  26. extern CCompute_Result com_result;
  27. #endif // !defined(AFX_COMPUTE_RESULT_H__45E1A883_9CBE_475E_AAB4_2A394A3C2142__INCLUDED_)