Skip to content

Commit

Permalink
weird imports problem temporarily resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
mfinzi committed Feb 26, 2021
1 parent b607c1f commit e3b4ddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion emlp/solver/groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
from jax import jit,vmap
from functools import partial
import logging
#from .product_sum_reps import lazy_kron,lazy_kronsum,LazyPerm,I
# this line needs to be here or imports break???
from .product_sum_reps import rep_permutation

def rel_err(A,B):
return jnp.mean(jnp.abs(A-B))/(jnp.mean(jnp.abs(A)) + jnp.mean(jnp.abs(B))+1e-6)
Expand Down

0 comments on commit e3b4ddf

Please sign in to comment.