Skip to content

Commit 402ea83

Browse files
committed
Updated README
1 parent 50a2bf2 commit 402ea83

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# EfficientNet PyTorch
22

3-
### Update (June 29, 2019)
3+
### Update (July 31, 2019)
44

55
_Upgrade the pip package with_ `pip install --upgrade efficientnet-pytorch`
66

7+
The B6 and B7 models are now available. Additionally, _all_ pretrained models have been updated to use AutoAugment preprocessing, which translates to better performance across the board. Usage is the same as before:
8+
```python
9+
from efficientnet_pytorch import EfficientNet
10+
model = EfficientNet.from_pretrained('efficientnet-b7')
11+
```
12+
13+
### Update (June 29, 2019)
14+
715
This update adds easy model exporting ([#20](https://github.com/lukemelas/EfficientNet-PyTorch/issues/20)) and feature extraction ([#38](https://github.com/lukemelas/EfficientNet-PyTorch/issues/38)).
816

917
* [Example: Export to ONNX](#example-export)

tf_to_pytorch/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ I should also emphasize that you do *not* need to run any of this code to load p
77
That being said, the main script here is `convert_to_tf/load_tf_weights.py`. In order to use it, you should first download the pretrained TensorFlow weights:
88
```bash
99
cd pretrained_tensorflow
10-
./download.sh
10+
./download.sh efficientnet-b0
1111
cd ..
1212
```
1313
Then

tf_to_pytorch/pretrained_tensorflow/download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
# ./download.sh efficientnet-b3
1010

1111
MODEL=$1
12-
wget https://storage.googleapis.com/cloud-tpu-checkpoints/efficientnet/${MODEL}.tar.gz
12+
wget https://storage.googleapis.com/cloud-tpu-checkpoints/efficientnet/ckptsaug/${MODEL}.tar.gz
1313
tar xvf ${MODEL}.tar.gz
1414
rm ${MODEL}.tar.gz

0 commit comments

Comments
 (0)