Skip to content

Commit

Permalink
better gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
mfinzi committed Mar 7, 2021
1 parent ffedc1b commit 915716b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,7 @@ dmypy.json

# additional excludes specific to the repo
*.t
*.dat
*.dat
*.h5
*.pkl
*.json
1 change: 1 addition & 0 deletions emlp/solver/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

prod = lambda c: reduce(lambda a,b:a*b,c)


# class TqdmToLogger(io.StringIO):
# """
# Output stream for TQDM which will output to logger module instead of
Expand Down
2 changes: 1 addition & 1 deletion emlp/tests/equivariant_subspaces_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import argparse
import sys
import copy
from functools import partialmethod
from functools import partialmethod,partial

def rel_error(t1,t2):
error = jnp.sqrt(jnp.mean(jnp.absolute(t1-t2)**2))
Expand Down

0 comments on commit 915716b

Please sign in to comment.