File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def create_dir(path):
7676 Arguments:
7777 path (str): path to directory to create
7878 """
79- if not os .path .existspath ( ):
79+ if not os .path .exists ( path ):
8080 os .mkdir (path )
8181
8282
Original file line number Diff line number Diff line change 77
88setuptools .setup (
99 name = "decathlonian" ,
10- version = "1.1.0 " ,
10+ version = "1.1.1 " ,
1111 author = "Décathlon Canada" ,
1212 author_email = "sportvisionapi@decathlon.com" ,
1313 description = "A package to easily train powerful image classification models using colab's free TPUs." ,
1616 in Google colab notebooks. You can find the full documentation
1717 [here](https://decathlonian-doc.herokuapp.com/)
1818
19+ ## Version 1.1.1
20+ Fix typo in split_train
21+
1922 ## Version 1.1.0
2023 Remove google scraping
2124
You can’t perform that action at this time.
0 commit comments