Skip to content

Commit

Permalink
fixed broken image dataset, updated examples
Browse files Browse the repository at this point in the history
  • Loading branch information
SubhadityaMukherjee committed Oct 9, 2024
1 parent a61079c commit cd6ab2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Create a pytorch model and get a task from openML
```python
model = torchvision.models.efficientnet_b0(num_classes=200)
# Download the OpenML task for tiniest imagenet
task = openml.tasks.get_task(362127)
task = openml.tasks.get_task(362128)
```
Download the task from openML and define Data and Trainer configuration
```python
Expand All @@ -50,7 +50,7 @@ data_module = OpenMLDataModule(
file_dir="datasets",
filename_col="image_path",
target_mode="categorical",
target_column="Class_encoded",
target_column="label",
batch_size = 64,
transform=transform
)
Expand Down

0 comments on commit cd6ab2c

Please sign in to comment.