Skip to content
Snippets Groups Projects

Set of commits to be tagged v0.17

Merged François LAURENT requested to merge dev into main
20 files
+ 293
93
Compare changes
  • Side-by-side
  • Inline
Files
20
+ 13
1
@@ -79,7 +79,7 @@ RUN if [ -z $TAGGINGBACKENDS_BRANCH ]; then \
&& rm -rf .git \
&& poetry install --only main \
&& poetry add "pynvml==11.4.1" \
&& if [ "$(echo $BACKEND | cut -d/ -f2)" = "main" ] || [ "$(echo $BACKEND | cut -d/ -f2)" = "dev" ] || [ "$(echo $BACKEND | cut -d/ -f2)" = "debug" ]; then \
&& if [ "$(echo $BACKEND | cut -d/ -f2)" = "main" ] || [ "$(echo $BACKEND | cut -d/ -f2)" = "dev" ]; then \
julia -e 'using Pkg; Pkg.add("JSON3")' \
&& scripts/make_models.jl default; \
fi \
@@ -88,3 +88,15 @@ RUN if [ -z $TAGGINGBACKENDS_BRANCH ]; then \
COPY recipes/checkgpu /bin/
FROM backend AS confusion
ARG PYTHON_ENV=/app/MaggotUBA
RUN test -d $PYTHON_ENV \
&& cd $PYTHON_ENV \
&& poetry add "scikit-learn==1.3.0" \
&& rm -rf ~/.cache
ADD https://gitlab.pasteur.fr/nyx/TaggingBackends/-/raw/dev/scripts/confusion.py?ref_type=heads&inline=false /bin/confusion.py
Loading