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']}