Datasets.md

October 24, 2020 ยท View on GitHub

Dataset Description

FileLengthVocabulary SizeBrief Description
Real Data
webster41.1M98HTML data of the 1913 Webster Dictionary, from the Silesia corpus
text8100M27First 100M of English text (only) extracted from enwiki9
enwiki9500M206First 500M of the English Wikipedia dump on 2006
mozilla51.2M256Tarred executables of Mozilla 1.0, from the Silesia corpus
h. chr2064.4M5Chromosome 20 of H. sapiens GRCh38 reference sequence
h. chr1100M5First 100M bases of chromosome 1 of H. Sapiens GRCh38 sequence
c.e. genome 100M4C. elegans whole genome sequence
ill-quality100M4100MB of quality scores for PhiX virus reads sequenced with Illumina
np-bases300M5Nanopore sequenced reads (only bases) of a human sample (first 300M symbols)
np-quality300M91Quality scores for nanopore sequenced human sample (first 300M symbols)
num-control159.5M256Control vector output between two minimization steps in weather-satellite data assimilation
obs-spitzer198.2M256Data from the Spitzer Space Telescope showing a slight darkening
msg-bt266.4M256NPB computational fluid dynamics pseudo-application bt
audio264.6M256First 600 files (combined) in ESC Dataset for environmental sound classification
Synethetic Data
XOR-k 10M2Pseudorandom sequence Entropy rate 0 bpc.
HMM-k10M2Hidden Markov sequence , with , Entropy rate 0.46899 bpc.
FileLinkBootstrap Model
websterhttp://sun.aei.polsl.pl/~sdeor/index.php?page=silesiawebster
mozillahttp://sun.aei.polsl.pl/~sdeor/index.php?page=silesiamozilla
h. chr20ftp://hgdownload.cse.ucsc.edu/goldenPath/hg38/chromosomes/chr20.fa.gzchr20
h. chr1ftp://hgdownload.cse.ucsc.edu/goldenPath/hg38/chromosomes/chr1.fa.gzchr1
c.e. genomeftp://ftp.ensembl.org/pub/release-97/fasta/caenorhabditis_elegans/dna/Caenorhabditis_elegans.WBcel235.dna.toplevel.fa.gzcelegchr
ill-qualityhttp://bix.ucsd.edu/projects/singlecell/nbt_data.htmlphixq
text8http://www.mattmahoney.net/dc/textdata.htmltext8
enwiki9http://www.mattmahoney.net/dc/textdata.htmlenwiki9
np-baseshttps://github.com/nanopore-wgs-consortium/NA12878npbases
np-qualityhttps://github.com/nanopore-wgs-consortium/NA12878npquals
num-controlhttps://userweb.cs.txstate.edu/~burtscher/research/datasets/FPdouble/model
obs-spitzerhttps://userweb.cs.txstate.edu/~burtscher/research/datasets/FPdouble/model
msg-bthttps://userweb.cs.txstate.edu/~burtscher/research/datasets/FPdouble/model
audiohttps://github.com/karolpiczak/ESC-50model

Synethetic Dataset Generation Example

  1. Go to Datasets
  2. For real datasets, run
bash get_data.sh
  1. For synthetic datasets, run
# For generating XOR-10 dataset
python generate_data.py --data_type 0entropy --markovity 10 --file_name files_to_be_compressed/xor10.txt
# For generating HMM-10 dataset
python generate_data.py --data_type HMM --markovity 10 --file_name files_to_be_compressed/hmm10.txt
  1. This will generate a folder named files_to_be_compressed. This folder contains the parsed files which can be used to recreate the results in our paper.