Andreas van Cranenburgh

Results 35 comments of Andreas van Cranenburgh

I think the autosave did save me, because I only lost a couple of annotations. If it happens again I should try to figure out whether I can reproduce the...

Duplicate of #40. I am curious if anyone knows a solution. RE2 doesn't provide the equivalent operator (`\Z`), cf. https://github.com/google/re2/wiki/Syntax It's not enough to do `\n?$` because that behaves differently...

Have you tried running the latest version here on github? I think you're missing the option to enable C++11. You could also try my fork.

Hi @axiak It seems you're no longer maintaining pyre2; perhaps I could take over? I think this mostly involves handing over the pypi package. Let me know if you want...

Have a look at my fork: https://github.com/andreasvc/pyre2 I made a lot of improvements, including Python 3 compatibility.

@BrettRey are you using gcc? See [1]. From [2] it seems it might be an issue with clang. [1] https://github.com/andreasvc/disco-dop/#mac-os-x [2] https://stackoverflow.com/questions/65966969/why-does-march-native-not-work-on-apple-m1/66333485

Observations: - Clang 15 supports `-march=native`, see https://stackoverflow.com/a/72597669 - gcc can be installed on M1 with homebrew, which may or may not support `-march=native`. Documentation says it is only supported...

I figured out that the word vector file is generated by running train.py in the `snli` example linked. As for the exception, replacing `if attention:` with the following seems to...

Another issue I run into with this code is that the first sum operation reduces the number of dimensions to 2, but the outer sum is then over the no-longer-existing...

Fair enough. It's indeed a nontrivial feature, e.g. in terms of UI and file format. As plan B I can probably find a way to pre- and postprocess files annotated...