INNER CODE UNIT · Python

result

HenryNdubuaku/nanodl · nanodl/__init__.py:321

    result = jax.numpy.sum(arr)


def test_optax(optax):
    optimizer = optax.sgd(learning_rate=0.1)


def test_einops(einops):
    arr = einops.rearrange([1, 2, 3], "a b c -> b a c")


def main():
    try:
        flax = check_library_installed("flax")
        jax = check_library_installed("jax")
        optax = check_library_installed("optax")
        einops = check_library_installed("einops")

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…