source: proiecte/Parallel-DT/R8/Doc/consult.1 @ 26

Last change on this file since 26 was 26, checked in by (none), 14 years ago

blabla

File size: 2.4 KB
Line 
1.EN
2.TH C4.5 1
3.SH NAME
4.PP
5consult \- classify items using a decision tree
6.SH SYNOPSIS
7.PP
8.B consult
9[ \fB-f\fR FNS ]
10[ \fB-t\fR ]
11.SH DESCRIPTION
12.PP
13.I Consult
14reads a decision tree produced by c4.5 and
15uses this to classify items whose description
16is provided by the user.
17The decision tree read is
18.I filestem.tree,
19where
20.I filestem
21is the file name stem (see manual entry for c4.5).
22.PP
23.I Consult
24prompts for the value of an attribute when needed.
25Unknown attribute values are specified as '?'.
26.PP
27If the attribute has discrete values, its value
28can be specified either as
29.ti 8
30.I v
31.br
32where v is one of the permissible values of the attribute, or as
33.ti 8
34.I "v1:p1, v2:p2, ... , vn:pn"
35.br
36where the vi's are some or all of the permissible values of the
37attribute and the pi's are corresponding probabilities.
38If the sum of the pi's is less than 1, the remaining probability
39is distributed equally among the unspecified values of the
40attribute.  For example, if attribute A has possible values
41X, Y and Z, the reply
42.ti 8
43X:0.5
44.br
45is the same as
46.ti 8
47X:0.5, Y:0.25, Z:0.25
48.PP
49If the attribute has real values, its value can be
50specified either as
51.ti 8
52.I r
53.br
54where r is a real number, or as
55.ti 8
56.I r1 - r2
57.br
58where r1 and r2 are real numbers.  The latter form is
59taken to mean "somewhere in the interval [r1,r2]".
60.PP
61To display the subtree of the decision tree with the
62current node at the root, '?t' may be entered in
63response to a request for an attribute value.
64.PP
65When all relevant attributes have been determined,
66consult will give one or more classes that the item
67might belong to.  The likelihood of a class may be
68indicated by a probability, followed sometimes by a
69probability interval.  For example,
70.ti 8
71.I "C1  CF = 0.9 [0.85 - 1]"
72.br
73means "class C1 with probability in the interval 0.85 - 1,
74and with best guess probability 0.9".
75.PP
76At the end of each item, consult will prompt for
77retrial of the same item, a new item, or end of session.
78When retrying an item, the previous values of queried
79attributes are displayed in square brackets.  If the
80value is unchanged, reply with a carriage return;
81otherwise, specify the changed value.
82.PP
83Options and their meanings are:
84.PP
85.TP 12
86.BI \-f filestem\^
87Specify the filename stem (default
88.B DF)
89.TP
90.B \-t
91Display the decision tree at the start of the consulting
92session.
93.SH FILES
94.PP
95.in 8
96consult
97.br
98filestem.names
99.br
100filestem.tree
101.in 0
102.PP
103.SH SEE ALSO
104.PP
105c4.5(1)
106.PP
107.SH BUGS
Note: See TracBrowser for help on using the repository browser.