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 argparse | |
| import ale_py | |
| import cv2 | |
| import gymnasium as gym | |
| import minari | |
| import minigrid | |
| import numpy as np | |
| import sb3_contrib | |
| import shortuuid |
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
| from timeit import default_timer | |
| import jax | |
| import optax | |
| import tqdm | |
| from jax import lax, numpy as jnp, random | |
| @jax.jit | |
| def scenic_hungarian_algorithm(cost): |
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
| """ | |
| Improving the lowering and compilation of unrolled lax.scan loops | |
| https://github.com/jax-ml/jax/discussions/25336 | |
| """ | |
| import argparse | |
| import functools | |
| import jax | |
| from jax import lax, numpy as jnp, random |
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
| """ | |
| https://github.com/jax-ml/jax/issues/26566 | |
| """ | |
| import itertools | |
| import operator | |
| import jax | |
| from jax import numpy as jnp | |
| from tqdm import tqdm |
OlderNewer