
Ultimate access to all questions.
You have registered a file dataset named csv_folder that references a folder containing multiple CSV files in an Azure blob storage container.
You plan to use the following code to run a script that loads data from the file dataset. You have created and instantiated these variables:
datastore = ws.get_default_datastore()
dataset = Dataset.get_by_name(ws, 'csv_folder')
script_params = {
# to do: code segment to be inserted here
}
datastore = ws.get_default_datastore()
dataset = Dataset.get_by_name(ws, 'csv_folder')
script_params = {
# to do: code segment to be inserted here
}
You need to pass the dataset to the script to ensure it can read the files it references.
Which code segment should you insert to replace the comment?_

A
inputs=[file_dataset.as_named_input('training_files')],
B
inputs=[file_dataset.as_named_input('training_files').as_mount()],_
C
inputs=[file_dataset.as_named_input('training_files').to_pandas_dataframe()],
D
script_params={'--training_files': file_dataset},_