source: src/main/java/weka/gui/experiment/Experimenter.props @ 15

Last change on this file since 15 was 4, checked in by gnappo, 14 years ago

Import di weka.

File size: 2.4 KB
RevLine 
[4]1# This props file contains default values for the Weka Experimenter.
2# "simple" indicates that this property is only available for simple
3# experiments.
4#
5# $Revision: 5367 $
6
7# the default extension in the file-dialog
8# possible values:
9#   .exp
10#   .xml
11#   .koml (if available)
12Extension=.exp
13
14# the default destination ("simple")
15# possible values:
16#   ARFF file
17#   CSV file
18#   JDBC database
19Destination=ARFF file
20
21# the experiment type ("simple")
22# possible values:
23#   Cross-validation
24#   Train/Test Percentage Split (data randomized)
25#   Train/Test Percentage Split (order preserved)
26ExperimentType=Cross-validation
27
28# whether classification is the default ("simple")
29UseClassification=true
30
31# the default number of CV folds ("simple")
32Folds=10
33
34# the default percentage for training ("simple")
35TrainPercentage=66
36
37# the default number of repetitions ("simple")
38Repetitions=10
39
40# whether datasets are first iterated ("simple")
41DatasetsFirst=true
42
43# the initial datasets directory
44# Note for Win32: the path backslashes have to written as "\\"
45InitialDatasetsDirectory=
46
47# whether to use relative paths
48UseRelativePaths=false
49
50# the default tester to use
51# possible values (at least):
52#   Paired T-Tester (corrected)
53#   Paired T-Tester
54Tester=Paired T-Tester (corrected)
55
56# the row selection
57Row=Key_Dataset
58
59# the column selection
60Column=Key_Scheme,Key_Scheme_options,Key_Scheme_version_ID
61
62# the default comparison field (lower case!)
63# see ComboBox in Experimenter
64ComparisonField=percent_correct
65
66# the default significance
67Significance=0.05
68
69# the default sorting
70Sorting=
71
72# whether stddevs are displayed by default
73ShowStdDev=false
74
75# whether the Average is displayed by default
76ShowAverage=false
77
78# the default precision for the mean
79MeanPrecision=2
80
81# the default precision for the stdev
82StdDevPrecision=2
83
84# the classname and options of the ResultMatrix, reponsible for the default
85# output format.
86# NB: The other defaults listed in this props file override the "advanced"
87#     options specified in this property.
88OutputFormat=weka.experiment.ResultMatrixPlainText -col-name-width 0 -row-name-width 25 -mean-width 0 -stddev-width 0 -sig-width 0 -count-width 5 -print-col-names -print-row-names -enum-col-names
89
90# whether filter classnames are removed by default
91RemoveFilterClassnames=false
92
Note: See TracBrowser for help on using the repository browser.