-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move experiments sub-package back to corax.jax
This is primarily for helping to migrate other projects
- Loading branch information
1 parent
fded3c4
commit 96809cb
Showing
12 changed files
with
32 additions
and
46 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
"""JAX experiment utils.""" | ||
|
||
from corax.jax.experiments.config import CheckpointingConfig | ||
from corax.jax.experiments.config import DeprecatedPolicyFactory | ||
from corax.jax.experiments.config import EvaluatorFactory | ||
from corax.jax.experiments.config import ExperimentConfig | ||
from corax.jax.experiments.config import MakeActorFn | ||
from corax.jax.experiments.config import NetworkFactory | ||
from corax.jax.experiments.config import OfflineExperimentConfig | ||
from corax.jax.experiments.config import PolicyFactory | ||
from corax.jax.experiments.config import default_evaluator_factory | ||
from corax.jax.experiments.config import make_policy | ||
from corax.jax.experiments.imitation_experiment import ImitationExperimentConfig | ||
from corax.jax.experiments.imitation_experiment import run_imitation_experiment | ||
from corax.jax.experiments.imitation_loop import EpisodeRewarder | ||
from corax.jax.experiments.imitation_loop import ImitationEnvironmentLoop | ||
from corax.jax.experiments.run_experiment import run_experiment | ||
from corax.jax.experiments.run_offline_experiment import run_offline_experiment |
File renamed without changes.
This file contains 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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...elines/experiments/imitation_loop_test.py → corax/jax/experiments/imitation_loop_test.py
This file contains 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
This file contains 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
This file contains 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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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