ScienceBeam Utils
Project description
ScienceBeam Utils
Overview
Provides utility functions related to the ScienceBeam project.
Please refer to the development documentation if you wish to contribute to the project.
Most tools are not yet documented. Please feel free to browse the code or tests, or raise an issue.
Pre-requisites
- Python 3
- Apache Beam
Apache Beam may be used to for preprocessing but also its transparent FileSystems API which makes it easy to access files in the cloud.
Install
pip install apache_beam[gcp]
pip install sciencebeam-utils
CLI Tools
Find File Pairs
The preferred input layout is a directory containing a gzipped pdf (.pdf.gz) and gzipped xml (.nxml.gz), e.g.:
- manuscript_1/
- manuscript_1.pdf.gz
- manuscript_1.nxml.gz
- manuscript_2/
- manuscript_2.pdf.gz
- manuscript_2.nxml.gz
Using compressed files is optional but recommended to reduce file storage cost.
The parent directory per manuscript is optional. If that is not the case then the name before the extension must be identical (which is recommended in general).
Run:
python -m sciencebeam_utils.tools.find_file_pairs \
--data-path <source directory> \
--source-pattern *.pdf.gz --xml-pattern *.nxml.gz \
--out <output file list csv/tsv>
e.g.:
python -m sciencebeam_utils.tools.find_file_pairs \
--data-path gs://some-bucket/some-dataset \
--source-pattern *.pdf.gz --xml-pattern *.nxml.gz \
--out gs://some-bucket/some-dataset/file-list.tsv
That will create the TSV (tab separated) file file-list.tsv with the following columns:
- source_url
- xml_url
That file could also be generated using any other preferred method.
Split File List
To separate the file list into a training, validation and test dataset, the following script can be used:
python -m sciencebeam_utils.tools.split_csv_dataset \
--input <csv/tsv file list> \
--train 0.5 --validation 0.2 --test 0.3 --random --fill
e.g.:
python -m sciencebeam_utils.tools.split_csv_dataset \
--input gs://some-bucket/some-dataset/file-list.tsv \
--train 0.5 --validation 0.2 --test 0.3 --random --fill
That will create three separate files in the same directory:
file-list-train.tsvfile-list-validation.tsvfile-list-test.tsv
The file pairs will be randomly selected (--random) and one group will also include all remaining file pairs that wouldn't get include due to rounding (--fill).
As with the previous step, you may decide to use your own process instead.
Note: those files shouldn't change anymore once you used those files
Get Output Files
Since ScienceBeam is intended to convert files, there will be output files. To make it specific what the filenames are, the output files are also kept in a file list. This tool will generate the file list (it doesn't matter whether the files actually exist for this purpose).
e.g.
python -m sciencebeam_utils.tools.get_output_files \
--source-file-list path/to/source/file-list-train.tsv \
--source-file-column=source_url \
--output-file-suffix=.xml \
--output-file-list path/to/results/file-list.lst
By adding the --check argument, it will check whether the output files exist (see below).
Check File List
After generating an output file list, this tool can be used whether the output files exist or are complete.
e.g.
python -m sciencebeam_utils.tools.check_file_list \
--file-list path/to/results/file-list.lst \
--file-column=source_url \
--limit=100
This will check the first 100 output files and report on it. The command will fail if none of the output files exist.
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 sciencebeam_utils-0.1.6.tar.gz.
File metadata
- Download URL: sciencebeam_utils-0.1.6.tar.gz
- Upload date:
- Size: 22.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1792f3ba83089e378278f40dcb07e377e4bca26d2fb0a5ea9b499c630da76266
|
|
| MD5 |
1025f526e1a3c9f3f6fd7f649fb475f2
|
|
| BLAKE2b-256 |
cad6c7bb71236c2d3d43580bc65fe36ce49c6a08d4db6725c3a05dcbe5f11f25
|
File details
Details for the file sciencebeam_utils-0.1.6-py3-none-any.whl.
File metadata
- Download URL: sciencebeam_utils-0.1.6-py3-none-any.whl
- Upload date:
- Size: 29.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cc1f85c814b5ee6cbfab0340c72bd88dc65f3dc8bcc7e3c77539da198728b95
|
|
| MD5 |
38d1ccd97ed2dc06226133e9a7a03bb5
|
|
| BLAKE2b-256 |
7c5f0fcd83a0d5156fbb190140d1405ebc10ae71cc16b5fee2319d9b3d8cc04e
|