timm / rexnet_100.nav_in1k

huggingface.co
Total runs: 63.1K
24-hour runs: 0
7-day runs: -11.0K
30-day runs: -8.1K
Model's Last Updated: February 11 2024
image-classification

Introduction of rexnet_100.nav_in1k

Model Details of rexnet_100.nav_in1k

Model card for rexnet_100.nav_in1k

A ReXNet image classification model. Pretrained on ImageNet-1k by paper authors.

Model Details
Model Usage
Image Classification
from urllib.request import urlopen
from PIL import Image
import timm

img = Image.open(urlopen(
    'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))

model = timm.create_model('rexnet_100.nav_in1k', pretrained=True)
model = model.eval()

# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)

output = model(transforms(img).unsqueeze(0))  # unsqueeze single image into batch of 1

top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)
Feature Map Extraction
from urllib.request import urlopen
from PIL import Image
import timm

img = Image.open(urlopen(
    'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))

model = timm.create_model(
    'rexnet_100.nav_in1k',
    pretrained=True,
    features_only=True,
)
model = model.eval()

# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)

output = model(transforms(img).unsqueeze(0))  # unsqueeze single image into batch of 1

for o in output:
    # print shape of each feature map in output
    # e.g.:
    #  torch.Size([1, 16, 112, 112])
    #  torch.Size([1, 38, 56, 56])
    #  torch.Size([1, 61, 28, 28])
    #  torch.Size([1, 128, 14, 14])
    #  torch.Size([1, 185, 7, 7])

    print(o.shape)
Image Embeddings
from urllib.request import urlopen
from PIL import Image
import timm

img = Image.open(urlopen(
    'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))

model = timm.create_model(
    'rexnet_100.nav_in1k',
    pretrained=True,
    num_classes=0,  # remove classifier nn.Linear
)
model = model.eval()

# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)

output = model(transforms(img).unsqueeze(0))  # output is (batch_size, num_features) shaped tensor

# or equivalently (without needing to set num_classes=0)

output = model.forward_features(transforms(img).unsqueeze(0))
# output is unpooled, a (1, 1280, 7, 7) shaped tensor

output = model.forward_head(output, pre_logits=True)
# output is a (1, num_features) shaped tensor
Model Comparison

Explore the dataset and runtime metrics of this model in timm model results ."

model top1 top5 param_count img_size crop_pct
rexnetr_300.sw_in12k_ft_in1k 84.53 97.252 34.81 288 1.0
rexnetr_200.sw_in12k_ft_in1k 83.164 96.648 16.52 288 1.0
rexnet_300.nav_in1k 82.772 96.232 34.71 224 0.875
rexnet_200.nav_in1k 81.652 95.668 16.37 224 0.875
rexnet_150.nav_in1k 80.308 95.174 9.73 224 0.875
rexnet_130.nav_in1k 79.478 94.68 7.56 224 0.875
rexnet_100.nav_in1k 77.832 93.886 4.8 224 0.875
Citation
@misc{han2021rethinking,
  title={Rethinking Channel Dimensions for Efficient Model Design}, 
  author={Dongyoon Han and Sangdoo Yun and Byeongho Heo and YoungJoon Yoo},
  year={2021},
  eprint={2007.00992},
  archivePrefix={arXiv},
  primaryClass={cs.CV}
}  
@misc{rw2019timm,
  author = {Ross Wightman},
  title = {PyTorch Image Models},
  year = {2019},
  publisher = {GitHub},
  journal = {GitHub repository},
  doi = {10.5281/zenodo.4414861},
  howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
}

Runs of timm rexnet_100.nav_in1k on huggingface.co

63.1K
Total runs
0
24-hour runs
-5.9K
3-day runs
-11.0K
7-day runs
-8.1K
30-day runs

More Information About rexnet_100.nav_in1k huggingface.co Model

More rexnet_100.nav_in1k license Visit here:

https://choosealicense.com/licenses/mit

rexnet_100.nav_in1k huggingface.co

rexnet_100.nav_in1k huggingface.co is an AI model on huggingface.co that provides rexnet_100.nav_in1k's model effect (), which can be used instantly with this timm rexnet_100.nav_in1k model. huggingface.co supports a free trial of the rexnet_100.nav_in1k model, and also provides paid use of the rexnet_100.nav_in1k. Support call rexnet_100.nav_in1k model through api, including Node.js, Python, http.

rexnet_100.nav_in1k huggingface.co Url

https://huggingface.co/timm/rexnet_100.nav_in1k

timm rexnet_100.nav_in1k online free

rexnet_100.nav_in1k huggingface.co is an online trial and call api platform, which integrates rexnet_100.nav_in1k's modeling effects, including api services, and provides a free online trial of rexnet_100.nav_in1k, you can try rexnet_100.nav_in1k online for free by clicking the link below.

timm rexnet_100.nav_in1k online free url in huggingface.co:

https://huggingface.co/timm/rexnet_100.nav_in1k

rexnet_100.nav_in1k install

rexnet_100.nav_in1k is an open source model from GitHub that offers a free installation service, and any user can find rexnet_100.nav_in1k on GitHub to install. At the same time, huggingface.co provides the effect of rexnet_100.nav_in1k install, users can directly use rexnet_100.nav_in1k installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

rexnet_100.nav_in1k install url in huggingface.co:

https://huggingface.co/timm/rexnet_100.nav_in1k

Url of rexnet_100.nav_in1k

rexnet_100.nav_in1k huggingface.co Url

Provider of rexnet_100.nav_in1k huggingface.co

timm
ORGANIZATIONS

Other API from timm

huggingface.co

Total runs: 14.5M
Run Growth: 209.8K
Growth Rate: 1.44%
Updated: February 11 2024
huggingface.co

Total runs: 2.3M
Run Growth: -42.4K
Growth Rate: -1.81%
Updated: February 11 2024
huggingface.co

Total runs: 399.4K
Run Growth: 149.5K
Growth Rate: 37.43%
Updated: February 11 2024
huggingface.co

Total runs: 180.3K
Run Growth: 93.9K
Growth Rate: 52.17%
Updated: October 26 2023
huggingface.co

Total runs: 84.2K
Run Growth: 11.9K
Growth Rate: 14.14%
Updated: February 11 2024
huggingface.co

Total runs: 64.5K
Run Growth: -50.9K
Growth Rate: -78.86%
Updated: August 20 2023
huggingface.co

Total runs: 64.5K
Run Growth: -17.1K
Growth Rate: -26.48%
Updated: April 28 2023
huggingface.co

Total runs: 64.3K
Run Growth: -8.3K
Growth Rate: -12.84%
Updated: April 24 2023
huggingface.co

Total runs: 64.3K
Run Growth: -8.3K
Growth Rate: -12.94%
Updated: April 26 2023
huggingface.co

Total runs: 63.9K
Run Growth: -8.6K
Growth Rate: -13.39%
Updated: April 25 2023
huggingface.co

Total runs: 63.5K
Run Growth: -8.8K
Growth Rate: -13.90%
Updated: April 22 2023
huggingface.co

Total runs: 63.5K
Run Growth: -9.0K
Growth Rate: -14.12%
Updated: April 24 2023
huggingface.co

Total runs: 60.5K
Run Growth: -10.3K
Growth Rate: -17.07%
Updated: April 28 2023
huggingface.co

Total runs: 59.6K
Run Growth: -9.8K
Growth Rate: -16.52%
Updated: April 25 2023
huggingface.co

Total runs: 59.5K
Run Growth: -9.5K
Growth Rate: -16.00%
Updated: April 28 2023