Getting started¶
Setting up¶
python -m omegacli init --userid test5 --apikey APIKEY --url OMEGA_URL
Loading omega|ml¶
Start by loading omega|ml.
import omegaml as om
Once loaded om
provides 3 environments that are immediately usable:
om.datasets
- the omega|ml database for Python and Pandas objectsom.models
- the omega|ml database for modelsom.scripts
- the omega|ml database for custom modules (a.k.a. lambda modules)om.runtime
- the omega|ml remote execution environment
Loading omega|ml from python¶
import omegaml as om
om.setup(username, apikey, api_url=url)
Typically, the URL will be set by your default configuration.