A simple format for machine learning datasets
Project description
Freeze Dried Data
A robust format for machine learning datasets.
FDD allows your entire dataset to be a single file. Instances are only loaded from disk when needed and can be loaded in random order.
Work with FDDs like you would python dictionaries. Keys map to objects. For extra organization and speed, columns can be defined where every row has a value for each column.
FDD files can operate in either read mode or write mode. Once a file is finalized, it cannot be modified without being re-written (i.e., it is "freeze-dried"). This allows for increased simplicity and speed compared to databases that allow modification.
Values are written to disk immediately upon insertion, while keys are written as part of the index when the FDD file is closed.
Installation
pip install freeze-dried-data
Alternatively, you can manually move the freeze_dried_data.py file into your project directory.
Features
Performance Features
-
Selective Data Loading: The data for a row's column is only loaded from disk when accessed. This allows for dataloaders to ignore certain columns and not incur a performance penalty by loading them from disk.
-
Fast Modified Copying: When processing a .fdd into a new, modified file, one typically loops through the records in the original file, makes the desired modification/addition to each row, then writes that row out to the new file. FDD directly copies the bits for columns that are unmodified so that no unnecessary serialization/deserialization needs to take place.
-
File Index Is Stored in RAM: FDD keeps track of the location of each datum in the file using an in-memory index. This allows data to be read in any order with little overhead.
Custom Splits
Define custom splits in your dataset by storing a list of keys for each split. This allows you to easily manage and access different subsets of your dataset, such as train, val, and test sets.
If you key by hash, storing your train, val, and test sets in the same file can reduce the chance of having train/test or train/val overlap.
Custom Splits also maintain order. This makes it easy to compare a ciriculum with random training for example.
Splits also take the place of sharding in many cases. With one split per shard, only the index for the selected split is stored in memory. Everything else can remain on disk. And everything can still remain in a single file.
Custom Serialization and Deserialization
FDD allows custom functions for serializing and deserializing data. This flexibility is especially useful when dealing with complex data types or when performance optimizations are necessary. It also allows on-the-fly compression where the compression algorithm can be chosen on a per-column basis.
Custom Properties
Custom properties are a great place to store dataset metadata such as dataset cards or the code/parameters used to generate the data. In read mode, properties are loaded from disk only when accessed, so this need not incur a runtime cost.
Seamless Integration
FDD is designed to work with data loaders in machine learning frameworks like PyTorch. Unlike other solutions, RFDD objects detect when they've been forked to a new process and re-open their files.
Context Management
FDD supports Python’s context management (using with statements), which ensures that files are properly closed after operations are completed, preventing data corruption and resource leaks.
Examples
Example 1: Creating an FDD File
from freeze_dried_data import WFDD
# Create the file "new dataset.fdd"
dataset = WFDD('new dataset.fdd')
# Add the entry 'key1': 'value1' to the dataset and write the value to disk
dataset['key1'] = 'value1'
# Add the entry 1234: 5678 to the dataset and write the value to disk
dataset[1234] = 5678
# Write the index including all keys to disk and close the file
dataset.close()
Example 2: Reading an FDD File
from freeze_dried_data import RFDD
# Open the existing file and unpickle the index including all keys into memory
dataset = RFDD('new dataset.fdd')
# Print each key-value pair
for k, v in dataset.items():
print(k, v)
# Directly access and print specific items
print(dataset[1234]) # prints "5678"
print(list(dataset.keys())) # prints "['key1', 1234]"
Example 3: Creating a file with columns
from freeze_dried_data import WFDD
# Create a new FDD file with columns for 'text' and 'label'
with WFDD('text_dataset.fdd', columns=['text', 'label']) as dataset:
dataset['doc1'] = {'text': 'This is an example document.', 'label': 1}
dataset['doc2'] = {'text': 'Another document for classification.', 'label': 0}
# you can also add columns as a tuple
dataset['doc3'] = ('A third document.', 1)
# Finally, you can add columns by name
dataset['doc4'].text = 'A fourth document.'
dataset['doc4'].label = 0
# if you don't add all the columns, you can call .finalize() to actually write the data
dataset['doc5'].text = 'A fifth document.'
dataset['doc5'].finalize() # doc5 will be written to disk immediately.
# if you don't call finalize() unfinished rows are kept in memory and written out when the file is closed
dataset['doc6'].text = 'A sixth document.'
# When the with context exits, the columns, index, and any custom properties are written to disk.
Example 4: Reading a file with columns
from freeze_dried_data import RFDD
with RFDD('text_dataset.fdd') as dataset:
for row in dataset:
print(row['text'], row['label'])
# output:
# This is an example document. 1
# Another document for classification. 0
# A third document. 1
# A fourth document. 0
# A fifth document. None
# A sixth document. None
Example 5: Using Custom Properties
from freeze_dried_data import WFDD
# Open a new FDD file, adding custom properties to store additional metadata
with WFDD('dataset_with_properties.fdd') as dataset:
dataset.creator = 'Data Scientist'
dataset.creation_date = '2024-04-12'
dataset.description = 'Sample dataset with custom properties.'
# Add data to the dataset
dataset['key1'] = 'value1'
# Verify and print custom properties
with RFDD('dataset_with_properties.fdd') as loaded_dataset:
print('Creator:', loaded_dataset.creator)
print('Creation Date:', loaded_dataset.creation_date)
print('Description:', loaded_dataset.description)
Example 6: Using custom Serialization
import json
from freeze_dried_data import WFDD
def my_serializer(obj):
return json.dumps(obj).encode('utf-8')
def my_deserializer(data):
return json.loads(data.decode('utf-8'))
with WFDD('custom_data.fdd', system_serialize=my_serializer, system_deserialize=my_deserializer) as dataset:
dataset['key1'] = {'complex_data': [1, 2, 3]}
with RFDD('custom_data.fdd', system_deserialize=my_deserializer) as dataset:
print(dataset['key1'])
# outputs:
# {'complex_data': [1, 2, 3]}
Example 7: Using in a PyTorch DataLoader with Workers
import torch
from torch.utils.data import Dataset, DataLoader
from freeze_dried_data import WFDD
with WFDD('new dataset.fdd') as dataset:
dataset.train_keys = ['key1', 'key2', 'key3']
dataset.val_keys = ['key4', 'key5']
dataset['key1'] = 'train_data1'
dataset['key2'] = 'train_data2'
dataset['key3'] = 'train_data3'
dataset['key4'] = 'val_data1'
dataset['key5'] = 'val_data2'
class FDDDataset(Dataset):
def __init__(self, filename, split='train'):
self.fdd = RFDD(filename)
if split == 'train':
self.keys = self.fdd.train_keys
else:
self.keys = self.fdd.val_keys
def __len__(self):
return len(self.keys)
def __getitem__(self, idx):
key = self.keys[idx]
return key, self.fdd[key]
dataset = FDDDataset('new dataset.fdd', split='train')
dataloader = DataLoader(dataset, batch_size=2, shuffle=True, num_workers=4)
for key, value in dataloader:
print(f'Batch: {key} - {value}')
# Example output:
# Batch: ('key3', 'key2') - ('train_data3', 'train_data2')
# Batch: ('key1',) - ('train_data1',)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file freeze_dried_data-2.0.0.tar.gz.
File metadata
- Download URL: freeze_dried_data-2.0.0.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4f7120078f7dbc44d0b0721b8d9c15b9af8ba64188a8388a6f6f9a1e70db288
|
|
| MD5 |
d2e75e3fc77d1d6b057bb0e23b57793d
|
|
| BLAKE2b-256 |
e4386c2c26c1cf51796d5645f1246b7d52fae6a9c11bee568d1fdef945ecca6e
|
File details
Details for the file freeze_dried_data-2.0.0-py3-none-any.whl.
File metadata
- Download URL: freeze_dried_data-2.0.0-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd511934f40c10d3e60a91f241b4bfe92c92b06da9d505a56ee4d29ada98d436
|
|
| MD5 |
d1393a2522394eb1b37ee92c7ff9e624
|
|
| BLAKE2b-256 |
cd6e7022db34e3609005acb1d03c04da72693b4c25a3c9b0dd0952ce6a7c0c97
|