Skip to content

Commit

Permalink
changed links to reflect new org url
Browse files Browse the repository at this point in the history
  • Loading branch information
mivanit committed Sep 19, 2023
1 parent dd0bafb commit 0e60074
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!-- [![PyPI](https://img.shields.io/pypi/v/TODO)](https://pypi.org/project/TODO/)
![PyPI - Downloads](https://img.shields.io/pypi/dm/TODO) -->
[![Checks](https://github.com/AISC-understanding-search/maze-transformer/actions/workflows/checks.yml/badge.svg)](https://github.com/AISC-understanding-search/maze-transformer/actions/workflows/checks.yml)
[![Checks](https://github.com/understanding-search/maze-transformer/actions/workflows/checks.yml/badge.svg)](https://github.com/understanding-search/maze-transformer/actions/workflows/checks.yml)
[![Coverage](examples/coverage/coverage.svg)](docs/coverage/coverage.txt)
![GitHub commit activity](https://img.shields.io/github/commit-activity/t/AISC-understanding-search/maze-transformer)
![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/AISC-understanding-search/maze-transformer)
![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/AISC-understanding-search/maze-transformer)
![code size, bytes](https://img.shields.io/github/languages/code-size/AISC-understanding-search/maze-transformer)
![GitHub commit activity](https://img.shields.io/github/commit-activity/t/understanding-search/maze-transformer)
![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/understanding-search/maze-transformer)
![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/understanding-search/maze-transformer)
![code size, bytes](https://img.shields.io/github/languages/code-size/understanding-search/maze-transformer)

# Maze Transformer

Expand All @@ -21,7 +21,7 @@ This repo is built to facilitate the training and analysis of autoregressive tra

# Installation
```
pip install git+ssh://[email protected]/aisc-understanding-search/maze-transformer.git
pip install git+ssh://[email protected]/understanding-search/maze-transformer.git
```

Note: if you want to install the library in colab, follow the steps in this [Colab notebook](https://colab.research.google.com/drive/1b8E1rkqcKRdC4bs9133aBPEvqEaH5dqD#scrollTo=8VbjoPRgXlqs).
Expand Down
2 changes: 1 addition & 1 deletion maze_transformer/evaluation/baseline_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _get_coord_neighbors(
self, maze: LatticeMaze, current_position: CoordTup
) -> list[CoordTup]:
neighbors = maze.get_coord_neighbors(np.array(current_position, dtype=np.int32))
# This conversion won't be needed after https://github.com/AISC-understanding-search/maze-transformer/issues/154
# This conversion won't be needed after https://github.com/understanding-search/maze-transformer/issues/154
return [tuple(arr.tolist()) for arr in neighbors]

def _predict_next_step(
Expand Down
2 changes: 1 addition & 1 deletion maze_transformer/evaluation/eval_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def load_model_with_configs(
config_path is not None
), f"Couldn't find configs in run containing {model_path}"

# TODO Make this part of the ConfigHolder - https://github.com/AISC-understanding-search/maze-transformer/issues/31
# TODO Make this part of the ConfigHolder - https://github.com/understanding-search/maze-transformer/issues/31

# load the configs
with open(config_path, "r") as f:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = ""
authors = ["Michael Ivanitskiy <[email protected]>", "Dan Valentine <[email protected]>", "Rusheb Shah <[email protected]>", "Lucia Quirke <[email protected]>", "Can Rager <[email protected]>", "Alex Spies <[email protected]>", "Chris Mathwin <[email protected]>", "Tilman Rauker <[email protected]>", "Guillaume Corlouer <[email protected]>"]
readme = "README.md"
packages = [{include = "maze_transformer"}]
repository = "https://github.com/AISC-understanding-search/maze-transformer"
repository = "https://github.com/understanding-search/maze-transformer"

[tool.poetry.dependencies]
python = "^3.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
],
)
def test_random_baseline(tok_mode):
# Setup will be refactored in https://github.com/orgs/AISC-understanding-search/projects/1?pane=issue&itemId=22504590
# Disk interactions can be removed after https://github.com/AISC-understanding-search/maze-transformer/issues/113
# Setup will be refactored in https://github.com/orgs/understanding-search/projects/1?pane=issue&itemId=22504590
# Disk interactions can be removed after https://github.com/understanding-search/maze-transformer/issues/113
# First create a dataset and train a model
cfg: ConfigHolder = ConfigHolder(
train_cfg=TRAINING_CONFIGS["test-v1"],
Expand Down

0 comments on commit 0e60074

Please sign in to comment.