| 1 | // Copyright 2015 Georg-August-Universit�t G�ttingen, Germany
|
|---|
| 2 | //
|
|---|
| 3 | // Licensed under the Apache License, Version 2.0 (the "License");
|
|---|
| 4 | // you may not use this file except in compliance with the License.
|
|---|
| 5 | // You may obtain a copy of the License at
|
|---|
| 6 | //
|
|---|
| 7 | // http://www.apache.org/licenses/LICENSE-2.0
|
|---|
| 8 | //
|
|---|
| 9 | // Unless required by applicable law or agreed to in writing, software
|
|---|
| 10 | // distributed under the License is distributed on an "AS IS" BASIS,
|
|---|
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|---|
| 12 | // See the License for the specific language governing permissions and
|
|---|
| 13 | // limitations under the License.
|
|---|
| 14 |
|
|---|
| 15 | package de.ugoe.cs.cpdp;
|
|---|
| 16 |
|
|---|
| 17 | import java.io.File;
|
|---|
| 18 | import java.io.FileInputStream;
|
|---|
| 19 | import java.io.FileNotFoundException;
|
|---|
| 20 | import java.io.IOException;
|
|---|
| 21 | import java.io.InputStreamReader;
|
|---|
| 22 | import java.io.UnsupportedEncodingException;
|
|---|
| 23 | import java.util.LinkedList;
|
|---|
| 24 | import java.util.List;
|
|---|
| 25 | import java.util.logging.Level;
|
|---|
| 26 |
|
|---|
| 27 | import javax.xml.parsers.ParserConfigurationException;
|
|---|
| 28 | import javax.xml.parsers.SAXParser;
|
|---|
| 29 | import javax.xml.parsers.SAXParserFactory;
|
|---|
| 30 |
|
|---|
| 31 | import org.xml.sax.Attributes;
|
|---|
| 32 | import org.xml.sax.InputSource;
|
|---|
| 33 | import org.xml.sax.SAXException;
|
|---|
| 34 | import org.xml.sax.helpers.DefaultHandler;
|
|---|
| 35 |
|
|---|
| 36 | import de.ugoe.cs.cpdp.dataprocessing.IProcessesingStrategy;
|
|---|
| 37 | import de.ugoe.cs.cpdp.dataprocessing.ISetWiseProcessingStrategy;
|
|---|
| 38 | import de.ugoe.cs.cpdp.dataselection.IPointWiseDataselectionStrategy;
|
|---|
| 39 | import de.ugoe.cs.cpdp.dataselection.ISetWiseDataselectionStrategy;
|
|---|
| 40 | import de.ugoe.cs.cpdp.eval.IEvaluationStrategy;
|
|---|
| 41 | import de.ugoe.cs.cpdp.loader.IVersionLoader;
|
|---|
| 42 | import de.ugoe.cs.cpdp.training.ISetWiseTestdataAwareTrainingStrategy;
|
|---|
| 43 | import de.ugoe.cs.cpdp.training.ISetWiseTrainingStrategy;
|
|---|
| 44 | import de.ugoe.cs.cpdp.training.ITrainingStrategy;
|
|---|
| 45 | import de.ugoe.cs.cpdp.versions.IVersionFilter;
|
|---|
| 46 | import de.ugoe.cs.util.StringTools;
|
|---|
| 47 | import de.ugoe.cs.util.console.Console;
|
|---|
| 48 |
|
|---|
| 49 | /**
|
|---|
| 50 | * Class that contains all meta information about an experiment, i.e., its configuration. The
|
|---|
| 51 | * configuration is loaded from an XML file. <br>
|
|---|
| 52 | * <br>
|
|---|
| 53 | * In the current implementation, the experiment configuration can only be created using an XML
|
|---|
| 54 | * file. Programmatic creation of experiment configurations is currently not possibly.
|
|---|
| 55 | *
|
|---|
| 56 | * @author Steffen Herbold
|
|---|
| 57 | */
|
|---|
| 58 | public class ExperimentConfiguration extends DefaultHandler {
|
|---|
| 59 |
|
|---|
| 60 | /**
|
|---|
| 61 | * handle of the file that contains the configuration
|
|---|
| 62 | */
|
|---|
| 63 | private final File configFile;
|
|---|
| 64 |
|
|---|
| 65 | /**
|
|---|
| 66 | * name of the experiment (automatically set to the file name without the .xml ending)
|
|---|
| 67 | */
|
|---|
| 68 | private String experimentName = "exp";
|
|---|
| 69 |
|
|---|
| 70 | /**
|
|---|
| 71 | * loads instances
|
|---|
| 72 | */
|
|---|
| 73 | private List<IVersionLoader> loaders;
|
|---|
| 74 |
|
|---|
| 75 | /**
|
|---|
| 76 | * path were the results of the experiments are stored
|
|---|
| 77 | */
|
|---|
| 78 | private String resultsPath = "results";
|
|---|
| 79 |
|
|---|
| 80 | /**
|
|---|
| 81 | * data set filters applied to all data
|
|---|
| 82 | */
|
|---|
| 83 | private List<IVersionFilter> versionFilters;
|
|---|
| 84 |
|
|---|
| 85 | /**
|
|---|
| 86 | * data set filters that decide if a data set is used as test data
|
|---|
| 87 | */
|
|---|
| 88 | private List<IVersionFilter> testVersionFilters;
|
|---|
| 89 |
|
|---|
| 90 | /**
|
|---|
| 91 | * data set filters that decide if a data is used as candidate training data
|
|---|
| 92 | */
|
|---|
| 93 | private List<IVersionFilter> trainingVersionFilters;
|
|---|
| 94 |
|
|---|
| 95 | /**
|
|---|
| 96 | * setwise data processors that are applied before the setwise data selection
|
|---|
| 97 | */
|
|---|
| 98 | private List<ISetWiseProcessingStrategy> setwisepreprocessors;
|
|---|
| 99 |
|
|---|
| 100 | /**
|
|---|
| 101 | * setwise data selection strategies
|
|---|
| 102 | */
|
|---|
| 103 | private List<ISetWiseDataselectionStrategy> setwiseselectors;
|
|---|
| 104 |
|
|---|
| 105 | /**
|
|---|
| 106 | * setwise data processors that are applied after the setwise data selection
|
|---|
| 107 | */
|
|---|
| 108 | private List<ISetWiseProcessingStrategy> setwisepostprocessors;
|
|---|
| 109 |
|
|---|
| 110 | /**
|
|---|
| 111 | * setwise trainers, i.e., trainers that require the selected training data to be separate from
|
|---|
| 112 | * each other
|
|---|
| 113 | */
|
|---|
| 114 | private List<ISetWiseTrainingStrategy> setwiseTrainers;
|
|---|
| 115 |
|
|---|
| 116 | /**
|
|---|
| 117 | * setwise testdata aware trainers, i.e., trainers that require the selected training data to be separate from
|
|---|
| 118 | * each other and the current testdata
|
|---|
| 119 | */
|
|---|
| 120 | private List<ISetWiseTestdataAwareTrainingStrategy> setwiseTestdataAwareTrainers;
|
|---|
| 121 |
|
|---|
| 122 | /**
|
|---|
| 123 | * data processors that are applied before the pointwise data selection
|
|---|
| 124 | */
|
|---|
| 125 | private List<IProcessesingStrategy> preprocessors;
|
|---|
| 126 |
|
|---|
| 127 | /**
|
|---|
| 128 | * pointwise data selection strategies
|
|---|
| 129 | */
|
|---|
| 130 | private List<IPointWiseDataselectionStrategy> pointwiseselectors;
|
|---|
| 131 |
|
|---|
| 132 | /**
|
|---|
| 133 | * data processors that are applied before the pointwise data selection
|
|---|
| 134 | */
|
|---|
| 135 | private List<IProcessesingStrategy> postprocessors;
|
|---|
| 136 |
|
|---|
| 137 | /**
|
|---|
| 138 | * normal trainers, i.e., trainers that require the selected training data in a single data set
|
|---|
| 139 | */
|
|---|
| 140 | private List<ITrainingStrategy> trainers;
|
|---|
| 141 |
|
|---|
| 142 | /**
|
|---|
| 143 | * evaluators used for the the experiment results
|
|---|
| 144 | */
|
|---|
| 145 | private List<IEvaluationStrategy> evaluators;
|
|---|
| 146 |
|
|---|
| 147 | /**
|
|---|
| 148 | * indicates, if the classifier should be saved
|
|---|
| 149 | */
|
|---|
| 150 | private Boolean saveClassifier = null;
|
|---|
| 151 |
|
|---|
| 152 | /**
|
|---|
| 153 | * indicates, which execution strategy to choose (e.g. CrossProjectExperiment,
|
|---|
| 154 | * ClassifierCreationExecution). Default is CrossProjectExperiment.
|
|---|
| 155 | */
|
|---|
| 156 | private String executionStrategy = "CrossProjectExperiment";
|
|---|
| 157 |
|
|---|
| 158 | /**
|
|---|
| 159 | * Constructor. Creates a new configuration from a given file.
|
|---|
| 160 | *
|
|---|
| 161 | * @param filename
|
|---|
| 162 | * name of the file from the configuration is loaded.
|
|---|
| 163 | * @throws ExperimentConfigurationException
|
|---|
| 164 | * thrown if there is an error creating the configuration
|
|---|
| 165 | */
|
|---|
| 166 | public ExperimentConfiguration(String filename) throws ExperimentConfigurationException {
|
|---|
| 167 | this(new File(filename));
|
|---|
| 168 | }
|
|---|
| 169 |
|
|---|
| 170 | /**
|
|---|
| 171 | * Constructor. Creates a new configuration from a given file.
|
|---|
| 172 | *
|
|---|
| 173 | * @param filename
|
|---|
| 174 | * handle of the file from the configuration is loaded.
|
|---|
| 175 | * @throws ExperimentConfigurationException
|
|---|
| 176 | * thrown if there is an error creating the configuration
|
|---|
| 177 | */
|
|---|
| 178 | public ExperimentConfiguration(File file) throws ExperimentConfigurationException {
|
|---|
| 179 | loaders = new LinkedList<>();
|
|---|
| 180 | versionFilters = new LinkedList<>();
|
|---|
| 181 | testVersionFilters = new LinkedList<>();
|
|---|
| 182 | trainingVersionFilters = new LinkedList<>();
|
|---|
| 183 | setwisepreprocessors = new LinkedList<>();
|
|---|
| 184 | setwiseselectors = new LinkedList<>();
|
|---|
| 185 | setwisepostprocessors = new LinkedList<>();
|
|---|
| 186 | setwiseTrainers = new LinkedList<>();
|
|---|
| 187 | setwiseTestdataAwareTrainers = new LinkedList<>();
|
|---|
| 188 | preprocessors = new LinkedList<>();
|
|---|
| 189 | pointwiseselectors = new LinkedList<>();
|
|---|
| 190 | postprocessors = new LinkedList<>();
|
|---|
| 191 | trainers = new LinkedList<>();
|
|---|
| 192 | evaluators = new LinkedList<>();
|
|---|
| 193 |
|
|---|
| 194 | if (file == null) {
|
|---|
| 195 | throw new IllegalArgumentException("file must not be null");
|
|---|
| 196 | }
|
|---|
| 197 | if (file.isDirectory()) {
|
|---|
| 198 | throw new IllegalArgumentException("file must not be a directory");
|
|---|
| 199 | }
|
|---|
| 200 | configFile = file;
|
|---|
| 201 |
|
|---|
| 202 | experimentName = file.getName().split("\\.")[0];
|
|---|
| 203 |
|
|---|
| 204 | final SAXParserFactory spf = SAXParserFactory.newInstance();
|
|---|
| 205 | spf.setValidating(true);
|
|---|
| 206 |
|
|---|
| 207 | SAXParser saxParser = null;
|
|---|
| 208 | InputSource inputSource = null;
|
|---|
| 209 | try {
|
|---|
| 210 | saxParser = spf.newSAXParser();
|
|---|
| 211 | }
|
|---|
| 212 | catch (ParserConfigurationException | SAXException e) {
|
|---|
| 213 | throw new ExperimentConfigurationException(e);
|
|---|
| 214 | }
|
|---|
| 215 |
|
|---|
| 216 | InputStreamReader reader = null;
|
|---|
| 217 | try {
|
|---|
| 218 | reader = new InputStreamReader(new FileInputStream(file), "UTF-8");
|
|---|
| 219 | inputSource = new InputSource(reader);
|
|---|
| 220 | }
|
|---|
| 221 | catch (UnsupportedEncodingException | FileNotFoundException e) {
|
|---|
| 222 | throw new ExperimentConfigurationException("Could not open configuration file.", e);
|
|---|
| 223 | }
|
|---|
| 224 |
|
|---|
| 225 | if (inputSource != null) {
|
|---|
| 226 | inputSource.setSystemId("file://" + file.getAbsolutePath());
|
|---|
| 227 | try {
|
|---|
| 228 | saxParser.parse(inputSource, this);
|
|---|
| 229 | }
|
|---|
| 230 | catch (SAXException | IOException e) {
|
|---|
| 231 | throw new ExperimentConfigurationException("Error parsing configuration.", e);
|
|---|
| 232 | }
|
|---|
| 233 | }
|
|---|
| 234 | if (reader != null) {
|
|---|
| 235 | try {
|
|---|
| 236 | reader.close();
|
|---|
| 237 | }
|
|---|
| 238 | catch (IOException e) {
|
|---|
| 239 | throw new ExperimentConfigurationException("Error closing reader.", e);
|
|---|
| 240 | }
|
|---|
| 241 | }
|
|---|
| 242 | }
|
|---|
| 243 |
|
|---|
| 244 | /**
|
|---|
| 245 | * returns the name of the experiment
|
|---|
| 246 | *
|
|---|
| 247 | * @return name of the experiment
|
|---|
| 248 | */
|
|---|
| 249 | public String getExperimentName() {
|
|---|
| 250 | return experimentName;
|
|---|
| 251 | }
|
|---|
| 252 |
|
|---|
| 253 | /**
|
|---|
| 254 | * returns the loaders for instances
|
|---|
| 255 | *
|
|---|
| 256 | * @return data loaders
|
|---|
| 257 | */
|
|---|
| 258 | public List<IVersionLoader> getLoaders() {
|
|---|
| 259 | return loaders;
|
|---|
| 260 | }
|
|---|
| 261 |
|
|---|
| 262 | /**
|
|---|
| 263 | * returns the results path
|
|---|
| 264 | *
|
|---|
| 265 | * @return results path
|
|---|
| 266 | */
|
|---|
| 267 | public String getResultsPath() {
|
|---|
| 268 | return resultsPath;
|
|---|
| 269 | }
|
|---|
| 270 |
|
|---|
| 271 | /**
|
|---|
| 272 | * returns the data set filters of the experiment
|
|---|
| 273 | *
|
|---|
| 274 | * @return data set filters of the experiment
|
|---|
| 275 | */
|
|---|
| 276 | public List<IVersionFilter> getVersionFilters() {
|
|---|
| 277 | return versionFilters;
|
|---|
| 278 | }
|
|---|
| 279 |
|
|---|
| 280 | /**
|
|---|
| 281 | * returns the test set filters of the experiment
|
|---|
| 282 | *
|
|---|
| 283 | * @return test set filters of the experiment
|
|---|
| 284 | */
|
|---|
| 285 | public List<IVersionFilter> getTestVersionFilters() {
|
|---|
| 286 | return testVersionFilters;
|
|---|
| 287 | }
|
|---|
| 288 |
|
|---|
| 289 | /**
|
|---|
| 290 | * returns the candidate training version filters of the experiment
|
|---|
| 291 | *
|
|---|
| 292 | * @return candidate training version filters of the experiment
|
|---|
| 293 | */
|
|---|
| 294 | public List<IVersionFilter> getTrainingVersionFilters() {
|
|---|
| 295 | return trainingVersionFilters;
|
|---|
| 296 | }
|
|---|
| 297 |
|
|---|
| 298 | /**
|
|---|
| 299 | * returns the setwise processors applied before the setwise data selection
|
|---|
| 300 | *
|
|---|
| 301 | * @return setwise processors applied before the setwise data selection
|
|---|
| 302 | */
|
|---|
| 303 | public List<ISetWiseProcessingStrategy> getSetWisePreprocessors() {
|
|---|
| 304 | return setwisepreprocessors;
|
|---|
| 305 | }
|
|---|
| 306 |
|
|---|
| 307 | /**
|
|---|
| 308 | * returns the setwise data selection strategies
|
|---|
| 309 | *
|
|---|
| 310 | * @return setwise data selection strategies
|
|---|
| 311 | */
|
|---|
| 312 | public List<ISetWiseDataselectionStrategy> getSetWiseSelectors() {
|
|---|
| 313 | return setwiseselectors;
|
|---|
| 314 | }
|
|---|
| 315 |
|
|---|
| 316 | /**
|
|---|
| 317 | * returns the setwise processors applied after the setwise data selection
|
|---|
| 318 | *
|
|---|
| 319 | * @return setwise processors applied after the setwise data selection
|
|---|
| 320 | */
|
|---|
| 321 | public List<ISetWiseProcessingStrategy> getSetWisePostprocessors() {
|
|---|
| 322 | return setwisepostprocessors;
|
|---|
| 323 | }
|
|---|
| 324 |
|
|---|
| 325 | /**
|
|---|
| 326 | * returns the setwise training algorithms
|
|---|
| 327 | *
|
|---|
| 328 | * @return setwise training algorithms
|
|---|
| 329 | */
|
|---|
| 330 | public List<ISetWiseTrainingStrategy> getSetWiseTrainers() {
|
|---|
| 331 | return setwiseTrainers;
|
|---|
| 332 | }
|
|---|
| 333 |
|
|---|
| 334 | /**
|
|---|
| 335 | * returns the setwise training algorithms
|
|---|
| 336 | *
|
|---|
| 337 | * @return setwise training algorithms
|
|---|
| 338 | */
|
|---|
| 339 | public List<ISetWiseTestdataAwareTrainingStrategy> getSetWiseTestdataAwareTrainers() {
|
|---|
| 340 | return setwiseTestdataAwareTrainers;
|
|---|
| 341 | }
|
|---|
| 342 |
|
|---|
| 343 | /**
|
|---|
| 344 | * returns the processors applied before the pointwise data selection
|
|---|
| 345 | *
|
|---|
| 346 | * @return processors applied before the pointwise data selection
|
|---|
| 347 | */
|
|---|
| 348 | public List<IProcessesingStrategy> getPreProcessors() {
|
|---|
| 349 | return preprocessors;
|
|---|
| 350 | }
|
|---|
| 351 |
|
|---|
| 352 | /**
|
|---|
| 353 | * returns the pointwise data selection strategies
|
|---|
| 354 | *
|
|---|
| 355 | * @return pointwise data selection strategies
|
|---|
| 356 | */
|
|---|
| 357 | public List<IPointWiseDataselectionStrategy> getPointWiseSelectors() {
|
|---|
| 358 | return pointwiseselectors;
|
|---|
| 359 | }
|
|---|
| 360 |
|
|---|
| 361 | /**
|
|---|
| 362 | * returns the processors applied after the pointwise data selection
|
|---|
| 363 | *
|
|---|
| 364 | * @return processors applied after the pointwise data selection
|
|---|
| 365 | */
|
|---|
| 366 | public List<IProcessesingStrategy> getPostProcessors() {
|
|---|
| 367 | return postprocessors;
|
|---|
| 368 | }
|
|---|
| 369 |
|
|---|
| 370 | /**
|
|---|
| 371 | * returns the normal training algorithm
|
|---|
| 372 | *
|
|---|
| 373 | * @return normal training algorithms
|
|---|
| 374 | */
|
|---|
| 375 | public List<ITrainingStrategy> getTrainers() {
|
|---|
| 376 | return trainers;
|
|---|
| 377 | }
|
|---|
| 378 |
|
|---|
| 379 | /**
|
|---|
| 380 | * returns the evaluation strategies
|
|---|
| 381 | *
|
|---|
| 382 | * @return evaluation strategies
|
|---|
| 383 | */
|
|---|
| 384 | public List<IEvaluationStrategy> getEvaluators() {
|
|---|
| 385 | return evaluators;
|
|---|
| 386 | }
|
|---|
| 387 |
|
|---|
| 388 | /**
|
|---|
| 389 | * returns boolean, if classifier should be saved
|
|---|
| 390 | *
|
|---|
| 391 | * @return boolean
|
|---|
| 392 | */
|
|---|
| 393 | public boolean getSaveClassifier() {
|
|---|
| 394 | return saveClassifier;
|
|---|
| 395 | }
|
|---|
| 396 |
|
|---|
| 397 | /**
|
|---|
| 398 | * returns the execution strategy
|
|---|
| 399 | *
|
|---|
| 400 | * @return String execution strategy
|
|---|
| 401 | */
|
|---|
| 402 | public String getExecutionStrategy() {
|
|---|
| 403 | return executionStrategy;
|
|---|
| 404 | }
|
|---|
| 405 |
|
|---|
| 406 | /*
|
|---|
| 407 | * (non-Javadoc)
|
|---|
| 408 | *
|
|---|
| 409 | * @see org.xml.sax.helpers.DefaultHandler#startElement(java.lang.String, java.lang.String,
|
|---|
| 410 | * java.lang.String, org.xml.sax.Attributes)
|
|---|
| 411 | */
|
|---|
| 412 | @Override
|
|---|
| 413 | public void startElement(String uri, String localName, String qName, Attributes attributes)
|
|---|
| 414 | throws SAXException
|
|---|
| 415 | {
|
|---|
| 416 | try {
|
|---|
| 417 | if (qName.equals("config")) {
|
|---|
| 418 | // ingore
|
|---|
| 419 | }
|
|---|
| 420 | else if (qName.equals("loader")) {
|
|---|
| 421 | final IVersionLoader loader =
|
|---|
| 422 | (IVersionLoader) Class.forName("de.ugoe.cs.cpdp.loader." +
|
|---|
| 423 | attributes.getValue("name")).newInstance();
|
|---|
| 424 | loader.setLocation(attributes.getValue("datalocation"));
|
|---|
| 425 | loaders.add(loader);
|
|---|
| 426 |
|
|---|
| 427 | // TODO location as relative
|
|---|
| 428 | }
|
|---|
| 429 | else if (qName.equals("resultspath")) {
|
|---|
| 430 | resultsPath = attributes.getValue("path");
|
|---|
| 431 | }
|
|---|
| 432 | else if (qName.equals("versionfilter")) {
|
|---|
| 433 | final IVersionFilter filter =
|
|---|
| 434 | (IVersionFilter) Class.forName("de.ugoe.cs.cpdp.versions." +
|
|---|
| 435 | attributes.getValue("name")).newInstance();
|
|---|
| 436 | filter.setParameter(attributes.getValue("param"));
|
|---|
| 437 | versionFilters.add(filter);
|
|---|
| 438 | }
|
|---|
| 439 | else if (qName.equals("testVersionfilter")) {
|
|---|
| 440 | final IVersionFilter filter =
|
|---|
| 441 | (IVersionFilter) Class.forName("de.ugoe.cs.cpdp.versions." +
|
|---|
| 442 | attributes.getValue("name")).newInstance();
|
|---|
| 443 | filter.setParameter(attributes.getValue("param"));
|
|---|
| 444 | testVersionFilters.add(filter);
|
|---|
| 445 | }
|
|---|
| 446 | else if (qName.equals("trainVersionfilter")) {
|
|---|
| 447 | final IVersionFilter filter =
|
|---|
| 448 | (IVersionFilter) Class.forName("de.ugoe.cs.cpdp.versions." +
|
|---|
| 449 | attributes.getValue("name")).newInstance();
|
|---|
| 450 | filter.setParameter(attributes.getValue("param"));
|
|---|
| 451 | trainingVersionFilters.add(filter);
|
|---|
| 452 | }
|
|---|
| 453 | else if (qName.equals("setwisepreprocessor")) {
|
|---|
| 454 | final ISetWiseProcessingStrategy processor =
|
|---|
| 455 | (ISetWiseProcessingStrategy) Class.forName("de.ugoe.cs.cpdp.dataprocessing." +
|
|---|
| 456 | attributes.getValue("name"))
|
|---|
| 457 | .newInstance();
|
|---|
| 458 | processor.setParameter(attributes.getValue("param"));
|
|---|
| 459 | setwisepreprocessors.add(processor);
|
|---|
| 460 | }
|
|---|
| 461 | else if (qName.equals("setwiseselector")) {
|
|---|
| 462 | final ISetWiseDataselectionStrategy selection =
|
|---|
| 463 | (ISetWiseDataselectionStrategy) Class.forName("de.ugoe.cs.cpdp.dataselection." +
|
|---|
| 464 | attributes.getValue("name"))
|
|---|
| 465 | .newInstance();
|
|---|
| 466 | selection.setParameter(attributes.getValue("param"));
|
|---|
| 467 | setwiseselectors.add(selection);
|
|---|
| 468 | }
|
|---|
| 469 | else if (qName.equals("setwisepostprocessor")) {
|
|---|
| 470 | final ISetWiseProcessingStrategy processor =
|
|---|
| 471 | (ISetWiseProcessingStrategy) Class.forName("de.ugoe.cs.cpdp.dataprocessing." +
|
|---|
| 472 | attributes.getValue("name"))
|
|---|
| 473 | .newInstance();
|
|---|
| 474 | processor.setParameter(attributes.getValue("param"));
|
|---|
| 475 | setwisepostprocessors.add(processor);
|
|---|
| 476 | }
|
|---|
| 477 | else if (qName.equals("setwisetrainer")) {
|
|---|
| 478 | final ISetWiseTrainingStrategy trainer =
|
|---|
| 479 | (ISetWiseTrainingStrategy) Class.forName("de.ugoe.cs.cpdp.training." +
|
|---|
| 480 | attributes.getValue("name"))
|
|---|
| 481 | .newInstance();
|
|---|
| 482 | trainer.setParameter(attributes.getValue("param"));
|
|---|
| 483 | setwiseTrainers.add(trainer);
|
|---|
| 484 | }
|
|---|
| 485 | else if (qName.equals("setwisetestdataawaretrainer")) {
|
|---|
| 486 | final ISetWiseTestdataAwareTrainingStrategy trainer =
|
|---|
| 487 | (ISetWiseTestdataAwareTrainingStrategy) Class.forName("de.ugoe.cs.cpdp.training." +
|
|---|
| 488 | attributes.getValue("name"))
|
|---|
| 489 | .newInstance();
|
|---|
| 490 | trainer.setParameter(attributes.getValue("param"));
|
|---|
| 491 | setwiseTestdataAwareTrainers.add(trainer);
|
|---|
| 492 | }
|
|---|
| 493 | else if (qName.equals("preprocessor")) {
|
|---|
| 494 | final IProcessesingStrategy processor =
|
|---|
| 495 | (IProcessesingStrategy) Class.forName("de.ugoe.cs.cpdp.dataprocessing." +
|
|---|
| 496 | attributes.getValue("name"))
|
|---|
| 497 | .newInstance();
|
|---|
| 498 | processor.setParameter(attributes.getValue("param"));
|
|---|
| 499 | preprocessors.add(processor);
|
|---|
| 500 | }
|
|---|
| 501 | else if (qName.equals("pointwiseselector")) {
|
|---|
| 502 | final IPointWiseDataselectionStrategy selection =
|
|---|
| 503 | (IPointWiseDataselectionStrategy) Class
|
|---|
| 504 | .forName("de.ugoe.cs.cpdp.dataselection." + attributes.getValue("name"))
|
|---|
| 505 | .newInstance();
|
|---|
| 506 | selection.setParameter(attributes.getValue("param"));
|
|---|
| 507 | pointwiseselectors.add(selection);
|
|---|
| 508 | }
|
|---|
| 509 | else if (qName.equals("postprocessor")) {
|
|---|
| 510 | final IProcessesingStrategy processor =
|
|---|
| 511 | (IProcessesingStrategy) Class.forName("de.ugoe.cs.cpdp.dataprocessing." +
|
|---|
| 512 | attributes.getValue("name"))
|
|---|
| 513 | .newInstance();
|
|---|
| 514 | processor.setParameter(attributes.getValue("param"));
|
|---|
| 515 | postprocessors.add(processor);
|
|---|
| 516 | }
|
|---|
| 517 | else if (qName.equals("trainer")) {
|
|---|
| 518 | final ITrainingStrategy trainer =
|
|---|
| 519 | (ITrainingStrategy) Class.forName("de.ugoe.cs.cpdp.training." +
|
|---|
| 520 | attributes.getValue("name"))
|
|---|
| 521 | .newInstance();
|
|---|
| 522 | trainer.setParameter(attributes.getValue("param"));
|
|---|
| 523 | trainers.add(trainer);
|
|---|
| 524 | }
|
|---|
| 525 | else if (qName.equals("eval")) {
|
|---|
| 526 | final IEvaluationStrategy evaluator =
|
|---|
| 527 | (IEvaluationStrategy) Class.forName("de.ugoe.cs.cpdp.eval." +
|
|---|
| 528 | attributes.getValue("name"))
|
|---|
| 529 | .newInstance();
|
|---|
| 530 | evaluators.add(evaluator);
|
|---|
| 531 | }
|
|---|
| 532 | else if (qName.equals("saveClassifier")) {
|
|---|
| 533 | saveClassifier = true;
|
|---|
| 534 | }
|
|---|
| 535 | else if (qName.equals("executionStrategy")) {
|
|---|
| 536 | executionStrategy = attributes.getValue("name");
|
|---|
| 537 | }
|
|---|
| 538 | else if (qName.equals("partialconfig")) {
|
|---|
| 539 | String path = attributes.getValue("path");
|
|---|
| 540 | try {
|
|---|
| 541 | boolean relative = true;
|
|---|
| 542 | if (attributes.getValue("relative") != null) {
|
|---|
| 543 | relative = Boolean.parseBoolean(attributes.getValue("relative"));
|
|---|
| 544 | }
|
|---|
| 545 |
|
|---|
| 546 | if (relative) {
|
|---|
| 547 | path = configFile.getParentFile().getPath() + "/" + path;
|
|---|
| 548 | }
|
|---|
| 549 | addConfigurations(new ExperimentConfiguration(path));
|
|---|
| 550 | }
|
|---|
| 551 | catch (ExperimentConfigurationException e) {
|
|---|
| 552 | throw new SAXException("Could not load partial configuration: " + path, e);
|
|---|
| 553 | }
|
|---|
| 554 | }
|
|---|
| 555 | else {
|
|---|
| 556 | Console.traceln(Level.WARNING, "element in config-file " + configFile.getName() +
|
|---|
| 557 | " ignored: " + qName);
|
|---|
| 558 | }
|
|---|
| 559 | }
|
|---|
| 560 | catch (NoClassDefFoundError | ClassNotFoundException | IllegalAccessException
|
|---|
| 561 | | InstantiationException | ClassCastException e)
|
|---|
| 562 | {
|
|---|
| 563 | throw new SAXException("Could not initialize class correctly", (Exception) e);
|
|---|
| 564 | }
|
|---|
| 565 | }
|
|---|
| 566 |
|
|---|
| 567 | /**
|
|---|
| 568 | * Adds the information of another experiment configuration to this configuration. This
|
|---|
| 569 | * mechanism allows the usage of partial configuration files. The name of the other
|
|---|
| 570 | * configuration is lost. <br>
|
|---|
| 571 | * <br>
|
|---|
| 572 | * If the current data path is the empty string (""), it is override by the datapath
|
|---|
| 573 | * of the other configuration. Otherwise, the current data path is kept.
|
|---|
| 574 | *
|
|---|
| 575 | * @param other
|
|---|
| 576 | * experiment whose information is added
|
|---|
| 577 | * @throws ExperimentConfigurationException
|
|---|
| 578 | */
|
|---|
| 579 | private void addConfigurations(ExperimentConfiguration other)
|
|---|
| 580 | throws ExperimentConfigurationException
|
|---|
| 581 | {
|
|---|
| 582 | if ("results".equals(resultsPath)) {
|
|---|
| 583 | resultsPath = other.resultsPath;
|
|---|
| 584 | }
|
|---|
| 585 | loaders.addAll(other.loaders);
|
|---|
| 586 | versionFilters.addAll(other.versionFilters);
|
|---|
| 587 | testVersionFilters.addAll(other.testVersionFilters);
|
|---|
| 588 | trainingVersionFilters.addAll(other.trainingVersionFilters);
|
|---|
| 589 | setwisepreprocessors.addAll(other.setwisepreprocessors);
|
|---|
| 590 | setwiseselectors.addAll(other.setwiseselectors);
|
|---|
| 591 | setwisepostprocessors.addAll(other.setwisepostprocessors);
|
|---|
| 592 | setwiseTrainers.addAll(other.setwiseTrainers);
|
|---|
| 593 | setwiseTestdataAwareTrainers.addAll(other.setwiseTestdataAwareTrainers);
|
|---|
| 594 | preprocessors.addAll(other.preprocessors);
|
|---|
| 595 | pointwiseselectors.addAll(other.pointwiseselectors);
|
|---|
| 596 | postprocessors.addAll(other.postprocessors);
|
|---|
| 597 | trainers.addAll(other.trainers);
|
|---|
| 598 | evaluators.addAll(other.evaluators);
|
|---|
| 599 |
|
|---|
| 600 | if (!executionStrategy.equals(other.executionStrategy)) {
|
|---|
| 601 | throw new ExperimentConfigurationException(
|
|---|
| 602 | "Executionstrategies must be the same, if config files should be added.");
|
|---|
| 603 | }
|
|---|
| 604 |
|
|---|
| 605 | /*
|
|---|
| 606 | * Only if saveClassifier is not set in the main config and the other configs saveClassifier
|
|---|
| 607 | * is true, it must be set.
|
|---|
| 608 | */
|
|---|
| 609 | if (saveClassifier == null && other.saveClassifier == true) {
|
|---|
| 610 | saveClassifier = other.saveClassifier;
|
|---|
| 611 | }
|
|---|
| 612 |
|
|---|
| 613 | }
|
|---|
| 614 |
|
|---|
| 615 | /*
|
|---|
| 616 | * (non-Javadoc)
|
|---|
| 617 | *
|
|---|
| 618 | * @see java.lang.Object#toString()
|
|---|
| 619 | */
|
|---|
| 620 | @Override
|
|---|
| 621 | public String toString() {
|
|---|
| 622 | final StringBuilder builder = new StringBuilder();
|
|---|
| 623 | builder.append("Experiment name: " + experimentName + StringTools.ENDLINE);
|
|---|
| 624 | builder.append("Loaders: " + loaders + StringTools.ENDLINE);
|
|---|
| 625 | builder.append("Results path: " + resultsPath + StringTools.ENDLINE);
|
|---|
| 626 | builder.append("Version filters: " + versionFilters.toString() + StringTools.ENDLINE);
|
|---|
| 627 | builder.append("Test version filters: " + testVersionFilters.toString() +
|
|---|
| 628 | StringTools.ENDLINE);
|
|---|
| 629 | builder.append("Training version filters: " + trainingVersionFilters.toString() +
|
|---|
| 630 | StringTools.ENDLINE);
|
|---|
| 631 | builder.append("Setwise preprocessors: " + setwisepreprocessors.toString() +
|
|---|
| 632 | StringTools.ENDLINE);
|
|---|
| 633 | builder.append("Setwise selectors: " + setwiseselectors.toString() + StringTools.ENDLINE);
|
|---|
| 634 | builder.append("Setwise postprocessors: " + setwisepostprocessors.toString() +
|
|---|
| 635 | StringTools.ENDLINE);
|
|---|
| 636 | builder.append("Setwise trainers: " + setwiseTrainers.toString() + StringTools.ENDLINE);
|
|---|
| 637 | builder.append("Setwise Testdata Aware trainers: " + setwiseTestdataAwareTrainers.toString() + StringTools.ENDLINE);
|
|---|
| 638 | builder
|
|---|
| 639 | .append("Pointwise preprocessors: " + preprocessors.toString() + StringTools.ENDLINE);
|
|---|
| 640 | builder.append("Pointwise selectors: " + pointwiseselectors.toString() +
|
|---|
| 641 | StringTools.ENDLINE);
|
|---|
| 642 | builder.append("Pointwise postprocessors: " + postprocessors.toString() +
|
|---|
| 643 | StringTools.ENDLINE);
|
|---|
| 644 | builder.append("Pointwise trainers: " + trainers.toString() + StringTools.ENDLINE);
|
|---|
| 645 | builder.append("Evaluators: " + evaluators.toString() + StringTools.ENDLINE);
|
|---|
| 646 | builder.append("Save Classifier?: " + saveClassifier + StringTools.ENDLINE);
|
|---|
| 647 | builder.append("Execution Strategy: " + executionStrategy + StringTools.ENDLINE);
|
|---|
| 648 |
|
|---|
| 649 | return builder.toString();
|
|---|
| 650 | }
|
|---|
| 651 | }
|
|---|