Skip to content

Commit

Permalink
change folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerroth committed Apr 12, 2024
1 parent 1115d43 commit 0d3ba07
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions nvflare/fed_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ def _create_server_app(self):
component = PTFileModelPersistor(model=self.model)
self.app.add_component("persistor", component)

component = PTFileModelLocator(pt_persistor_id="persistor")
self.app.add_component("model_locator", component)
component = PTFileModelLocator(pt_persistor_id="persistor")
self.app.add_component("model_locator", component)

component = ValidationJsonGenerator()
self.app.add_component("json_generator", component)
Expand Down
1 change: 1 addition & 0 deletions nvflare/job_config/fed_job_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ def _get_filters(self, filters, custom_dir):
return r

def locate_imports(self, sf, dest_file):
print("dest_file:", dest_file)
with open(dest_file, "w") as df:
for line in sf:
df.write(line)
Expand Down

0 comments on commit 0d3ba07

Please sign in to comment.