Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bcsherma committed Jan 16, 2024
1 parent b9329ee commit 1077dde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- run:
name: Check for Changes in Subdirectory
command: |
if git diff --name-only origin/$CIRCLE_BRANCH...HEAD | grep '<< parameters.subdir >>'; then
if git diff --name-only HEAD~1...HEAD | grep '<< parameters.subdir >>'; then
echo "Changes detected in << parameters.subdir >>, building Docker image."
echo $DOCKERHUB_TOKEN | docker login --username davidwandb --password-stdin
docker buildx create --platform linux/amd64,linux/arm64 --use
Expand Down
1 change: 1 addition & 0 deletions jobs/fashion_mnist_train/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def train(project: Optional[str], entity: Optional[str], **kwargs: Any):
metrics=["sparse_categorical_accuracy"],
)
model.summary()

model.fit(
train_X,
train_y.astype(np.float32),
Expand Down

0 comments on commit 1077dde

Please sign in to comment.