Skip to main content

A Python toolkit for generating, visualizing, and analyzing hex maze configurations and optimal barrier change sequences for the hex maze task developed by the Berke Lab at UCSF.

Project description

Hex-maze

DOI PyPI version

hex-maze-neuro logo

This repository provides a library of functions and tutorials for generating, visualizing, and analyzing hex maze configurations and optimal barrier-change sequences for the hex maze behavioral task developed by the Berke Lab at UCSF. It also includes curated databases of valid maze configurations and their associated attributes.

Installation (General use)

To simply use the functions in this repo, install the latest version of this Python package with the following command:

pip install hex-maze-neuro

Then import and use functions from the package in your Python script or Jupyter notebook:

from hexmaze import plot_hex_maze, get_hex_distance, get_optimal_paths

# Define an example maze
maze = {37, 7, 39, 41, 14, 46, 20, 23, 30}

# Set the rat's position
rat_hex = 16
rat_facing = 13

# Calculate optimal path from port 3 to the rat, with distances for each hex
rat_hex_path = get_optimal_paths(maze, start_hex=3, target_hex=rat_hex)[0]
rat_hex_path_distances = {h: get_hex_distance(maze, start_hex=rat_hex, target_hex=h) for h in rat_hex_path}

# Plot the maze with the rat's path colored by distance
plot_hex_maze(maze, show_barriers=False, show_hex_labels=False, rat=rat_hex, rat_to=rat_facing, 
              color_by=rat_hex_path_distances, colormap="Blues", vmin=-15)

# This generates the hex-maze-neuro logo plot!

Note that installing the package via pip does not make the tutorial notebooks or hex maze databases in this repo available. Follow the developer instructions to install from source to access the tutorials and databases.

Installation from source (Developer instructions)

Step 1. Fork and clone the repository

To contribute to this project, you first need to fork the repository to your own GitHub account. This creates a copy of the project where you can make changes. Do this by clicking the "Fork" button at the top-right corner of the repository page and following the instructions.

Once you have forked the repository, you need to clone it to your local machine to start working on it.

  1. Open a terminal or command prompt.

  2. Clone your forked repository using the following command (replacing {your-github-username} with your username):

    git clone https://github.com/{your-github-username}/Hex-maze.git
    
  3. Navigate to the newly created Hex-maze directory.

    cd Hex-maze
    

Step 2. Install dependencies

  1. First, make sure you are in the repo inside a terminal or command prompt (Step 3 above).

  2. To install all necessary dependencies for this project, run the following command:

    pip install -r requirements.txt
    

Step 3. Start the tutorials

Navigate to the Tutorials/ folder and begin with the Getting_Started.ipynb notebook.

Tutorials/ also includes the following tutorial notebooks:

These 3 are also provided for reference:

Step 4: Explore and use the databases!

This repo provides the following databases of valid maze configurations and barrier change sequences for the hex maze task:

Hex Maze Databases

Database of hex maze configurations

Maze_Databases/maze_configuration_database contains 55,896 possible hex maze configurations with the following attributes:

  • 9 barriers
  • no unreachable hexes
  • path lengths between reward ports are between 15-25 hexes
  • all critical choice points are >=6 hexes away from a reward port
  • there are a maximum of 3 critical choice points
  • there are no straight paths >6 hexes to a reward port (including port hex)
  • there are no straight paths >6 hexes in the middle of the maze

This database also provides information about each maze configuration:

  • length of the optimal path(s) between each pair of reward ports
  • lists of hexes defining the optimal path(s) between those reward ports
  • number of choice points, and which hexes are choice points
  • number of cycles (where the rat can start and end at the same hex without turning around) and lists of hexes defining those cycles
  • a set of other mazes isomorphic to this maze (representing reflections and rotations of the maze)

This database is provided in both csv (.csv) and pickle (.pkl) format - csv is better to explore in excel, but pickle is preferable for loading and working with in jupyter notebooks (csv tends to load everything as a string).

This database was generated using the Generate_Hex_Maze_Database.ipynb notebook available in the Tutorials/ folder.

Database of mazes for barrier change experiments

The Barrier_Sequence_Databases/ folder contains multiple databases of barrier sequences (consecutive maze configurations that differ by the movement of a single barrier).

  • barrier_sequence_database contains 3126 barrier sequences that are 4-6 mazes long, and is a good place to start.
  • single_choice_point contains 3720 barrier sequences >= 3 mazes long where all mazes in the sequence have a single choice point.

The Barrier_Sequence_Database_Search.ipynb notebook in the Tutorials/ folder has more information about the other available databases, and how to search these databases for a barrier sequence that fits your criteria.

Custom databases can be generated using the Generate_Custom_Barrier_Sequence_Database.ipynb notebook available in the Tutorials/ folder.

Database of mazes for probability change experiments

Maze_Databases/probability_change_mazes contains a database of mazes good for probability change experiments. These mazes are grouped such that all mazes in a group differ by at least 10 hexes on optimal paths.

This database was generated using the Generate_Probability_Change_Database.ipynb notebook available in the Tutorials/ folder.

Database of mazes for early stages of training

Maze_Databases/training_maze_database contains a database of mazes good for training. There are 5-6 barriers and all paths are the same length (either 15 or 17 hexes).

This database was generated using the Generate_Training_Maze_Database.ipynb notebook available in the Tutorials/ folder.

Reinforcement Learning Models

src/hexmaze/rl provides reinforcement learning agents for modeling port and hex values in the hex maze task. See the rl README for full documentation.

Port value learning (outcome-based)

Learns expected reward values for each port from binary reward sequences.

  • RescorlaWagner — Q-learning
  • BayesianPortLearner — Beta-binomial conjugate model with credible intervals
  • HiddenStatePortLearner — Bayesian belief over permutations of known reward probabilities

All port learners support maximum-likelihood fitting (.fit()), BIC model comparison, and trial-by-trial history. See the port learning README for detailed docs.

Hex value learning (trajectory-based)

Learns values over individual hexes from maze trajectories.

  • HexMazeTDLearner — TD(0) + TD(1) value learning, maintains V(hex) per starting port
  • HexMazeQLearner — Q-learning, learns Q(hex, action) to capture directional preferences

Both support learning from rat trajectories, self-generated simulation, configurable priors, and mid-session barrier changes. Learned values can be visualized as heatmaps on the maze with plot_hex_maze(color_by=...).

Other info

Hex maze functions

src/hexmaze provides all of the functions for hex maze related tasks, organized into core (most analysis functions), barrier_shift (maze comparisons and barrier sequence generation), utils (helpers for transforming maze representations), and plotting (all things plotting and hex centroids).

If you'd like any extra functionality, let me know (or feel free to add it and submit a PR)!

A tutorial for the most useful functions can be found at Tutorials/Hex_Maze_Functions.ipynb. For functions without tutorials, you can view the documentation running help(function_name).

License & Citation

This software is licensed under the MIT License. See LICENSE.

If you use Hex-maze-neuro in your research, please cite it as:

Crater, Stephanie (2026). Hex-maze-neuro: A Python toolkit for hex maze generation, visualization, and analysis. Zenodo. https://doi.org/10.5281/zenodo.17635391

@software{crater_hexmazeneuro_2026,
  author       = {Crater, Stephanie},
  title        = {Hex-maze-neuro: A Python toolkit for hex maze generation, visualization, and analysis},
  version      = {1.1.1},
  year         = {2026},
  month        = mar,
  publisher    = {Zenodo},
  doi          = {10.5281/zenodo.17635391},
  url          = {https://doi.org/10.5281/zenodo.17635391}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hex_maze_neuro-1.1.1.tar.gz (749.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hex_maze_neuro-1.1.1-py3-none-any.whl (760.9 kB view details)

Uploaded Python 3

File details

Details for the file hex_maze_neuro-1.1.1.tar.gz.

File metadata

  • Download URL: hex_maze_neuro-1.1.1.tar.gz
  • Upload date:
  • Size: 749.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for hex_maze_neuro-1.1.1.tar.gz
Algorithm Hash digest
SHA256 87284dc6b8cb997c833965e03cf6def2fd2ccda89aae3cb199d63abef5b68b50
MD5 c3e01b59084d7998db2c9fda2e7c1342
BLAKE2b-256 9d53a580d4a199b99900e73db1b6c2028d72054b1142a1941f9ff5860840f06b

See more details on using hashes here.

File details

Details for the file hex_maze_neuro-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: hex_maze_neuro-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 760.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for hex_maze_neuro-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 eb9d1e3f9ed67e11a16f3f5ad0488cb33f21fb70ca5bad2ea6815b6405657f7e
MD5 3b955bc13f20b7a7826e5d9bfb67d2b4
BLAKE2b-256 d4878bd1d134eb193d64833ddb7d25db7326e3810aaf2e87a73fcd089a18ab87

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page