Skip to content

azalea/puzzleAI

 
 

Repository files navigation

Goal

The goal of this project is to devise an artificial intelligence that solves a small puzzle game that bares some similarities with the game lemmings, but that is much simpler. The goal is to get the lemming to reach a target point after N time steps in a 2D vertical map by adding bricks in the map. It looks like an interesting problem as the AI needs to plan things. Random strategies are very unlikely to provide a solution. We also want to be able for the AI to learn the rules governing the lemmings behaviour/physics from few examples.

An example of the game with slightly different ending rules (unlimited time steps and the game stop as soon as the lemming reach the target) has been coded in puzzlescript and can be played here

Screenshot:

image

Dependencies

  • numpy
  • matplotlib
  • scipy
  • pygame (use to display better graphics with sprites)
  • imageio (used to save animated gifs)
  • scikit-learn
  • PysparseLP
  • google's ortools for python. https://developers.google.com/optimization/
  • Coin-or CBC and CLP executables. download binaries clp.exe and cbc and copy them in the solvers\windows subfolder

Game's rules

We have a 2D map of obstacles in a 2D vertical world with a starting point for the lemming, a starting orientation of the lemming (left or right), a target point. The original obstacles cannot be removed and the player is only allowed to add obstacles. Once the player has defines a set of new obstacles, the lemming in released. The goal is to get the lemming to the target point after N time steps. The physics of the lemmings can be described as follow: If there is no obstacle below then lemming goes down one cell, otherwise it moves in the direction (left or right)that it has been previously given if no obstacle is encountered If there is an obstacle in that direction the lemming changes direction and doesn't move that frame

An example of a problem with a maximum of 3 bricks and 20 time steps

animation

Solution found by adding bricks using Coin-Or CBC Mixed Integer Linear Program (MILP) solver

animation

Simulation

A simple python implementation of the lemmings displacement rules:

def lemmingsSimulation(obstaclesMap,targetsMap,lemmingsPositionsInit,lemmingsDirectionsInit,nbFrames):
  # this function simulate lemmings, in order to keep the code as simple as possible we handle the boundary using the modulo operator.
  # therefore obsacle must be added on the boundary to avoid the lemmings reintering the map from the opposite side
  nbLemmings=len(lemmingsPositionsInit)  
  height,width=obstaclesMap.shape
  lemmingsPositions=np.zeros((nbFrames,nbLemmings,2),dtype=np.int32)
  lemmingsDirections=np.zeros((nbFrames,nbLemmings),dtype=np.int32)
  lemmingsPositions[0]=lemmingsPositionsInit.copy()
  lemmingsDirections[0]=lemmingsDirectionsInit.copy()
  
  
  for i in range(1,nbFrames):
    lemmingsDirections[i]=lemmingsDirections[i-1]
    lemmingsPositions[i]=lemmingsPositions[i-1]    
    for i in range(nbLemmings):
      if targetsMap[lemmingsPositions[i-1,i,0],lemmingsPositions[i-1,i,1]]==0:
        if obstaclesMap[(lemmingsPositions[i-1,i,0]+1)%height,lemmingsPositions[i-1,i,1]]==0 :
          lemmingsPositions[i,i,0]=(lemmingsPositions[i-1,i,0]+1) % height
        elif obstaclesMap[lemmingsPositions[i-1,i,0],(lemmingsPositions[i-1,i,1]+lemmingsDirections[i-1,i]) % width]==0:
          lemmingsPositions[i,i,1]=(lemmingsPositions[i-1,i,1]+lemmingsDirections[i,i]) % width          
        else:
          lemmingsDirections[i,i]=-lemmingsDirections[i-1,i]
          
  return lemmingsPositions,lemmingsDirections
	

First method: relax the problem from integer variables to continuous variables

Instead of representing the state of the lemmings at each frame with three integer variables we encode its state using a binary 3D occupancy map array full of zeros but one value with a one. Using this representation we can rewrite the simulation as follow:

def lemmingsSimulationStateSpace(lemmingsMaps,obstaclesMap,targetsMap,nbFrames):
  for i in range(1,nbFrames):
    for d in range(2):
      s=d*2-1
      lemmingsMaps[i,:,:,d]+=np.roll(lemmingsMaps[i-1,:,:,d]*(1-targetsMap),1,axis=0)*(1-obstaclesMap)
      lemmingsMaps[i,:,:,d]+=np.roll(lemmingsMaps[i-1,:,:,d]*(1-targetsMap),s,axis=1)*(1-obstaclesMap)*np.roll(np.roll(obstaclesMap,s,axis=1),-1,axis=0)
      lemmingsMaps[i,:,:,d]+=lemmingsMaps[i-1,:,:,1-d]*(1-targetsMap)*np.roll(obstaclesMap,s,axis=1)*np.roll(obstaclesMap,-1,axis=0)
      lemmingsMaps[i,:,:,d]+=lemmingsMaps[i-1,:,:,d]*targetsMap 		

We did not use logical or and and but addition and multiplication on purpose, this allows us to relax the binary constraint and to be able to simulate with continuous obstacle values on the interval between 0 and 1 that can be interpreted as a kind of density. We can maximise the score by updating gradually the continuous valued obstacles map using gradient ascent. For the the gradient computation to be efficient, we do not use finite differences but a hand coded reverse accumulation of the gradient (a.k.a adjoint or back-propagation in the neural network context). The corresponding code is in lemmingsGradientDescent.py. The simulation with non zero (0.3) initial values gives:

animation

The score we are maximising is a not convex and thus may fall in a local minimum. We thus need a careful initialisation with non zero obstacles values in order to get a fraction of the lemmings to reach the target in the initialisation and get on non-zero initial gradient for the method to start changing the obstacles map through gradient descent. The obstacle evolution through gradient descent gives:

animation

We added a small penalty on the obstacle map to encourage using as little new bricks as possible. However note that not all the cells are binary at convergence. Maybe we need more iterations, break some symmetry by using a slightly different penalty for each cell. Finally we simulate the lemmings with the found non binary map

animation

Second method: using a 0-1 integer programming formulation

We can first interpret the problem as solving a non linear program through the introduction of a set of auxiliary variables that represent for each cell the number or density of lemmings coming from the top , the right ,the left and staying on the same cell. We want to maximise

score=np.sum(np.sum(lemmingsMaps[-1],axis=2)*targetsMap)

with respect to obstaclesMap lemmingsMaps and auxiliaryVariables under constraints isValid(obstaclesMap, lemmingsMaps, auxVars) is true

def isValid(obstaclesMap, lemmingsMaps, auxVars):
	v=True
  for i in range(1,nbFrames):
    for d in range(2):
      s=d*2-1
      v=v & np.all(auxVars[0,i,:,:,d] == np.roll(lemmingsMaps[i-1,:,:,d]*(1-targetsMap),1,axis=0)*(1-obstaclesMap)))
      v=v & np.all(auxVars[1,i,:,:,d] == np.roll(lemmingsMaps[i-1,:,:,d]*(1-targetsMap),s,axis=1)*(1-obstaclesMap)*np.roll(np.roll(obstaclesMap,s,axis=1),-1,axis=0))
      v=v & np.all(auxVars[2,i,:,:,d] == lemmingsMaps[i-1,:,:,1-d]*(1-targetsMap)*(np.roll(obstaclesMap,s,axis=1))*np.roll(maxDensity*obstaclesMap,-1,axis=0))
      v=v & np.all(auxVars[3,i,:,:,d] == lemmingsMaps[i-1,:,:,d]*targetsMap)  
      v=v & np.all(lemmingsMaps[i,:,:,d] == auxVars[0,i,:,:,d]+auxVars[1,i,:,:,d]+auxVars[2,i,:,:,d]+auxVars[3,i,:,:,d])
	return v

Instead of using non linear constraints that involve product between variables, we relax the problem by replacing them by a set of linear inequalities. We replace a=b*c with binary values by (a<=b)&(a<=c)&(a>=b+c-1). This allows us to reformulate the problem as a 0-1 integer linear program. There are several modelling tools that are available to model linear programs from python (Pulp,CyPL,Pyomo,CvxpyCvxpy) but none of these allows to handle array of variables with numpy arrays operations like slicing or the roll function that we are using in our python code for the simulation, and we would have to write loops over array elements. We use our own tool PySparseLP which allows to define easily a set of constraints using several numpy arrays containing variable indices and coefficients. The python code to formulate the MILP is in lemmingsMILP.py. We export the integer linear program into the MPS file format and solve the relaxed linear program (without the integer constraint) using the Coin-Or CLP executable. We get:

animation

Using a brick with density 2/3, the lemming splits into a lemmings with density 1/3 that can walk of bricks with density 1/3 given our set of linear constraints. Solving the problem with CBC takes about 3 seconds.

We solve the integer linear program (i.e. enforcing the variables to be integers) using Coin-Or CBC executable. We get

animation

Solving the problem with CBC takes about 10 seconds.

Third method: using a constraints satisfaction solver

There are quite a few python tools to formulate problems as SAT problems and to solve them (or-tools, numberjack, constraint). A more exhaustive list can be found here. I used google's or-tools to formulate and solve the problem. The formulation is written in lemmingsSAT.py. Unfortunately This tool doesn't allow to define a set of constraint at once using numpy arrays notations, so we have to write each constraint at a time using loops over array elements. I find 6 solutions using the constraint that the number of added bricks should less or equal to 3.

animation animation animation animation animation animation

findind all 6 solutions takes about 10 seconds and making sure there are no other solutions takes about 10 more seconds.

Learning the game's rules from examples

We first generate random maps and simulate the lemming for each of these maps From this simulated data we learn to predict a cell value from neighbouring cells in the previous frames we learn from fully observable state (direction given) as it is much more difficult to learn the rules having access only to the lemmings position and not their orientation as we would then have to either learn rules based on an hidden direction state or use a large temporal context with several previous frames, but we would have to get a very large context to go far back in time to guess the left/right direction of a falling lemmings. We use a simple logistic regression but we augment the feature vectors by using product between pairs of variable in the local context. We then simulate the lemmings using the the trained model with rounding and without rounding the predicted class probability. The idea behind not rounding is to get a score that is differentiable with respect to the obstacle map and use a simple gradient descent method to solve the problem of estimating the obstacle that lead the lemming to the target, as we did previously with the hand coded rules.

simulation with rounding:

animation

simulation without rounding:

animation

Without rounding the predicted probabilities the lemmings density looses a bit of contrast. We use normalisation to keep the sum to one, the lemmings density spreads on some other areas. This is visible if we multiply by 30 the lemmings density to get better contrasted images. WARNING: using a better optimization algorithm to thrain the weights of the network (lbfgs) we get a much better result with ouput probabilities much closer to 0 or 1, i need to regenerate that image.

animation

We tried a two layers neural network and a decision tree classifier. We get the best result with the decision tree classifier. Even by multiplying the lemmings density by 30 to augment the contrast we don't observe any wrong location of the lemmings.

animation

With enough training data the decision tree seems to learn the right set of rules The rules to predict lemmings[iFrame,i,j,0] i.e the lemmings values at location i,j pointing toward the left is

The binary tree structure to predict lemmings[iFrame,i,j,0] has 17 nodes and has the following tree structure:
node=0 test node: go to node 1 if lemmings[iFrame-1,i,j,1] <= 0.5 else to node 12.
	node=1 test node: go to node 2 if lemmings[iFrame-1,i,j+1,0] <= 0.5 else to node 7.
		node=2 test node: go to node 3 if lemmings[iFrame-1,i-1,j,0] <= 0.5 else to node 4.
			node=3 leaf node with value 0.
			node=4 test node: go to node 5 if obstacle[iFrame-1,i,j] <= 0.5 else to node 6.
				node=5 leaf node with value 1.
				node=6 leaf node with value 0.
		node=7 test node: go to node 8 if obstacle[iFrame-1,i,j] <= 0.5 else to node 11.
			node=8 test node: go to node 9 if obstacle[iFrame-1,i+1,j+1] <= 0.5 else to node 10.
				node=9 leaf node with value 0.
				node=10 leaf node with value 1.
			node=11 leaf node with value 0.
	node=12 test node: go to node 13 if obstacle[iFrame-1,i,j+1] <= 0.5 else to node 14.
		node=13 leaf node with value 0.
		node=14 test node: go to node 15 if obstacle[iFrame-1,i+1,j] <= 0.5 else to node 16.
			node=15 leaf node with value 0.
			node=16 leaf node with value 1.

The rules to predict lemmings[iFrame,i,j,1] i.e. the lemmings values at location i,j pointing toward the right is

The binary tree structure to predict lemmings[iFrame,i,j,1] has 17 nodes and has the following tree structure:
node=0 test node: go to node 1 if lemmings[iFrame-1,i,j,0] <= 0.5 else to node 12.
	node=1 test node: go to node 2 if lemmings[iFrame-1,i,j-1,1] <= 0.5 else to node 7.
		node=2 test node: go to node 3 if lemmings[iFrame-1,i-1,j,1] <= 0.5 else to node 4.
			node=3 leaf node with value 0.
			node=4 test node: go to node 5 if obstacle[iFrame-1,i,j] <= 0.5 else to node 6.
				node=5 leaf node with value 1.
				node=6 leaf node with value 0.
		node=7 test node: go to node 8 if obstacle[iFrame-1,i,j] <= 0.5 else to node 11.
			node=8 test node: go to node 9 if obstacle[iFrame-1,i+1,j-1] <= 0.5 else to node 10.
				node=9 leaf node with value 0.
				node=10 leaf node with value 1.
			node=11 leaf node with value 0.
	node=12 test node: go to node 13 if obstacle[iFrame-1,i,j-1] <= 0.5 else to node 14.
		node=13 leaf node with value 0.
		node=14 test node: go to node 15 if obstacle[iFrame-1,i+1,j] <= 0.5 else to node 16.
			node=15 leaf node with value 0.
			node=16 leaf node with value 1.

In order to measure how many simulated games need to be used in the training in order ot get the right set of rules, we can generate a huge amount of simulated games and measure the percentage of games that violates the rules as we use more and more of theses games to train the rules. We could also check that the set of learnt rules is equivalent to the set of hand coded rules using a brute force method by enumerating all possibilities.

Instead of training a decision tree we could use a table for each possible configuration in a small neighbourhood and we can either

  • be conservative and assume that any configuration not seen in the training set if forbidden
  • be optimistic and assume that any configuration not seen in the training set is allowed
  • penalise each configuration depending on how frequent they are in the training dataset

This is similar to naive estimation of potentials in a Markov field. However we do not want to learn that some obstacle configuration are no permitted regardless of the lemmings position just because they where not existing on the training set. We do not want to learn the distribution of the obstacle but the distribution of the lemming conditioned to the obstacles.

Instead of learning the rules from random games, we may want the learning system to be active and generate query games on which the simulation of the lemmings is run. We aim then at learning the right set of rules with a minimum number of query games. The learning algorithm would then generates tailored levels from which it can disambiguate rules obtained from previous simulation.

We can learn a DNF using a decisionlist (from artificial intelligence a modern approach). Maybe we could reuse code from https://github.com/aimacode/aima-python/blob/master/learning.py. Maybe we could learn rules using inductive logic programming?(see the artificial intelligence a modern approach book)

Solving the problem with learnt rules

Using google's constraint solver with learnt rules

Using a tree classifier we encode the tree decision rules as logic expression for each patch and use these to define a Conjunctive Normal Forms (CNF) on the entire set of patches and solve the problem using google's constraint satisfaction solver.

The code is in lemmingsLearnedRulesSAT.py We convert the decision trees into Conjunctive Normal Forms (CNF) using the function decisionTreeToCNF. We obtain

(lemmings[iFrame-1,i,j,1] or lemmings[iFrame-1,i,j+1,0] or lemmings[iFrame-1,i-1,j,0] or not(lemmings[iFrame,i,j,0])) and
(lemmings[iFrame-1,i,j,1] or lemmings[iFrame-1,i,j+1,0] or not(lemmings[iFrame-1,i-1,j,0] or not(obstacle[iFrame-1,i,j] or not(lemmings[iFrame,i,j,0])) and
(lemmings[iFrame-1,i,j,1] or not(lemmings[iFrame-1,i,j+1,0] or not(obstacle[iFrame-1,i,j] or not(lemmings[iFrame,i,j,0])) and
(not(lemmings[iFrame-1,i,j,1] or obstacle[iFrame-1,i,j+1] or not(lemmings[iFrame,i,j,0])) and
(not(lemmings[iFrame-1,i,j,1] or not(obstacle[iFrame-1,i,j+1] or obstacle[iFrame-1,i+1,j] or not(lemmings[iFrame,i,j,0])) and
(lemmings[iFrame-1,i,j,1] or lemmings[iFrame-1,i,j+1,0] or not(lemmings[iFrame-1,i-1,j,0] or obstacle[iFrame-1,i,j] or lemmings[iFrame,i,j,0]) and
(lemmings[iFrame-1,i,j,1] or not(lemmings[iFrame-1,i,j+1,0] or obstacle[iFrame-1,i,j] or lemmings[iFrame,i,j,0]) and
(not(lemmings[iFrame-1,i,j,1] or not(obstacle[iFrame-1,i,j+1] or not(obstacle[iFrame-1,i+1,j] or lemmings[iFrame,i,j,0])



(lemmings[iFrame-1,i,j,0] or lemmings[iFrame-1,i-1,j,1] or lemmings[iFrame-1,i,j-1,1] or not(lemmings[iFrame,i,j,1])) and
(lemmings[iFrame-1,i,j,0] or lemmings[iFrame-1,i-1,j,1] or not(lemmings[iFrame-1,i,j-1,1] or obstacle[iFrame-1,i,j] or obstacle[iFrame-1,i+1,j-1] or not(lemmings[iFrame,i,j,1])) and
(lemmings[iFrame-1,i,j,0] or lemmings[iFrame-1,i-1,j,1] or not(lemmings[iFrame-1,i,j-1,1] or not(obstacle[iFrame-1,i,j] or not(lemmings[iFrame,i,j,1])) and
(lemmings[iFrame-1,i,j,0] or not(lemmings[iFrame-1,i-1,j,1] or not(obstacle[iFrame-1,i,j] or not(lemmings[iFrame,i,j,1])) and
(not(lemmings[iFrame-1,i,j,0] or obstacle[iFrame-1,i,j-1] or not(lemmings[iFrame,i,j,1])) and
(not(lemmings[iFrame-1,i,j,0] or not(obstacle[iFrame-1,i,j-1] or obstacle[iFrame-1,i+1,j] or not(lemmings[iFrame,i,j,1])) and
(lemmings[iFrame-1,i,j,0] or lemmings[iFrame-1,i-1,j,1] or not(lemmings[iFrame-1,i,j-1,1] or obstacle[iFrame-1,i,j] or not(obstacle[iFrame-1,i+1,j-1] or lemmings[iFrame,i,j,1]) and
(lemmings[iFrame-1,i,j,0] or not(lemmings[iFrame-1,i-1,j,1] or obstacle[iFrame-1,i,j] or lemmings[iFrame,i,j,1]) and
(not(lemmings[iFrame-1,i,j,0] or not(obstacle[iFrame-1,i,j-1] or not(obstacle[iFrame-1,i+1,j] or lemmings[iFrame,i,j,1])

We add the extra rules that the number of lemmings on the target should sum to one on the last frame and the constraint that we use a limited number of bricks. This last constraint is a cardinality constraint that might be tricky to convert to Conjunctive Normal Forms [6,7] if we want to use a SAT solver that need the problem to be formulated a a conjunctive normal form like minisat (not that some code based on minisat like minsatp or minicard handles cardinality constraints).

Fortunately cardinality constraints are handled by google's constraint programming tool. The solver find the 6 solutions. We note that finding all 6 solutions using the learnt rules is about 10 times slower than with the hand coded rules ( 110 seconds vs 10 seconds) and making sure all solution have been found much longer (205 seconds vs 22 seconds).

animation animation animation animation animation animation

Maybe we could remove to variables in some of the clauses which could make the problem easier for SAT solvers to solve (maybe see Quinlan 1987). We may actually want to get more rules than the strict minimum and have some redundancy and larger contexts in order to make it easier for tree search based SAT solver to prune nodes. Is this approach a bit similar to clause learning in SAT solvers? We do not want too many clauses but we want clauses that can help to prune bad solution quickly.

Using Integer programming with learnt rules

We can convert each clauses in the CNF formula to a linear inequality and solve the problem using an integer programming solver like coin-or CBC or a pseudo Boolean optimisation solver like minicard.

Generating difficult solvable games

We can generate random game and then try to find the solution with a minimum number of bricks. We can try to solve with one brick, then two etc or use a integer programming solver with a penalisation on the number of added bricks. in order to be able to generate quickly feasible games we want to be able to discard quickly unfeasible games.

Method to learn game rules and dynamics

[48 ]Learning to Simulate Dynamic Environments With GameGAN paper

Using other methods like convex input neural network or OptNet

I could have a better look at some structured-learning methods like

  • OptNet paper, code
  • Unifying Local Consistency and MAX SAT Relaxations for Scalable Inference with Rounding Guarantees. paper
  • Hinge-Loss Markov Random Fields and Probabilistic Soft Logic. paper,code
  • Input-Convex Neural Network paper, code
  • SATNet: Bridging deep learning and logical reasoning using a differentiable satisfiability solver paper. Could be used to learn the rules as well as how to solve the problem in end-to-end manner ?

Other add-hoc or heuristic methods

We generate a set of solved problem examples obtained either by generating random game and solving them with one of the method above or using a method that generate solution and then removed bricks to generate a problem. From this set of examples we can learn some heuristic function that predict for example a lower bound on the the number of bricks that are needed to solve the problem. We then add one brick at a time and perform an A* search using this heuristic. Note that at each time we add a brick, there is no point trying to add a brick that is not on the lemmings trajectory, can this be learnt by the machine ?

maybe use approach like

Modeling with a game description language

some links:

Standford Game Description Language

One of the most popular Game Description Language is the GDL component of the Stanford General Game Playing Competition. The language is a special-purpose language based on first-order logic which is capable of modelling a large diversity of turn-taking board games with perfect information or games that share similar qualities. However the language is ill-suited for defining video game with random components, missing information or complex dynamics.

PyVGDL

Other descriptive language such as the Video Game Description Language [31] have been proposed to be overcome the Standford Game Description Language limitations in order to be able to desribe most 2D arcade games. It is said in [32]that "VGDL is inspired by GDL (Love et al. 2008), which is used for the GGP competitions. However, while GDL describes games based on logical rules (or true facts), VGDL defines the entities and interactions that can take place in the game. The dynamics of each one of these components, such as movements and behaviour, are programmed in the framework. Albeit this requires that a given functionality is implemented in the system when creating new games, it provides more flexibility and a larger space of games that can be designed. While GDL is restricted to board games, VGDL enables the definition of a wide range of arcade and puzzle games." We modeled our game using the PyVGDL library [31] . The game description in the VGDL format is here. The library pyVGL provides functionalties that can be used to learn the behavior of a bot that solves the game.

Puzzlescript

Getting inspiration from Bouncers, we coded our game in puzzlescript with a slightly different ending rule (unlimited time steps, the game stop as soon as the lemming reach the target). The game can be played here with source code here A general AI for games expressed in the puzzlescript language has been proposed in [39]. Some code is available online:

An improved version seemed to have been develop by authors in [44] but it does not seem that the code is available online.

Zillions of Games

Zillions of Games is a commercial software that comes with a game description language and solvers We could write ou game in the zillions of gamers format and solve it using the packaged solvers.
However we would like the AI to be able to play without having access to the description in such a language but to be able to learn the game's rules through interaction with the game or passive observation of games.

Exposing the game through a standardized API

We could follow the API used in [32] used for the GVGAI competition to allow the agent to query the game status (winner, time step, score), the player's state (position, orientation, resources), history of events or collisions during the game, and position of the different sprites in the level,identified only by an integer id for its type. Additionally, one of the main resources the agents have to reason about the environment is the forward model provided by the framework.

Other games

Some 2D games where we could apply the same approach to learn the rules from examples and then solve new instances with the learned rules

Some games with gravity:

Sokoban and variants

  • sokoban clone in python described here or here
  • laser tank
  • kye. There is python clone available here
  • some sokoban variants listed here
  • polar slide (a sokoban variant with slidings blocks). We could learn rules from random generated moves of the player
  • Solomon's Key. gameplay video here
  • unger
  • Atomix. Open source clone here
  • Oxyd
  • Xor. Clone here

Some Puzzlescript games that seem interesting to test our method:

other games that could be of interest to test our method

The Arcade Learning Environment

The Arcade Learning Environment (ALE) is developed by Bellamare et. al [45]and used by e.g. Google DeepMind. ALE includes games from the Atari 2600 emulator, which are simple 2D arcade games with rudimentary graphics. ALE controllers are given as input the raw screen capture and a score counter, and they must be able to indicate the set of buttons that determines the next action to make in the game.

Some references

  • [1] Partial Formalizations and the Lemmings Game. John McCarthy. 1994. download
  • [2] Scripting the Game of Lemmings with a Genetic Algorithm. Graham Kendall and Kristian Spoerer. Congress on Evolutionary Computation, 2004. ECEC2004. download
  • [3] The Lemmings Puzzle: Computational Complexity of an Approach and Identification of Difficult Instances. Kristian Spoerer. PhD Thesis. University of Nottingham 2007 download
  • [4] Micro and macro lemmings simulations based on ants colonies. Antonio Gonzalez-Pardo, Fernando Palero, David Camacho. EvoApplications 2014
  • [5] Lemmings is PSPACE-complete. Giovanni Viglietta. Theoretical Computer Science. 2012. download
  • [6] Towards Robust CNF Encodings of Cardinality Constraints. Joao Marques-Silva and Ines Lyncedownload
  • [7] Game Engine Learning from Video. Matthew Guzdial, Boyang Li, Mark O. Riedl download code
  • [8] Stochastic Variational Video Prediction. download
  • [9] New Approaches to Constraint Acquisition.ICON book chapter. C. Bessiere, R. Coletta,A. Daoudi, E. Hebrard, G. Katsirelos, N. Lazaar, Y. Mechqrane, N. Narodytska, C.G. Quimper, and T. Walsh. http://www.lirmm.fr/ConstraintAcquisition/
  • [10] Learning DNF Formulas. Shie Mannor and Shai Shalev-Shwartz. download
  • [11] Learning DNF by Decision Trees. Giulia Pagallo. download by Giulia Pagallo
  • [12] A Scheme for Feature Construction and a Comparison of Empirical Methods. Der-Shung Yang, Larry Rendell, Gunnar Blix. download
  • [13] Generating production rules from decision trees. J.R. Quinlan In IJCAI 1987.
  • [14] Graph Neural Networks and Boolean Satisfiability. Benedikt Bunz, Matthew Lamm. 2017. download
  • [15] Learning pseudo-Boolean k-DNF and Submodular Functions. Sofya Raskhodnikova, Grigory Yaroslavtsev. download
  • [16] An O(n log(log(n))) Learning Algorithm For DNF under the Uniform Distribution. Yishay Mansour. Download
  • [17] Learning DNF from Random Walks. Nader Bshouty. download
  • [18] Learning Complex Boolean Functions:Algorithms and Applications Arlindo L. Oliveira and Alberto Sangiovanni-Vincentelli. download
  • [19] On Construction of Binary Higher Order Neural Networks and Realization of Boolean Functions. Poorva Agrawal and Aruna Tiwari. download
  • [20] Binary Higher Order Neural Networks for Realizing Boolean Functions. Chao Zhang. download
  • [21] Realization of Boolean Functions Using Binary Pi-sigma Networks. Yoan Shin and Joydeep Ghosh. download
  • [22] Towards Deep Symbolic Reinforcement Learning Marta Garnelo, Kai Arulkumaran and Murray Shanahan. download
  • [23] OptNet: Differentiable Optimization as a Layer in Neural Networks Brandon Amos, J. Zico Kolter. paper, code
  • [24] Unifying Local Consistency and MAX SAT Relaxations for Scalable Inference with Rounding Guarantees.Stephen H. Bach, Bert Huang,Lise Getoor. paper
  • [25] Hinge-Loss Markov Random Fields and Probabilistic Soft Logic. Stephen H. Bach, Matthias Broecheler, Bert Huang, Lise Getoor. paper,code
  • [26] Input-Convex Neural Network paper. Brandon Amos, Lei Xu, J. Zico Kolter code
  • [27] Learning Generalized Reactive Policies Edward Groshev using Deep Neural Networks. Edward Groshev, Aviv Tamar. paper
  • [28] Imagination-Augmented Agents for Deep Reinforcement Learning. Theophane Weber Sebastien Racaniere David P. Reichert Lars Buesing Arthur Guez Danilo Rezende Adria Puigdomenech Badia Oriol Vinyals Nicolas Heess Yujia Li Razvan Pascanu Peter Battaglia David Silver Daan Wierstra paper
  • [29] General Game Playing with Stochastic CSP Frederic Koriche · Sylvain Lagrue Eric Piette Sebastien Tabaryhttp://www.cril.univ-artois.fr/~epiette/papers/constraints15.pdf
  • [30] Stochastic Constraint Programming for General Game Playing with Imperfect Information Frederic Koriche, Sylvain Lagrue, Eric Piette, and Sebastien Tabary http://www.cril.univ-artois.fr/~epiette/papers/giga16.pdf
  • [31] A Video Game Description Language for Model-based or Interactive Learning. Tom Schaul. Proceedings of the IEEE Conference on Computational Intelligence in Games 2013. [paper] (http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.435.61&rep=rep1&type=pdf)
  • [32] General Video Game AI: Competition, Challenges, and Opportunities https://www.aaai.org/ocs/index.php/AAAI/AAAI16/paper/download/11853/12281
  • [33] General Video Game Level Generation Ahmed Khalifa, Diego Perez-Liebana. paper
  • [34] Marahel: A Language for Constructive Level Generation Ahmed Khalifa and Julian Togelius(http://www.akhalifa.com/documents/marahel-language-constructive.pdf)
  • [35] The 2014 General Video Game Playing Competition Diego Perez, Spyridon Samothrakis, Julian Togelius, Tom Schaul, Simon M. Lucas, Adrien Couetoux, Jerry Lee, Chong-U Lim, Tommy Thompson *http://repository.essex.ac.uk/14619/1/GVGAI2014Competition.pdf
  • [36] https://github.com/mgbellemare/Arcade-Learning-Environment
  • [37] General Video Game Playing John Levine, Clare Bates Congdon, Marc Ebner, Graham Kendall, Simon M. Lucas, Risto Miikkulainen, Tom Schaul, and Tommy Thompson. paper
  • [38] Towards a Video Game Description Language Marc Ebner1, John Levine2, Simon M. Lucas3, Tom Schaul, Tommy Thompson , and Julian Togelius paper
  • [39] An Approach to General Videogame Evaluation and Automatic Generation using a Description Language Chong-U Lim and D. Fox Harrell paper
  • [40] Automatic Puzzle Level Generation: A General Approach using a Description Language. Ahmed Khalifa and Magda Fayek. http://www.ccgworkshop.org/2015/Khalifa.pdf
  • [41] The 2014 General Video Game Playing Competition Diego Perez, Spyridon Samothrakis, Julian Togelius, Tom Schaul, Simon M. Lucas, Adrien Couetoux, Jerry Lee, Chong-U Lim, Tommy Thompson http://diego-perez.net/papers/GVGAI2014Competition.pdf
  • [42] Bandit-based Search for Constraint Programming Manuel Loth, Michele Sebag, Youssef Hamadi, Marc Schoenauer
  • [43] Monte-Carlo Tree Search for the Maximum Satisfiability Problem
  • [44] Evaluating a Solver-Aided Puzzle Design Tool Joseph C. Osborn Michael Mateas. pdf
  • [45] The Arcade Learning Environment: An Evaluation Platform for General Agents Bellemare, Naddaf, Veness,Bowling. Journal of Artificial Intelligence Research 2013
  • [46] World Models David Ha, Jurgen Schmidhuber. download
  • [47] Learning Environment Simulators from Sparse Signals Yonadav Goldwasser Shavit download code
  • [48] *Learning to Simulate Dynamic Environments With GameGAN *paper

About

learn the rules of a small puzzle game from few examples and solve new levels using a constraint satisfaction solver

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%