ACL Pubcheck GUI is a minimal graphical user interface for the ACL Pubcheck tool made with gradio. The tool allows you to check the compliance of your paper with the *ACL conferences guidelines by simply drag and drop your pdf file on the interface.
The tool is available online on Hugging Face Spaces. You can access it by clicking on the button or image below.
Since it is running on a free instance, it might take a while to start if it was inactive for more than 48h.
Alternatively, you can run it locally by following the instructions in the section Local Deploy
.
In order to deploy the application locally, you need to have Docker installed on your machine. You can then build the image and run the container with the following commands:
docker build -t aclpubcheck-gui .
docker run -p 7860:7860 aclpubcheck-gui
The application will be available at http://localhost:7860. You can customize the port number by changing the last line of the Dockerfile and run again the commands above. The application has been tested on an amd64 platform.