from mxnet import npEvery framework has thousands of functions and classes. You won’t memorize them — you’ll look them up.
Two Python builtins do most of the work:
dir(module) — what’s in here?help(thing) (or ?thing in Jupyter) — how do I use it?Plus the official docs: pytorch.org, jax.dev, tensorflow.org, mxnet.apache.org.
dir: discovering the APIStandard import:
help: usage detailsOnce you have the name, help(...) prints the docstring with arguments, defaults, and a usage example:
dir(module) — list contents.help(symbol) (or symbol? in Jupyter) — show the docstring.Tab) is your fastest discovery tool.