-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: enable feature grouping for attention mechanism
- Loading branch information
1 parent
4fa545d
commit bcae5f4
Showing
13 changed files
with
367 additions
and
265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM python:3.7-slim-buster@sha256:50de4af76270c893fe36a9ae428951057d6e1a681312d11861970baa150a62e2 | ||
RUN apt update && apt install curl make git libopenblas-base -y | ||
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python | ||
RUN curl -sSL https://install.python-poetry.org | python3 - | ||
ENV SHELL /bin/bash -l | ||
|
||
ENV POETRY_CACHE /work/.cache/poetry | ||
ENV PIP_CACHE_DIR /work/.cache/pip | ||
ENV JUPYTER_RUNTIME_DIR /work/.cache/jupyter/runtime | ||
ENV JUPYTER_CONFIG_DIR /work/.cache/jupyter/config | ||
|
||
RUN $HOME/.poetry/bin/poetry config virtualenvs.path $POETRY_CACHE | ||
RUN /root/.local/bin/poetry config virtualenvs.path $POETRY_CACHE | ||
|
||
ENV PATH ${PATH}:/root/.poetry/bin:/bin:/usr/local/bin:/usr/bin | ||
ENV PATH /root/.local/bin:/bin:/usr/local/bin:/usr/bin | ||
|
||
CMD ["bash", "-l"] |
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
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
Oops, something went wrong.