Jökull Sólberg Auðunsson

Results 23 issues of Jökull Sólberg Auðunsson

I’m writing some code to detect mentions of companies. The corpus uses the ehf/of/sf/etc. suffixes so that’s a strong indicator for me, and potentially for Greynir too. I know that...

Is there a way to get verb form variants in the same way you can get case variants for nouns? Something like ```python >>> BIN_Db.lookup_past_participle("sækja") ``` The use case is...

I ran the 100 most common first names in Iceland through `greynir.parse`. No female names are interpreted as verbs but there are a few male ones. See this gist for...

If there is a way to augment the grammar file for specific project contexts, that should be documented.

Greynir makes it easy to lemmatize text. If the parser fails I can fallback to the bintokenizer and get multiple lemmas for all meanings. This makes for a great search...

I would loooove it if were easier to reach other variant cases and number when you have a token meaning or terminal instance. Something like `token.get_singular` and `token.get_accusative`.

I’m not familiar with the parsing pipeline but I thought I would share an instance of where the parser tripped in a (to me) surprising way: ```python greynir.parse_single('Sótt er um...

Has anyone got Toucan to work with SvelteKit on Cloudflare Pages? EDIT For now I just hooked Toucan up in `src/hooks.server.ts` ```ts import type { HandleServerError } from '@sveltejs/kit'; import...

Can mitsuhiko or someone else have a look at my code over at http://github.com/jokull/fungiform/commit/46c3215d1ce80bf5dc7cc4ea9851c2f5337c0827 and http://github.com/jokull/flask-fungiform/commit/0930c3021597e6e7d54817dedcf526b51ad05e3f The basic idea is that FileFields should not be handled by a forms library...

Although modern approaches to handling file uploads do so asynchronously, it is important to handle the ol' . I haven't worked up a patch because there is no obvious way...