Skip to content

Commit

Permalink
Slight updates
Browse files Browse the repository at this point in the history
  • Loading branch information
leschultz committed Apr 19, 2024
1 parent 01f6413 commit 49c0385
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/synthetic/fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def main():
n_epochs=n_epochs,
batch_size=batch_size,
lr=lr,
patience=10,
save_dir=save_dir,
)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Package information
name = 'multilearn'
version = '0.0.0' # Need to increment every time to push to PyPI
version = '0.0.1' # Need to increment every time to push to PyPI
description = 'Multi-task learning with Pytorch.'
url = 'https://github.com/leschultz/multilearn'
author = 'Lane E. Schultz'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_ml(self):
save_dir = 'outputs'
lr = 1e-4
batch_size = 32
n_epochs = 10
n_epochs = 2
tasks = ['toy1', 'toy2', 'friedman1']

# Data
Expand Down

0 comments on commit 49c0385

Please sign in to comment.