Description
Hi,
I am wondering if two (sequential) BOHB instances will interfere with each other when they have the same networking parameters?
I consider a BOHB instance as running the code in example 1 to complete (following the first example in the tutorial https://automl.github.io/HpBandSter/build/html/auto_examples/example_1_local_sequential.html).
Thus both instances are run using the same .py script.
Also, each instance is run in an individual terminal, but simultaneously.
I am afraid that, because two instances have the same identity parameters (run_id='example1', host='127.0.0.1', nameserver='127.0.0.1'
), the optimizer in one instance will catch the result of the worker from another instance.
It becomes like two workers are working for one optimizer, while I only expect one worker for one optimizer.
Is this true?