Skip to content

Commit

Permalink
hebb is offline
Browse files Browse the repository at this point in the history
  • Loading branch information
phueb committed May 23, 2021
1 parent 8228482 commit ad8bf83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ludwig/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


__version__ = '4.0.2'
__version__ = '4.0.3'


def print_ludwig(s):
Expand Down
3 changes: 2 additions & 1 deletion ludwig/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class WorkerDirs:
class Remote:
watched_pattern = 'run*.py' # this is required for watcher to know which file to run
path_to_ssh_config = Path.home() / '.ssh' / 'ludwig_config'
online_worker_names = ['norman', 'hebb', 'hinton', 'pitts', 'hawkins', 'lecun', 'hoff', 'bengio']
online_worker_names = ['norman', 'hinton', 'pitts', 'hawkins', 'lecun', 'hoff', 'bengio']
# TODO may 19: os error when connecting to hebb
all_worker_names = ['hoff', 'norman', 'hebb', 'hinton', 'pitts', 'hawkins', 'bengio', 'lecun']
group2workers = {'half1': ['hoff', 'norman', 'hebb', 'hinton'],
'half2': ['pitts', 'hawkins', 'bengio', 'lecun']}
Expand Down

0 comments on commit ad8bf83

Please sign in to comment.