- Notifications
You must be signed in to change notification settings - Fork4
Dump the text of the Gigaword dataset into a single file, for use with language modeling (and other!) toolkits
License
nelson-liu/flatten_gigaword
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
The scripts in this repository dump the text of the Gigaword dataset into a single file, for usewith language modeling (and other!) toolkits.
See myblog post on flattening the Gigaword corpus formore information about how the code in this repo works.
To run this code, you must haveGNU Parallel. This can be installed on Ubuntu with:
sudo apt-get install parallelThis project was developed in Python 3.6, but should work with Python 3.x and 2.x.Please raise an issue if you find that this is not the case.
Conda will set up a virtual environment with the exactversion of Python used for development along with all the dependenciesneeded to run the code in this package.
Create a conda environment with Python 3.6.
conda create -n flat python=3.6Now activate the conda environment.
source activate flatInstall the required dependencies with
pip.pip install -r requirements.txtInstall the required SpaCy data pack.
python -m spacy download en
flatten_one_gigaword.py takes in the path of a Gigaword data fileand an output directory to write a flattened version to. The bash script atflatten_all_gigaword.sh is a thin wrapper that feeds the paths of all theGigaword data files toflatten_one_gigaword.py and combines the final output.
flatten_all_gigaword.sh takes in three positional arguments:
The path to the Gigaword directory, with all of the data files unzipped.
A directory to write the flattened files to and the final combined output.It will be created if it does not exist.
The number of files to process at once.
For example, you can run:
./flatten_all_gigaword.sh ./data/gigaword_eng_5/ tmp/ 24to extract data (in parallel, processing 24 files at a time) from the Gigaword corpusat./data/gigaword_eng_5/ and write the flattened files + combined output totmp/.
About
Dump the text of the Gigaword dataset into a single file, for use with language modeling (and other!) toolkits
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.