Skip to content

Commit

Permalink
Use correct registry
Browse files Browse the repository at this point in the history
  • Loading branch information
cgerum committed Aug 23, 2024
1 parent 222eadd commit e008a5f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
with:
context: .
push: true
tags: ${{ env.image_name }}:latest
tags: ${{ env.REGISTRY }}/${{ env.image_name }}:latest
build-args: |
python_version=${{ matrix.python_version }}
target=${{ matrix.target }}
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ RUN if [ "$target" = "hannah" ] || [ "$target" = "mlonmcu" ]; then\
apt-get update -y && apt-get -y install git mesa-utils libblas-dev liblapack-dev libsndfile1-dev libsox-dev cmake ninja-build curl build-essential; \
fi

RUN echo "Target: $target"

# Install poetry using recommended method
RUN pip install poetry
Expand Down
3 changes: 0 additions & 3 deletions hannah/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,6 @@ def train(
logger.append(CSVLogger(".", version="logs", name=""))
logger.append(JSONLogger(".", version="logs", name=""))

# if DVCLIVE_AVAILABLE:
# logger.append(DVCLogger())

callbacks = []

callbacks.extend(list(common_callbacks(config)))
Expand Down

0 comments on commit e008a5f

Please sign in to comment.