Examples of SelectionStrategy


Examples of cascading.pattern.ensemble.selection.SelectionStrategy

    EnsembleSpec<TreeSpec> miningSpec = new EnsembleSpec<TreeSpec>( modelSchema, models );

    LOG.debug( "creating: {}, input: {}, output: {}", new Object[]{miningSpec, modelSchema.getInputFields(),
                                                                   modelSchema.getDeclaredFields()} );

    SelectionStrategy strategy = PMMLUtil.getSelectionStrategy( model );

    miningSpec.setSelectionStrategy( strategy );

    tail = new ParallelEnsembleAssembly( tail, miningSpec );
View Full Code Here

Examples of nl.vu.few.anytimereasoning.workbench.selectionstrategies.SelectionStrategy

    manager.removeOntology(tboxLogicalURI);
    manager.removeOntology(aboxLogicalURI);
       
    /* Initialize approximation */
    StepSizeStrategy stepSizeStrategy = StrategyFactory.newStepSizeStrategy(stepID, concepts.size());
    SelectionStrategy selectionStrategy = StrategyFactory.newSelectionStrategy(selectionID, concepts, properties, stepSizeStrategy, tboxPhysicalURI, aboxPhysicalURI);
    ApproximationTask approximation = new ApproximationTask(selectionStrategy, tboxPhysicalURI, aboxPhysicalURI, file_prefix, tmpOntologyURI, rParameter, iParameter, PATH_TO_RESULTS);
   
    try {
      logger.info("Running baseline...");
      /*
 
View Full Code Here

Examples of nl.vu.few.anytimereasoning.workbench.selectionstrategies.SelectionStrategy

      /*
       * SelectionStrategy selectionStrategy = StrategyFactory
       * .newSelectionStrategy(selectionStrategyID, concepts, properties,
       * stepSizeStrategy, tboxPhysicalURI, aboxPhysicalURI);
       */
      SelectionStrategy selectionStrategy = null;
      try
      {
        selectionStrategy = StrategyManager.getNewSelectionStrategy(
            selectionStrategyID, concepts, properties,
            stepSizeStrategy, tboxPhysicalURI, aboxPhysicalURI);
View Full Code Here

Examples of nl.vu.few.anytimereasoning.workbench.selectionstrategies.SelectionStrategy

      Set<OWLProperty<?, ?>> properties = new HashSet<OWLProperty<?, ?>>();

      manager.removeOntology(tboxLogicalURI);
      manager.removeOntology(aboxLogicalURI);

      SelectionStrategy selectionStrategyCopy = new TrivialStrategy(
          selectionStrategy.getConceptsSet(), properties,
          StrategyFactory.newStepSizeStrategy("EqualParts",
              selectionStrategy.getConceptsSet().size()),
          selectionStrategy.getConceptsList(), selectionStrategy
              .getID());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.