The Azure Quickstart templates are currently available in English
Create Tabular Dataset in AML workspace from Web URL
This template creates a tabular dataset from Web URL in Azure Machine Learning workspace.
Ten szablon usługi Azure Resource Manager (ARM) został utworzony przez członka społeczności, a nie przez firmę Microsoft. Każdy szablon ARM jest licencjonowany przez swojego właściciela, a nie firmę Microsoft. Firma Microsoft nie odpowiada za szablony ARM dostarczane i licencjonowane przez członków społeczności i nie sprawdza ich pod kątem bezpieczeństwa, zgodności ani wydajności. Szablony ARM społeczności nie są wspierane w ramach żadnego programu lub usługi pomocy technicznej firmy Microsoft i są udostępniane W STANIE, W JAKIM SIĘ ZNAJDUJĄ bez żadnego rodzaju gwarancji.
Parametry
Nazwa parametru | Opis |
---|---|
workspaceName | Specifies the name of the Azure Machine Learning workspace which will hold this datastore target. |
httpUrl | The Http URL. |
datasetName | The name of the dataset. |
datasetDescription | Optional : The description for the dataset. |
sourceType | Data source type |
separator | Optional: The separator used to split columns for 'delimited_files' sourceType, default to ',' for 'delimited_files' |
header | Optional : Header type. Defaults to 'all_files_have_same_headers' |
fineGrainTimestamp | Optional : Column name to be used as FineGrainTimestamp |
coarseGrainTimestamp | Optional : Column name to be used as CoarseGrainTimestamp. Can only be used if 'fineGrainTimestamp' is specified and cannot be same as 'fineGrainTimestamp'. |
tags | Optional : Provide JSON object with 'key,value' pairs to add as tags on dataset. Example- {"sampleTag1": "tagValue1", "sampleTag2": "tagValue2"} |
skipValidation | Optional : Skip validation that ensures data can be loaded from the dataset before registration. |
includePath | Optional : Boolean to keep path information as column in the dataset. Defaults to False. This is useful when reading multiple files, and want to know which file a particular record originated from, or to keep useful information in file path. |
location | The location of the Azure Machine Learning Workspace. |
Korzystanie z szablonu
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalowanie i konfigurowanie programu PowerShell systemu Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-machine-learning-dataset-create-tabular-from-web-url/azuredeploy.json
Wiersz polecenia
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalowanie i konfigurowanie międzyplatformowego interfejsu wiersza polecenia platformy Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-machine-learning-dataset-create-tabular-from-web-url/azuredeploy.json