Skip to content

Commit a6df091

Browse files
authored
MAINT: move non-executable content to its own category. (#148)
* MAINT: move non-executable content to its own category. * Add warnings to untested articles.
1 parent 01aad12 commit a6df091

5 files changed

+43
-2
lines changed

content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ kernelspec:
1414

1515
# Deep reinforcement learning with Pong from pixels
1616

17+
```{caution}
18+
19+
This article is not currently tested due to licensing/installation issues with
20+
the underlying `gym` and `atari-py` dependencies.
21+
Help improve this article by developing an example with reduced dependency
22+
footprint!
23+
```
24+
1725
This tutorial demonstrates how to implement a deep reinforcement learning (RL) agent from scratch using a policy gradient method that learns to play the [Pong](https://gym.openai.com/envs/Pong-v0/) video game using screen pixels as inputs with NumPy. Your Pong agent will obtain experience on the go using an [artificial neural network](https://en.wikipedia.org/wiki/Artificial_neural_network) as its [policy](https://en.wikipedia.org/wiki/Reinforcement_learning).
1826

1927
Pong is a 2D game from 1972 where two players use "rackets" to play a form of table tennis. Each player moves the racket up and down the screen and tries to hit a ball in their opponent's direction by touching it. The goal is to hit the ball such that it goes past the opponent's racket (they miss their shot). According to the rules, if a player reaches 21 points, they win. In Pong, the RL agent that learns to play against an opponent is displayed on the right.

content/tutorial-nlp-from-scratch.md

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ jupyter:
1515

1616
# Sentiment Analysis on notable speeches of the last decade
1717

18+
```{caution}
19+
20+
This article is not currently tested. Help improve this tutorial by making it
21+
fully executable!
22+
```
23+
1824
This tutorial demonstrates how to build a simple <a href = 'https://en.wikipedia.org/wiki/Long_short-term_memory'> Long Short Term memory network (LSTM) </a> from scratch in NumPy to perform sentiment analysis on a socially relevant and ethically acquired dataset.
1925

2026
Your deep learning model (the LSTM) is a form of a Recurrent Neural Network and will learn to classify a piece of text as positive or negative from the IMDB reviews dataset. The dataset contains 50,000 movie reviews and corresponding labels. Based on the numeric representations of these reviews and their corresponding labels <a href = 'https://en.wikipedia.org/wiki/Supervised_learning'> (supervised learning) </a> the neural network will be trained to learn the sentiment using forward propagation and backpropagation through time since we are dealing with sequential data here. The output will be a vector containing the probabilities that the text samples are positive.

site/applications.md

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ maxdepth: 1
1010
1111
content/mooreslaw-tutorial
1212
content/tutorial-deep-learning-on-mnist
13-
content/tutorial-deep-reinforcement-learning-with-pong-from-pixels
14-
content/tutorial-nlp-from-scratch
1513
content/tutorial-x-ray-image-processing
1614
content/tutorial-static_equilibrium
1715
content/tutorial-plotting-fractals

site/articles.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Articles
2+
3+
```{admonition} Help improve the tutorials!
4+
5+
Want to make a valuable contribution to the tutorials? Consider working on
6+
these articles so that they become fully executable/reproducible!
7+
```
8+
9+
```{toctree}
10+
11+
content/tutorial-deep-reinforcement-learning-with-pong-from-pixels
12+
content/tutorial-nlp-from-scratch
13+
```

site/index.md

+16
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,22 @@ applications
3131
contributing
3232
```
3333

34+
### Non-executable articles
35+
36+
```{admonition} Help improve the tutorials!
37+
38+
Want to make a valuable contribution to the tutorials? Consider contributing to
39+
these existing articles to help make them fully executable and reproducible!
40+
```
41+
42+
```{toctree}
43+
---
44+
maxdepth: 2
45+
---
46+
47+
articles
48+
```
49+
3450
## Useful links and resources
3551

3652
The following links may be useful:

0 commit comments

Comments
 (0)