Last change
on this file was
29,
checked in by gnappo, 14 years ago
|
Taggata versione per la demo e aggiunto branch.
|
File size:
1.1 KB
|
Line | |
---|
1 | # This file stores the properties used by the default models panel |
---|
2 | # to determine which .model.xml default model lists to include. It |
---|
3 | # also stores lists of regular expressions that are used to prune |
---|
4 | # the default lists as specified by the user. |
---|
5 | # |
---|
6 | # ONE VERY IMPORTANT CAVEAT! While the ability to use regular |
---|
7 | # expressions is a nice and powerful way to specify model strings |
---|
8 | # you should try not to use commas fillowed by a space: ", " in |
---|
9 | # these regexp's since that's what the properties are being split |
---|
10 | # apart with when they are parsed at run time. |
---|
11 | # |
---|
12 | # version: $Revision: 1.1 $ |
---|
13 | |
---|
14 | #list of .model.xml files |
---|
15 | files=toylist, large_binary_class, large_multi_class |
---|
16 | |
---|
17 | #list of regexp's defining models with large train times |
---|
18 | train_time=.*functions.MultilayerPerceptron.*, \ |
---|
19 | .*trees.LMT.*, \ |
---|
20 | .*AdaBoost.*, \ |
---|
21 | .*Bagging.* |
---|
22 | |
---|
23 | #list of regexp's defining models with large test times |
---|
24 | test_time=.*lazy.LWL.*, \ |
---|
25 | .*lazy.KStar.*, \ |
---|
26 | .*lazy.IBk.* |
---|
27 | |
---|
28 | #list of regexp's defining models with large file sizes |
---|
29 | file_size=.*functions.SimpleLogistic.*, \ |
---|
30 | .*rules.JRip.*, \ |
---|
31 | .*AdaBoost.*, \ |
---|
32 | .*Bagging.* |
---|
Note: See
TracBrowser
for help on using the repository browser.