Skip to content

Commit

Permalink
nit: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nikp1172 committed Feb 9, 2024
1 parent 4632942 commit ea63c3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mnist-classifaction/train_job/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
resources=Resources(
cpu_request=0.5,
cpu_limit=0.5,
memory_request=1000,
memory_limit=1500
memory_request=1500,
memory_limit=2000
)

)
Expand Down
1 change: 0 additions & 1 deletion mnist-classifaction/train_job/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
plt.axis('off')
run.log_plots({"images": plt})
plt.tight_layout()
plt.show()


# Define the model architecture
Expand Down

0 comments on commit ea63c3e

Please sign in to comment.