faster_rcnn_model: Faster RSNN model

View source: R/icevision_models.R

faster_rcnn_modelR Documentation

Faster RSNN model

Description

FasterRCNN model implemented by torchvision.

Usage

faster_rcnn_model(
  num_classes,
  backbone = NULL,
  remove_internal_transforms = TRUE,
  pretrained = TRUE
)

Arguments

num_classes

Number of classes.

backbone

Backbone model to use. Defaults to a resnet50_fpn model.

remove_internal_transforms

The torchvision model internally applies transforms like resizing and normalization, but we already do this at the ‘Dataset' level, so it’s safe to remove those internal transforms.

pretrained

Argument passed to 'fastercnn_resnet50_fpn' if 'backbone is NULL'. By default it is set to TRUE: this is generally used when training a new model (transfer learning). 'pretrained = FALSE' is used during inference (prediction) for cases where the users have their own pretrained weights. **faster_rcnn_kwargs: Keyword arguments that internally are going to be passed to 'torchvision.models.detection.faster_rcnn.FastRCNN'.

Value

model


fastai documentation built on March 31, 2023, 11:41 p.m.