I checked online and on SO for answers but could not find anything helpful. It could possibly be because what I am looking for exists but I do not know the exact terminology. I am mainly interested in a solution that works in jupyter notebook.
To make it very simple and quick, let's consider the example of when we need to use Adam()
. If we know the exact path, we would simply import it first:
from tensorflow.keras.optimizers import Adam
Now if we don't know the path, or the path has changed (like how now it is inside tf.keras
instead of keras
), is there a functionality to get help in jupyter notebook? Let's say we type Adam()
and that functionality displays a list of possible paths to modules where functions named Adam()
are defined. This would be a big asset in cases of coding without access to internet to look for the exact module path.