Error: Dataset 'knkarthick/dialogsum'

I have the following error:

---------------------------------------------------------------------------
DatasetNotFoundError                      Traceback (most recent call last)
Cell In[5], line 3
      1 huggingface_dataset_name = "knkarthick/dialogsum"
----> 3 dataset = load_dataset(huggingface_dataset_name)
      5 dataset

File /opt/conda/lib/python3.10/site-packages/datasets/load.py:2548, in load_dataset(path, name, data_dir, data_files, split, cache_dir, features, download_config, download_mode, verification_mode, ignore_verifications, keep_in_memory, save_infos, revision, token, use_auth_token, task, streaming, num_proc, storage_options, trust_remote_code, **config_kwargs)
   2543 verification_mode = VerificationMode(
   2544     (verification_mode or VerificationMode.BASIC_CHECKS) if not save_infos else VerificationMode.ALL_CHECKS
   2545 )
   2547 # Create a dataset builder
-> 2548 builder_instance = load_dataset_builder(
   2549     path=path,
   2550     name=name,
   2551     data_dir=data_dir,
   2552     data_files=data_files,
   2553     cache_dir=cache_dir,
   2554     features=features,
   2555     download_config=download_config,
   2556     download_mode=download_mode,
   2557     revision=revision,
   2558     token=token,
   2559     storage_options=storage_options,
   2560     trust_remote_code=trust_remote_code,
   2561     _require_default_config_name=name is None,
   2562     **config_kwargs,
   2563 )
   2565 # Return iterable dataset in case of streaming
   2566 if streaming:

File /opt/conda/lib/python3.10/site-packages/datasets/load.py:2220, in load_dataset_builder(path, name, data_dir, data_files, cache_dir, features, download_config, download_mode, revision, token, use_auth_token, storage_options, trust_remote_code, _require_default_config_name, **config_kwargs)
   2218     download_config = download_config.copy() if download_config else DownloadConfig()
   2219     download_config.storage_options.update(storage_options)
-> 2220 dataset_module = dataset_module_factory(
   2221     path,
   2222     revision=revision,
   2223     download_config=download_config,
   2224     download_mode=download_mode,
   2225     data_dir=data_dir,
   2226     data_files=data_files,
   2227     cache_dir=cache_dir,
   2228     trust_remote_code=trust_remote_code,
   2229     _require_default_config_name=_require_default_config_name,
   2230     _require_custom_configs=bool(config_kwargs),
   2231 )
   2232 # Get dataset builder class from the processing script
   2233 builder_kwargs = dataset_module.builder_kwargs

File /opt/conda/lib/python3.10/site-packages/datasets/load.py:1865, in dataset_module_factory(path, revision, download_config, download_mode, dynamic_modules_path, data_dir, data_files, cache_dir, trust_remote_code, _require_default_config_name, _require_custom_configs, **download_kwargs)
   1863     raise ConnectionError(f"Couldn't reach the Hugging Face Hub for dataset '{path}': {e1}") from None
   1864 if isinstance(e1, (DataFilesNotFoundError, DatasetNotFoundError, EmptyDatasetError)):
-> 1865     raise e1 from None
   1866 if isinstance(e1, FileNotFoundError):
   1867     raise FileNotFoundError(
   1868         f"Couldn't find a dataset script at {relative_to_absolute_path(combined_path)} or any data file in the same directory. "
   1869         f"Couldn't find '{path}' on the Hugging Face Hub either: {type(e1).__name__}: {e1}"
   1870     ) from None

File /opt/conda/lib/python3.10/site-packages/datasets/load.py:1812, in dataset_module_factory(path, revision, download_config, download_mode, dynamic_modules_path, data_dir, data_files, cache_dir, trust_remote_code, _require_default_config_name, _require_custom_configs, **download_kwargs)
   1810     msg = f"Dataset '{path}' doesn't exist on the Hub"
   1811     msg = msg + f" at revision '{revision}'" if revision else msg
-> 1812     raise DatasetNotFoundError(
   1813         msg + ". If the repo is private or gated, make sure to log in with `huggingface-cli login`."
   1814     )
   1815 else:
   1816     raise e

DatasetNotFoundError: Dataset 'knkarthick/dialogsum' doesn't exist on the Hub. If the repo is private or gated, make sure to log in with `huggingface-cli login`.

Hi @karlladc,

First, please ensure there are no mistakes in the repository name. If the repo name is correct, make sure your repository is public. If it provides gated access, ensure your API token has read permissions.

I hope this helps! Feel free to ask if you need further assistance.