Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
575400b
add by epoch script to show tensorflow accuracy
Meeeee6623 Sep 1, 2021
a4d9da9
Add print to script
Meeeee6623 Sep 1, 2021
511993a
add PyTorch, MxNet cifar 100 scripts, fix --num-classes for MxNet -> …
Meeeee6623 Sep 16, 2021
69925cc
add cifar100 to recordio for mxnet
Meeeee6623 Sep 16, 2021
71da103
add mxnet 5 runs script, mxnet with cifar10
Meeeee6623 Sep 17, 2021
4a4e445
add pytorch cifar100 5 runs script
Meeeee6623 Sep 17, 2021
6912d98
fix data dir
Meeeee6623 Sep 17, 2021
cf1c7e6
add tf 3 runs script
Meeeee6623 Sep 17, 2021
8c076bb
move pytorch cifar100 script
Meeeee6623 Sep 17, 2021
a0eb2c1
add jpeg to tfrecords script from autors repository
Meeeee6623 Sep 17, 2021
4cc3db0
add tensorflow script for cifar100
Meeeee6623 Sep 17, 2021
b0de218
fix script
Meeeee6623 Sep 20, 2021
dbf04ba
fix script again
Meeeee6623 Sep 21, 2021
3c96486
add mxnet, pytorch imagenet scripts
Meeeee6623 Oct 2, 2021
74b0f91
update mxnet dataloader threads
Meeeee6623 Oct 3, 2021
0c800ce
mxnet
Meeeee6623 Oct 3, 2021
7ba2202
swap to synthetic data backend
Meeeee6623 Oct 3, 2021
e7fd7d1
add seed parameter
Meeeee6623 Oct 19, 2021
b14d288
remove scripts
Meeeee6623 Nov 5, 2021
a78673d
Merge branch 'NVIDIA:master' into no-script
Meeeee6623 Nov 5, 2021
a8a2966
Fix README.md
Meeeee6623 Nov 5, 2021
134510b
Fixed README.md
Meeeee6623 Nov 5, 2021
f533529
Fix README.md
Meeeee6623 Nov 5, 2021
b4d0fb7
Fix README.md
Meeeee6623 Nov 5, 2021
3d69160
fix
Meeeee6623 Nov 5, 2021
4cf82c7
Remove added line
Meeeee6623 Nov 5, 2021
f61dea3
Merge branch 'master' into no-script
Meeeee6623 Nov 18, 2021
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MxNet/Classification/RN50v1.5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ nvidia-docker run --rm -it --ipc=host -v <path to dataset>:/data/imagenet/train-
find . -name "*.tar" | while read NAME ; do mkdir -p "${NAME%.tar}"; tar -xvf "${NAME}" -C "${NAME%.tar}"; rm -f "${NAME}"; done
cd ..
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash
```

5. Preprocess the ImageNet 1k dataset.
Expand Down
2 changes: 1 addition & 1 deletion MxNet/Classification/RN50v1.5/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def create_resnet(builder, version, num_layers=50, resnext=False, classes=1000):
block_class, layers, channels = resnet_spec[num_layers]
assert not resnext or num_layers >= 50, \
"Cannot create resnext with less then 50 layers"
net = ResNet(builder, block_class, layers, channels, version=version,
net = ResNet(builder, block_class, layers, channels, classes, version=version,
resnext_groups=args.num_groups if resnext else None)
return net

Expand Down
1 change: 1 addition & 0 deletions TensorFlow/Classification/ConvNets/resnet50v1.5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ tar -xvf ILSVRC2012_img_train.tar && rm -f ILSVRC2012_img_train.tar
find . -name "*.tar" | while read NAME ; do mkdir -p "${NAME%.tar}"; tar -xvf "${NAME}" -C "${NAME%.tar}"; rm -f "${NAME}"; done
cd ..
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash
```
* Preprocess dataset to TFRecord form using [script](https://github.com/tensorflow/models/blob/archive/research/inception/inception/data/build_imagenet_data.py). Additional metadata from [autors repository](https://github.com/tensorflow/models/tree/archive/research/inception/inception/data) might be required.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ tar -xvf ILSVRC2012_img_train.tar && rm -f ILSVRC2012_img_train.tar
find . -name "*.tar" | while read NAME ; do mkdir -p "${NAME%.tar}"; tar -xvf "${NAME}" -C "${NAME%.tar}"; rm -f "${NAME}"; done
cd ..
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash
```
* Preprocess dataset to TFRecord form using [script](https://github.com/tensorflow/models/blob/archive/research/inception/inception/data/build_imagenet_data.py). Additional metadata from [autors repository](https://github.com/tensorflow/models/tree/archive/research/inception/inception/data) might be required.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ tar -xvf ILSVRC2012_img_train.tar && rm -f ILSVRC2012_img_train.tar
find . -name "*.tar" | while read NAME ; do mkdir -p "${NAME%.tar}"; tar -xvf "${NAME}" -C "${NAME%.tar}"; rm -f "${NAME}"; done
cd ..
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash
```
* Preprocess dataset to TFRecord form using [script](https://github.com/tensorflow/models/blob/archive/research/inception/inception/data/build_imagenet_data.py). Additional metadata from [autors repository](https://github.com/tensorflow/models/tree/archive/research/inception/inception/data) might be required.

Expand Down