Troubleshooting Studio#
Learn how to troubleshoot common issues with NeMo Studio.
Datasets or Jobs Not Appearing in Studio#
If you do not see datasets or jobs that you created using the Python SDK or API, verify that you specified the project parameter in the creation or update API requests.
Specify the project parameter when creating a dataset using the Python SDK or cURL:
Creating a Dataset Using the Python SDK and Associating with a Project#
dataset = client.datasets.create(
name="sample-basic-test",
namespace="default",
description="This is an example of a dataset",
files_url="hf://datasets/default/sample-basic-test",
project="sample_project"
)
Creating a Dataset Using cURL and Associating with a Project#
$ curl -X POST http://localhost:8000/v1/datasets \
-H "Content-Type: application/json" \
-d '
{
"name": "sample-basic-test",
"namespace": "default",
"description": "This is an example of a dataset",
"files_url": "hf://datasets/default/sample-basic-test",
"project": "sample_project"
}'
All resource creation and update APIs support the project parameter.
Refer to the Python SDK and API references for more details.