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
'0.2.0a0'
Source
Working through the notebook / .py file, when I get to this block:
`# Option 1: Use config file and CLI (use this outside a notebook)
config_str = json.dumps(config) inference_ensemble.main(config_str)`
I get this traceback error:
ModuleNotFoundError: No module named 'apex'
I am assuming it's this package, but might be worth adding to pyproject.toml.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
'0.2.0a0'
On which installation method(s) does this occur?
Source
Describe the issue
Working through the notebook / .py file, when I get to this block:
`# Option 1: Use config file and CLI (use this outside a notebook)
with open('./01_config.json', 'w') as f:
json.dump(config, f)
! python3 -m earth2mip.inference_ensemble 01_config.json
Option 2: Feed in JSON string directly into main function
config_str = json.dumps(config)
inference_ensemble.main(config_str)`
I get this traceback error:
ModuleNotFoundError: No module named 'apex'
I am assuming it's this package, but might be worth adding to pyproject.toml.
Environment details
The text was updated successfully, but these errors were encountered: