You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe that the optional_import_error_message function is hiding specific import error messages and replacing them with a generic one, making errors hard to diagnose. For instance, in src/mattertune/backbones/jmp/model.py, the function is used on line 229 like so:
While trying to set up this package myself, I kept getting the error ImportError: The jmp package is not installed. Please install it by running pip install jmp even though I had already installed the jmp backbone. Upon further investigation, it turned out the package I needed was actually nshtrainer as jmp.models.gemnet was importing this module and thus not getting resolved.
The text was updated successfully, but these errors were encountered:
I believe that the
optional_import_error_message
function is hiding specific import error messages and replacing them with a generic one, making errors hard to diagnose. For instance, insrc/mattertune/backbones/jmp/model.py
, the function is used on line 229 like so:While trying to set up this package myself, I kept getting the error
ImportError: The jmp package is not installed. Please install it by running pip install jmp
even though I had already installed the jmp backbone. Upon further investigation, it turned out the package I needed was actually nshtrainer asjmp.models.gemnet
was importing this module and thus not getting resolved.The text was updated successfully, but these errors were encountered: