Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
HantingChen authored May 31, 2023
1 parent 5a82506 commit edfc679
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,36 @@ pip install tensorboardX
pip install terminaltables
```

## Dataset Preparation

Download the [ImageNet-1K](http://image-net.org/) classification dataset and structure the data as follows:
```
/path/to/imagenet-1k/
train/
class1/
img1.jpeg
class2/
img2.jpeg
val/
class1/
img3.jpeg
class2/
img4.jpeg
```

For pre-training on [ImageNet-22K](http://image-net.org/), download the dataset and structure the data as follows:
```
/path/to/imagenet-22k/
class1/
img1.jpeg
class2/
img2.jpeg
class3/
img3.jpeg
class4/
img4.jpeg
```

## Testing

We give an example evaluation command for VanillaNet-5:
Expand Down

0 comments on commit edfc679

Please sign in to comment.