Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Break the repo down into 4 main nodes #60

Merged
merged 50 commits into from
Dec 19, 2023
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
cbc97d8
refactor(envs): strip off all non essentials from env wrappers
epignatelli Jul 22, 2023
8a25261
refactor: remove random, stax and interop modules
epignatelli Jul 22, 2023
0abb43b
refactor: everything
epignatelli Jul 24, 2023
8de5c00
ops(cd): cd now inputs manual version
epignatelli Jul 24, 2023
a5a237b
align install to new cd
epignatelli Jul 24, 2023
fcd4705
setup: add jax_enums to requirements
epignatelli Jul 24, 2023
79e7afb
remove logger
epignatelli Jul 24, 2023
9a32114
sync
epignatelli Jul 25, 2023
87028b5
fix: importing procgen break OSX, import lazily
epignatelli Jul 28, 2023
d3313d2
fix: pytype breaks with Shape=NoReturn from jax.core.ShapedArray
epignatelli Jul 28, 2023
ced5570
refactor: ReplayBuffer now initialises using environment spec rather …
epignatelli Jul 28, 2023
d7a9101
align dqn to the new changes
epignatelli Jul 28, 2023
de812cb
add CITATION.cff
alanlivio Jul 28, 2023
ddda109
feat: add gymnax wrapper
epignatelli Jul 29, 2023
e112af6
refactor: log is not part of train state
epignatelli Jul 29, 2023
2e3dec5
add gymanx example
epignatelli Jul 29, 2023
209c63e
format: black
epignatelli Jul 29, 2023
d2beaad
refactor: experiment.run now takes seed rather than key;
epignatelli Jul 30, 2023
e2c824e
align SAC
epignatelli Jul 31, 2023
3888c4b
align sacd
epignatelli Jul 31, 2023
2e980b2
brax and navix
epignatelli Jul 31, 2023
1e72d67
refactor: replace StepType with standard Array
epignatelli Jul 31, 2023
6e1f0d7
working dqn suite
epignatelli Aug 9, 2023
8e4a9b6
refactor: remove external downloads
epignatelli Aug 10, 2023
d30fedc
losses are not embedded into the agents
epignatelli Aug 10, 2023
83c0c0a
add reporting;
epignatelli Aug 10, 2023
98dc23a
fix copyright header
epignatelli Aug 10, 2023
0c38312
add some missing copyright
epignatelli Aug 10, 2023
1cec821
fix merge module and add observations to navix example
epignatelli Aug 13, 2023
88857bc
feat: add navix wrapper
epignatelli Aug 13, 2023
96a4fdd
build: now requires lower python version (3.8)
epignatelli Dec 18, 2023
a8a72ce
Update CI.yml
epignatelli Dec 18, 2023
b9aff16
test: remove unittests
epignatelli Dec 19, 2023
ebddf59
chore(release): bump version
epignatelli Dec 19, 2023
6d911b9
ci(test): remove tests
epignatelli Dec 19, 2023
bfc2742
build(setup): add gymanx to req
epignatelli Dec 19, 2023
6da7f8d
build(setup): add brax to req
epignatelli Dec 19, 2023
8ba3370
build(setup): add navix to req
epignatelli Dec 19, 2023
a41f6a4
build(setup): requires py3.10
epignatelli Dec 19, 2023
1901979
Cull files belonging to exp, agentx and envx
epignatelli Dec 19, 2023
7bf24a6
fix: update requirements
epignatelli Dec 19, 2023
93ef97a
fix: update imports and install script
epignatelli Dec 19, 2023
92bad7b
install: downgrade python requirements to 3.8
epignatelli Dec 19, 2023
8e7c881
Very quick readme update
epignatelli Dec 19, 2023
759a083
Update readme
epignatelli Dec 19, 2023
922b2e3
Update readme
epignatelli Dec 19, 2023
854892e
update readme
epignatelli Dec 19, 2023
c7ba7eb
Fix CI
epignatelli Dec 19, 2023
4e9fd8f
Exp to Expx
epignatelli Dec 19, 2023
32a6eb3
Remove jax_enums from env
epignatelli Dec 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore(release): bump version
epignatelli committed Dec 19, 2023
commit ebddf591ae7afa760f347322988d6acb6339ed04
2 changes: 1 addition & 1 deletion helx/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# file generated by setuptools_scm
# don't change, don't track in version control
__version__ = "0.13.0"
__version__ = "1.0.0"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())