-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* squash local branch commits--begin refactoring to remove globals * working fit without globals via new STAC class * updated viz function (renamed to viz_stac) to use the new STAC class * updated STAC.transform * update rodent CLI script * update tests due to function type signature changes * add xla flags to demo notebook, fix bug in rodent cli * fix typo * fix vmap args * fix bug, add to unit tests * fix bug in package_data, add test for STAC init * fix package data bug * update run_rodent so hydra_entry has no return values * add docstrings * more docstrings * update README * address comments, rerun demos * add docstring * period. * fix dataloader test bug * remove unused lines, add permalink
- Loading branch information
1 parent
04568a1
commit f022418
Showing
23 changed files
with
946 additions
and
737 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
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
Large diffs are not rendered by default.
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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
"""This module exposes all high level APIs for stac-mjx.""" | ||
|
||
from stac_mjx.utils import enable_xla_flags, load_data | ||
from stac_mjx.main import load_configs, run_stac | ||
from stac_mjx.viz import viz_stac |
Oops, something went wrong.