We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02dc2cc commit d84ff87Copy full SHA for d84ff87
lectures/_static/lecture_specific/amss/jax_amss_simple.py
@@ -6,12 +6,9 @@
6
import jax.numpy as jnp
7
from jax import jit, grad, vmap
8
from typing import NamedTuple
9
-try:
10
- from .jax_utilities import *
11
- from .jax_interpolation import *
12
-except ImportError:
13
- from jax_utilities import *
14
- from jax_interpolation import *
+
+# Note: jax_utilities and jax_interpolation are loaded via :load: directives
+# before this file, so their functions are available in the global namespace
15
16
17
class AMSSSimpleParams(NamedTuple):
0 commit comments