Installation
Installation
Before you start, youβll need to setup your environment and install the appropriate packages. π Datasets is tested on Python 3.7+.
If you want to use π Datasets with TensorFlow or PyTorch, youβll need to install them separately. Refer to the TensorFlow installation page or the PyTorch installation page for the specific install command for your framework.
Virtual environment
You should install π Datasets in a virtual environment to keep things tidy and avoid dependency conflicts.
Create and navigate to your project directory:
Copied
mkdir ~/my-project cd ~/my-projectStart a virtual environment inside your directory:
Copied
python -m venv .envActivate and deactivate the virtual environment with the following commands:
Copied
# Activate the virtual environment source .env/bin/activate # Deactivate the virtual environment source .env/bin/deactivate
Once youβve created your virtual environment, you can install π Datasets in it.
pip
The most straightforward way to install π Datasets is with pip:
Copied
Run the following command to check if π Datasets has been properly installed:
Copied
This command downloads version 1 of the Stanford Question Answering Dataset (SQuAD), loads the training split, and prints the first training example. You should see:
Copied
Audio
To work with audio datasets, you need to install the Audio feature as an extra dependency:
Copied
To decode mp3 files, you need to have at least version 1.1.0 of the libsndfile system library. Usually, itβs bundled with the python soundfile package, which is installed as an extra audio dependency for π Datasets. For Linux, the required version of libsndfile is bundled with soundfile starting from version 0.12.0. You can run the following command to determine which version of libsndfile is being used by soundfile:
Copied
Vision
To work with image datasets, you need to install the Image feature as an extra dependency:
Copied
source
Building π Datasets from source lets you make changes to the code base. To install from the source, clone the repository and install with the following commands:
Copied
Again, you can check if π Datasets was properly installed with the following command:
Copied
conda
π Datasets can also be installed from conda, a package management system:
Copied
Last updated