Luke Gessler
Luke Gessler
**version**: 0.4.3 **platform**: JVM 14 **problem**: Subcommands which return a `LazySeq` seem to crash because the `LazySeq` is treated as a deferred value by `getReturnValue`, and `P/waitForDeferredValue` attempts to deref...
User report: > Site crashed on a few occasions when adding more than one sentence to a document/passage. No repro yet
Mutations currently need to be handled one-at-a-time globally (still to be implemented at time of writing) because of race conditions that might occur: some mutations ([example](https://github.com/lgessler/glam/blob/2fabd70952b6af4773394fcff7babd92ee14cd0c/src/main/glam/crux/text_layer.clj#L55)) perform reads before submitting...
Suppose I'm working on a POS tagger. I have two steps, one where I load my dataset and another where I train my model: ```jsonnet { data: { ... },...
### 🐛 Describe the bug For some reason, PyTorch's `ReduceLROnPlateau` learning rate scheduler is [not registered as a subclass of `LRScheduler`](https://github.com/pytorch/pytorch/blob/564905c8e1dbd08a773b48e81e3413883e99ca7e/torch/optim/lr_scheduler.py#L913). This causes [Tango's registration to fail to register it](https://github.com/allenai/tango/blob/4a183de94fefb6bb8027f0797ce1e77be4083f6d/tango/integrations/torch/optim.py#L76L83),...
Our ultimate goal's to give NLP services easy access to all data in the system. To do so, we need to answer at least the following questions: 1. How can...
Users often derive their texts from an audio or video recording, and we want to be able to have these inside of each document. This requires that we (1) provide...
# Motivation Consider: 1. I saw a fish in the water. 2. I saw fish-∅ in the water. In (2), a lot of traditional item-and-arrangement (IA) accounts of English pluralization...
Implement Vocabularies, as specified in [the documentation](https://lgessler.com/glam/#_vocabulary).
Sentences can in principle be represented by a Span Layer. A couple of ways you could do this: 1. Sentences are delimited by single spans, each of which indicates the...