Source code for anchor_python_visualization.visualize.visualize_features_scheme

"""Abstract base class for a scheme for visualizing embeddings"""

__author__ = "Owen Feehan"
__copyright__ = "Copyright (C) 2021 Owen Feehan"
__license__ = "MIT"
__version__ = "0.1"

from abc import ABC

from anchor_python_visualization import embeddings


[docs]class VisualizeFeaturesScheme(ABC): """A method to visualize a set of feature-values."""
[docs] def visualize_data_frame(self, features: embeddings.LabelledFeatures) -> None: """Visualizes the embeddings in some manner. Args: features: embeddings in a data-frame with associated labels. """ pass