Local-Based Execution
Supported starting version 0.9.165
When executing batch models from local files, the model consumes input files and writes the resulting output files directly to your local storage.
Run local batch execution as the below example:
qwak models execution start --source-folder "file://full_path_source_folder/input_data.csv" --destination-folder "file://full_path_destination_folder/" --model-id "my_model" --access-token-name "" --access-secret-name ""
--source-folder
parameter may point to either a file or a folder.
When --source-folder
points to a folder, all files matching the input file type
suffix will be consumed as an input.
If no explicit input file type is defined csv
is the default one.
Updated 5 months ago