Azure ストレージ アカウント内の BLOB コンテナーを参照する training_data という名前のデータストアを作成します。BLOB コンテナーには、複数のコンマ区切り値 (CSV) ファイルが格納される csv_files という名前のフォルダーが含まれています。
./script というローカル フォルダーに train.py というスクリプトがあり、これを推定器を使用した実験として実行する予定です。スクリプトには、csv_files フォルダーからデータを読み取る次のコードが含まれています。

次のスクリプトがあります。

スクリプトが training_data データストアの csv_files フォルダーを参照する data_ref という名前のデータ参照からデータを読み取ることができるように、実験の推定値を構成する必要があります。推定値を
構成するにはどのコードを使用する必要がありますか?
正解:B
Besides passing the dataset through the inputs parameter in the estimator, you can also pass the dataset through script_params and get the data path (mounting point) in your training script via arguments. This way, you can keep your training script independent of azureml-sdk. In other words, you will be able use the same training script for local debugging and remote training on any cloud platform.
Example:
from azureml.train.sklearn import SKLearn
script_params = {
# mount the dataset on the remote compute and pass the mounted path as an argument to the training script
'--data-folder': mnist_ds.as_named_input('mnist').as_mount(), '--regularization': 0.5
}
est = SKLearn(source_directory=script_folder,
script_params=script_params,
compute_target=compute_target,
environment_definition=env,
entry_script='train_mnist.py')
# Run the experiment
run = experiment.submit(est)
run.wait_for_completion(show_output=True)
Incorrect Answers:
A: Pandas DataFrame not used.
Reference:
https://docs.microsoft.com/es-es/azure/machine-learning/how-to-train-with-datasets