torchsight.cli.visualize module

Commands to visualize the datasets or the results.

Source code
"""Commands to visualize the datasets or the results."""
import click

from .dldenet import dldenet
from .flickr32 import flickr32
from .instre import instre
from .logo32plus import logo32plus
from .sigmoid import sigmoid


@click.group()
def visualize():
    """Visualize command to see datasets and results."""


visualize.add_command(dldenet)
visualize.add_command(flickr32)
visualize.add_command(instre)
visualize.add_command(logo32plus)
visualize.add_command(sigmoid)

Sub-modules

torchsight.cli.visualize.dldenet

Visualize the predictions of the dldenet.

torchsight.cli.visualize.flickr32

Visualize the dataset Flickr32.

torchsight.cli.visualize.instre

Visualize the dataset Flickr32.

torchsight.cli.visualize.logo32plus

Visualize the dataset Logo32plus.

torchsight.cli.visualize.sigmoid

Visualize a modified sigmoid with weight and bias.