Examples of BucketSampler


Examples of org.cspoker.ai.bots.bot.gametree.search.expander.sampling.BucketSampler

          new SamplingToFunctionSelector(50,new UCTSelector(2000)),
          new SamplingSelector(),
          new MaxValueSelector(),
          new MCTSShowdownRollOutNode.Factory(),
          new SampleWeightedBackPropStrategy.Factory(),
          new BucketSampler(0.01),
          250,
          new SWTTreeListener.Factory(client.getGui().getDisplay())
      );
//      botFactory = new FixedSampleMCTSBotFactory(
//          "Plus Bot",
View Full Code Here

Examples of org.cspoker.ai.bots.bot.gametree.search.expander.sampling.BucketSampler

      configPersist.setContinuousLearning(true);
      configPersist.setModelCreationTreshold(8000);
      configPersist.setContinueAfterCreation(false);
      configPersist.setSolveConceptDrift(false);
     
      Sampler s = new BucketSampler(0.01);
//      Sampler s = new StochasticUniversalSampler(9);
//      Sampler s = new RouletteWheelSampler(9);
//      Sampler s = new RandomSampler(9);
     
      return new BotFactory[] {
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.