flowchart LR A(Defining <br/>Datasources) --> B(Defining Filters <br/>per Datasource) B --> C(Defining Cleaners <br/>per Datasource)
squeakily
This repository is heavily inspired by BigScience’s ROOTs project and EleutherAI’s The Pile.
The overall pipeline is as follows:
In this library, we define filtering as data instances being removed from the dataset based on some criteria and cleaning as data instances being modified in some way.
Install
pip install squeakily
How to use
Using the API
First, we need to define a datasource. squeakily
accepts any Dataset
object from the HuggingFace Datasets library. For example, we can use the wikitext dataset:
from datasets import load_dataset
= load_dataset("wikitext", "wikitext-103-v1", split="train[:1%]") ds
We simply need to wrap the Dataset
object in a dictionary, with the key being the name of the datasource and the value being the Dataset
object, the filter and cleaners. For example:
from squeakily.filter import check_char_repetition, check_flagged_words
from squeakily.clean import remove_empty_lines, normalize_whitespace
= [
datasources
{"dataset": ds,
"name": "wikitext",
"columns": ["text"],
"filters": [check_char_repetition, check_flagged_words],
"cleaners": [remove_empty_lines, normalize_whitespace],
},# ...
]
Note: The order of the filters and cleaning functions matter. Filters and cleaners are applied in the order they are defined.
Note: As of now, we only use the first column of the given column names. This is because the squeakily
library is designed to work with language datasets, which usually have a single column of text. Future versions will support multiple columns.
Finally, we can apply the filters and cleaners to the datasouces using a Pipeline
object:
from squeakily.core import Pipeline
= Pipeline(datasources)
pipeline pipeline.run()
Note: If you want to run cleaners first, you can pass cleaning_first=True
to the run
function.
=True) pipeline.run(cleaning_first
If you need to run a filter or cleaner at the dataset level rather than the example level, you can pass global_filters
or global_cleaners
to the Pipeline.run
function. For example:
from squeakily.filter import minhash_dedup
=[minhash_dedup]) pipeline.run(global_filters
Note: If you use global filters or cleaners, all datasets must have a common column name in order to properly concatenate them.
Note: You can also specifiy if you want a specific dataset to be skipped by setting the skip_global
parameter to True
when defining the datasource.
= [
datasources
{"dataset": ds,
"columns": ["text"],
"filters": [check_char_repetition, check_flagged_words],
"cleaners": [remove_empty_lines, normalize_whitespace],
"skip_global": True,
},# ...
]
Additionally, you can run the pipeline in a dry run mode by passing dry_run=True
to the run
function. This will make no modifications to the datasets’ documents, but will add additional columns to the datasets with the results of the filters and cleaners. For example, if you if you ran the pipeline with the check_char_repetition
filter, you would get a new column called check_char_repetition
with a float value between 0 and 1 indicating the percentage of characters that are repeated in the document.
::: {.cell}-code}
``` {.python .cell= Pipeline(datasources)
pipeline =True)
pipeline.run(dry_run0]["dataset"].features pipeline.datasources[
:::