Once a WhizzML script has been created, you can execute it as many times as you want. Every execution will return a list of outputs and/or BigML resources (models, ensembles, clusters, predictions, etc.) that were created during the given run. It's also possible to execute a pipeline of more than one scripts in one request. The complete and updated reference with all available parameters is in our documentation website.
Inheritance: Response
 /// <summary>
 /// Create a dataset.
 /// </summary>
 /// <param name="script">The source from which you want to generate a dataset.</param>
 /// <param name="name">The optional name you want to give to the new dataset. </param>
 public Task<Execution> CreateExecution(Script script, string name = null, Execution.Arguments arguments = null)
 {
     arguments = arguments ?? new Execution.Arguments();
     if (!string.IsNullOrWhiteSpace(name)) arguments.Name = name;
     arguments.Script = script;
     return Create<Execution>(arguments);
 }
 /// <summary>
 ///  Create a whizzml execution using the supplied arguments.
 /// </summary>
 public Task<Execution> CreateExecution(Execution.Arguments arguments)
 {
     return Create<Execution>(arguments);
 }