Skip to content

Commit

Permalink
Disable .T on body relation
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasZahradnik committed Jul 7, 2022
1 parent e2edc86 commit d3da799
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion neuralogic/core/constructs/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def __invert__(self) -> "BaseRelation":

@property
def T(self) -> "BaseRelation":
return self.attach_activation_function(Activation.TRANSP)
raise NotImplementedError(f"Transposing body relation is not currently supported.")
# return self.attach_activation_function(Activation.TRANSP)

def attach_activation_function(self, function: Union[Activation, ActivationAgg]):
if self.function:
Expand Down

0 comments on commit d3da799

Please sign in to comment.