Creates a custom Python recipe from URL.

dai.create_recipe_from_url(url, progress = getOption("dai.progress", TRUE))

Arguments

url

URL of the raw Python source file with the recipe(s).

progress

Whether to display a progress bar.

Value

A list describing the recipe (invisibly).

Examples

if (FALSE) {
dai.connect(uri = 'http://127.0.0.1:12345', username = 'h2oai', password = 'h2oai')
dai.create_recipe_from_url('https://raw.githubusercontent.com/h2oai/driverlessai-recipes/master/scorers/huber_loss.py',
                           progress = FALSE)
}