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 d57286c commit d824adc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ workflows:
"jobs/sweep_schedulers/optuna_scheduler",
"jobs/sweep_schedulers/wandb_scheduler",
]
filters:
branches:
only:
- main
2 changes: 0 additions & 2 deletions jobs/fashion_mnist_train/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,8 @@ def model_arch():
# size with a kernel size of 2x2
models.add(MaxPooling2D(pool_size=(2, 2)))
models.add(Conv2D(128, (5, 5), padding="same", activation="relu"))

models.add(MaxPooling2D(pool_size=(2, 2)))
models.add(Conv2D(256, (5, 5), padding="same", activation="relu"))

models.add(MaxPooling2D(pool_size=(2, 2)))

# Once the convolutional and pooling
Expand Down

0 comments on commit d824adc

Please sign in to comment.