forked from lamdongnd/Entity.Extraction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatternedPredicate.cs
118 lines (110 loc) · 2.77 KB
/
PatternedPredicate.cs
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
//Copyright (C) 2005 Richard J. Northedge
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
using System;
namespace SharpEntropy
{
/// <summary>
/// Object containing predicate data, where the parameters are matched to
/// the outcomes in an outcome pattern.
/// </summary>
/// <author>
/// Richard J. Northedge
/// </author>
public class PatternedPredicate
{
private int mOutcomePattern;
private double[] mParameters;
private string mName;
/// <summary>
/// Creates a PatternedPredicate object.
/// </summary>
/// <param name="outcomePattern">
/// Index into the outcome pattern array, specifying which outcome pattern relates to
/// this predicate.
/// </param>
/// <param name="parameters">
/// Array of parameters for this predicate.
/// </param>
protected internal PatternedPredicate(int outcomePattern, double[] parameters)
{
mOutcomePattern = outcomePattern;
mParameters = parameters;
}
/// <summary>
/// Creates a PatternedPredicate object.
/// </summary>
/// <param name="name">
/// The predicate name.
/// </param>
/// <param name="parameters">
/// Array of parameters for this predicate.
/// </param>
protected internal PatternedPredicate(string name, double[] parameters)
{
mName = name;
mParameters = parameters;
}
/// <summary>
/// Index into array of outcome patterns.
/// </summary>
public int OutcomePattern
{
get
{
return mOutcomePattern;
}
set // for trainer
{
mOutcomePattern = value;
}
}
/// <summary>
/// Gets the value of a parameter from this predicate.
/// </summary>
/// <param name="index">
/// index into the parameter array.
/// </param>
/// <returns></returns>
public double GetParameter(int index)
{
return mParameters[index];
}
/// <summary>
/// Number of parameters associated with this predicate.
/// </summary>
public int ParameterCount
{
get
{
return mParameters.Length;
}
}
/// <summary>
/// Name of the predicate.
/// </summary>
public string Name
{
get
{
return mName;
}
set
{
mName = value;
}
}
}
}