Skip to content

Commit

Permalink
fix typo in split_train
Browse files Browse the repository at this point in the history
  • Loading branch information
yangobeil committed Dec 3, 2020
1 parent ebaf21b commit 20769e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion decathlonian/utils/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def create_dir(path):
Arguments:
path (str): path to directory to create
"""
if not os.path.existspath():
if not os.path.exists(path):
os.mkdir(path)


Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="decathlonian",
version="1.1.0",
version="1.1.1",
author="Décathlon Canada",
author_email="[email protected]",
description="A package to easily train powerful image classification models using colab's free TPUs.",
Expand All @@ -16,6 +16,9 @@
in Google colab notebooks. You can find the full documentation
[here](https://decathlonian-doc.herokuapp.com/)
## Version 1.1.1
Fix typo in split_train
## Version 1.1.0
Remove google scraping
Expand Down

0 comments on commit 20769e4

Please sign in to comment.