13.7.4 Special Control Arguments (Autonomous AI Database)
Use the PAR_LST
parameter to specify special control arguments and additional arguments to be passed into the Python script.
Argument | Syntax and Description |
---|---|
oml_input_type |
Syntax
Description Specifies the type of object to construct from data in the Autonomous AI Database.
By default, a two-dimensional |
oml_na_omit |
Syntax
Description Determines if rows with any missing values will be omitted from the table to be evaluated. If If |
oml_async_flag |
Syntax
Description If If |
oml_graphics_flag |
Syntax
Description If If |
oml_parallel_flag |
Syntax
Description If If |
oml_service_level |
Syntax
Description Controls the different levels of performance and concurrency in Autonomous AI Database. |
timeout |
Syntax
Description The asynchronous timeout limit, expressed in
seconds, must be used with the argument
|
Examples
-
Input data is
pandas.DataFrame
:par_lst => '{"oml_input_type":"pandas.DataFrame"}'
-
Drop rows with missing values from input data:
par_lst => '{"oml_na_omit":true}'
-
Submit a job in asynchronous mode:
par_lst => '{"oml_async_flag":true}'
-
Use
MEDIUM
service level:par_lst => '{"oml_service_level":"MEDIUM"}'
-
Use
timeout
argument:par_lst => '{"oml_async_flag":true, "timeout": 4000}'