Skip to content

Commit f830c6a

Browse files
update the links
1 parent 1cc76c2 commit f830c6a

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717

18-
<img src="images/NPG_GH-social-preview_white-bg.jpg" alt="NeuralPlayground Logo" width="500"/>
18+
<img src="../../images/NPG_GH-social-preview_white-bg.jpg" alt="NeuralPlayground Logo" width="500"/>
1919

2020

2121
<!-- TOC -->
@@ -156,7 +156,7 @@ and [experiment](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blo
156156
> **Note**
157157
>
158158
> Check our Tolman-Eichenbaum Machine Implementation in
159-
[this branch](https://github.com/ClementineDomine/NeuralPlayground/tree/whittington_2020) (work in progress), you will also need to install [pytorch](https://pytorch.org/) ro run it.</strong>
159+
[this branch](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/main/neuralplayground/agents/whittington_2020.py) (work in progress), you will also need to install [pytorch](https://pytorch.org/) ro run it.</strong>
160160
161161
### Simulation Manager
162162
@@ -166,7 +166,7 @@ the details in [Simulation Manager](https://github.com/SainsburyWellcomeCentre/N
166166
and [Comparison Board](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/main/examples/comparisons_examples/comparison_from_manager.ipynb) jupyters. In addition,
167167
we have some [default simulations](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/main/neuralplayground/backend/default_simulation.py)
168168
you can try out, for which you don't need to write much code, since they are
169-
implemented using a [SingleSim](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/55085e792f5dc446e0c3a808cd0d9901a37484a8/neuralplayground/backend/simulation_manager.py#L211)
169+
implemented using a SingleSim
170170
class. For example
171171
172172
```python
@@ -200,7 +200,7 @@ and [experiment](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blo
200200
> **Note**
201201
>
202202
> Check our Tolman-Eichenbaum Machine Implementation in
203-
[this branch](https://github.com/ClementineDomine/NeuralPlayground/tree/whittington_2020) (work in progress), you will also need to install [pytorch](https://pytorch.org/) ro run it.</strong>
203+
[this branch](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/main/neuralplayground/agents/whittington_2020.py) (work in progress), you will also need to install [pytorch](https://pytorch.org/) ro run it.</strong>
204204
205205
### Simulation Manager
206206
@@ -210,8 +210,7 @@ the details in [Simulation Manager](https://github.com/SainsburyWellcomeCentre/N
210210
and [Comparison Board](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/main/examples/comparisons_examples/comparison_from_manager.ipynb) jupyters. In addition,
211211
we have some [default simulations](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/main/neuralplayground/backend/default_simulation.py)
212212
you can try out, for which you don't need to write much code, since they are
213-
implemented using a [SingleSim](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/55085e792f5dc446e0c3a808cd0d9901a37484a8/neuralplayground/backend/simulation_manager.py#L211)
214-
class. For example
213+
implemented using a SingleSim class. For example
215214
216215
```python
217216
# Import default simulation, which is a SingleSim
@@ -242,7 +241,7 @@ my_manager.check_run_status()
242241
To compare the results, use the comparison board described in [Comparison Board](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/blob/main/examples/comparisons_examples/comparison_from_manager.ipynb) jupyter
243242
notebook. With time, we will build an interface for easy model comparison and visualisation of the results!
244243
245-
<img src="images/board_diagram.jpeg" alt="NeuralPlayground Logo" width="500"/>
244+
<img src="../../images/board_diagram.jpeg" alt="NeuralPlayground Logo" width="500"/>
246245
247246
## I want to contribute
248247
@@ -267,7 +266,7 @@ Before sending a pull request, make sure you have the done following:
267266
268267
3. Followed the [PEP8](https://www.python.org/dev/peps/pep-0008/) and [numpy docstring](https://numpydoc.readthedocs.io/en/latest/format.html) style convention. More details found in [Style Guide](https://github.com/ClementineDomine/NeuralPlayground/tree/main/documents/style_guide.md).
269268
270-
4. Implemented and ran [tests](https://github.com/ClementineDomine/NeuralPlayground/tree/main/neuralplayground/tests).
269+
4. Implemented and ran [tests](https://github.com/SainsburyWellcomeCentre/NeuralPlayground/tree/main/tests).
271270
272271
5. Comment your work.
273272

docs/source/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@
118118
html_baseurl = f"https://{github_user}.github.io/{project}"
119119
sitemap_url_scheme = "{link}"
120120

121+
linkcheck_ignore = [
122+
"https://opensource.org/", # to avoid odd 403 error
123+
]
121124
# Add any paths that contain custom static files (such as style sheets) here,
122125
# relative to this directory. They are copied after the builtin static files,
123126
# so a file named "default.css" will overwrite the builtin "default.css".

0 commit comments

Comments
 (0)