You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
This is a **PyTorch Tutorial to Image Captioning**.
1
+
This is a **[PyTorch](https://pytorch.org) Tutorial to Image Captioning**.
2
2
3
-
This is the first of a series of tutorials I plan to write about _implementing_ cool models on your own with the amazing [PyTorch](https://pytorch.org) library.
3
+
This is the first in a series of tutorials I plan to write about _implementing_ cool models on your own with the amazing PyTorch library.
4
4
5
5
Basic knowledge of PyTorch, convolutional and recurrent neural networks is assumed.
6
6
@@ -24,9 +24,9 @@ I'm using `PyTorch 0.4` in `Python 3.6`.
24
24
25
25
**To build a model that can generate a descriptive caption for an image we provide it.**
26
26
27
-
In the interest of keeping things simple, let's choose to implement the [_Show, Attend, and Tell_](https://arxiv.org/abs/1502.03044) paper. This is by no means the current state-of-the-art, but is still pretty darn amazing.
27
+
In the interest of keeping things simple, let's implement the [_Show, Attend, and Tell_](https://arxiv.org/abs/1502.03044) paper. This is by no means the current state-of-the-art, but is still pretty darn amazing.
28
28
29
-
**This model learns _where_ to look.**
29
+
This model learns _where_ to look.
30
30
31
31
As you generate a caption, word by word, you can see the the model's gaze shifting across the image.
32
32
@@ -78,7 +78,7 @@ There are more examples at the [end of the tutorial](https://github.com/sgrvinod
78
78
79
79
# Overview
80
80
81
-
In this section, I will present a broad overview of this model. I don't really get into the _minutiae_ here - feel free to skip to the implementation section and commented code for details.
81
+
In this section, I will present a broad overview of this model. If you're already familiar with it, you can skip straight to the implementation section or the commented code.
0 commit comments