We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import flsim.configs
This code works
import flsim.configs <-- from flsim.utils.config_utils import fl_config_from_json json_config = { "trainer": { } } cfg = fl_config_from_json(json_config)
This code doesn't work
from flsim.utils.config_utils import fl_config_from_json json_config = { "trainer": { } } cfg = fl_config_from_json(json_config)
Having to import flsim.configs is unintuitive and not clear from the user perspective
The text was updated successfully, but these errors were encountered:
karthikprasad
No branches or pull requests
🚀 Feature
This code works
This code doesn't work
Motivation
Having to
import flsim.configs
is unintuitive and not clear from the user perspectivePitch
Alternatives
Additional context
The text was updated successfully, but these errors were encountered: