mobilenetv3_100 doesn't exist

This commit is contained in:
Mohamed Rashad 2020-08-08 14:10:40 +02:00 committed by GitHub
parent 6e9d6172c8
commit 44d8ecc6e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ Pretrained models can be loaded using `timm.create_model`
```python
import timm
m = timm.create_model('mobilenetv3_100', pretrained=True)
m = timm.create_model('mobilenetv3_large_100', pretrained=True)
m.eval()
```