I'm trying to create a dataset on my azure ML workspace from a GitHub action
I've created a datastore and uploaded data to that datastore when I try to create a dataset using the cli, I get this error:
'create' is misspelled or not recognized by the system.
this is the command i use:
> az ml dataset create
-n insurance_dataset
--resource-group rg-name
--workspace-name ml-ws-name
-p 'file:azureml/datastore/$(az ml datastore show-default -w ml-ws-name -g rg-name --query name -o tsv)/insurance/insurance.csv'
any idea what am I doing wrong?