Skip to content

rpn_output

The rpn output class.

This class implements the class for the RPN rpn output result saving and loading.

rpn_output

Bases: output

The RPN model rpn output class.

It processes the rpn output by the RPN model and handle the output saving and loading.

Attributes:

Name Type Description
name str, default = 'rpn_output'

Name of the rpn output class object.

Methods:

Name Description
__init__

The initialization method of the rpn output class.

Source code in tinybig/output/rpn_output.py
class rpn_output(output):
    """
    The RPN model rpn output class.

    It processes the rpn output by the RPN model and handle the output saving and loading.

    Attributes
    ----------
    name: str, default = 'rpn_output'
        Name of the rpn output class object.

    Methods
    ----------
    __init__
        The initialization method of the rpn output class.
    """
    def __init__(self, name='rpn_output'):
        super().__init__(name=name)