Skip to content

Commit 5e29a6a

Browse files
committed
added --prune to man page and usage()
1 parent a7016b3 commit 5e29a6a

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

docs/timbl.1

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH timbl 1 "2017 November 9"
1+
.TH timbl 1 "2026 June 23"
22

33
.SH NAME
44
timbl \- Tilburg Memory Based Learner
@@ -311,6 +311,13 @@ cross_validate
311311
perform cross\(hyvalidation test (IB1 only)
312312
.RE
313313

314+
.B \-\-prune
315+
.RS
316+
Convert an IB1 tree into an IGTree
317+
318+
usage: 'timbl \-i IB1tree \-I IGtree'
319+
.RE
320+
314321
.B \-t
315322
@file
316323
.RS
@@ -434,9 +441,11 @@ dump the InstanceBase as XML in 'file'
434441
possibly
435442

436443
.SH AUTHORS
437-
Ko van der Sloot Timbl@uvt.nl
444+
Ko van der Sloot
445+
446+
Antal van den Bosch
438447

439-
Antal van den Bosch Timbl@uvt.nl
448+
e\-mail: lamasoftware@science.ru.nl
440449

441450
.SH SEE ALSO
442451
.BR timblserver (1)

src/Timbl.cxx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,20 @@ inline void usage_full(void){
131131
cerr << "-L n : MVDM threshold at level n" << endl;
132132
cerr << "-R n : solve ties at random with seed n" << endl;
133133
cerr << "-t f : test using file 'f'" << endl;
134-
cerr << "-t leave_one_out:"
134+
cerr << "-t leave_one_out"
135135
<< " test with Leave One Out,using IB1" << endl;
136136
cerr << " you may add -sloppy to speed up Leave One Out testing (see docs)"
137137
<< endl;
138-
cerr << "-t cross_validate:"
138+
cerr << "-t cross_validate"
139139
<< " Cross Validate Test,using IB1" << endl;
140140
cerr << " @f : test using files and options described in file 'f'"
141141
<< endl;
142142
cerr << " Supported options: d e F k m o p q R t u v w x % -"
143143
<< endl;
144144
cerr << " -t <file> is mandatory" << endl;
145+
cerr << "--prune : convert an IB1 tree into an IGtree." << endl
146+
<< " using -i to read an IB1 file and -I to output an IGtree"
147+
<< endl;
145148
cerr << "Input options:" << endl;
146149
cerr << "-f f : read from Datafile 'f'" << endl;
147150
cerr << "-f f : OR: use filenames from 'f' for CV test" << endl;

0 commit comments

Comments
 (0)