Skip to content
Snippets Groups Projects
Commit 1d876338 authored by Felix Kleinert's avatar Felix Kleinert
Browse files

fix data_path for external users

parent 67bb6e0d
No related branches found
No related tags found
No related merge requests found
Pipeline #37693 failed
......@@ -50,7 +50,10 @@ class ExperimentSetup(RunEnvironment):
super().__init__()
# experiment setup
if data_path is None:
self._set_param("data_path", data_path, default=helpers.prepare_host(sampling=sampling))
else:
self._set_param("data_path", data_path)
self._set_param("hostname", helpers.get_host())
# self._set_param("hostname", "jwc0123")
self._set_param("hpc_hosts", hpc_hosts, default=DEFAULT_HPC_HOST_LIST + DEFAULT_HPC_LOGIN_LIST)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment