From b4d0fb788164fe5dea9f6a24206a53f5e815a97d Mon Sep 17 00:00:00 2001 From: Benjamin Chauhan <63178260+Meeeee6623@users.noreply.github.com> Date: Fri, 5 Nov 2021 16:46:56 -0400 Subject: [PATCH] Fix README.md Added line: wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash in markdown block for dataset preparation under Quick Start guide. This line was present in the MxNet readme, but missing in TensorFlow, and necessary for processing with the script given in the next line. --- TensorFlow/Classification/ConvNets/se-resnext101-32x4d/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/TensorFlow/Classification/ConvNets/se-resnext101-32x4d/README.md b/TensorFlow/Classification/ConvNets/se-resnext101-32x4d/README.md index c05d7a9d..e8043403 100644 --- a/TensorFlow/Classification/ConvNets/se-resnext101-32x4d/README.md +++ b/TensorFlow/Classification/ConvNets/se-resnext101-32x4d/README.md @@ -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.