Skip to main content

Modular neural style transfer library supporting CNN and Transformer-based architectures.

Project description

stylemod

PyPI - Version PyPI - License

Modular neural style transfer (NST) library designed to make it easy to integrate and customize different deep learning models for artistic style transfer.

Table of Contents

Key Features

  • Plug-and-play architecture for integrating new models.
  • Support for CNN-based and Transformer-based models.
  • Easy customization of style and content loss computation.
  • Command-line interface (CLI) for easy interaction.
  • Provides out-of-the-box functionality for managing models, utilized layers/weights, normalizations, and more.

Modular Architecture

Here is a visualization of the class hierarchy for the stylemod library:

Class Hierarchy

Installation

Option 1: Install via PyPI (Recommended)

pip install stylemod

This will automatically install required dependencies. You can also view the package on PyPI.

Option 2: Install from Source (For Development)

  1. Clone the repository:

    git clone https://github.com/ooojustin/stylemod.git
    cd stylemod
    
  2. Install dependencies: Make sure you have PyTorch and other required libraries installed:

    pip install -r requirements.txt
    

Install Graphviz (Optional)

If you wish to use the built-in Graphviz integration for architecture visualization, ensure Graphviz is installed:

  • Windows
    You can download Graphviz for Windows from the official website:
    Windows Download

    Alternatively, you can install it using popular package managers:

    # Using Chocolatey
    choco install graphviz
    
    # Using Scoop
    scoop install graphviz
    
  • Unix-based Systems

    # For Linux (Debian/Ubuntu)
    sudo apt-get install graphviz
    
    # For Linux (Red Hat/CentOS)
    sudo yum install graphviz
    
    # For macOS
    brew install graphviz
    

Note: If you try to invoke stylemod.generate_class_hierarchy() or model.visualize() without graphviz installed, stylemod will attempt to install it automatically via your package manager on Linux/MacOS.

Model Superclasses

In the stylemod library, models used for neural style transfer are designed to be modular and extensible. They inherit from two primary classes: AbstractBaseModel, which provides a blueprint for all models, and BaseModel, which extends AbstractBaseModel to provide common functionality for most neural style transfer tasks. Subclasses like CNNBaseModel and TransformerBaseModel extend BaseModel with architecture-specific logic.

AbstractBaseModel

The AbstractBaseModel is an abstract class that defines the required interface for all neural style transfer models. It does not provide any concrete implementations but instead acts as a blueprint to ensure that all models follow a consistent structure. Each model must implement methods for initialization, feature extraction, loss calculation, and visualization.

Below is a table summarizing the key abstract methods that subclasses must implement:

Abstract Method Description
initialize_module() Initializes the model architecture and loads any required weights.
get_model_module() Returns the initialized model, ensuring that it has been properly set up.
eval() Switches the model to evaluation mode, disabling training-specific operations (like dropout or batch normalization).
set_device(device: torch.device) Moves the model to the specified device (CPU/GPU).
normalize_tensor(tensor: torch.Tensor) Normalizes the input tensor according to the model’s pre-defined normalization (if applicable).
denormalize_tensor(tensor: torch.Tensor) Reverts normalization applied to a tensor, returning it to its original scale and distribution.
get_features(image: torch.Tensor, layers: List[str]) Extracts feature maps from the given image at specified model layers.
calc_gram_matrix(tensor: torch.Tensor) Calculates the gram matrix of a tensor, which is used to capture style information in style transfer models.
calc_content_loss(target: torch.Tensor, content_features: Dict[str, torch.Tensor]) Computes the content loss by comparing the target image's features to the content image’s features.
calc_style_loss(target: torch.Tensor, style_features: Dict[str, torch.Tensor], *args, **kwargs) Computes the style loss by comparing the target image's style features with those from the style image.
forward(target: torch.Tensor, content_features: Dict[str, torch.Tensor], style_features: Dict[str, torch.Tensor]) Combines content and style losses into a single scalar value for optimization.
visualize() Visualizes the model’s architecture, typically outputting a Graphviz diagram.

BaseModel

The BaseModel class extends AbstractBaseModel by providing core functionality such as model initialization, normalization, feature extraction, and content/style loss computation. This class is designed to reduce repetitive code, allowing subclasses to focus on model-specific logic.

  • Initialization: The model can be initialized with a callable function (model_fn) to load the architecture and optional pre-trained weights.
  • Normalization: Handles input tensor normalization and denormalization, ensuring consistent image processing.
  • Feature Extraction: Extracts feature maps from intermediate layers of the model.
  • Gram Matrix Calculation: Provides a default implementation to calculate gram matrices, used for style transfer tasks.

CNNBaseModel

The CNNBaseModel class extends BaseModel to implement style transfer logic specific to Convolutional Neural Networks (CNNs), such as VGG and ResNet. It adds methods for calculating content and style losses based on feature maps extracted from the network.

  • Content Loss: Calculated as the mean squared difference between the target and content image's feature maps at a specific layer.
  • Style Loss: Computed by comparing the gram matrices of the style and target images across multiple layers.

TransformerBaseModel

The TransformerBaseModel extends BaseModel to support transformer architectures which rely heavily on attention mechanisms. This class introduces functionality for computing and using attention maps in style transfer.

  • Attention Mechanism: Requires an implementation of get_attention(), as the attention mechanism varies across different transformer architectures.
  • Style Loss: Uses attention-based style loss by comparing the gram matrices of the attention maps for the style and target images.

CLI Usage

The stylemod library provides a command-line interface (CLI) for running style transfer and visualizing model architectures.

Available Commands

1. Running Style Transfer

You can run the style transfer directly from the CLI by providing the paths to your content and style images, along with other optional parameters like the output filename, the number of steps, and the model to use.

stylemod run --content-image "content.png" --style-image "style.png" --steps 500 --model VGG19
Options:
  • -ci, --content-image: (Required) Path to the content image.
  • -si, --style-image: (Required) Path to the style image.
  • -o, --output-image: Filename for the output image. (Default: output_image.png)
  • -s, --steps: Number of optimization steps. (Default: 1000)
  • -ms, --max-size: Maximum size of input images. (Default: 400)
  • -m, --model: The model to use for style transfer. (Default: VGG19)
  • -gpu, --gpu-index: GPU index to use. (Default: 0, if available)

2. Visualizing Model Architecture

You can visualize the architecture of a specific model using the visualize command:

stylemod visualize VGG19 --output "model_visualization.png" --dpi 300
Options:
  • {model name}: The model architecture to visualize.
  • -o, --output: Optional path to save the visualization image (e.g., model_vis.png).
  • -d, --dpi: Set the DPI (dots per inch) for the rendered image. (Default: 400)

To see an example of what the output of visualizing VGG19 would look like, see visualize_vgg19.png.

3. Visualizing Class Hierarchy

You can visualize the class hierarchy of the stylemod library, which shows the relationships between different model classes.

stylemod class-hierarchy --save --show-funcs
Options:
  • -s, --save: Save the rendered class hierarchy to a file (img/class_hierarchy.png).
  • -f, --show-funcs: Show the abstract functions that should be implemented by subclasses.
  • -d, --dpi: Set the DPI (dots per inch) for the rendered image. (Default: 200)

ModelFactory

The ModelFactory class is responsible for dynamically creating instances of models used in the stylemod library. It provides a flexible and extensible mechanism for handling different model architectures and implementation without needing to hard-code their instantiations.

The ModelFactory automatically registers any model that extends AbstractBaseModel found in the stylemod.models package. Additional models can be registered manually if needed.

Key Features:

  • Dynamic Model Creation: Allows creating model instances by name or enum value, where **kwargs are forwarded to the constructor via the create() method.
  • Automatic Model Registration: Automatically scans and registers all models that inherit from AbstractBaseModel.
  • Model Registry: Maintains a registry of available models and their corresponding classes.
  • Custom Model Registration: Allows registering custom models by name.

Factory Methods:

Method Description
create(model: Union[str, Model], **kwargs) Creates and returns an instance of a registered model. Accepts either a string representing the model name or a Model enum.
register(model_name: str, model_class: Type[AbstractBaseModel]) Registers a new model to the factory by name. If a model with the same name is already registered, an error is raised.
get_models() Returns a list of all registered model classes.
_register_models() Scans the stylemod.models package and automatically registers all classes inheriting from AbstractBaseModel.

Example Usage:

from stylemod.core.factory import ModelFactory

# Create a model by its enum name (assuming Model.VGG19 is registered)
model = ModelFactory.create("VGG19", content_layer="conv4_2", style_weights={"conv1_1": 1.0})

# Alternatively, create a model by passing a Model enum
from stylemod.models import Model
model = ModelFactory.create(Model.VGG19, content_layer="conv4_2", style_weights={"conv1_1": 1.0})

# Register a custom model
class MyCustomModel(BaseModel):
  ...

ModelFactory.register("MY_CUSTOM_MODEL", MyCustomModel)

# Create an instance of the custom model
custom_model = ModelFactory.create("MY_CUSTOM_MODEL", content_layer='conv4_2', style_weights={'conv1_1': 1.0})

License

stylemod is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stylemod-0.7.2.tar.gz (615.7 kB view details)

Uploaded Source

Built Distribution

stylemod-0.7.2-py3-none-any.whl (30.7 kB view details)

Uploaded Python 3

File details

Details for the file stylemod-0.7.2.tar.gz.

File metadata

  • Download URL: stylemod-0.7.2.tar.gz
  • Upload date:
  • Size: 615.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for stylemod-0.7.2.tar.gz
Algorithm Hash digest
SHA256 b9b784b2c66d37720ac603f980d8bd343fd244f758235f451016a73bfb238a3c
MD5 f9dd7aa7007d6811250f950d1b6a4a2a
BLAKE2b-256 0851276c6c78d63ea68e0f714c633521cfef74fec67eada40ad225e9f0df8093

See more details on using hashes here.

File details

Details for the file stylemod-0.7.2-py3-none-any.whl.

File metadata

  • Download URL: stylemod-0.7.2-py3-none-any.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for stylemod-0.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 96a10c2f3224a052bd548d8e1c8d5c6e0e624f45d1177b4a7eacb235683b133a
MD5 34c9d58f34715c6a125b68a5a714f2e8
BLAKE2b-256 083a612e66186cdb946ad51fa4a544af4829b0a3d8f0edabd0163f69b8f8304a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page