Brad Jascob

Results 37 comments of Brad Jascob

I'll see if I can figure out how to get the Oracle installer to go to 11.0.1 and see if that helps. As for how often, it's very random, which...

I've seen it farther back back than that. I'll try dropping back to Java 10 if 3.9.2 will run under that version and see what happens. Are you running under...

I switched back to Java 8 (the PPA doesn't appear to preserve anything but LTS releases) and the system ran for 12 hours and processed about 4M sentences, so it...

It's been a while since I ran these test but it looks like it was run against Stanford CoreNLP version 2018-10-05, aka [v3.9.2](https://stanfordnlp.github.io/CoreNLP/history.html). Since this is a python library I...

Thanks for pointing this out. What's happening is it doesn't have an inflection in its dictionary for JJR/JJS so it's using the out-of-vocabulary rules to create one. You can see...

arrival is a noun but arrive is a verb so one can't be an inflection of the other. The base Lexicon does have `nominalization` and `nominalization_of` so I might be...

No. The library if for Lemmatization and Inflection only.

A hack that seems to work is to change the venv installed torch file hub.py (ie.. /lib/python3.8/site-packages/torch/hub.py). Change line 59 from `MASTER_BRANCH = 'master'` to `MASTER_BRANCH = 'main'` Doing this...

Yes. my torch==1.4 and using the latest (0.5.1) branch of this project. Doing a little digging, here's what has happened... Torch 1.4 has in hub.py a define for `MASTER_BRANCH =...

Here's a simple script to convert sentences to an AMR format. infn = 'data/sents.txt' outfn = 'data/sents.txt.amr' # Load the file print('Reading ', infn) sents = [] with open(infn) as...