From 2a2a16a375fc0b0fe3703a3319ba0ed237456c64 Mon Sep 17 00:00:00 2001 From: Junwon Lee <63298243+cpprhtn@users.noreply.github.com> Date: Fri, 7 Jul 2023 17:04:22 +0900 Subject: [PATCH 1/3] fix: typo err --- pytorch_vision_vgg.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytorch_vision_vgg.md b/pytorch_vision_vgg.md index 4e59ab22..ebf2f9f7 100644 --- a/pytorch_vision_vgg.md +++ b/pytorch_vision_vgg.md @@ -92,12 +92,12 @@ for i in range(top5_prob.size(0)): ### Model Description Here we have implementations for the models proposed in [Very Deep Convolutional Networks for Large-Scale Image Recognition](https://arxiv.org/abs/1409.1556), -for each configurations and their with bachnorm version. +for each configurations and their with batchnorm version. For example, configuration `A` presented in the paper is `vgg11`, configuration `B` is `vgg13`, configuration `D` is `vgg16` and configuration `E` is `vgg19`. Their batchnorm version are suffixed with `_bn`. -Their 1-crop error rates on imagenet dataset with pretrained models are listed below. +Their Top-1 error rates on ImageNet dataset with pretrained models are listed below. | Model structure | Top-1 error | Top-5 error | | --------------- | ----------- | ----------- | From 434b8229443161def4e3b989fc9399fd6fc5b364 Mon Sep 17 00:00:00 2001 From: Junwon Lee <63298243+cpprhtn@users.noreply.github.com> Date: Fri, 7 Jul 2023 17:29:30 +0900 Subject: [PATCH 2/3] Update install_deps.sh --- scripts/install_deps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index e9ae41c6..e7c0ca73 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -12,7 +12,8 @@ conda install -y regex pillow tqdm boto3 requests numpy h5py scipy matplotlib un conda install -y -c conda-forge librosa inflect pip install -q fastBPE sacremoses sentencepiece subword_nmt editdistance -pip install -q visdom mistune filelock tokenizers packaging pandas +pip install -q visdom filelock tokenizers packaging pandas +pip install -q mistune==2.0.2 pip install -q omegaconf timm seaborn importlib_metadata huggingface_hub pip install -q hydra-core opencv-python fvcore pip install -q --upgrade google-api-python-client From 27a2f4c63ad501dec474c8cfd7aaadbe651d7575 Mon Sep 17 00:00:00 2001 From: Junwon Lee <63298243+cpprhtn@users.noreply.github.com> Date: Fri, 7 Jul 2023 18:51:47 +0900 Subject: [PATCH 3/3] Update install_deps.sh --- scripts/install_deps.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index e7c0ca73..e9ae41c6 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -12,8 +12,7 @@ conda install -y regex pillow tqdm boto3 requests numpy h5py scipy matplotlib un conda install -y -c conda-forge librosa inflect pip install -q fastBPE sacremoses sentencepiece subword_nmt editdistance -pip install -q visdom filelock tokenizers packaging pandas -pip install -q mistune==2.0.2 +pip install -q visdom mistune filelock tokenizers packaging pandas pip install -q omegaconf timm seaborn importlib_metadata huggingface_hub pip install -q hydra-core opencv-python fvcore pip install -q --upgrade google-api-python-client