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
When importing the profit module, the Using TensorFlow backend. is printed to the console. However, this should not be printed as the default backend should be pytorch. Somewhat related to #47.
Current behavior
"Using TensorFlow backend."
Expected behavior
"Using PyTorch backend."
The text was updated successfully, but these errors were encountered:
Disable the import of keras/tensorflow (in all modules/submodules) if the tensorflow backend is not being used! This will likely be a big commit and will involve changing many imports statements within files. This involves not importing the submodules that requires tensorflow/torch when importing the root modules. To use the backend you want, one has to import the necessary submodule.
When importing the
profit
module, theUsing TensorFlow backend.
is printed to the console. However, this should not be printed as the default backend should bepytorch
. Somewhat related to #47.Current behavior
"Using TensorFlow backend."
Expected behavior
"Using PyTorch backend."
The text was updated successfully, but these errors were encountered: