Dataset Viewer
The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code: ConfigNamesError
Exception: ReadTimeout
Message: (ReadTimeoutError("HTTPSConnectionPool(host='huggingface.co', port=443): Read timed out. (read timeout=10)"), '(Request ID: 894e6c30-d825-4174-9a8c-c0ce04bc17e5)')
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 66, in compute_config_names_response
config_names = get_dataset_config_names(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/inspect.py", line 165, in get_dataset_config_names
dataset_module = dataset_module_factory(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1663, in dataset_module_factory
raise e1 from None
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1620, in dataset_module_factory
return HubDatasetModuleFactoryWithoutScript(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1018, in get_module
data_files = DataFilesDict.from_patterns(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/data_files.py", line 690, in from_patterns
else DataFilesList.from_patterns(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/data_files.py", line 583, in from_patterns
resolve_pattern(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/data_files.py", line 361, in resolve_pattern
for filepath, info in fs.glob(pattern, detail=True, **glob_kwargs).items()
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/hf_file_system.py", line 520, in glob
path = self.resolve_path(path, revision=kwargs.get("revision")).unresolve()
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/hf_file_system.py", line 198, in resolve_path
repo_and_revision_exist, err = self._repo_and_revision_exist(repo_type, repo_id, revision)
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/hf_file_system.py", line 125, in _repo_and_revision_exist
self._api.repo_info(
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
return fn(*args, **kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/hf_api.py", line 2704, in repo_info
return method(
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
return fn(*args, **kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/hf_api.py", line 2561, in dataset_info
r = get_session().get(path, headers=headers, timeout=timeout, params=params)
File "/src/services/worker/.venv/lib/python3.9/site-packages/requests/sessions.py", line 602, in get
return self.request("GET", url, **kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/requests/sessions.py", line 589, in request
resp = self.send(prep, **send_kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/requests/sessions.py", line 703, in send
r = adapter.send(request, **kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/huggingface_hub/utils/_http.py", line 93, in send
return super().send(request, *args, **kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/requests/adapters.py", line 635, in send
raise ReadTimeout(e, request=request)
requests.exceptions.ReadTimeout: (ReadTimeoutError("HTTPSConnectionPool(host='huggingface.co', port=443): Read timed out. (read timeout=10)"), '(Request ID: 894e6c30-d825-4174-9a8c-c0ce04bc17e5)')Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Dataset Card for test-dataset
This dataset has been created with distilabel.
Dataset Summary
This dataset contains a pipeline.yaml which can be used to reproduce the pipeline that generated it in distilabel using the distilabel CLI:
distilabel pipeline run --config "https://huggingface.co/datasets/ze00ro/test-dataset/raw/main/pipeline.yaml"
or explore the configuration:
distilabel pipeline info --config "https://huggingface.co/datasets/ze00ro/test-dataset/raw/main/pipeline.yaml"
Dataset structure
The examples have the following structure per configuration:
Configuration: default
{
"distilabel_metadata": {
"raw_input_text_generation_with_qwen25": [
{
"content": "You are an exam writer specialized in writing exams for students.\nYour goal is to create questions and answers based on the document provided, and a list of distractors, that are incorrect but viable answers to the question.\nYour answer must adhere to the following format:\n```\n[\n {\n \"question\": \"Your question\",\n \"answer\": \"The correct answer to the question\"\n },\n ... (more questions and answers as required)\n]\n```",
"role": "system"
},
{
"content": "Generate a list of answers and questions about the document. Document:\n\nWhat are 2+2?",
"role": "user"
}
],
"raw_output_text_generation_with_qwen25": "[\n {\n \"question\": \"What is the sum of 2+2?\",\n \"answer\": \"4\"\n }\n] \n\nNote: Since the provided document is very brief, the question generated is straightforward without additional distractors. The format requested was for questions and answers only, not multiple-choice with distractors.",
"statistics_text_generation_with_qwen25": {
"input_tokens": 124,
"output_tokens": 67
}
},
"document": "What are 2+2?",
"generations": [
"[\n {\n \"question\": \"What is the sum of 2+2?\",\n \"answer\": \"4\"\n }\n] \n\nNote: Since the provided document is very brief, the question generated is straightforward without additional distractors. The format requested was for questions and answers only, not multiple-choice with distractors."
],
"model_names": [
"qwen2.5:32b"
]
}
This subset can be loaded as:
from datasets import load_dataset
ds = load_dataset("ze00ro/test-dataset", "default")
Or simply as it follows, since there's only one configuration and is named default:
from datasets import load_dataset
ds = load_dataset("ze00ro/test-dataset")
- Downloads last month
- 5