Skip to content

what is the code of calculate_mAP #7

@simpo-lei

Description

@simpo-lei

In the model.py, a compile method is defined as and

    def compile(self, learning_rate, beta_1, beta_2):
        """Gets the model ready for training. Adds losses, regularization, and
        metrics. Then calls the Keras compile() function.
        """
        ......
        self.keras_model.compile(
              optimizer=optimizer,
              loss=[None] * len(self.keras_model.outputs),
              metrics=['accuracy', 'calculate_mAP'])

Problem is that there is no definition of calculate_mAP. What is this metric?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions