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

Update SheepRL #104

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ea73fb4
feat: update to SheepRLv0.4.8
michele-milesi Nov 29, 2023
0d5e421
Merge branch 'diambra:main' into main
michele-milesi Nov 29, 2023
f1fa375
Merge branch 'main' of https://github.com/diambra/arena
michele-milesi Dec 15, 2023
734cd1b
Merge branch 'main' of github.com:michele-milesi/diambra-arena
michele-milesi Dec 15, 2023
b242f37
feat: update SheepRL to v0.5.1
michele-milesi Dec 19, 2023
6051244
feat: added pre-cooked dependenvies images
michele-milesi Dec 19, 2023
bc8b63a
feat: update sheeprl to v0.5.4
michele-milesi Feb 26, 2024
630a584
update branch
michele-milesi Feb 26, 2024
0f41914
feat: update sheeprl to v0.5.4
michele-milesi Feb 26, 2024
276481f
feat: update SheepRL to v0.5.1
michele-milesi Dec 19, 2023
2a03981
feat: added pre-cooked dependenvies images
michele-milesi Dec 19, 2023
8272dbc
feat: update sheeprl to v0.5.4
michele-milesi Feb 26, 2024
bef61df
Update copyright
alexpalms Jan 6, 2024
288d592
Removed GetError call, deprecated. Protobuf interface to be updated w…
alexpalms Feb 18, 2024
1e9e943
Add support for HF download
alexpalms Feb 16, 2024
b61bbf1
Add HF and python 3.8 support to image build
alexpalms Feb 18, 2024
22b9210
Rearranging instructions in dockerfiles
alexpalms Feb 19, 2024
e2c3908
Merge branch 'main' of github.com:michele-milesi/diambra-arena
michele-milesi Feb 26, 2024
a650ada
feat: update to SheepRLv0.4.8
michele-milesi Nov 29, 2023
9bcfab4
feat: update SheepRL to v0.5.1
michele-milesi Dec 19, 2023
4cf734e
feat: added pre-cooked dependenvies images
michele-milesi Dec 19, 2023
feec292
feat: update sheeprl to v0.5.4
michele-milesi Feb 26, 2024
b6fa459
feat: update SheepRL to v0.5.1
michele-milesi Dec 19, 2023
2d62891
Add support for HF download
alexpalms Feb 16, 2024
58497ac
Add HF and python 3.8 support to image build
alexpalms Feb 18, 2024
1f1df6e
Rearranging instructions in dockerfiles
alexpalms Feb 19, 2024
a346ea0
Merge branch 'main' of github.com:michele-milesi/diambra-arena
michele-milesi Feb 27, 2024
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
2 changes: 2 additions & 0 deletions images/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ ENV LANG=C.UTF-8 LC_ALL=C.UTF-8

RUN pip install huggingface_hub

RUN pip install huggingface_hub

# Copy arena to tmp since bind-mount is read-only and pip doesn't support
# out-of-tree builds.
RUN --mount=target=/usr/src/arena,type=bind,source=. \
Expand Down
2 changes: 2 additions & 0 deletions images/ray_rllib/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 HOME=/tmp

RUN pip install huggingface_hub

RUN pip install huggingface_hub

# Copy arena to tmp since bind-mount is read-only and pip doesn't support
# out-of-tree builds.
RUN --mount=target=/usr/src/arena,type=bind,source=. \
Expand Down
2 changes: 2 additions & 0 deletions images/stable-baselines/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ ENV LANG=C.UTF-8 LC_ALL=C.UTF-8

RUN pip install huggingface_hub

RUN pip install huggingface_hub

# Copy arena to tmp since bind-mount is read-only and pip doesn't support
# out-of-tree builds.
# Need to pin the specific version of tensorflow 1.15.0 due to
Expand Down
2 changes: 2 additions & 0 deletions images/stable-baselines3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ ENV LANG=C.UTF-8 LC_ALL=C.UTF-8

RUN pip install huggingface_hub

RUN pip install huggingface_hub

# Copy arena to tmp since bind-mount is read-only and pip doesn't support
# out-of-tree builds.
RUN --mount=target=/usr/src/arena,type=bind,source=. \
Expand Down
Loading