Skip to content

Commit ccf8bb6

Browse files
committed
Add missing imports
1 parent 01899fb commit ccf8bb6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pytorch_tutorial/logistic_regression/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ As usual, we start by importing the necessary packages.
2626
```python
2727
import math
2828
import matplotlib.pyplot as plt
29+
from matplotlib.colors import ListedColormap
2930
import seaborn as sns
3031
from sklearn.datasets import make_blobs
3132
import torch

pytorch_tutorial/multilayer_perceptron/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ As usual, we start by importing the necessary packages.
2727
import math
2828
import numpy as np
2929
import matplotlib.pyplot as plt
30+
from matplotlib.colors import ListedColormap
3031
import seaborn as sns
3132
from sklearn.datasets import make_circles
3233
import torch

0 commit comments

Comments
 (0)