repo_id
stringlengths
15
89
file_path
stringlengths
27
180
content
stringlengths
1
2.23M
__index_level_0__
int64
0
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_arrow_dataset.py
import contextlib import copy import itertools import json import os import pickle import re import sys import tempfile from functools import partial from pathlib import Path from unittest import TestCase from unittest.mock import MagicMock, patch import numpy as np import numpy.testing as npt import pandas as pd impo...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_readme_util.py
import re import tempfile from pathlib import Path import pytest import yaml from datasets.utils.readme import ReadMe # @pytest.fixture # def example_yaml_structure(): example_yaml_structure = yaml.safe_load( """\ name: "" allow_empty: false allow_empty_text: true subsections: - name: "Dataset Card for X" #...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_offline_util.py
import pytest import requests from datasets.utils.file_utils import http_head from .utils import OfflineSimulationMode, RequestWouldHangIndefinitelyError, offline @pytest.mark.integration def test_offline_with_timeout(): with offline(OfflineSimulationMode.CONNECTION_TIMES_OUT): with pytest.raises(Reques...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_splits.py
import pytest from datasets.splits import SplitDict, SplitInfo from datasets.utils.py_utils import asdict @pytest.mark.parametrize( "split_dict", [ SplitDict(), SplitDict({"train": SplitInfo(name="train", num_bytes=1337, num_examples=42, dataset_name="my_dataset")}), SplitDict({"train...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_py_utils.py
import time from dataclasses import dataclass from multiprocessing import Pool from unittest import TestCase from unittest.mock import patch import multiprocess import numpy as np import pytest from datasets.utils.py_utils import ( NestedDataStructure, asdict, iflatmap_unordered, map_nested, temp_...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_hub.py
from urllib.parse import quote import pytest from datasets.utils.hub import hf_hub_url @pytest.mark.parametrize("repo_id", ["canonical_dataset_name", "org-name/dataset-name"]) @pytest.mark.parametrize("filename", ["filename.csv", "filename with blanks.csv"]) @pytest.mark.parametrize("revision", [None, "v2"]) def te...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_search.py
import os import tempfile from functools import partial from unittest import TestCase from unittest.mock import patch import numpy as np import pytest from datasets.arrow_dataset import Dataset from datasets.search import ElasticSearchIndex, FaissIndex, MissingIndex from .utils import require_elasticsearch, require_...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_table.py
import copy import pickle import warnings from typing import List, Union import numpy as np import pyarrow as pa import pytest import datasets from datasets import Sequence, Value from datasets.features.features import Array2D, Array2DExtensionType, ClassLabel, Features, Image from datasets.table import ( Concate...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_tqdm.py
import unittest from unittest.mock import patch import pytest from pytest import CaptureFixture from datasets.utils import ( are_progress_bars_disabled, disable_progress_bars, enable_progress_bars, tqdm, ) class TestTqdmUtils(unittest.TestCase): @pytest.fixture(autouse=True) def capsys(self,...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_file_utils.py
import os from pathlib import Path from unittest.mock import patch import pytest import zstandard as zstd from datasets.download.download_config import DownloadConfig from datasets.utils.file_utils import ( OfflineModeIsEnabled, cached_path, fsspec_get, fsspec_head, ftp_get, ftp_head, get_...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_hf_gcp.py
import os from tempfile import TemporaryDirectory from unittest import TestCase import pytest from absl.testing import parameterized from datasets import config from datasets.arrow_reader import HF_GCP_BASE_URL from datasets.builder import DatasetBuilder from datasets.dataset_dict import IterableDatasetDict from data...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_upstream_hub.py
import fnmatch import gc import os import shutil import tempfile import textwrap import time import unittest from io import BytesIO from pathlib import Path from unittest.mock import patch import numpy as np import pytest from huggingface_hub import DatasetCard, HfApi from datasets import ( Audio, ClassLabel,...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_arrow_writer.py
import copy import os import tempfile from unittest import TestCase from unittest.mock import patch import numpy as np import pyarrow as pa import pyarrow.parquet as pq import pytest from datasets.arrow_writer import ArrowWriter, OptimizedTypedSequence, ParquetWriter, TypedSequence from datasets.features import Array...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/README.md
## Add Dummy data test **Important** In order to pass the `load_dataset_<dataset_name>` test, dummy data is required for all possible config names. First we distinguish between datasets scripts that - A) have no config class and - B) have a config class For A) the dummy data folder structure, will always look as fol...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_filesystem.py
import importlib import os import fsspec import pytest from fsspec import register_implementation from fsspec.registry import _registry as _fsspec_registry from datasets.filesystems import COMPRESSION_FILESYSTEMS, extract_path_from_uri, is_remote_filesystem from .utils import require_lz4, require_zstandard def tes...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_parallel.py
import pytest from datasets.parallel import ParallelBackendConfig, parallel_backend from datasets.utils.py_utils import map_nested from .utils import require_dill_gt_0_3_2, require_joblibspark, require_not_windows def add_one(i): # picklable for multiprocessing return i + 1 @require_dill_gt_0_3_2 @require_jo...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/utils.py
import asyncio import importlib.metadata import os import re import sys import tempfile import unittest from contextlib import contextmanager from copy import deepcopy from distutils.util import strtobool from enum import Enum from importlib.util import find_spec from pathlib import Path from unittest.mock import patch...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_builder.py
import importlib import os import tempfile import types from contextlib import nullcontext as does_not_raise from multiprocessing import Process from pathlib import Path from unittest import TestCase from unittest.mock import patch import numpy as np import pyarrow as pa import pyarrow.parquet as pq import pytest from...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_download_manager.py
import json import os from pathlib import Path import pytest from datasets.download.download_config import DownloadConfig from datasets.download.download_manager import DownloadManager from datasets.utils.file_utils import hash_url_to_filename URL = "http://www.mocksite.com/file1.txt" CONTENT = '"text": ["foo", "fo...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_inspect.py
import os from pathlib import Path import pytest from datasets import ( get_dataset_config_info, get_dataset_config_names, get_dataset_infos, get_dataset_split_names, inspect_dataset, inspect_metric, ) from datasets.packaged_modules.csv import csv pytestmark = pytest.mark.integration @pyte...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_tasks.py
from copy import deepcopy from unittest.case import TestCase import pytest from datasets.arrow_dataset import Dataset from datasets.features import Audio, ClassLabel, Features, Image, Sequence, Value from datasets.info import DatasetInfo from datasets.tasks import ( AudioClassification, AutomaticSpeechRecogni...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_formatting.py
import datetime from pathlib import Path from unittest import TestCase import numpy as np import pandas as pd import pyarrow as pa import pytest from datasets import Audio, Features, Image, IterableDataset from datasets.formatting import NumpyFormatter, PandasFormatter, PythonFormatter, query_table from datasets.form...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_arrow_reader.py
import os import tempfile from pathlib import Path from unittest import TestCase import pyarrow as pa import pytest from datasets.arrow_dataset import Dataset from datasets.arrow_reader import ArrowReader, BaseReader, FileInstructions, ReadInstruction, make_file_instructions from datasets.info import DatasetInfo from...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_data_files.py
import copy import os from pathlib import Path from typing import List from unittest.mock import patch import fsspec import pytest from fsspec.registry import _registry as _fsspec_registry from fsspec.spec import AbstractFileSystem from datasets.data_files import ( DataFilesDict, DataFilesList, _get_data_...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_filelock.py
import os from datasets.utils._filelock import FileLock def test_long_path(tmpdir): filename = "a" * 1000 + ".lock" lock1 = FileLock(str(tmpdir / filename)) assert lock1.lock_file.endswith(".lock") assert not lock1.lock_file.endswith(filename) assert len(os.path.basename(lock1.lock_file)) <= 255
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_metric_common.py
# Copyright 2020 HuggingFace Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writ...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_extract.py
import os import zipfile import pytest from datasets.utils.extract import ( Bzip2Extractor, Extractor, GzipExtractor, Lz4Extractor, SevenZipExtractor, TarExtractor, XzExtractor, ZipExtractor, ZstdExtractor, ) from .utils import require_lz4, require_py7zr, require_zstandard @pyte...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_distributed.py
import os import sys from pathlib import Path import pytest from datasets import Dataset, IterableDataset from datasets.distributed import split_dataset_by_node from .utils import execute_subprocess_async, get_torch_dist_unique_port, require_torch def test_split_dataset_by_node_map_style(): full_ds = Dataset.f...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_load.py
import importlib import os import pickle import shutil import tempfile import time from hashlib import sha256 from multiprocessing import Pool from pathlib import Path from unittest import TestCase from unittest.mock import patch import dill import pyarrow as pa import pytest import requests import datasets from data...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_beam.py
import os import tempfile from functools import partial from unittest import TestCase from unittest.mock import patch import datasets import datasets.config from .utils import require_beam class DummyBeamDataset(datasets.BeamBasedBuilder): """Dummy beam dataset.""" def _info(self): return datasets....
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_info.py
import os import pytest import yaml from datasets.features.features import Features, Value from datasets.info import DatasetInfo, DatasetInfosDict @pytest.mark.parametrize( "files", [ ["full:README.md", "dataset_infos.json"], ["empty:README.md", "dataset_infos.json"], ["dataset_infos...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_iterable_dataset.py
import pickle from copy import deepcopy from itertools import chain, islice import numpy as np import pandas as pd import pyarrow as pa import pyarrow.compute as pc import pytest from datasets import Dataset, load_dataset from datasets.combine import concatenate_datasets, interleave_datasets from datasets.features im...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_dataset_dict.py
import os import tempfile from unittest import TestCase import numpy as np import pandas as pd import pytest from datasets import load_from_disk from datasets.arrow_dataset import Dataset from datasets.dataset_dict import DatasetDict, IterableDatasetDict from datasets.features import ClassLabel, Features, Sequence, V...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_experimental.py
import unittest import warnings from datasets.utils import experimental @experimental def dummy_function(): return "success" class TestExperimentalFlag(unittest.TestCase): def test_experimental_warning(self): with warnings.catch_warnings(record=True) as w: warnings.simplefilter("always"...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/_test_patching.py
# isort: skip_file # This is the module that test_patching.py uses to test patch_submodule() import os # noqa: F401 - this is just for tests import os as renamed_os # noqa: F401 - this is just for tests from os import path # noqa: F401 - this is just for tests from os import path as renamed_path # noqa: F401 - th...
0
hf_public_repos/datasets
hf_public_repos/datasets/tests/test_metadata_util.py
import re import sys import tempfile import unittest from pathlib import Path import pytest import yaml from huggingface_hub import DatasetCard, DatasetCardData from datasets.config import METADATA_CONFIGS_FIELD from datasets.utils.metadata import MetadataConfigs def _dedent(string: str) -> str: indent_level = ...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/distributed_scripts/run_torch_distributed.py
import os from argparse import ArgumentParser from typing import List import torch.utils.data from datasets import Dataset, IterableDataset from datasets.distributed import split_dataset_by_node NUM_SHARDS = 4 NUM_ITEMS_PER_SHARD = 3 class FailedTestError(RuntimeError): pass def gen(shards: List[str]): ...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/io/test_parquet.py
import pyarrow.parquet as pq import pytest from datasets import Audio, Dataset, DatasetDict, Features, IterableDatasetDict, NamedSplit, Sequence, Value, config from datasets.features.image import Image from datasets.info import DatasetInfo from datasets.io.parquet import ParquetDatasetReader, ParquetDatasetWriter, get...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/io/test_sql.py
import contextlib import os import sqlite3 import pytest from datasets import Dataset, Features, Value from datasets.io.sql import SqlDatasetReader, SqlDatasetWriter from ..utils import assert_arrow_memory_doesnt_increase, assert_arrow_memory_increases, require_sqlalchemy def _check_sql_dataset(dataset, expected_f...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/io/test_text.py
import pytest from datasets import Dataset, DatasetDict, Features, NamedSplit, Value from datasets.io.text import TextDatasetReader from ..utils import assert_arrow_memory_doesnt_increase, assert_arrow_memory_increases def _check_text_dataset(dataset, expected_features): assert isinstance(dataset, Dataset) ...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/io/test_json.py
import io import json import fsspec import pytest from datasets import Dataset, DatasetDict, Features, NamedSplit, Value from datasets.io.json import JsonDatasetReader, JsonDatasetWriter from ..utils import assert_arrow_memory_doesnt_increase, assert_arrow_memory_increases def _check_json_dataset(dataset, expected...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/io/test_csv.py
import csv import os import pytest from datasets import Dataset, DatasetDict, Features, NamedSplit, Value from datasets.io.csv import CsvDatasetReader, CsvDatasetWriter from ..utils import assert_arrow_memory_doesnt_increase, assert_arrow_memory_increases def _check_csv_dataset(dataset, expected_features): ass...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/features/test_features.py
import datetime from unittest import TestCase from unittest.mock import patch import numpy as np import pandas as pd import pyarrow as pa import pytest from datasets import Array2D from datasets.arrow_dataset import Dataset from datasets.features import Audio, ClassLabel, Features, Image, Sequence, Value from dataset...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/features/test_audio.py
import os import tarfile import pyarrow as pa import pytest from datasets import Dataset, concatenate_datasets, load_dataset from datasets.features import Audio, Features, Sequence, Value from ..utils import ( require_sndfile, ) @pytest.fixture() def tar_wav_path(shared_datadir, tmp_path_factory): audio_pa...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/features/test_image.py
import os import tarfile import warnings import numpy as np import pandas as pd import pyarrow as pa import pytest from datasets import Dataset, Features, Image, Sequence, Value, concatenate_datasets, load_dataset from datasets.features.image import encode_np_array, image_to_bytes from ..utils import require_pil @...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/features/test_array_xd.py
import os import random import tempfile import unittest import numpy as np import pandas as pd import pyarrow as pa import pytest from absl.testing import parameterized import datasets from datasets.arrow_writer import ArrowWriter from datasets.features import Array2D, Array3D, Array4D, Array5D, Value from datasets.f...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_spark.py
from unittest.mock import patch import pyspark from datasets.packaged_modules.spark.spark import ( Spark, SparkExamplesIterable, _generate_iterable_examples, ) from ..utils import ( require_dill_gt_0_3_2, require_not_windows, ) def _get_expected_row_ids_and_row_dicts_for_partition_order(df, par...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_audiofolder.py
import shutil import textwrap import librosa import numpy as np import pytest import soundfile as sf from datasets import Audio, ClassLabel, Features, Value from datasets.data_files import DataFilesDict, get_data_patterns from datasets.download.streaming_download_manager import StreamingDownloadManager from datasets....
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_text.py
import textwrap import pyarrow as pa import pytest from datasets import Features, Image from datasets.packaged_modules.text.text import Text from ..utils import require_pil @pytest.fixture def text_file(tmp_path): filename = tmp_path / "text.txt" data = textwrap.dedent( """\ Lorem ipsum dol...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_webdataset.py
import tarfile import pytest from datasets import DownloadManager, Features, Image, Value from datasets.packaged_modules.webdataset.webdataset import WebDataset from ..utils import require_pil @pytest.fixture def tar_file(tmp_path, image_file, text_file): filename = tmp_path / "file.tar" num_examples = 3 ...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_json.py
import textwrap import pyarrow as pa import pytest from datasets import Features, Value from datasets.packaged_modules.json.json import Json @pytest.fixture def jsonl_file(tmp_path): filename = tmp_path / "file.jsonl" data = textwrap.dedent( """\ {"col_1": -1} {"col_1": 1, "col_2": 2...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_folder_based_builder.py
import importlib import shutil import textwrap import pytest from datasets import ClassLabel, DownloadManager, Features, Value from datasets.data_files import DataFilesDict, get_data_patterns from datasets.download.streaming_download_manager import StreamingDownloadManager from datasets.packaged_modules.folder_based_...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_imagefolder.py
import shutil import textwrap import numpy as np import pytest from datasets import ClassLabel, Features, Image, Value from datasets.data_files import DataFilesDict, get_data_patterns from datasets.download.streaming_download_manager import StreamingDownloadManager from datasets.packaged_modules.imagefolder.imagefold...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/packaged_modules/test_csv.py
import os import textwrap import pyarrow as pa import pytest from datasets import ClassLabel, Features, Image from datasets.packaged_modules.csv.csv import Csv from ..utils import require_pil @pytest.fixture def csv_file(tmp_path): filename = tmp_path / "file.csv" data = textwrap.dedent( """\ ...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/fixtures/files.py
import contextlib import csv import json import os import sqlite3 import tarfile import textwrap import zipfile import pyarrow as pa import pyarrow.parquet as pq import pytest import datasets import datasets.config # dataset + arrow_file @pytest.fixture(scope="session") def dataset(): n = 10 features = da...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/fixtures/hub.py
import time import uuid from contextlib import contextmanager from pathlib import Path from typing import Optional import pytest import requests from huggingface_hub.hf_api import HfApi, HfFolder, RepositoryNotFoundError CI_HUB_USER = "__DUMMY_TRANSFORMERS_USER__" CI_HUB_USER_FULL_NAME = "Dummy User" CI_HUB_USER_TOK...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/fixtures/fsspec.py
import posixpath from pathlib import Path from unittest.mock import patch import pytest from fsspec.implementations.local import AbstractFileSystem, LocalFileSystem, stringify_path from fsspec.registry import _registry as _fsspec_registry class MockFileSystem(AbstractFileSystem): protocol = "mock" def __ini...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/commands/conftest.py
import pytest DATASET_LOADING_SCRIPT_NAME = "__dummy_dataset1__" DATASET_LOADING_SCRIPT_CODE = """ import json import os import datasets REPO_URL = "https://huggingface.co/datasets/hf-internal-testing/raw_jsonl/resolve/main/" URLS = {"train": REPO_URL + "wikiann-bn-train.jsonl", "validation": REPO_URL + "wikiann-...
0
hf_public_repos/datasets/tests
hf_public_repos/datasets/tests/commands/test_test.py
import os from collections import namedtuple import pytest from datasets import ClassLabel, Features, Sequence, Value from datasets.commands.test import TestCommand from datasets.info import DatasetInfo, DatasetInfosDict _TestCommandArgs = namedtuple( "_TestCommandArgs", [ "dataset", "name",...
0
hf_public_repos/datasets
hf_public_repos/datasets/utils/release.py
# Copyright 2021 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
0
hf_public_repos/datasets
hf_public_repos/datasets/docs/README.md
<!--- Copyright 2020 The HuggingFace Team. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/stream.mdx
# Stream Dataset streaming lets you work with a dataset without downloading it. The data is streamed as you iterate over the dataset. This is especially helpful when: - You don't want to wait for an extremely large dataset to download. - The dataset size exceeds the amount of available disk space on your computer. - ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/use_with_tensorflow.mdx
# Using Datasets with TensorFlow This document is a quick introduction to using `datasets` with TensorFlow, with a particular focus on how to get `tf.Tensor` objects out of our datasets, and how to stream data from Hugging Face `Dataset` objects to Keras methods like `model.fit()`. ## Dataset format By default, data...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/faiss_es.mdx
# Search index [FAISS](https://github.com/facebookresearch/faiss) and [Elasticsearch](https://www.elastic.co/elasticsearch/) enables searching for examples in a dataset. This can be useful when you want to retrieve specific examples from a dataset that are relevant to your NLP task. For example, if you are working on ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/create_dataset.mdx
# Create a dataset Sometimes, you may need to create a dataset if you're working with your own data. Creating a dataset with πŸ€— Datasets confers all the advantages of the library to your dataset: fast loading and processing, [stream enormous datasets](stream), [memory-mapping](https://huggingface.co/course/chapter5/4?...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/image_dataset.mdx
# Create an image dataset There are two methods for creating and sharing an image dataset. This guide will show you how to: * Create an image dataset with `ImageFolder` and some metadata. This is a no-code solution for quickly creating an image dataset with several thousand images. * Create an image dataset by writin...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/object_detection.mdx
# Object detection Object detection models identify something in an image, and object detection datasets are used for applications such as autonomous driving and detecting natural hazards like wildfire. This guide will show you how to apply transformations to an object detection dataset following the [tutorial](https:...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/dataset_script.mdx
# Create a dataset loading script <Tip> The dataset loading script is likely not needed if your dataset is in one of the following formats: CSV, JSON, JSON lines, text, images, audio or Parquet. With those formats, you should be able to load your dataset automatically with [`~datasets.load_dataset`], as long as your...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/tabular_load.mdx
# Load tabular data A tabular dataset is a generic dataset used to describe any data stored in rows and columns, where the rows represent an example and the columns represent a feature (can be continuous or categorical). These datasets are commonly stored in CSV files, Pandas DataFrames, and in database tables. This g...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/image_classification.mdx
# Image classification Image classification datasets are used to train a model to classify an entire image. There are a wide variety of applications enabled by these datasets such as identifying endangered wildlife species or screening for disease in medical images. This guide will show you how to apply transformation...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/about_mapstyle_vs_iterable.mdx
# Differences between Dataset and IterableDataset There are two types of dataset objects, a [`Dataset`] and an [`IterableDataset`]. Whichever type of dataset you choose to use or create depends on the size of the dataset. In general, an [`IterableDataset`] is ideal for big datasets (think hundreds of GBs!) due to its ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/cache.mdx
# Cache management When you download a dataset, the processing scripts and data are stored locally on your computer. The cache allows πŸ€— Datasets to avoid re-downloading or processing the entire dataset every time you use it. This guide will show you how to: - Change the cache directory. - Control how a dataset is ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/use_with_spark.mdx
# Use with Spark This document is a quick introduction to using πŸ€— Datasets with Spark, with a particular focus on how to load a Spark DataFrame into a [`Dataset`] object. From there, you have fast access to any element and you can use it as a data loader to train models. ## Load from Spark A [`Dataset`] object is ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/beam.mdx
# Beam Datasets Some datasets are too large to be processed on a single machine. Instead, you can process them with [Apache Beam](https://beam.apache.org/), a library for parallel data processing. The processing pipeline is executed on a distributed processing backend such as [Apache Flink](https://flink.apache.org/),...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/about_dataset_load.mdx
# Build and load Nearly every deep learning workflow begins with loading a dataset, which makes it one of the most important steps. With πŸ€— Datasets, there are more than 900 datasets available to help you get started with your NLP task. All you have to do is call: [`load_dataset`] to take your first step. This functio...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/index.mdx
# Datasets <img class="float-left !m-0 !border-0 !dark:border-0 !shadow-none !max-w-lg w-[150px]" src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/datasets/datasets_logo.png"/> πŸ€— Datasets is a library for easily accessing and sharing datasets for Audio, Computer Vision, and Natural ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/about_metrics.mdx
# All about metrics <Tip warning={true}> Metrics is deprecated in πŸ€— Datasets. To learn more about how to use metrics, take a look at the library πŸ€— [Evaluate](https://huggingface.co/docs/evaluate/index)! In addition to metrics, you can find more tools for evaluating models and datasets. </Tip> πŸ€— Datasets provides...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/how_to.md
# Overview The how-to guides offer a more comprehensive overview of all the tools πŸ€— Datasets offers and how to use them. This will help you tackle messier real-world datasets where you may need to manipulate the dataset structure or content to get it ready for training. The guides assume you are familiar and comfort...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/_redirects.yml
# This first_section was backported from nginx loading_datasets: loading share_dataset: share quicktour: quickstart dataset_streaming: stream torch_tensorflow: use_dataset splits: loading#slice-splits processing: process faiss_and_ea: faiss_es features: about_dataset_features using_metrics: how_to_metrics exploring: ac...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/semantic_segmentation.mdx
# Semantic segmentation Semantic segmentation datasets are used to train a model to classify every pixel in an image. There are a wide variety of applications enabled by these datasets such as background removal from images, stylizing images, or scene understanding for autonomous driving. This guide will show you how ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/how_to_metrics.mdx
# Metrics <Tip warning={true}> Metrics is deprecated in πŸ€— Datasets. To learn more about how to use metrics, take a look at the library πŸ€— [Evaluate](https://huggingface.co/docs/evaluate/index)! In addition to metrics, you can find more tools for evaluating models and datasets. </Tip> Metrics are important for eval...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/nlp_process.mdx
# Process text data This guide shows specific methods for processing text datasets. Learn how to: - Tokenize a dataset with [`~Dataset.map`]. - Align dataset labels with label ids for NLI datasets. For a guide on how to process any type of dataset, take a look at the <a class="underline decoration-sky-400 decoration...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/troubleshoot.mdx
# Troubleshooting This guide aims to provide you the tools and knowledge required to navigate some common issues. If the suggestions listed in this guide do not cover your such situation, please refer to the [Asking for Help](#asking-for-help) section to learn where to find help with your specific issue. ## Issues w...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/audio_process.mdx
# Process audio data This guide shows specific methods for processing audio datasets. Learn how to: - Resample the sampling rate. - Use [`~Dataset.map`] with audio datasets. For a guide on how to process any type of dataset, take a look at the <a class="underline decoration-sky-400 decoration-2 font-semibold" href="...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/_toctree.yml
- sections: - local: index title: πŸ€— Datasets - local: quickstart title: Quickstart - local: installation title: Installation title: Get started - sections: - local: tutorial title: Overview - local: load_hub title: Load a dataset from the Hub - local: access title: Know your data...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/use_with_pytorch.mdx
# Use with PyTorch This document is a quick introduction to using `datasets` with PyTorch, with a particular focus on how to get `torch.Tensor` objects out of our datasets, and how to use a PyTorch `DataLoader` and a Hugging Face `Dataset` with the best performance. ## Dataset format By default, datasets return regu...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/access.mdx
# Know your dataset There are two types of dataset objects, a regular [`Dataset`] and then an ✨ [`IterableDataset`] ✨. A [`Dataset`] provides fast random access to the rows, and memory-mapping so that loading even large datasets only uses a relatively small amount of device memory. But for really, really big datasets ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/depth_estimation.mdx
# Depth estimation Depth estimation datasets are used to train a model to approximate the relative distance of every pixel in an image from the camera, also known as depth. The applications enabled by these datasets primarily lie in areas like visual machine perception and perception in robotics. Example applications ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/load_hub.mdx
# Load a dataset from the Hub Finding high-quality datasets that are reproducible and accessible can be difficult. One of πŸ€— Datasets main goals is to provide a simple way to load a dataset of any format or type. The easiest way to get started is to discover an existing dataset on the [Hugging Face Hub](https://huggin...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/audio_load.mdx
# Load audio data You can load an audio dataset using the [`Audio`] feature that automatically decodes and resamples the audio files when you access the examples. Audio decoding is based on the [`soundfile`](https://github.com/bastibe/python-soundfile) python package, which uses the [`libsndfile`](https://github.com/l...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/about_dataset_features.mdx
# Dataset features [`Features`] defines the internal structure of a dataset. It is used to specify the underlying serialization format. What's more interesting to you though is that [`Features`] contains high-level information about everything from the column names and types, to the [`ClassLabel`]. You can think of [`...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/process.mdx
# Process πŸ€— Datasets provides many tools for modifying the structure and content of a dataset. These tools are important for tidying up a dataset, creating additional columns, converting between features and formats, and much more. This guide will show you how to: - Reorder rows and split the dataset. - Rename and ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/filesystems.mdx
# Cloud storage πŸ€— Datasets supports access to cloud storage providers through a `fsspec` FileSystem implementations. You can save and load datasets from any cloud storage in a Pythonic way. Take a look at the following table for some example of supported cloud storage providers: | Storage provider | Filesystem i...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/dataset_card.mdx
# Create a dataset card Each dataset should have a dataset card to promote responsible usage and inform users of any potential biases within the dataset. This idea was inspired by the Model Cards proposed by [Mitchell, 2018](https://arxiv.org/abs/1810.03993). Dataset cards help users understand a dataset's contents, t...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/loading.mdx
# Load Your data can be stored in various places; they can be on your local machine's disk, in a Github repository, and in in-memory data structures like Python dictionaries and Pandas DataFrames. Wherever a dataset is stored, πŸ€— Datasets can help you load it. This guide will show you how to load a dataset from: - T...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/tutorial.md
# Overview Welcome to the πŸ€— Datasets tutorials! These beginner-friendly tutorials will guide you through the fundamentals of working with πŸ€— Datasets. You'll load and prepare a dataset for training with your machine learning framework of choice. Along the way, you'll learn how to load different dataset configurations...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/audio_dataset.mdx
# Create an audio dataset You can share a dataset with your team or with anyone in the community by creating a dataset repository on the Hugging Face Hub: ```py from datasets import load_dataset dataset = load_dataset("<username>/my_dataset") ``` There are several methods for creating and sharing an audio dataset: ...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/nlp_load.mdx
# Load text data This guide shows you how to load text datasets. To learn how to load any type of dataset, take a look at the <a class="underline decoration-sky-400 decoration-2 font-semibold" href="./loading">general loading guide</a>. Text files are one of the most common file types for storing a dataset. By defaul...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/use_dataset.mdx
# Preprocess In addition to loading datasets, πŸ€— Datasets other main goal is to offer a diverse set of preprocessing functions to get a dataset into an appropriate format for training with your machine learning framework. There are many possible ways to preprocess a dataset, and it all depends on your specific datas...
0
hf_public_repos/datasets/docs
hf_public_repos/datasets/docs/source/about_map_batch.mdx
# Batch mapping Combining the utility of [`Dataset.map`] with batch mode is very powerful. It allows you to speed up processing, and freely control the size of the generated dataset. ## Need for speed The primary objective of batch mapping is to speed up processing. Often times, it is faster to work with batches of...
0