Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added handle for class in the to-level main script for job creation API. #2592

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion nvflare/job_config/fed_job_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,11 @@ def _copy_ext_scripts(self, custom_dir, ext_scripts):
def _get_class_path(self, obj, custom_dir):
module = obj.__module__
source_file = inspect.getsourcefile(obj.__class__)
if module == "__main__":
module = os.path.basename(source_file).strip(".py")
self._get_custom_file(custom_dir, module, source_file)

return obj.__module__ + "." + obj.__class__.__name__
return module + "." + obj.__class__.__name__

def _get_custom_file(self, custom_dir, module, source_file):
package = module.split(".")[0]
Expand Down
Loading