-
when process data in preprocess_raw_data.py of the coreference_resolution in coreference_resolution:
raw = {d[0]: '\t'.join(d[1]) for d in raw}
seems should be:
raw = {d: '\t'.join(raw[d]) for d …
-
Dear Anthology Director,
This is Seung-Hoon Na who is a publication chair of The 29th International Conference on Computational Linguistics (COLING 2022), with the conference website: https://colin…
-
@mlostar I can see a BUG while running:
```python
from fastcoref import spacy_component
import spacy
texts = ['We are so happy to see you using our coref package. This package is very fast!',
…
-
Hello,
I found one code error when I tried to reproduce code.
![image](https://user-images.githubusercontent.com/59130244/186365126-9fbbd877-543d-45cc-a921-266d15752be9.png)
In my analysis, t…
-
Hi, thank you for this library. Perhaps I'm missing something, but I've tried the following:
```
import holmes_extractor as holmes
holmes_manager = holmes.Manager(model='en_core_web_trf', number_…
-
Hi,
I am interested in annotating my own custom dataset for finetuning existing pretrained model.
I have tried reviewing some of the public datasets available like
- ParCor
- LitBank
- Gap C…
-
It would be nice to have recommender that can predict relations. In INCEpTION, there are 4 types of layers that could be predicted:
1. Relations #1239
2. Predicate-Argument Structures
3. Corefere…
-
Why in `vocabulary/tokens.txt` in your pretrained model for [coreference resolution](https://github.com/allenai/allennlp/blob/master/MODELS.md#coreference-resolution) contains many strage things like …
-
### Name
NYUDepth
### Paper
http://cs.nyu.edu/~silberman/papers/indoor_seg_support.pdf
### Data
https://cs.nyu.edu/~silberman/datasets/nyu_depth_v2.html
### Motivation
Depth estim…
-
When using ***parsing tree*** and
feeding a little bit longer sentence, I always get **`%`** at root, instead of `S`, `VP` or `NP`.
But I cannot find any information from document to know what it i…