Description Usage Arguments Value Details Examples
Register an Azure file share as a datastore. You can choose to use either the SAS token or the storage account key.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
workspace |
The |
datastore_name |
A string of the name of the datastore. The name must be case insensitive and can only contain alphanumeric characters and underscores. |
file_share_name |
A string of the name of the Azure file share. |
account_name |
A string of the storage account name. |
sas_token |
A string of the account SAS token. |
account_key |
A string of the storage account key. |
protocol |
A string of the protocol to use to connect to the
file store. If |
endpoint |
A string of the endpoint of the file store.
If |
overwrite |
If |
create_if_not_exists |
If |
skip_validation |
If |
The AzureFileDatastore
object.
In general we recommend Azure Blob storage over Azure File storage. Both standard and premium storage are available for blobs. Although more expensive, we suggest premium storage due to faster throughput speeds that may improve the speed of your training runs, particularly if you train against a large dataset.
1 2 3 4 5 6 7 8 9 | ## Not run:
ws <- load_workspace_from_config()
ds <- register_azure_file_share_datastore(ws,
datastore_name = 'mydatastore',
file_share_name = 'myazurefilesharename',
account_name = 'mystorageaccoutname',
account_key = 'mystorageaccountkey')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.