Last active
November 8, 2018 18:12
-
-
Save mbednarski/1a59623cb3dc43a4acfba92b363aeae7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # (...) | |
| class Dataset: | |
| def __init__(self, train_dir='data/raw/aclImdb/train', test_dir='data/raw/aclImdb/test'): | |
| self.train_dir = Path(train_dir) | |
| self.test_dir = Path(test_dir) | |
| # (...) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment