Skip to content

utils

load_pretrained_model_functions()

Load Pretrained Model Interface Implementations.

Source code in src/artificial_artwork/utils.py
 9
10
11
12
13
14
15
def load_pretrained_model_functions():
    """Load Pretrained Model Interface Implementations."""
    # future work: discover dynamically the modules inside the pre_trained_model
    # package
    from .pre_trained_models import vgg

    return vgg