This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import functools | |
import warnings | |
from collections.abc import Callable | |
from typing import Any, NamedTuple, Optional, Union | |
import chex | |
import jax | |
import jax.numpy as jnp | |
import optax.tree | |
from jax import nn |
OlderNewer