-
Notifications
You must be signed in to change notification settings - Fork 12
Add Galaxea G0.5-DROID for non-commercial evaluation #737
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
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e3b2774
Add Galaxea G0.5-DROID evaluation vendor
vertix bc6d4fa
Restore a finite env server heartbeat timeout
vertix 00d991a
Name shared wire contracts and remove unused response text
vertix 0e07317
Reuse the Galaxea embodiment constant in codec tests
vertix 023ae4e
Fix Galaxea config keys, metadata, and image cleanup
vertix 2006549
Move Galaxea override constants beside `main`
vertix 01bb494
Keep Galaxea metadata private and restrict published access
vertix fefe696
Keep Galaxea checkpoint instructions focused on public access
vertix 9fcad7b
Preserve behavior contracts in concise simulator comments
vertix File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,7 @@ build | |
|
|
||
| # Virtual environments | ||
| .venv | ||
| .venv-* | ||
| venv | ||
| env | ||
| ENV | ||
|
|
||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| # Internal, non-commercial evaluation only. See positronic/vendors/galaxea/NOTICE and LICENSE-G0.5. | ||
| FROM ubuntu:22.04 | ||
|
|
||
| COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ | ||
|
|
||
| RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
| build-essential cmake git ca-certificates ffmpeg \ | ||
| libgl1 libglib2.0-0 libsm6 libxext6 libturbojpeg \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Keep interpreter symlinks outside the host-mounted cache directories. | ||
| ENV UV_PYTHON_INSTALL_DIR=/opt/uv/python \ | ||
| UV_LINK_MODE=copy \ | ||
| UV_HTTP_TIMEOUT=600 \ | ||
| NVIDIA_VISIBLE_DEVICES=all \ | ||
| NVIDIA_DRIVER_CAPABILITIES=compute,utility | ||
|
|
||
| ARG GALAXEA_SHA=89f2322b4ad016e192437adc1a2c253b05bab246 | ||
| RUN git clone https://github.com/OpenGalaxea/GalaxeaVLA.git /galaxea \ | ||
| && git -C /galaxea checkout ${GALAXEA_SHA} | ||
|
|
||
| WORKDIR /galaxea | ||
| COPY positronic/vendors/galaxea/requirements-inference.txt /galaxea/requirements-inference.txt | ||
| # Export versions without installing Galaxea's training and simulation dependencies. | ||
| RUN --mount=type=cache,target=/root/.cache/uv \ | ||
| uv export --frozen --no-dev --no-emit-project --no-hashes --format requirements-txt \ | ||
| --output-file /galaxea/constraints.txt \ | ||
| && uv venv --python 3.10 /galaxea/.venv \ | ||
| && uv pip install --python /galaxea/.venv/bin/python \ | ||
| --index https://pypi.org/simple --default-index https://download.pytorch.org/whl/cu128 \ | ||
| --index-strategy unsafe-best-match \ | ||
| --constraint /galaxea/constraints.txt --requirement /galaxea/requirements-inference.txt | ||
|
|
||
| WORKDIR /positronic | ||
| COPY . /positronic | ||
| ENV UV_PROJECT_ENVIRONMENT=/opt/positronic-venv \ | ||
| PYTHONPATH=/positronic | ||
| RUN --mount=type=cache,target=/root/.cache/uv \ | ||
| uv sync --frozen --no-dev --python 3.13 | ||
|
|
||
| LABEL org.opencontainers.image.description="G0.5-DROID for internal, non-commercial evaluation only" \ | ||
| org.opencontainers.image.licenses="Apache-2.0 AND LicenseRef-G0.5-Community-1.0" | ||
|
|
||
| EXPOSE 8000 | ||
| ENTRYPOINT ["/opt/positronic-venv/bin/python", "-m", "positronic.vendors.galaxea.server"] |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.