tweak float exports
This commit is contained in:
parent
169303813d
commit
e7783188bb
2 changed files with 1 additions and 2 deletions
|
@ -5,7 +5,6 @@
|
||||||
# this is gonna take some work.
|
# this is gonna take some work.
|
||||||
|
|
||||||
from .activation import *
|
from .activation import *
|
||||||
from .float import *
|
|
||||||
from .initialization import *
|
from .initialization import *
|
||||||
from .layer import *
|
from .layer import *
|
||||||
from .learner import *
|
from .learner import *
|
||||||
|
|
|
@ -17,4 +17,4 @@ _sqrt2 = _f(np.sqrt(2))
|
||||||
_invsqrt2 = _f(1/np.sqrt(2))
|
_invsqrt2 = _f(1/np.sqrt(2))
|
||||||
_pi = _f(np.pi)
|
_pi = _f(np.pi)
|
||||||
|
|
||||||
__all__ = [o for o in locals()]
|
__all__ = [o for o in locals() if type(o) != 'module']
|
||||||
|
|
Loading…
Add table
Reference in a new issue