torchsight.cli.stats
module
Commands to extract some stats from the log files.
Source code
"""Commands to extract some stats from the log files."""
import click
from .boxes import describe_boxes
from .dldenet import dldenet
from .focal import focal
from .print import printlogger
from .sizes import sizes
@click.group()
def stats():
"""Commands to compute statistics or metrics"""
stats.add_command(describe_boxes)
stats.add_command(dldenet)
stats.add_command(focal)
stats.add_command(printlogger)
stats.add_command(sizes)
Sub-modules
torchsight.cli.stats.boxes
-
Commands to see stats about the bounding boxes of a dataset.
torchsight.cli.stats.dldenet
-
Some stats about the DLDENet.
torchsight.cli.stats.focal
-
Commands to interact and get some stats of the Focal Loss.
torchsight.cli.stats.print
-
Extract stats from the PrintLogger.
torchsight.cli.stats.sizes
-
Commands to interpolate the sizes of some structures.