torchsight.cli.evaluate
module
Commands to evaluate the models.
Source code
"""Commands to evaluate the models."""
import click
from .dldenet import dldenet
@click.group()
def evaluate():
"""Evaluate the different models."""
evaluate.add_command(dldenet)
Sub-modules
torchsight.cli.evaluate.dldenet
-
Evaluate the DLDENet models.