Alexander Hoyle
Alexander Hoyle
Right now, if a user has developed a task as a library (running it with `allennlp train --include-package my_library ...`), it will fail when its archive is included as a...
Hey -- just thought I'd let you know that it seems to work on Windows, but only when you use two-finger scrolling while pressing the shift key. Pinching on the...
This PR introduces a new `StringField` class to handle raw strings. Unlike `CharField`, `StringField` does not tokenize/analyze strings, but stores them in the index as-is. There are also faceted and...
Set up preprocessing & coherence to work with [OCTIS](https://github.com/MIND-Lab/OCTIS)
While using a `SQLiteCache`, if there are duplicate `(prompt, llm, idx)` tuples passed to [`update_cache()`](https://github.com/hwchase17/langchain/blob/c5dd491a21bde7a65c66c761aa0aad3734978008/langchain/llms/base.py#L39), then an `IntegrityError` is thrown. This can happen when there are duplicated prompts within the...
I have been getting an odd bug. With the below `Signature`, I get an error (specifically, `TemplateV2.query` throws an `AttributeError` because it is trying to split a list?). But if...
### Anthology ID 2023.emnlp-main.815 ### Type of Change Revision ### PDF of the Revision or Erratum [2023.emnlp-main.815-revised.pdf](https://github.com/acl-org/acl-anthology/files/14171200/2023.emnlp-main.815-revised.pdf) ### Brief Description of Changes This revision corrects the link to the github...
I was getting a `PayloadTooLargeError` in certain cases. Per this [stackoverflow](https://stackoverflow.com/a/68189263/5712749) answer, I switched from body-parser to express. I have not run any extensive testing, but this did fix the...
It looks like the `TwitterSemEval2015` [test data](https://huggingface.co/datasets/mteb/twittersemeval2015-pairclassification) combines the train, dev, and test data from [the original task](https://github.com/cocoxu/SemEval-PIT2015#traindevtest-data). Was this intentional? My assumption is that some of the models would...
I'm not sure if this is deliberate, but `PoolBasedActiveLearner.update()` does not appear to update its `self.dataset` labels? Would it make sense to include an `update_dataset()` method?