2010-09-18 17:56:57 -04:00
|
|
|
<?php
|
|
|
|
namespace Moserware\Skills\TrueSkill;
|
|
|
|
|
2010-09-25 12:50:33 -04:00
|
|
|
require_once(dirname(__FILE__) . '/../GameInfo.php');
|
2010-09-25 10:15:51 -04:00
|
|
|
require_once(dirname(__FILE__) . '/../Rating.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../FactorGraphs/FactorGraph.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../FactorGraphs/FactorList.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../FactorGraphs/Schedule.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../FactorGraphs/VariableFactory.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../Numerics/GaussianDistribution.php');
|
2010-09-25 12:50:33 -04:00
|
|
|
require_once(dirname(__FILE__) . '/Layers/IteratedTeamDifferencesInnerLayer.php');
|
|
|
|
require_once(dirname(__FILE__) . '/Layers/PlayerPerformancesToTeamPerformancesLayer.php');
|
2010-09-18 17:56:57 -04:00
|
|
|
require_once(dirname(__FILE__) . '/Layers/PlayerPriorValuesToSkillsLayer.php');
|
|
|
|
require_once(dirname(__FILE__) . '/Layers/PlayerSkillsToPerformancesLayer.php');
|
|
|
|
require_once(dirname(__FILE__) . '/Layers/TeamDifferencesComparisonLayer.php');
|
2010-09-25 12:50:33 -04:00
|
|
|
require_once(dirname(__FILE__) . '/Layers/TeamPerformancesToTeamPerformanceDifferencesLayer.php');
|
2010-09-18 17:56:57 -04:00
|
|
|
|
2010-09-25 18:25:56 -04:00
|
|
|
use Moserware\Numerics\GaussianDistribution;
|
2010-09-25 12:50:33 -04:00
|
|
|
use Moserware\Skills\GameInfo;
|
2010-09-18 17:56:57 -04:00
|
|
|
use Moserware\Skills\Rating;
|
2010-09-25 10:15:51 -04:00
|
|
|
use Moserware\Skills\FactorGraphs\FactorGraph;
|
2010-09-18 17:56:57 -04:00
|
|
|
use Moserware\Skills\FactorGraphs\FactorList;
|
|
|
|
use Moserware\Skills\FactorGraphs\ScheduleSequence;
|
|
|
|
use Moserware\Skills\FactorGraphs\VariableFactory;
|
2010-09-25 12:50:33 -04:00
|
|
|
use Moserware\Skills\TrueSkill\Layers\IteratedTeamDifferencesInnerLayer;
|
|
|
|
use Moserware\Skills\TrueSkill\Layers\PlayerPerformancesToTeamPerformancesLayer;
|
2010-09-18 17:56:57 -04:00
|
|
|
use Moserware\Skills\TrueSkill\Layers\PlayerPriorValuesToSkillsLayer;
|
|
|
|
use Moserware\Skills\TrueSkill\Layers\PlayerSkillsToPerformancesLayer;
|
|
|
|
use Moserware\Skills\TrueSkill\Layers\TeamDifferencesComparisonLayer;
|
2010-09-25 12:50:33 -04:00
|
|
|
use Moserware\Skills\TrueSkill\Layers\TeamPerformancesToTeamPerformanceDifferencesLayer;
|
2010-09-18 17:56:57 -04:00
|
|
|
|
|
|
|
class TrueSkillFactorGraph extends FactorGraph
|
|
|
|
{
|
|
|
|
private $_gameInfo;
|
|
|
|
private $_layers;
|
2010-09-25 18:25:56 -04:00
|
|
|
private $_priorLayer;
|
2010-09-18 17:56:57 -04:00
|
|
|
|
2010-09-25 15:46:23 -04:00
|
|
|
public function __construct(GameInfo &$gameInfo, &$teams, array $teamRanks)
|
2010-09-18 17:56:57 -04:00
|
|
|
{
|
|
|
|
$this->_priorLayer = new PlayerPriorValuesToSkillsLayer($this, $teams);
|
|
|
|
$this->_gameInfo = $gameInfo;
|
2010-09-25 15:46:23 -04:00
|
|
|
$newFactory = new VariableFactory(
|
2010-09-18 17:56:57 -04:00
|
|
|
function()
|
|
|
|
{
|
|
|
|
return GaussianDistribution::fromPrecisionMean(0, 0);
|
|
|
|
});
|
2010-09-25 18:25:56 -04:00
|
|
|
|
2010-09-25 15:46:23 -04:00
|
|
|
$this->setVariableFactory($newFactory);
|
2010-09-18 17:56:57 -04:00
|
|
|
$this->_layers = array(
|
|
|
|
$this->_priorLayer,
|
|
|
|
new PlayerSkillsToPerformancesLayer($this),
|
|
|
|
new PlayerPerformancesToTeamPerformancesLayer($this),
|
|
|
|
new IteratedTeamDifferencesInnerLayer(
|
|
|
|
$this,
|
|
|
|
new TeamPerformancesToTeamPerformanceDifferencesLayer($this),
|
|
|
|
new TeamDifferencesComparisonLayer($this, $teamRanks))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getGameInfo()
|
|
|
|
{
|
|
|
|
return $this->_gameInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildGraph()
|
|
|
|
{
|
|
|
|
$lastOutput = null;
|
|
|
|
|
|
|
|
foreach ($this->_layers as $currentLayer)
|
|
|
|
{
|
|
|
|
if ($lastOutput != null)
|
|
|
|
{
|
|
|
|
$currentLayer->setInputVariablesGroups($lastOutput);
|
|
|
|
}
|
|
|
|
|
|
|
|
$currentLayer->buildLayer();
|
|
|
|
|
|
|
|
$lastOutput = $currentLayer->getOutputVariablesGroups();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function runSchedule()
|
|
|
|
{
|
|
|
|
$fullSchedule = $this->createFullSchedule();
|
|
|
|
$fullScheduleDelta = $fullSchedule->visit();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getProbabilityOfRanking()
|
|
|
|
{
|
|
|
|
$factorList = new FactorList();
|
|
|
|
|
|
|
|
foreach ($this->_layers as $currentLayer)
|
|
|
|
{
|
|
|
|
foreach ($currentLayer->getFactors() as $currentFactor)
|
|
|
|
{
|
|
|
|
$factorList->addFactor($currentFactor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$logZ = $factorList->getLogNormalization();
|
|
|
|
return exp($logZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function createFullSchedule()
|
|
|
|
{
|
|
|
|
$fullSchedule = array();
|
|
|
|
|
|
|
|
foreach ($this->_layers as $currentLayer)
|
|
|
|
{
|
|
|
|
$currentPriorSchedule = $currentLayer->createPriorSchedule();
|
|
|
|
if ($currentPriorSchedule != null)
|
|
|
|
{
|
2010-09-25 12:50:33 -04:00
|
|
|
$fullSchedule[] = $currentPriorSchedule;
|
2010-09-18 17:56:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$allLayersReverse = \array_reverse($this->_layers);
|
|
|
|
|
|
|
|
foreach ($allLayersReverse as $currentLayer)
|
|
|
|
{
|
|
|
|
$currentPosteriorSchedule = $currentLayer->createPosteriorSchedule();
|
|
|
|
if ($currentPosteriorSchedule != null)
|
|
|
|
{
|
2010-09-25 12:50:33 -04:00
|
|
|
$fullSchedule[] = $currentPosteriorSchedule;
|
2010-09-18 17:56:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ScheduleSequence("Full schedule", $fullSchedule);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUpdatedRatings()
|
|
|
|
{
|
|
|
|
$result = array();
|
|
|
|
|
|
|
|
foreach ($this->_priorLayer->getOutputVariablesGroups() as $currentTeam)
|
|
|
|
{
|
|
|
|
foreach ($currentTeam as $currentPlayer)
|
|
|
|
{
|
|
|
|
$result[$currentPlayer->getKey()] = new Rating($currentPlayer->getValue()->getMean(),
|
|
|
|
$currentPlayer->getValue()->getStandardDeviation());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|