Hi,
We want to configure share type for our dataset (Windows by default), how can we do this?
It seems we need to create a NFS share, is it okay? Afterward how can we connect them?
Here is my current code :
Thank you.
We want to configure share type for our dataset (Windows by default), how can we do this?
It seems we need to create a NFS share, is it okay? Afterward how can we connect them?
Here is my current code :
Code:
import json
import requests
server_api = "http://our-server/api/v1.0"
r = requests.post(
server_api + "/storage/dataset/features/Projects/",
auth=("xxxxx", "xxxxx"),
headers={"Content-Type": "application/json"},
verify=False,
data=json.dumps({
"name": "test_dataset"
})
)
Thank you.