/** * Copyright (C) 2017 Jan Schäfer (jansch@users.sourceforge.net) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jskat.ai.nn; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Random; import org.jskat.control.JSkatEventBus; import org.jskat.control.command.table.CreateTableCommand; import org.jskat.data.JSkatViewType; import org.jskat.util.GameType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; class GameSimulator2 { private final static Logger LOG = LoggerFactory.getLogger(GameSimulator2.class); private final static Random RANDOM = new Random(); private final static Double EXPLORATION_RATE = 0.2; private final Map<GameType, List<GameSimulation>> gameSimulations = new HashMap<>(); GameSimulator2() { for (GameType gameType : GameType.values()) { gameSimulations.put(gameType, new ArrayList<GameSimulation>()); JSkatEventBus.INSTANCE .post(new CreateTableCommand(JSkatViewType.TRAINING_TABLE, getTrainingTableName(gameType))); } } private static String getTrainingTableName(GameType gameType) { return "SIM" + gameType; } void reset() { for (GameType gameType : GameType.values()) { gameSimulations.get(gameType).clear(); } } void add(GameSimulation gameSimulation) { gameSimulations.get(gameSimulation.getGameType()).add(gameSimulation); } GameSimulation simulateMaxEpisodes(long maxEpisodes) { long episodes = 0L; while (episodes < maxEpisodes) { GameSimulation simulation = getNextSimulation(); LOG.debug("Simulating " + simulation.getGameType() + " game. Current won rate: " + simulation.getWonRate() + " in " + simulation.getEpisodes() + " episodes."); simulation.simulateGame(getTrainingTableName(simulation.getGameType())); episodes++; } return getBestGameSimulation(); } GameSimulation getNextSimulation() { if (RANDOM.nextDouble() > EXPLORATION_RATE) { return getNextSimulationByWonRate(); // return getNextSimulationByWonRateAndMedian(); } return getNextSimulationByExploring(); } GameSimulation simulateMaxTime(long maxTimeInMilliseconds) { long endTime = System.currentTimeMillis() + maxTimeInMilliseconds; while (System.currentTimeMillis() <= endTime) { GameSimulation simulation = getNextSimulation(); LOG.warn("Simulating " + simulation.getGameType() + " game. Current won rate: " + simulation.getWonRate() + " in " + simulation.getEpisodes() + " episodes."); simulation.simulateGame(getTrainingTableName(simulation.getGameType())); } return getBestGameSimulation(); } private GameSimulation getBestGameSimulation() { double maxWonRate = Double.NEGATIVE_INFINITY; GameSimulation bestSimulation = null; for (GameType gameType : GameType.values()) { for (GameSimulation simulation : gameSimulations.get(gameType)) { if (simulation.getWonRate() > maxWonRate) { maxWonRate = simulation.getWonRate(); bestSimulation = simulation; } } } LOG.warn("Best game simulation " + bestSimulation.getGameType() + " after " + bestSimulation.getEpisodes() + " episodes with won rate " + bestSimulation.getWonRate() + " and median of " + bestSimulation.getDeclarerPointsMedian() + " of declarer points"); return bestSimulation; } GameSimulation getNextSimulationByWonRate() { List<GameSimulation> bestSimulations = new ArrayList<>(); double maxWonRate = Double.NEGATIVE_INFINITY; for (GameType gameType : GameType.values()) { for (GameSimulation simulation : gameSimulations.get(gameType)) { if (simulation.getEpisodes() == 0L) { // simulation has never been run --> return immediately return simulation; } if (simulation.getWonRate() >= maxWonRate) { if (simulation.getWonRate() > maxWonRate) { // prefer higher won rates maxWonRate = simulation.getWonRate(); bestSimulations.clear(); } bestSimulations.add(simulation); } } } Long minSimulationCount = Long.MAX_VALUE; GameSimulation result = null; for (GameSimulation simulation : bestSimulations) { if (simulation.getEpisodes() < minSimulationCount) { minSimulationCount = simulation.getEpisodes(); result = simulation; } } return result; } GameSimulation getNextSimulationByWonRateAndMedian() { List<GameSimulation> allSimulations = new ArrayList<>(); for (GameType gameType : GameType.values()) { for (GameSimulation simulation : gameSimulations.get(gameType)) { if (simulation.getEpisodes() == 0L) { // simulation has never been run --> return immediately return simulation; } allSimulations.add(simulation); } } double maxMedian = Double.NEGATIVE_INFINITY; GameSimulation result = null; for (GameSimulation simulation : allSimulations) { if (simulation.getDeclarerPointsMedian() > maxMedian) { maxMedian = simulation.getDeclarerPointsMedian(); result = simulation; } } return result; } GameSimulation getNextSimulationByExploring() { List<GameSimulation> bestSimulations = new ArrayList<>(); long minEpisodes = Long.MAX_VALUE; for (GameType gameType : GameType.values()) { for (GameSimulation simulation : gameSimulations.get(gameType)) { if (simulation.getEpisodes() == 0L) { // simulation has never been run --> return immediately return simulation; } if (simulation.getEpisodes() <= minEpisodes) { if (simulation.getEpisodes() < minEpisodes) { // prefer fewer episodes minEpisodes = simulation.getEpisodes(); bestSimulations.clear(); } bestSimulations.add(simulation); } } } return bestSimulations.get(RANDOM.nextInt(bestSimulations.size())); } }