diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | src/text_recognizer/datasets/emnist_dataset.py | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,2 +1,2 @@ -# text_recognizer -A text recognizer in PyTorch based on the project and best practices given in the "Full Stack Deep Learning Course". +# Text Recognizer +Implementing the text recognizer project from the course ["Full Stack Deep Learning Course"](https://fullstackdeeplearning.com/march2019) in PyTorch in order to learn best practices when building a deep learning project. I have expanded on this project by adding additional feature and ideas given by Claudio Jolowicz in ["Hypermodern Python"](https://cjolowicz.github.io/posts/hypermodern-python-01-setup/). diff --git a/src/text_recognizer/datasets/emnist_dataset.py b/src/text_recognizer/datasets/emnist_dataset.py index 67158ec..84d316a 100644 --- a/src/text_recognizer/datasets/emnist_dataset.py +++ b/src/text_recognizer/datasets/emnist_dataset.py @@ -1,4 +1,4 @@ -"""Fetches a DataLoader for EMNIST dataset with PyTorch.""" +"""Fetches a DataLoader with the EMNIST dataset with PyTorch.""" from typing import Callable from torch.utils.data import DataLoader |