From ad8bf831ac4c675f7589a4af7c77d9a1d77c0cb4 Mon Sep 17 00:00:00 2001 From: phueb Date: Sat, 22 May 2021 19:12:28 -0500 Subject: [PATCH] hebb is offline --- ludwig/__init__.py | 2 +- ludwig/configs.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ludwig/__init__.py b/ludwig/__init__.py index 68f9ff1..ba218bd 100644 --- a/ludwig/__init__.py +++ b/ludwig/__init__.py @@ -1,6 +1,6 @@ -__version__ = '4.0.2' +__version__ = '4.0.3' def print_ludwig(s): diff --git a/ludwig/configs.py b/ludwig/configs.py index 59b072c..11fe267 100644 --- a/ludwig/configs.py +++ b/ludwig/configs.py @@ -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']}