Skip to content

Commit ea99f83

Browse files
committed
Finished updating data loading functions, bumped version for release
1 parent 6a4311c commit ea99f83

File tree

5 files changed

+201
-219
lines changed

5 files changed

+201
-219
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "image-classification-tools"
7-
version = "0.5.5"
7+
version = "0.5.6"
88
description = "A lightweight PyTorch toolkit for building and training image classification models"
99
authors = ["gperdrizet <[email protected]>"]
1010
readme = "src/image_classification_tools/README.md"

src/image_classification_tools/pytorch/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''PyTorch utilities for image classification.'''
22

33
from image_classification_tools.pytorch.data import (
4-
load_datasets,
4+
load_dataset,
55
prepare_splits,
66
create_dataloaders,
77
generate_augmented_data
@@ -24,7 +24,7 @@
2424

2525
__all__ = [
2626
# Data loading and preprocessing
27-
'load_datasets',
27+
'load_dataset',
2828
'prepare_splits',
2929
'create_dataloaders',
3030
'generate_augmented_data',

0 commit comments

Comments
 (0)