metastable-projections-public/metastable_projections/projections/kl_projection_layer.py

8 lines
335 B
Python
Raw Normal View History

2022-10-27 21:12:58 +02:00
from .base_projection_layer import BaseProjectionLayer
class KLProjectionLayer(BaseProjectionLayer):
def __init__(self, *args, **kwargs):
raise Exception(
"KL Projections are not avaible in the public release. You would need to have access to the internal version of ALR's Project ITPAL to use it anyway...")