-
Here's a start:
```
os_survey %>%
mutate(pathString = paste(
"OS Students 2014-15", `Operating System`, `OS Version`, sep = "/"
)) %>%
as.Node() %>%
ToDataFrameNetwork("users…
-
With the addition of `hierplane_spacy()`/`hierplane()`, the render/output functions for shiny need to be updated.
-
For some reason, when the example "Sam likes boats" is lowercase, the root "likes" has attributes "PERSON" and "VERB". I think we would expect it to only have "VERB":
```r
library(hierplane)
hi…
-
```r
devtools::load_all()
hierplane_spacy("Bob")
```
-
Eventually when there is a defined/standardized way of building inputs for hierplanes, it may be a good idea to tag the outputs objects with attributes. This may help with restricting user workflow (e…
-
Add package data, readily available to user for demonstration.
* https://github.com/allenai/hierplane/blob/gh-pages/js/treeData.js#L322-L724
-
I can imagine that a user might run into errors with `spacyr` not being configured properly. Right now we have package start up message linking to the `spacyr` project for getting started. It would be…
-
Need to export:
* `spacyr_default()` (and maybe find a better naming convention for default settings for each hp method ❓ )
* `%>%`
-
Presently we visualize our dependencies via the hierplane visualization (see below), but we think that it would be helpful to view the sentence linearly as well in the standard dependency visualizatio…
-
**Describe the bug**
I have an allennlp virt env and have allennlp installed successfully. I am able to use the dep parse predictor perfectly for analysis, but when I use the coref predictor via the…