Gilles Jacobs

Results 9 comments of Gilles Jacobs

I personally encountered this issue and here are my notes on possible solutions (and which one I ended up picking in my situation): > Problem: Discontiguous token spans: Sometimes a...

These are the steps on Ubuntu 20.04: 1. Install opencl dependencies: `apt-get install ocl-icd-opencl1 ocl-icd-opencl-dev opencl-headers` 2. Compile binary using Makefile: `cd ./profanity && make` 3. Make 'profanity.x64' executable: `chmod...

Thanks for the fast response @ipavlopoulos, invalid annotations not affecting test scores is good to hear! When you have more validation on this, perhaps this could be communicated via the...

The main risk competition-wise is that some teams will not correct errors assuming hand-made gold standard don't have annotation artifacts. This could lead to performance difference not attributable to their...

In short: Not distributing a fix is a duplication of effort for all participants, however easy it is to fix ourselves.

+1 on localizing the user session, I have a multilingual group of end-users. Chainlit UI translation files are the only thing I cannot hot reload for the user. With pybabel.gettext...

@heidi-humansignal I checked your suggestion and tried placing the prediction region offsets to exclude those boundary special characters but the problem persists. Additionally, there are missing regions without any special...

I found the issue and managed to bypass it: Any text region label will stop showing in the interface after a newline followed by whitespace, so "\n\n" or "\n\s" is...

@atreyasha I am sure this works, but removing characters is not an option for my use-case. I need to maintain 1:1 character values with a production NLP preprocessing pipeline for...