Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

fix typo in faster_rcnn_train_chain #640

Merged
merged 1 commit into from
Jun 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix typo in faster_rcnn_train_chain
  • Loading branch information
knorth55 committed Jun 6, 2018
commit 5f1b84fc43174ac004693eaefeefc88e76b2d098
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class FasterRCNNTrainChain(chainer.Chain):
in [#FRCNN]_.
anchor_target_creator: An instantiation of
:class:`~chainercv.links.model.faster_rcnn.AnchorTargetCreator`.
proposal_target_creator_params: An instantiation of
proposal_target_creator: An instantiation of
:class:`~chainercv.links.model.faster_rcnn.ProposalTargetCreator`.

"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __call__(self, roi, bbox, label,
:math:`L` is the number of foreground classes.
loc_normalize_mean (tuple of four floats): Mean values to normalize
coordinates of bouding boxes.
loc_normalize_std (tupler of four floats): Standard deviation of
loc_normalize_std (tuple of four floats): Standard deviation of
the coordinates of bounding boxes.

Returns:
Expand Down