This file is indexed.

/usr/include/shogun/ui/GUIPluginEstimate.h is in libshogun-dev 3.2.0-7.3build4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * Written (W) 1999-2008 Soeren Sonnenburg
 * Written (W) 1999-2008 Gunnar Raetsch
 * Copyright (C) 1999-2008 Fraunhofer Institute FIRST and Max-Planck-Society
 */

#ifndef _GUIPLUGINESTIMATE_H__
#define _GUIPLUGINESTIMATE_H__

#include <shogun/lib/config.h>
#include <shogun/base/SGObject.h>
#include <shogun/classifier/PluginEstimate.h>
#include <shogun/labels/Labels.h>

namespace shogun
{
class CSGInterface;

/** @brief UI estimate */
class CGUIPluginEstimate : public CSGObject
{

	public:
		/** constructor */
		CGUIPluginEstimate();
		/** constructor
		 * @param interface
		 */
		CGUIPluginEstimate(CSGInterface* interface);
		/** destructor */
		~CGUIPluginEstimate();

		/** create new estimator */
		bool new_estimator(float64_t pos, float64_t neg);
		/** train estimator */
		bool train();
		/** marginalized train
		 * @param param
		 */
		bool marginalized_train(char* param);
		/** load
		 * @param param
		 */
		bool load(char* param);
		/** save
		 * @param param
		 */
		bool save(char* param);

		/** get estimator */
		inline CPluginEstimate* get_estimator() { return estimator; }

		/** apply */
		CLabels* apply();
		/** apply
		 * @param idx
		 */
		float64_t apply_one(int32_t idx);

		/** @return object name */
		virtual const char* get_name() const { return "GUIPluginEstimate"; }

	private:
		void init();

	protected:
		/** ui */
		CSGInterface* ui;
		/** estimator */
		CPluginEstimate* estimator;
		/** pos pseudo */
		float64_t pos_pseudo;
		/** neg pseudo */
		float64_t neg_pseudo;
};
}
#endif