-
Notifications
You must be signed in to change notification settings - Fork 60
Description
(Generally using this as a dumping ground for Anthology needs/wants, will sort out and clean up eventually)
While it's fresh (ACL 2023 ingestion) I want to make a few notes about the build format.
First, my understanding. I haven't used the software, but t seems that ACLPUB2 takes its input files and produces output in a build directory, similar say to cmake. I like this design. The output has the constructed book and watermarked PDFs, among other things. It also seems to create other directories; in addition to build, there is output, output/inputs, and sometimes some other directories, with some redundancy in files.
For ingestion, it would be helpful if you delivered to us a single build directory. It will help to know how ingestion works. We run ingest_aclpub2.py with the following syntax:
ingest_aclpub2.py -i ACLPUB2_DIR
It looks in this directory for the files papers.yml and conference_details.yml, which contain all the necessary metadata. It then reads through the papers in order, assigning Anthology IDs starting with 1 (0 is reserved for frontmatter), and copying and renaming PDFs for upload.
Here is a list of problems that the format delivered to us creates.
- The information we need seems actually to be spread around a number of different directories: the root directory,
build,output,output/inputs, etc. - These two YAML files are not present in the build directory, but in the root directory, and also in
output/inputs/. - The
papers.ymlthat we read should have PDF and attachments links that are relative paths, so that we can read them directly with no hidden or hard-coded assumptions - It seems there is no consistent format for the front matter or for the full proceedings (or are these in
build/front_matter.pdfandbuild/proceedings.df?)
Here is what would be ideal for us:
- Create a build directory for the Anthology. This could be the current
build/, or a new directory, sayanthology/ - The files
papers.ymlandconference_details.ymlshould be copied to this directory's root - There should be a
watermarked_pdfsdirectory inside it. I think this already exists. Since it is part of the build, it could also just be calledpdfs/(the idea being that this subdir contains "built" PDFs, i.e., watermarked ones) - Same for attachments: there should be an
attachments/subdirectory. - Ideally
front_matter.pdfandproceedings.pdf(if built) will be in the build directory, too, so we can test for their presence - All paths in the copied
papers.ymlshould be updated to be relative to the build directory, and ideally should be contained within the build directory
Here is an example layout that would work extremely well for us
aclpub2/
build/
front_matter.pdf
proceedings.pdf
papers.yml # updated with relative paths for attachments and PDFs
conference_details.yml # this could probably be unchanged
pdfs/
1.pdf
...
attachments/
49_software.zip
17_dataset.tgz
...
Note that if PDFs were missing, we would still ingest the metadata. So this would allow us, for example, to introduce a three-stage ingestion:
- (T minus two months) Camera-readies: deliver a file, we create a live Anthology page with all papers assigned metadata, but no PDFs available yet
- (T minus two weeks) PDFs and attachments: these are delivered two weeks before the conference and made available
- (T minus one day) Front matter and handbook: these touch the real-world and are often delayed by last-minute adjustments, so we consume them at the last minute.
This would just be for *ACL main conferences; workshops would have to stick to a single-stage ingest.